.gsTop,
.gsTop * {
  box-sizing: border-box;
  margin: 0;
}

.gsTop {
  font-family: 'Noto Sans JP', sans-serif;
  color: #0A0A0A;
  background: #0A0A0A;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.gsTop img {
  max-width: 100%;
  display: block;
}

.gsTop a:not(.gsBtn, .gsBiz__btn) {
  color: inherit;
}

.gsWrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* placeholder (写真差し替え用) */
.gsPh {
  background: #1A1A18;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 14px, transparent 14px 28px);
  border: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BFBFBB;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .06em;
}

.gsPh--light {
  background: #E4E1D8;
  background-image: repeating-linear-gradient(135deg, #D8D4C9 0 12px, #E4E1D8 12px 24px);
  border-color: #0A0A0A;
  color: #0A0A0A;
}

.gsPh__tag {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 6px 11px;
}

.gsPh--light .gsPh__tag {
  background: #fff;
  border-color: #0A0A0A;
}

.gsEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gsEyebrow__bar {
  width: 24px;
  height: 4px;
  background: #9dc400;
}

.gsEyebrow__en {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .2em;
  color: #6B6B64;
}

.gsEyebrow__en--light {
  color: #9dc400;
}

/* ============ HERO ============ */
.gsHero {
  position: relative;
  background: #0A0A0A;
  overflow: hidden;
  border-bottom: 8px solid #9dc400;
  height: 650px;
}

.gsHero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gsHero__media .gsPh {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- メイン画像 3枚フェード切り替え ---- */
.gsHero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1.4s ease;
}

.gsHero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.gsHero__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0s linear;
}

.gsHero__slide.is-active img {
  transform: scale(1.12);
  transition: transform 7s linear;
}

.gsHero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 10, 10, .92) 0%, rgba(10, 10, 10, .75) 38%, rgba(10, 10, 10, .15) 72%, rgba(10, 10, 10, .35) 100%);
}

.gsHero__accent {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  z-index: 3;
  background: #9dc400;
}

.gsHero__inner {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 96px 0;
}

/* ---- スライド見出し/本文/ボタンの切り替え ---- */
.gsHero__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 32px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 1s ease, transform 1s ease;
}

.gsHero__text.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gsHero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.gsHero__eyebrow i {
  width: 9px;
  height: 9px;
  background: #9dc400;
}

.gsHero__eyebrow span {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .22em;
  color: #9dc400;
}

.gsHero__title {
  font-weight: 900;
  font-size: 62px;
  line-height: 1.16;
  letter-spacing: .01em;
  color: #fff;
  margin-bottom: 24px;
}

.gsHero__title em {
  font-style: normal;
  color: #9dc400;
}

.gsHero__lead {
  font-size: 16px;
  line-height: 2;
  color: #D8D8D4;
  max-width: 460px;
  margin-bottom: 34px;
}

.gsBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 16px;
  padding: 18px 34px;
}

.gsBtn__arw {
  font-family: 'Anton', sans-serif;
}

.gsBtn--accent {
  background: #dc143c;
  color: #fff;
}

.gsBtn--accent:hover {
  background: #fff;
  color: #b91032;
  border: 1px solid #b91032;
}

.gsBtn--main {
  background: #9dc400;
  color: #0A0A0A;
}

.gsBtn--main:hover {
  background: #fff;
  color: #9dc400;
  border: 1px solid #9dc400;
}

.gsBtn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .45);
}

.gsBtn--ghost:hover {
  border-color: #fff;
}

.gsHero__dots {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: 38px;
  display: flex;
  gap: 8px;
}

.gsHero__dots i {
  position: relative;
  width: 26px;
  height: 5px;
  background: rgba(255, 255, 255, .35);
  overflow: hidden;
  cursor: pointer;
}

.gsHero__dots i.is-on {
  width: 30px;
}

.gsHero__dots i b {
  position: absolute;
  inset: 0;
  width: 0;
  background: #9dc400;
}

.gsHero__dots i.is-on b {
  animation: gsHeroFill 6s linear forwards;
}

@keyframes gsHeroFill {
  from { width: 0; }
  to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .gsHero__slide,
  .gsHero__slide img,
  .gsHero__text,
  .gsHero__dots i b {
    transition: none !important;
    animation: none !important;
  }
}

.gsHero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .24em;
  color: #8A8A84;
}

.gsHero__scroll::after {
  content: "";
  width: 1px;
  height: 26px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0));
}

/* ============ NEWS ============ */
.gsNews {
  background: #F4F2ED;
  color: #0A0A0A;
  border-bottom: 1px solid #0A0A0A;
}

.gsNews__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 26px 32px;
}

.gsNews__label {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.gsNews__label b {
  font-weight: 900;
  font-size: 15px;
}

.gsNews__label span {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  color: #6B6B64;
}

.gsNews__item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #0A0A0A;
  min-width: 0;
}

.gsNews__date {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: #6B6B64;
  white-space: nowrap;
}

.gsNews__cat {
  font-size: 10px;
  font-weight: 700;
  border: 1px solid #0A0A0A;
  padding: 3px 10px;
  white-space: nowrap;
}

.gsNews__ttl {
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gsNews__item:hover .gsNews__ttl {
  color: #6B6B64;
}

.gsNews__pager {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: #0A0A0A;
  white-space: nowrap;
}

.gsNews__pager button {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  color: #0A0A0A;
  padding: 4px;
}

.gsNews__pager button:hover {
  color: #dc143c;
}

/* ============ SECTION 1: 悩み ============ */
.gsWorry {
  background: #EDEBE4;
  color: #0A0A0A;
}

.gsWorry__inner {
  padding: 96px 32px;
}

.gsWorry__head {
  text-align: center;
  margin-bottom: 48px;
}

.gsWorry__mark {
  height: 66px;
  width: auto;
  margin: 0 auto 24px;
  display: block;
}

.gsWorry__title {
  font-weight: 900;
  font-size: 38px;
  line-height: 1.35;
}

.gsWorry__title em {
  font-style: normal;
  color: #dc143c;
}

.gsWorry__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.gsWorryCard {
  background: #fff;
  border: 1px solid #0A0A0A;
  padding: 26px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.gsWorryCard__q {
  flex: none;
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #DCD9CF;
}

.gsWorryCard__t {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

.gsWorry__arrow {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.gsWorry__arrow i {
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 30px solid #9dc400;
}

/* ============ SECTION 2: 解決 ============ */
.gsSolve {
  color: #fff;
  /* background-color を明示し、画像読み込み前後に白抜けしないようにする */
  background-color: #0A0A0A;
  background-image: url(https://cdn.cuezilla-cms.com/enjoyworks-test7.site/images/1406/bg_sec2.png);
  background-size: cover;
  background-position: center;
}

.gsSolve__inner {
  position: relative;
  padding: 96px 32px;
}

.gsSolve__head {
  text-align: center;
  margin-bottom: 52px;
}

.gsSolve__en {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .2em;
  color: #9dc400;
  margin-bottom: 14px;
}

.gsSolve__title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.3;
}

.gsSolve__title em {
  font-style: normal;
  color: #9dc400;
}

.gsSolve__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gsSolveCard {
  background: rgba(10, 10, 10, .72);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 32px 30px;
  display: flex;
  gap: 22px;
}

.gsSolveCard__n {
  flex: none;
  width: 48px;
  height: 48px;
  background: #9dc400;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
}

.gsSolveCard__t {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.gsSolveCard__d {
  font-size: 13.5px;
  line-height: 1.95;
  color: #C4C4C0;
}

/* ============ SECTION 3: 業務案内 ============ */
.gsBiz {
  background: #F4F2ED;
  color: #0A0A0A;
  border-top: 1px solid #0A0A0A;
}

.gsBiz__inner {
  padding: 100px 32px;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: 56px;
  align-items: center;
}

.gsBiz__sub {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .16em;
  color: #6B6B64;
  margin: 14px 0 10px;
}

.gsBiz__title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 26px;
}

.gsBiz__body {
  font-size: 14.5px;
  line-height: 2.05;
  color: #3A3A34;
  margin-bottom: 32px;
}

.gsBiz__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 260px;
  padding: 18px 26px;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  color: #0A0A0A;
  background: #fff;
  border: 1px solid #0A0A0A;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.gsBiz__btn:hover {
  background: #9dc400;
}
.gsBiz__btn:hover span {
  color: #fff;
}

.gsBiz__btn span:last-child {
  font-family: 'Anton', sans-serif;
  color: #9dc400;
  display: inline-block;
  transition: transform .2s ease, color .2s ease;
}

.gsBiz__btn:hover span:last-child {
  color: #0A0A0A;
  transform: translateX(6px);
}

.gsBiz__btn--ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
}

.gsBiz__btn--ghost:hover {
  background: #fff;
  border-color: #fff;
}

.gsBiz__btn--ghost:hover span {
  color: #0A0A0A;
}

.gsBiz__btn--ghost:hover span:last-child {
  color: #9dc400;
}

.gsBiz__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gsBiz__media .gsPh,
.gsBiz__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ SECTION 4: 施工実績 + バナー ============ */
.gsWorks {
  color: #fff;
  background-color: #0A0A0A;
  background-image: url(https://cdn.cuezilla-cms.com/enjoyworks-test7.site/images/1406/bg_sec4.png);
  background-size: cover;
  background-position: center;
}

.gsWorks__inner {
  position: relative;
  padding: 96px 32px;
}

.gsWorks__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.gsWorks__en {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .2em;
  color: #9dc400;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gsWorks__en i {
  width: 24px;
  height: 4px;
  background: #9dc400;
}

.gsWorks__title {
  font-weight: 900;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.gsWorks__lead {
  font-size: 14.5px;
  line-height: 1.9;
  color: #C4C4C0;
  max-width: 560px;
}

.gsWorks__more {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid #9dc400;
  padding-bottom: 4px;
  white-space: nowrap;
}

.gsWorks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.gsWorksItem {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.gsWorksItem .gsPh {
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
}

.gsWorksItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gsWorksItem__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #9dc400;
  color: #0A0A0A;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  padding: 5px 9px;
}

.gsBanners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gsBanner {
  position: relative;
  aspect-ratio: 22/9;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.gsBanner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .28);
}

.gsBanner__en {
  position: absolute;
  top: 30px;
  left: 34px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .2em;
}

.gsBanner__row {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.gsBanner__ttl {
  font-weight: 900;
  font-size: 30px;
  color: #fff;
}

.gsBanner__arw {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  display: inline-block;
  transition: transform .25s ease;
}

.gsBanner:hover .gsBanner__arw {
  transform: translateX(8px);
}

.gsBanner--info {
  background-color: #2A2C2E;
  background-image: url(https://cdn.cuezilla-cms.com/enjoyworks-test7.site/images/1406/bnr_info.png);
  background-size: cover;
  background-position: center;
}

.gsBanner--info:hover {
  background-color: #3A3D40;
}

.gsBanner--info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, .75), rgba(10, 10, 10, .2));
}

.gsBanner--info .gsBanner__en {
  color: #9dc400;
}

.gsBanner--info .gsBanner__arw {
  color: #9dc400;
}

.gsBanner--recruit {
  background-color: #dc143c;
  background-image: url(https://cdn.cuezilla-cms.com/enjoyworks-test7.site/images/1406/bnr_recruit.png);
  background-size: cover;
  background-position: center;
}

.gsBanner--recruit:hover {
  background-color: #b91032;
}

.gsBanner--recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(220, 20, 60, .88), rgba(220, 20, 60, .55)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 16px, transparent 16px 32px);
}

.gsBanner--recruit .gsBanner__en {
  color: #fff;
}

.gsBanner--recruit .gsBanner__arw {
  color: #fff;
}

.gsBanner__badge {
  position: absolute;
  top: 28px;
  right: 34px;
  background: #0A0A0A;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  padding: 5px 12px;
}

/* ============ SECTION 5: 中古車 ============ */
.gsCars {
  position: relative;
  color: #fff;
  background-color: #0A0A0A;
  background-image: url(https://cdn.cuezilla-cms.com/enjoyworks-test7.site/images/1406/bg_sec5.png);
  background-size: cover;
  background-position: center;
  border-top: 4px solid #dc143c;
}

.gsCars__inner {
  position: relative;
  padding: 96px 32px;
}

.gsCars__head {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 48px;
}

.gsCars__en {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: .02em;
  margin-bottom: 18px;
}

.gsCars__en b {
  color: #9dc400;
  font-weight: 400;
}

.gsCars__en i {
  font-style: normal;
  color: #dc143c;
}

.gsCars__title {
  font-weight: 900;
  font-size: 36px;
  line-height: 1.35;
}

.gsCars__title em {
  font-style: normal;
  color: #dc143c;
}

.gsCars__body {
  font-size: 14.5px;
  line-height: 2.05;
  color: #C4C4C0;
}

.gsCars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gsCarCard {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, .16);
}

.gsCarCard__media {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.gsCarCard__media .gsPh,
.gsCarCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gsCarCard__tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: #9dc400;
  color: #0A0A0A;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  padding: 5px 9px;
}

.gsCarCard__body {
  padding: 18px 20px;
}

.gsCarCard__name {
  font-weight: 900;
  font-size: 17px;
}

.gsCarCard__spec {
  font-size: 12px;
  color: #8A8A84;
  margin-top: 6px;
}

.gsCars__foot {
  display: flex;
  justify-content: center;
}

/* ============ BLOG ============ */
.gsBlog {
  position: relative;
  background: #9dc400;
  color: #0A0A0A;
  overflow: hidden;
}

.gsBlog::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, .05) 0 18px, transparent 18px 36px);
}

.gsBlog__inner {
  position: relative;
  padding: 88px 32px;
}

.gsBlog__title {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  letter-spacing: .06em;
  text-align: center;
  margin-bottom: 44px;
}

.gsBlog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 940px;
  margin: 0 auto 40px;
}

.gsBlogCard {
  background: #fff;
  text-decoration: none;
  color: #0A0A0A;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.gsBlogCard__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gsBlogCard__media .gsPh {
  width: 100%;
  height: 100%;
  border: 0;
  background: #E4E1D8;
  background-image: repeating-linear-gradient(135deg, #D8D4C9 0 12px, #E4E1D8 12px 24px);
  color: #0A0A0A;
}

.gsBlogCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gsBlogCard__body {
  padding: 16px 16px 20px;
}

.gsBlogCard__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gsBlogCard__date {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #6B6B64;
}

.gsBlogCard__cat {
  background: #2A6FDB;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
}

.gsBlogCard__ttl {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

.gsBlog__foot {
  display: flex;
  justify-content: center;
}

.gsBlog__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0A0A0A;
  font-weight: 900;
  font-size: 14px;
  padding: 15px 30px;
  text-decoration: none;
}

.gsBlog__more span {
  font-family: 'Anton', sans-serif;
  color: #dc143c;
}

a.past_link {
  display: inline-flex !important;
  width: auto !important;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0A0A0A !important;
  font-weight: 900;
  font-size: 14px;
  padding: 15px 30px;
  text-decoration: none !important;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
  margin: 0 auto;
}

a.past_link:hover {
  background: #0A0A0A;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
}

a.past_link .yazirusi {
  display: none !important;
}

a.past_link::after {
  content: "\2192";
  font-family: 'Anton', sans-serif;
  color: #dc143c;
}

.contact_submit input[type="submit"] {
  background-color: #dc143c !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer;
  transition: background-color .2s ease;
}

.contact_submit input[type="submit"]:hover {
  background-color: #b91032 !important;
}

/* ============ CONTACT + FOOTER ============ */
.gsFoot {
  position: relative;
  color: #E7E7E4;
  background: #101214;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.gsFoot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 12, .86);
}

.gsFoot__contact {
  position: relative;
  padding: 84px 32px 64px;
}

.gsFoot__ttl {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  letter-spacing: .06em;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.gsFoot__boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.gsFoot__box {
  background: rgba(10, 10, 10, .6);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gsFoot__box small {
  font-size: 12px;
  color: #BFBFBB;
}

.gsFoot__tel {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color: #fff;
  text-decoration: none;
  letter-spacing: .5px;
  margin: 6px 0;
}

.gsFoot__tel:hover {
  color: #9dc400 !important;
}

.gsFoot__box--mail {
  background: #dc143c;
  border-color: #dc143c;
  transition: background .2s ease, border-color .2s ease;
}

.gsFoot__box--mail:hover {
  background: #fff;
  border-color: #dc143c;
}

.gsFoot__mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  text-decoration: none;
  transition: color .2s ease;
}

.gsFoot__mail em {
  font-style: normal;
  color: #fff;
  transition: color .2s ease;
}

.gsFoot__box--mail:hover .gsFoot__mail,
.gsFoot__box--mail:hover .gsFoot__mail em {
  color: #dc143c;
}

.gsFoot__lower {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.gsFoot__lowerInner {
  padding: 40px 32px 44px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}

.gsFoot__addr {
  font-size: 13px;
  line-height: 1.85;
  color: #C4C4C0;
}

.gsFoot__map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  background: #fff;
  color: #0A0A0A;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  text-decoration: none;
}

.gsFoot__telfax {
  font-size: 13px;
  color: #E7E7E4;
}

.gsFoot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: flex-end;
}

.gsFoot__nav a {
  font-size: 13px;
  font-weight: 700;
  color: #E7E7E4;
  text-decoration: none;
}

.gsFoot__nav a:hover {
  color: #9dc400;
}

.gsFoot__sns {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 22px;
}

.gsFoot__sns a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E7E7E4;
  text-decoration: none;
  font-size: 14px;
}

.gsFoot__sns a:hover {
  background: #9dc400;
  color: #0A0A0A;
  border-color: #9dc400;
}

.gsFoot__copy {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.gsFoot__copyInner {
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.gsFoot__copyInner span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: #7A7A74;
}

/* ============ side contact banner ============ */
.gsSide {
  position: fixed;
  z-index: 900;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #dc143c;
  border: 1px solid #dc143c;
  color: #fff;
  text-decoration: none;
  padding: 20px 12px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, .35);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.gsSide:hover {
  background: #fff;
  border-color: #dc143c;
  color: #dc143c;
}

.gsSide span {
  writing-mode: vertical-rl;
}

.gsSide__en {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: .1em;
}

.gsSide i {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, .6);
  transition: background .2s ease;
}

.gsSide:hover i {
  background: rgba(220, 20, 60, .6);
}

.gsSide__jp {
  font-size: 11px;
  font-weight: 900;
}

/* ============ responsive ============ */
@media (max-width: 1024px) {
  .gsHero__title {
    font-size: 48px;
  }

  .gsBiz__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gsCars__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .gsNews__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .gsNews__pager {
    justify-self: end;
  }

  .gsWorry__grid {
    grid-template-columns: 1fr;
  }

  .gsSolve__grid {
    grid-template-columns: 1fr;
  }

  .gsWorks__grid {
    grid-template-columns: 1fr;
  }

  .gsBanners {
    grid-template-columns: 1fr;
  }

  .gsCars__grid {
    grid-template-columns: 1fr;
  }

  .gsBlog__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .gsFoot__boxes {
    grid-template-columns: 1fr;
  }

  .gsFoot__lowerInner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gsFoot__nav,
  .gsFoot__sns {
    justify-content: flex-start;
  }

  .gsSide {
    display: none;
  }
}

@media (max-width: 560px) {
  .gsWrap {
    padding: 0 20px;
  }

  .gsHero__inner {
    padding: 64px 0;
    min-height: 680px;
  }

  .gsHero__text {
    padding: 0 20px 96px;
  }

  .gsHero__title {
    font-size: 34px;
  }

  .gsHero__lead {
    font-size: 15px;
  }

  .gsBtn {
    width: 100%;
    justify-content: center;
  }

  .gsHero__dots {
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
  }

  .gsHero__scroll {
    bottom: 56px;
  }

  .gsWorry__inner,
  .gsSolve__inner,
  .gsWorks__inner,
  .gsBiz__inner,
  .gsCars__inner,
  .gsBlog__inner {
    padding: 72px 20px;
  }

  .gsWorry__title,
  .gsSolve__title,
  .gsWorks__title {
    font-size: 30px;
  }

  .gsBiz__title,
  .gsCars__title {
    font-size: 30px;
  }

  a.past_link {
    padding: 13px 22px;
    font-size: 13px;
  }

  .gsFoot__ttl,
  .gsBlog__title {
    font-size: 32px;
  }
}


body {
  margin: 0;
  padding-top: 74px;
}

/* ---------- HEADER ---------- */
.gsHeader,
.gsHeader * {
  box-sizing: border-box;
  margin: 0;
}

.gsHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 10, 10, .1);
  font-family: 'Noto Sans JP', sans-serif;
}

.gsHeader__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gsHeader__logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  flex: none;
}

.gsHeader__logo img {
  height: 38px;
  width: auto;
  display: block;
}

.gsHeader__tagline {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .18em;
  color: #6B6B64;
  padding-left: 2px;
}

.gsHeader__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.gsNavLink {
  text-decoration: none;
  color: #1A1A1A;
  font-weight: 700;
  font-size: 13.5px;
  white-space: nowrap;
}

.gsNavLink:hover {
  color: #9dc400;
}

.gsNavLink--accent {
  color: #dc143c;
}

.gsNavLink--accent:hover {
  color: #dc143c;
  opacity: .75;
}

/* ---- ドロップダウンサブメニュー (法人の方へ / 会社概要) ---- */
.gsNavItem {
  position: relative;
}

.gsNavItem > .gsNavLink::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  opacity: .55;
}

.gsSubmenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, .1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .1);
  padding: 6px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 10;
  margin-top: 1rem;
}

.gsNavItem:hover .gsSubmenu,
.gsNavItem:focus-within .gsSubmenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gsSubmenu__link {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: none;
  white-space: nowrap;
}

.gsSubmenu__link:hover {
  background: rgba(157, 196, 0, .12);
  color: #9dc400;
}

.gsHeader__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.05;
  padding-left: 4px;
}

.gsHeader__tel a {
  font-family: 'Anton', sans-serif;
  font-size: 25px;
  color: #9dc400;
  text-decoration: none;
  letter-spacing: .5px;
}

.gsHeader__tel span {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: .1em;
  color: #6B6B64;
}

.gsHeader__cta {
  display: inline-flex;
  align-items: center;
  background: #dc143c;
  color: #fff;
  font-weight: 900;
  font-size: 13.5px;
  padding: 12px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.gsHeader__cta:hover {
  background: #fff;
  color: #b91032;
  border: 1px solid #b91032;
}

.gsHeader__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gsHeader__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0A0A0A;
  margin: 0 auto;
  transition: transform .3s, opacity .3s;
}

.gsHeader.is-open .gsHeader__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gsHeader.is-open .gsHeader__toggle span:nth-child(2) {
  opacity: 0;
}

.gsHeader.is-open .gsHeader__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .gsHeader__toggle {
    display: flex;
  }

  .gsHeader__nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 10, 10, .12);
    padding: 8px 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .35s ease, opacity .25s ease;
  }

  .gsHeader.is-open .gsHeader__nav {
    max-height: 680px;
    opacity: 1;
    visibility: visible;
  }

  .gsNavLink {
    font-size: 16px;
    padding: 16px 32px;
    border-bottom: 1px solid rgba(10, 10, 10, .06);
  }

  .gsNavItem > .gsNavLink::after {
    display: none;
  }

  .gsSubmenu {
    position: static;
    min-width: 0;
    background: rgba(10, 10, 10, .03);
    border: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .gsSubmenu__link {
    padding: 14px 32px 14px 48px;
    font-size: 14.5px;
    border-bottom: 1px solid rgba(10, 10, 10, .06);
  }

  .gsHeader__tel {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    padding: 18px 32px 8px;
  }

  .gsHeader__tel span {
    font-size: 10px;
  }

  .gsHeader__cta {
    margin: 12px 32px 0;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 46px;
  }

  .gsHeader__inner {
    padding: 0 18px;
    height: 66px;
  }

  .gsHeader__logo img {
    height: 32px;
  }

  .gsHeader__nav {
    top: 66px;
  }
}

/* ---------- FOOTER ---------- */
.gsFooter,
.gsFooter * {
  box-sizing: border-box;
  margin: 0;
}

.gsFooter {
  background: #0A0A0A;
  color: #E7E7E4;
  font-family: 'Noto Sans JP', sans-serif;
}

.gsFooter__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.gsFooter__logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

.gsFooter__addr {
  font-size: 13px;
  line-height: 1.9;
  color: #9A9A94;
  margin-bottom: 16px;
}

.gsFooter__tel {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  color: #9dc400;
  text-decoration: none;
  letter-spacing: .5px;
}

.gsFooter__tel:hover {
  color: #9dc400 !important;
}

.gsFooter__heading {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  margin-bottom: 18px;
}

.gsFooter__heading--main {
  color: #9dc400;
}

.gsFooter__heading--accent {
  color: #dc143c;
}

.gsFooter__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gsFooter__links a {
  font-size: 13.5px;
  color: #E7E7E4;
  text-decoration: none;
}

.gsFooter__links a:hover {
  color: #9dc400;
}

.gsFooter__bar {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.gsFooter__barInner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.gsFooter__barInner span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: #7A7A74;
}

@media (max-width: 900px) {
  .gsFooter__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
    padding: 56px 28px 32px;
  }

  .gsFooter__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .gsFooter__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 28px;
  }

  .gsFooter__barInner {
    padding: 18px 20px;
  }
}


/* 下層共通パーツ */
.info_block {
  padding: 2rem 0;
  max-width: 1180px;
  margin: 0 auto;
}

.info_txt {
  text-align: center;
}

.info_mark {
  margin: 0 auto 24px;
  display: block;
  max-width: max-content;
  padding: 1rem;
}



/* 調整用 */
.parts249-251jHeMUdb3vQ_complete_form {
  padding: 0 !important;
}

.parts249-251LuvWATuGD3_complete_form {
  padding: 0 !important;
}
.parts249-251LuvWATuGD3_complete_form .container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 auto;
}

.parts040506_notice-news_75Av35pShZ.text-dark {
  padding: 0 !important;
}

.parts040506_notice-news_75Av35pShZ .container .content {
  background-color: #ffffff;
  border: none !important;
  padding: 25px;
}

.parts249-2517QLFCWTxPk_complete_form {
  padding: 0 !important;
}
.parts249-2517QLFCWTxPk_complete_form .container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 auto;
}

.parts249-251deXHD42e3P_complete_form {
  background: url('https://cdn.cuezilla-cms.com/enjoyworks-test7.site/images/1406/bg_sec2.png') no-repeat var(--background-color);
  background-size: cover;
  padding: 0 !important;
}

.parts249-251deXHD42e3P_complete_form .container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 auto;
}

.parts249-2517hQV3cvK5U_complete_form {
  padding: 0 !important;
}

.parts249-2517hQV3cvK5U_complete_form .container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 auto;
}

.parts249-251h9IAojUtpf_complete_form {
  background: url('https://cdn.cuezilla-cms.com/enjoyworks-test7.site/images/1406/bg_sec4.png') no-repeat var(--background-color);
  background-size: cover;
  padding: 0 !important;
}

.parts249-251h9IAojUtpf_complete_form .container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 auto;
}

.parts249-251AUPJFzbreZ_complete_form {
  background: url('https://cdn.cuezilla-cms.com/enjoyworks-test7.site/images/1406/bg_sec5.png') no-repeat var(--background-color);
  background-size: cover;
  padding: 0 !important;
}

.parts249-251AUPJFzbreZ_complete_form .container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 auto;
}

.parts249-251QEGWbBYSfH_complete_form {
  padding: 0 !important;
}


@media screen and (max-width:520px) {
.parts249-2517QLFCWTxPk_complete_form .free-area {
    margin-bottom: 0 !important;
  }
.parts249-251deXHD42e3P_complete_form .free-area {
    margin-bottom: 0 !important;
  }
.parts249-2517hQV3cvK5U_complete_form .free-area {
    margin-bottom: 0 !important;
  }
.parts249-251h9IAojUtpf_complete_form .free-area {
    margin-bottom: 0 !important;
}
.parts249-251AUPJFzbreZ_complete_form .free-area {
    margin-bottom: 0 !important;
  }
.parts249-251QEGWbBYSfH_complete_form .free-area {
    margin-bottom: 0 !important;
  }
}