/* ============================================
   ENGAWA CREATIVE - Design System
   Canvas: 1512px, Content: 1384px (64px margins)
   SP Breakpoint: 768px, Base: 375px
   ============================================ */

:root {
  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Lato", sans-serif;
  --font-accent: "Bebas Neue", sans-serif;

  --color-bg: #000000;
  --color-white: #ffffff;
  --color-dark-gray: #363636;
  --color-mid-gray: #8c8c8c;
  --color-light-gray: #d9d9d9;
  --color-black: #000000;

  --content-max: 1384px;
  --side-pad: 64px;
}

/* ---- Base ---- */
body {
  font-family: var(--font-base);
  background: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { transition: opacity 0.3s; }
a:hover { opacity: 0.7; }

/* ---- Scroll Reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.pc-only { display: block; }
.sp-only { display: none; }

/* Mobile menu: hidden on PC, transform-controlled on SP */
.mobile-menu { display: none; }

/* ---- Section Title (Bebas Neue 160px) ---- */
.section-title--bebas {
  font-family: var(--font-accent);
  font-size: 160px;
  font-weight: 400;
  line-height: 0.8;
}

.section-subtitle {
  display: block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 4px;
}

/* ---- View All Button ---- */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 4px;
}

.view-all-btn--pill {
  border: none;
  background: var(--color-light-gray);
  color: var(--color-black);
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 13px;
  min-width: 200px;
  justify-content: center;
}

/* ---- Tag ---- */
.tag {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--color-mid-gray);
  border-radius: 18.5px;
  color: var(--color-mid-gray);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  text-align: center;
  line-height: 1;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px var(--side-pad);
  transition: background 0.3s;
}

.header.is-scrolled {
  background: rgba(16, 16, 16, 0.5);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.header__logo img {
  height: 32px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__list {
  display: flex;
  gap: 24px;
}

.header__item a {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.header__cta {
  background: var(--color-white);
  color: var(--color-bg);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
}

/* ============================================
   HERO + WORKS
   ============================================ */
body.has-hero-bg {
  background-image: url('../images/hero_bg.png');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}

.hero {
  padding-top: 136px;
  padding-bottom: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: calc(var(--content-max) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 766px;
  margin-bottom: -4%;
}

.hero__title {
  font-weight: 100;
  font-size: 48px;
  line-height: 1.33;
  letter-spacing: -0.02em;
}

.hero__desc {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.67;
}

.hero__button {
  display: flex;
  justify-content: flex-end;
}

.hero__marquee {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 7.88vw;
  line-height: 1.1;
  letter-spacing: 2.4px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  pointer-events: none;
  position: relative;
  z-index: 1;
  margin-top: 24px;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* Works Grid */
.works__grid {
  display: grid;
  grid-template-columns: 370fr 370fr 586fr;
  gap: 26px;
  margin-bottom: 24px;
}

.works__card {
  display: flex;
  flex-direction: column;
}

.works__link {
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: inherit;
  text-decoration: none;
}

.works__card--small {
  align-self: end;
}

.works__thumb {
  border-radius: 20px;
  overflow: hidden;
}

.works__thumb img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  transition: transform 0.4s;
}

.works__card--large .works__thumb img {
  aspect-ratio: 1200 / 630;
}

.works__card:hover .works__thumb img {
  transform: scale(1.05);
}

.works__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.works__company {
  font-size: 13px;
  font-weight: 500;
}

.works__name {
  font-size: 22px;
  font-weight: 500;
}

.works__tags {
  display: flex;
  gap: 8px;
}

.works > .view-all-btn--pill {
  margin-top: 16px;
  float: right;
}

/* ============================================
   OUR SERVICE
   ============================================ */
.service {
  padding: 24px 0 0;
}

.service__inner {
  max-width: calc(var(--content-max) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

/* Top section: Title+chips (left) / Description (right) */
.service__top {
  display: flex;
  gap: 80px;
  margin-bottom: 80px;
  align-items: flex-end;
}

.service__top-left {
  flex: 0 0 543px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service__feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-chip {
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: 18.5px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  min-width: 120px;
}

.feature-chip span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  line-height: 1.6;
}

.service__top-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service__catch {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.33;
}

.service__desc-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service__desc-block p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.67;
}

/* Service Items */
.service__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service__item {
  display: flex;
  gap: 80px;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--color-white);
}

.service__item-content {
  flex: 0 0 calc(50% - 40px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service__item-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.service__item-num {
  font-family: var(--font-en);
  font-size: 100px;
  font-weight: 100;
  line-height: 1;
}

.service__item-title {
  font-family: var(--font-accent);
  font-size: 90px;
  font-weight: 400;
  line-height: 1;
}

.service__item-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.67;
}

.service__item-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

.service__item-image img {
  width: 100%;
  height: auto;
}

/* ============================================
   FEATURE (Carousel)
   ============================================ */
.feature {
  padding: 80px 0 0 0;
  overflow: hidden;
}

.feature__inner {
  max-width: calc(var(--content-max) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.feature__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature__nav {
  display: flex;
  gap: 16px;
}

.feature__nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  background: var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  transition: opacity 0.3s;
}

.feature__nav-btn:hover {
  opacity: 0.7;
}

.feature__nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.feature__carousel.swiper {
  overflow: visible;
  max-width: calc(var(--content-max) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.feature__slide {
  width: 560px;
  border-radius: 19px;
  overflow: hidden;
  box-shadow: 0 0 26px 14px rgba(0, 0, 0, 0.3);
}

.feature__link {
  display: block;
}

.feature__slide img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.feature__slide:hover img {
  transform: scale(1.04);
}

.feature__footer {
  max-width: calc(var(--content-max) + var(--side-pad) * 2);
  margin: 32px auto 0;
  padding: 0 var(--side-pad);
  display: flex;
  justify-content: flex-end;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 80px 0 80px;
}

.faq__inner {
  max-width: calc(var(--content-max) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: flex;
  gap: 225px;
}

.faq__heading {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq__content {
  flex: 1;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: 18.5px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  cursor: pointer;
  gap: 16px;
}

.faq__question-text {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-white);
}

.faq__label {
  white-space: nowrap;
}

.faq__divider {
  white-space: nowrap;
}

.faq__toggle {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: transform 0.3s;
}

.faq__item.is-open .faq__toggle {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__answer p {
  padding: 0 40px 24px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-white);
}

.faq__item.is-open .faq__answer {
  max-height: 300px;
}

.faq__content > .view-all-btn--pill {
  align-self: flex-end;
}

/* ============================================
   FOOTER MARQUEE
   ============================================ */
.footer-marquee {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 7.88vw;
  line-height: 1.1;
  letter-spacing: 2.4px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  pointer-events: none;
  position: relative;
  z-index: 2;
  /* 文字高さ = 7.88vw * 1.1 = 8.668vw → 半分 = 4.334vw */
  margin-top: 0;
  margin-bottom: calc(7.88vw * 1.1 / -2);
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 1;
}

.footer__main {
  background: var(--color-dark-gray);
  padding: 104px var(--side-pad) 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__left {
  display: flex;
  gap: 64px;
  align-items: center;
}

.footer__logo {
  height: 127px;
  width: auto;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  font-size: 18px;
  font-weight: 400;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  color: var(--color-bg);
  padding: 32px 120px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.footer__bottom {
  background: var(--color-black);
  padding: 24px;
  text-align: center;
}

.footer__bottom small {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  color: var(--color-white);
}

/* ============================================
   TABLET RESPONSIVE (769px - 1024px)
   Approx 80% scale of PC values
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --side-pad: 40px;
  }

  /* ---- Section Title Tablet ---- */
  .section-title--bebas {
    font-size: 128px; /* 160 * 0.8 */
  }

  .section-subtitle {
    font-size: 24px; /* 30 * 0.8 */
  }

  /* ---- Header Tablet ---- */
  .header {
    padding: 20px var(--side-pad);
  }

  .header__nav.pc-only {
    display: none !important;
  }

  .header__menu-trigger.sp-only {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    position: relative;
  }

  .header__menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: 0.3s;
  }

  .header__menu-trigger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .header__menu-trigger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__menu-trigger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* ---- Mobile Menu Tablet ---- */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(16, 16, 16, 0.5);
    backdrop-filter: blur(10px);
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    pointer-events: none;
  }

  .mobile-menu.is-active {
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .mobile-menu__nav a {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 500;
  }

  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .mobile-menu__cta {
    display: block;
    background: var(--color-white);
    color: var(--color-bg);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 32px;
  }

  /* ---- Hero Tablet ---- */
  .hero {
    padding-top: 110px;
  }

  .hero__text {
    gap: 32px;
    max-width: 600px;
  }

  .hero__title {
    font-size: 38px; /* 48 * 0.8 */
    line-height: 1.33;
  }

  .hero__desc {
    font-size: 15px;
  }

  /* ---- Works Tablet ---- */
  .hero__text {
    margin-bottom: 0;
  }

  .works {
    margin-top: 48px;
  }

  .works__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .works__card--small {
    align-self: stretch;
  }

  .works__link {
    gap: 18px;
  }

  .works__thumb {
    border-radius: 16px;
  }

  .works__thumb img {
    aspect-ratio: 1200 / 630;
  }

  .works__card--large .works__thumb img {
    aspect-ratio: 1200 / 630;
  }

  .works__company {
    font-size: 12px;
  }

  .works__name {
    font-size: 18px;
  }

  /* ---- Service Tablet ---- */
  .service__top {
    gap: 48px;
    margin-bottom: 64px;
  }

  .service__top {
    flex-direction: column;
    gap: 48px;
  }

  .service__top-left {
    flex: none;
    gap: 32px;
  }

  .service__feature-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
  }

  .feature-chip {
    padding: 20px;
    min-height: 80px;
  }

  .feature-chip span {
    font-size: 12px;
  }

  .service__catch {
    font-size: 38px; /* 48 * 0.8 */
  }

  .service__desc-block p {
    font-size: 15px;
  }

  .service__items {
    gap: 32px;
  }

  .service__item {
    flex-direction: column;
    gap: 32px;
    padding-top: 32px;
  }

  .service__item-content {
    flex: none;
    width: 100%;
    gap: 32px;
  }

  .service__item-num {
    font-size: 80px; /* 100 * 0.8 */
  }

  .service__item-title {
    font-size: 72px; /* 90 * 0.8 */
  }

  .service__item-text {
    font-size: 15px;
  }

  .service__item-image {
    border-radius: 16px;
  }

  /* ---- Feature Tablet ---- */
  .feature {
    padding: 120px 0 0 0;
  }

  .feature__inner {
    margin-bottom: 32px;
  }

  .feature__nav-btn {
    width: 48px;
    height: 48px;
  }

  .feature__slide {
    width: 448px; /* 560 * 0.8 */
    border-radius: 16px;
  }

  /* ---- FAQ Tablet ---- */
  .faq {
    padding: 64px 0;
  }

  .faq__inner {
    gap: 120px;
  }

  .faq__content {
    padding-top: 96px;
    gap: 32px;
  }

  .faq__question {
    padding: 20px 32px;
  }

  .faq__question-text {
    font-size: 15px;
    gap: 24px;
  }

  .faq__toggle {
    width: 50px;
    height: 50px;
  }

  .faq__answer p {
    padding: 0 32px 20px;
    font-size: 14px;
  }

  /* ---- Footer Tablet ---- */
  .footer__main {
    padding: 80px var(--side-pad) 48px;
  }

  .footer__left {
    gap: 48px;
  }

  .footer__logo {
    height: 100px;
  }

  .footer__nav a {
    font-size: 15px;
  }

  .footer__cta {
    padding: 26px 80px;
    font-size: 14px;
  }
}

/* ============================================
   SP RESPONSIVE (max-width: 768px)
   All px values → vw based on 375px base
   Formula: value / 375 * 100 vw
   ============================================ */
@media (max-width: 768px) {
  body.has-hero-bg {
    background-size: 250% auto;
  }

  .pc-only { display: none !important; }
  .sp-only { display: block; }

  :root {
    --side-pad: 5.333vw; /* 20/375 */
  }

  /* ---- Section Title SP ---- */
  .section-title--bebas {
    font-size: 21.333vw; /* 80/375 */
  }

  .section-subtitle {
    font-size: 4.8vw; /* 18/375 */
  }

  /* ---- Tag SP ---- */
  .tag {
    font-size: 2.933vw; /* 11/375 */
    padding: 2.133vw 4.267vw; /* 8/375, 16/375 */
  }

  /* ---- View All SP ---- */
  .view-all-btn {
    font-size: 3.2vw; /* 12/375 */
  }

  .view-all-btn--pill {
    padding: 3.733vw 8vw; /* 14/375, 30/375 */
    font-size: 3.2vw;
  }

  /* ---- Header SP ---- */
  .header {
    padding: 4.267vw; /* 16/375 */
  }

  .header__logo img {
    height: 6.4vw; /* 24/375 */
  }

  .header__menu-trigger.sp-only {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 8vw; /* 30/375 */
    height: 5.333vw; /* 20/375 */
    position: relative;
  }

  .header__menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: 0.3s;
  }

  .header__menu-trigger.is-active span:nth-child(1) {
    transform: translateY(2.4vw) rotate(45deg);
  }
  .header__menu-trigger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__menu-trigger.is-active span:nth-child(3) {
    transform: translateY(-2.4vw) rotate(-45deg);
  }

  /* ---- Mobile Menu ---- */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(16, 16, 16, 0.5);
    backdrop-filter: blur(10px);
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    pointer-events: none;
  }

  .mobile-menu.is-active {
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8vw; /* 30/375 */
  }

  .mobile-menu__nav a {
    font-family: var(--font-en);
    font-size: 5.333vw; /* 20/375 */
    font-weight: 500;
  }

  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6.4vw; /* 24/375 */
  }

  .mobile-menu__cta {
    display: block;
    background: var(--color-white);
    color: var(--color-bg);
    padding: 4.267vw 10.667vw; /* 16/375, 40/375 */
    border-radius: 2.133vw; /* 8/375 */
    font-weight: 700;
    font-size: 3.733vw; /* 14/375 */
    margin-top: 8vw;
  }

  /* ---- Hero SP ---- */
  .hero {
    padding-top: 26.667vw; /* 100/375 */
    padding-bottom: 0; /* 40/375 */
  }

  .hero__bg {
    height: 66.667vw; /* 250/375 */
  }

  .hero__content {
    padding: 0 var(--side-pad);
  }

  .hero__text {
    gap: 6.4vw; /* 24/375 */
    max-width: 100%;
    margin-bottom: 10.667vw; /* 40/375 */
  }

  .hero__title {
    font-size: 5.4vw; /* 24/375 */
    line-height: 1.5;
  }

  .hero__desc {
    font-size: 3.467vw; /* 13/375 */
    line-height: 1.8;
  }

  .hero__marquee {
    font-size: 7.88vw;
    margin-top: 10vw;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  /* ---- Works SP ---- */
  .works__grid {
    grid-template-columns: 1fr;
    gap: 8vw; /* 30/375 */
  }

  .works__card--large {
    order: -1;
  }

  .works__thumb {
    border-radius: 4.267vw; /* 16/375 */
  }

  .works__company {
    font-size: 3.2vw; /* 12/375 */
  }

  .works__name {
    font-size: 4.267vw; /* 16/375 */
  }

  .works__tags {
    gap: 2.133vw; /* 8/375 */
  }

  /* ---- Service SP ---- */
  .service {
    padding: 10vw 0 0; /* 50/375 */
  }

  .service__inner {
    padding: 0 var(--side-pad);
  }

  .service__top {
    flex-direction: column;
    gap: 10.667vw; /* 40/375 */
  }

  .service__top-left {
    flex: none;
    gap: 6.4vw; /* 24/375 */
  }

  .service__feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.667vw; /* 10/375 */
  }

  .feature-chip {
    padding: 4.267vw; /* 16/375 */
    border-radius: 4vw; /* 15/375 */
    min-height: 21.333vw; /* 80/375 */
  }

  .feature-chip span {
    font-size: 2.5vw; /* 12/375 */
  }

  .service__top-right {
    padding-top: 0;
    gap: 6.4vw; /* 24/375 */
  }

  .service__catch {
    font-size: 5.867vw; /* 22/375 */
  }

  .service__desc-block p {
    font-size: 3.733vw; /* 14/375 */
  }

  .service__items {
    gap: 8vw; /* 30/375 */
    margin-top: 10.667vw; /* 40/375 */
  }

  .service__item {
    flex-direction: column;
    gap: 5.333vw; /* 20/375 */
    padding-top: 5.333vw;
  }

  .service__item-content {
    flex: none;
    width: 100%;
    gap: 5.333vw; /* 20/375 */
  }

  .service__item-num {
    font-size: 13.333vw; /* 50/375 */
  }

  .service__item-title {
    font-size: 10.667vw; /* 40/375 */
  }

  .service__item-text {
    font-size: 3.733vw; /* 14/375 */
  }

  .service__item-image {
    width: 100%;
    border-radius: 4.267vw; /* 16/375 */
  }

  /* ---- Feature SP ---- */
  .feature {
    padding: 20vw 0 0 0; /* 50/375 */
  }

  .feature__inner {
    padding: 0 var(--side-pad);
    flex-direction: column;
    align-items: flex-start;
    gap: 5.333vw;
    margin-bottom: 6.4vw;
  }

  .feature__nav {
    gap: 2.667vw; /* 10/375 */
  }

  .feature__nav-btn {
    width: 10.667vw; /* 40/375 */
    height: 10.667vw;
  }

  .feature__carousel.swiper {
    max-width: 100%;
    padding: 0 var(--side-pad);
  }

  .feature__slide {
    width: 74.667vw; /* 280/375 */
    border-radius: 4vw; /* 15/375 */
  }

  .feature__footer {
    padding: 0 var(--side-pad);
    margin-top: 5.333vw;
  }

  /* ---- FAQ SP ---- */
  .faq {
    padding: 20vw 0; /* 50/375 */
  }

  .faq__inner {
    flex-direction: column;
    gap: 6.4vw; /* 24/375 */
    padding: 0 var(--side-pad);
  }

  .faq__content {
    padding-top: 0;
    gap: 6.4vw;
  }

  .faq__list {
    gap: 2.667vw; /* 10/375 */
  }

  .faq__item {
    border-radius: 4vw; /* 15/375 */
  }

  .faq__question {
    padding: 4.267vw 5.333vw; /* 16/375, 20/375 */
    gap: 2.667vw;
  }

  .faq__question-text {
    font-size: 3.467vw; /* 13/375 */
    gap: 2.667vw; /* 10/375 */
  }

  .faq__toggle {
    width: 8.533vw; /* 32/375 */
    height: 8.533vw;
  }

  .faq__toggle svg {
    width: 5.333vw; /* 20/375 */
    height: 5.333vw;
  }

  .faq__answer p {
    padding: 0 5.333vw 4.267vw;
    font-size: 3.467vw; /* 13/375 */
  }

  /* ---- Footer Marquee SP ---- */
  .footer-marquee {
    font-size: 7.88vw;
    margin-top: 0;
    margin-bottom: calc(7.88vw * 1.1 / -2);
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  /* ---- Footer SP ---- */
  .footer__main {
    flex-direction: column;
    gap: 8vw; /* 30/375 */
    padding: 13.333vw var(--side-pad) 8vw; /* 50/375, 30/375 */
    align-items: center;
  }

  .footer__left {
    flex-direction: column;
    gap: 5.333vw; /* 20/375 */
    text-align: center;
  }

  .footer__logo {
    height: 30vw; /* 60/375 */
  }

  .footer__nav a {
    font-size: 3.733vw; /* 14/375 */
  }

  .footer__cta {
    width: 100%;
    justify-content: center;
    padding: 4.267vw 8vw; /* 16/375, 30/375 */
    font-size: 3.733vw; /* 14/375 */
    border-radius: 2.133vw; /* 8/375 */
  }

  .footer__bottom {
    padding: 4.267vw; /* 16/375 */
  }

  .footer__bottom small {
    font-size: 2.667vw; /* 10/375 */
  }
}
