/* ==========================================================================
   JapanSauna LP - style.css
   WordPress組み込み想定の静的LP
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --color-gold: #b58b2a;
  --color-gold-hover: #d4a83a;
  --color-black: #000000;
  --color-charcoal: #1a1a1a;
  --color-gray-dark: #333333;
  --color-gray-mid: #666666;
  --color-gray-light: #f4f4f4;
  --color-white: #ffffff;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Abel", sans-serif;
  --container-max: 1120px;
  --header-height: 72px;
  --transition-base: 0.35s ease;
  --transition-fade: 0.8s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ja);
  font-weight: 400;
  color: var(--color-white);
  background: var(--color-black);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Abel: 英語・数字・価格 */
.font-en {
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.container {
  max-width: 95%;
  max-width: var(--container-max);
  /* padding: 50px 50px; */
  margin: 0 auto;
}

.pc-only { display: block; }
.sp-only { display: none; }

/* ---------- Section fade animation ---------- */
.section-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-fade), transform var(--transition-fade);
}

.section-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section labels & titles ---------- */
.section-label {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 100px;
}
.section-label--light {
  color: var(--color-gold);
}

.section-title {
  font-size: clamp(36px, 4vw, 46px);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.section-title--light {
  color: var(--color-white);
}

.section-title--dark {
  color: var(--color-black);
}

.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ---------- HERO CTA ---------- */
.hero-cta {
  padding: 50px 20px 90px;
    text-align: center;
}

.btn--hero-cta {
  width: min(100%, 640px);
  height: 86px;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 700;
  padding: 0 100px;
}

.btn--hero-cta .btn__icon {
  right: 42px;
  width: 34px;
  height: 34px;
}



/* ---------- CTA Button ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;
  padding: 14px 78px 14px 28px;

  border: 1px solid var(--color-gold);
  background: var(--color-gold);
  color: var(--color-white);
  font-weight: 500;
  white-space: nowrap;

  transition:
    background var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base);
}

.btn__icon {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);

  width: 28px;
  height: 28px;
  background: url("../images/next.svg") center / contain no-repeat;
  flex-shrink: 0;
}




.btn--case .btn__icon,
.btn--flow .btn__icon{
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}




.btn--cta:hover {
  background: transparent;
  color: var(--color-gold);
}

.btn--cta:hover .btn__icon {
  filter: invert(52%) sepia(47%) saturate(748%) hue-rotate(8deg) brightness(92%) contrast(89%);
}

.btn--hero {
  font-size: 15px;
  padding: 18px 36px;
  margin-top: 32px;
}

.btn--header {
  font-size: 16px;
  padding: 10px 64px 10px 30px;
  border-radius: 100px;
}

.btn--header .btn__icon {
  right: 22px;
}
.btn--plan {
  width: 100%;
  margin-top: 24px;
}
.btn--case,
.btn--flow {
  width: min(100%, 640px);
  height: 86px;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 700;
  padding: 0 100px;
}
.btn--submit {
  font-size: 15px;
  padding: 18px 48px;
  min-width: 280px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 120px;
  background: transparent;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 160px;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity .35s ease;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.48) 35%,
    rgba(0,0,0,.18) 70%,
    rgba(0,0,0,0) 100%
  );
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.site-header__inner{
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 60px;
}

.site-nav{
  display: flex;
  align-items: center;
  gap: 48px;
}

.site-nav__list{
  display: flex;
  align-items: center;
  gap: 36px;
}


.site-header__logo img {
  height: auto;

}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__list {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.site-nav__list a {
  font-size: 16px;
  font-weight: 500;
  transition: color var(--transition-base);
}

.site-nav__list a:hover {
  color: var(--color-gold);
}

.hamburger {
  flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  display: block;
  overflow: hidden;
  padding-top: var(--header-height);
}

p.hero__subcopy {
  font-size: 20px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero.png") center / cover no-repeat;
  z-index: 0;
  transform: scale(1.12);
  animation: heroZoom 4s ease-out forwards;
}
@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.28) 48%,
    rgba(0, 0, 0, 0.12) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: absolute;
  left: 0;
  bottom: clamp(32px, 8vh, 96px);
  z-index: 2;
  width: 100%;
  padding: 0 64px;
  display: flex;
  align-items: flex-end;
  gap: 25px;
}
.hero__achievement {
  width: 188px;
  height: 188px;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 90%);
  /* background: rgba(0, 0, 0, 0.72); */
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
}
span.hero__achievement-number {
  font-size: 32px;
}
.hero__achievement-small {
  font-size: 22px;
  letter-spacing: 0.08em;
}

.hero__achievement-num {
  font-size: 73px;
  line-height: 1;
  letter-spacing: 0.01em;
}
.hero__achievement-unit {
  font-size: 18px;
  margin-top: 2px;
}

.hero__copy {
  padding-bottom: 8px;
}
.hero__copy,
.hero__achievement {
  opacity: 0;
  transform: translateY(20px);

  animation: heroFadeUp 1.2s ease forwards;
  animation-delay: .5s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__title {
  font-size: clamp(46px, 4vw, 72px);
  font-weight: 300;
  line-height: 1.34;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
  color: var(--color-white);
}

.hero__lead {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}
/* ---------- Gold banner (SP) ---------- */
.gold-banner {
  background: var(--color-gold);
  padding: 20px;
  text-align: center;
}

.gold-banner p {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}

/* ---------- Value ---------- */
.why {
  background: var(--color-black);
  padding: 100px 0;
}

.why .section-title {
  color: var(--color-white);
}

.why__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.why__figure img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.why__item {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 16px;
  line-height: 2.2;
}
.why__check {
  flex-shrink: 0;
  width: 16px;
  height: auto;
  margin-top: 6px;
  object-fit: contain;
}



.value {
  background: radial-gradient(circle at 18% 30%, rgba(255,255,255,0.045), transparent 34%),
              linear-gradient(90deg, #030303 0%, #0c0c0c 55%, #1b1b1b 100%);
  padding: 92px 0 120px;
  color: #fff;
}

.value__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.value__heading {
  width: min(100%, 1120px);
  margin: 0 auto 90px;
  padding: 0 40px;
}

.value__title {
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.value__label {
  font-size: 26px;
  color: rgba(255,255,255,0.86);
  letter-spacing: 0.03em;
}

.value__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 98%;
  margin: auto;
  margin-bottom: 96px;
}

.value__image img {
  width: 100%;
  height: 455px;
  object-fit: cover;
}

/* =========================
   Value画像アニメーション
========================= */

.value.section-fade .value__images{
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 2.5s ease, transform 2.5s ease;
}

.value.section-fade.is-visible .value__images{
  opacity: 1;
  transform: translateX(0);
}

.value__list {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px 110px;
}

.value__item {
  position: relative;
}

.value__item-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.value__item-head img {
  width: 45px;
}
.value__icon {
  flex-shrink: 0;
  object-fit: contain;
}

.value__item h3 {
  font-size: 27px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .04em;
}

.value__item-text {
  display: flex;
  align-items: center;
  gap: 22px;
}

.value__arrow {
  width: 16px;
  height: auto;
  flex-shrink: 0;
  margin-top: 6px;
  opacity: .7;
}

.value__item p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: .04em;
  color: rgba(255,255,255,.78);
}

/* ----------REASON Intro ---------- */
.point-intro {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  text-align: left;
  flex-direction: row;
  overflow: hidden;
  background: #000;
}

.point-intro__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -120px;
  bottom: -120px;
  background: url("../images/Reason01.png") center center / cover no-repeat;
  z-index: 0;
  will-change: transform;
}

.point-intro__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      45deg,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.65) 20%,
      rgba(0,0,0,0.35) 45%,
      rgba(0,0,0,0.10) 70%,
      rgba(0,0,0,0) 100%
    );
  }
.point-intro__content {
  position: relative;
  z-index: 2;
  text-align: left;
  margin: unset;
  margin-left: 20px;
  width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
}
.point-intro .section-title {
  margin-bottom: 0;
}

/* ---------- REASON Detail ---------- */
/* ---------- REASON Detail ---------- */
.reason-detail {
  background: linear-gradient(90deg, #060606 0%, #101010 55%, #1d1d1d 100%);
  padding: 120px 0 150px;
  color: #fff;
}

.reason-detail__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 36px;
}

.reason-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 115px;
  align-items: center;
  margin-bottom: 145px;
}

.reason-block:last-child {
  margin-bottom: 0;
}

.reason-block__text {
  max-width: 560px;
}

.reason-block__head {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 30px;
}

.reason-block__badge {
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: .04em;
}

.reason-block__badge span {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  opacity: .8;
}

.reason-block__head h3 {
  font-size: clamp(30px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .04em;
}

.reason-block__desc {
  font-size: 17px;
  line-height: 2.15;
  letter-spacing: .04em;
  color: rgba(255,255,255,.86);
}

.reason-block__media {
  position: relative;
}

.reason-media__large {
  width: 100%;
  object-fit: cover;
}

.reason-media__main {
  object-fit: cover;
}

.reason-media__sub {
  position: absolute;
  object-fit: cover;
  z-index: 2;
}

.reason-media--overlap-left .reason-media__sub {
  left: -120px;
  bottom: -120px;
}

.reason-media--overlap-right .reason-media__sub {
  right: -70px;
  bottom: -70px;
}

.reason-block--02 {
  grid-template-columns: .95fr 1.05fr;
}
img.reason-media__sub {
  width: 60% !important;
}
.reason-block--03 {
  margin-top: 40px;
}
section#point img {
  width: 80%;
}

/* ---------- CASE ---------- */
.case {
  background: linear-gradient(90deg, #060606 0%, #101010 55%, #1d1d1d 100%);
  padding: 40px 0 150px;
  color: #fff;
}

.case__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 20px;
}

.case__heading {
  margin-bottom: 82px;
  padding-left: 74px;
}

.case__title {
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.case__label {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.03em;
}

.case__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.case-card {
  display: grid;
  grid-template-columns: 520px 1fr;
  background: #fff;
  color: #111;
  min-height: 350px;
}

.case-card__image {
  overflow: hidden;
}

.case-card__image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.case-card__body {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  padding: 50px 50px;
}

.case-card__badge img {
  width: 100px;
  height: auto;
  margin: 0 auto;
}

.case-card__text h3 {
  font-size: clamp(30px, 2vw, 42px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.case-card__text p {
  font-size: 16px;
  /* line-height: 1.8; */
  /* letter-spacing: .04em; */
  line-height: 2.15;
  letter-spacing: .04em;
}
.case-card__text span {
  color: #e53935;
  font-weight: 700;
}

.case__note {
  margin: 20px 0 0 72px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.86);
}

.case__cta {
  text-align: center;
  margin-top: 110px;
}

.btn--case {
  width: min(100%, 640px);
  height: 86px;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 700;
  gap: 42px;
}


.case-badge {
  width: 150px;
  height: 150px;
  border: 1px solid #111;
  border-radius: 50%;

  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}
.case-badge__title-img {
  position: absolute;

  top: 10px;
  left: 50%;

  transform: translateX(-50%);

  width: 105px;
  height: auto;

  z-index: 2;
}
.case-badge__area {
  font-size: 15px;
  line-height: 1;
  margin-bottom: 10px;
}
.case-badge__type {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 500;
}
.case-badge__title-img {
  top: -15px;
}
/* ---------- LINEUP ---------- */
/* ---------- PRICE ---------- */
.price {
  background: #f4f4f4;
  color: #111;
  padding: 135px 0 145px;
}

.price__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 36px;
}

.price__heading {
  margin-bottom: 58px;
  padding-left: 56px;
}

.price__title {
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.price__label {
  font-size:26px;
  letter-spacing: 0.03em;
}

.price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  background: #fff;
}

.price-card__head {
  height: 155px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-card__head--dark {
  background: #666;
}

.price-card__head--gray {
  background: #aaa;
}

.price-card__head--gold {
  background: #b58b00;
}

.price-card__en {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 5px;
}

.price-card__head h3 {
  font-size: clamp(30px, 2vw, 42px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: .04em;
    margin-bottom: 5px;
}

.price-card__head p:not(.price-card__en) {
  font-size: 20px;
  line-height: 1.4;
}

.price-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.price-card__body {
  min-height: 285px;
  padding: 42px 48px 52px;
  text-align: center;
}

.price-card__price {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.price-card__tax {
  font-size: 14px;
  margin-bottom: 34px;
}

.price-card__body ul {
  margin-top: 34px;
  text-align: left;
}

.price-card__body li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.9;
}

.price-card__body li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.9;
}

.price-card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;

  width: 14px;
  height: 14px;

  background: url("../images/ei_check.svg") center center / contain no-repeat;
}

.price__note {
  margin-top: 48px;
  padding-left: 56px;
  font-size: 14px;
  line-height: 1.8;
}

/* ---------- FLOW ---------- */
.flow {
  background: #5f5f5f;
  color: #fff;
  padding: 150px 0 150px;
}

.flow__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 48px;
}

.flow__heading {
  margin-bottom: 70px;
  padding-left: 56px;
}

.flow__title {
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.flow__label {
  font-size: 26px;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}

.flow__catch {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: clamp(28px, 2vw, 42px);
  line-height: 1.4;
  letter-spacing: .04em;
}

.flow__catch img {
  width: 24px;
  height: auto;
  opacity: .85;
}

.flow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.flow-step {
  min-height: 335px;
  border: 1px solid rgba(255,255,255,.8);
  padding: 42px 20px 36px;
  text-align: center;
}

.flow-step__num {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
}

.flow-step__line {
  width: 54px;
  height: 1px;
  background: rgba(255,255,255,.8);
  margin: 0 auto 24px;
}

.flow-step__icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0 auto 28px;
}

.flow-step h3 {
  font-size: 17px;
    font-weight: 400;
    /* letter-spacing: .04em; */
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.flow-step p:not(.flow-step__num) {
  text-align: left;
  font-size: 14px;
  line-height: 2;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
}

.flow__cta {
  margin-top: 120px;
  text-align: center;
}

.btn--flow {
  width: min(100%, 640px);
  height: 86px;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 700;
  gap: 42px;
}

/* ---------- FAQ ---------- */
/* ---------- FAQ ---------- */
.faq {
  background: #fff;
  color: #111;
  padding: 140px 0 150px;
}

.faq__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 56px;
}

.faq__heading {
  margin-bottom: 70px;
}

.faq__title {
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.faq__label {
  font-size: 26px;
    letter-spacing: 0.03em;
    margin-bottom: 30px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 88px;
  row-gap: 84px;
}

.faq-item {
  color: #111;
}

.faq-item__q {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #cfcfcf;
}

.faq-item__q span,
.faq-item__a span {
  font-family: var(--font-en);
  font-size: 31px;
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item__q p {
  font-size: 21px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: .04em;
}

.faq-item__a {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.faq-item__a span {
  color: var(--color-gold);
}

.faq-item__a p {
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: .04em;
  color: #222;
}

/* ---------- FAQ Parallax Image ---------- */
.faq-parallax {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #000;
}

.faq-parallax__bg {
  position: absolute;
    inset: -80px 0;
    background-image: url(../images/saunaimg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

/* ---------- Contact visual ---------- */
.contact-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ---------- CONTACT Form ---------- */
.contact {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 125px 0 125px;
}

.contact__bg{
  position:absolute;
  left:50%;
  bottom:-120px;
  transform:translateX(-50%);

  width:1400px;
  height:900px;

  background:url("../images/foot.png") center center / contain no-repeat;

  opacity:1;
  z-index:0;
}

.contact__overlay{
  display:none;
}

.contact__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 48px;
}

.contact__heading {
  text-align: center;
  margin-bottom: 68px;
}

.contact__title {
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 25px;
}

.contact__lead {
  font-size: 17px;
  line-height: 2;
  letter-spacing: .05em;
  color: rgba(255,255,255,.9);
}

.contact-form {
  width: 100%;
  margin: 0 auto;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 40px;
}

.contact-form__field {
  min-width: 0;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field label {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  height: 38px;
  padding: 0 16px;
  font-family: var(--font-ja);
  font-size: 16px;
  color: #fff;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 3px;
}

.contact-form__field select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.75) 50%),
    linear-gradient(135deg, rgba(255,255,255,.75) 50%, transparent 50%),
    rgba(0,0,0,.38);
  background-position:
    calc(100% - 18px) 16px,
    calc(100% - 12px) 16px,
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.contact-form__field textarea {
  height: 150px;
  padding: 18px 16px;
  resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255,255,255,.38);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.contact-form__submit {
  text-align: center;
  margin-top: 82px;
}

.contact-submit{
  position: relative;
  width: min(100%, 460px);
  height: 90px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: #b58b00;
  border: 1px solid #b58b00;
  color: #fff;

  font-size: 24px;
  font-weight: 700;
  letter-spacing: .12em;

  transition: background .35s ease, color .35s ease, border-color .35s ease;
}

.contact-submit__icon{
  position:absolute;
  right:32px;
  top:50%;
  transform:translateY(-50%);

  width:36px;
  height:36px;
  border:3px solid currentColor;
  border-radius:50%;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
  line-height:1;
}

.contact-submit:hover {
  background: transparent;
  color: #b58b00;
  border-color: #b58b00;
}

.contact-submit:hover {
  background: transparent;
  color: #b58b00;
}



.site-footer {
  position: relative;
  z-index: 3;
}
.contact-form__field input,
  .contact-form__field select,
  .contact-form__field textarea {
    font-size: 16px !important;
  }
/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 0 32px;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.site-footer__logo img {
  width: 140px;
  margin: 0 auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
}

.site-footer__nav a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
}

.site-footer__nav a:hover {
  color: var(--color-gold);
}

.site-footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}
html,
body {
  overflow-x: hidden;
}

.point-intro__content {
  width: min(100%, 1280px);
  padding-left: 20px;
  padding-right: 20px;
}

.reason-detail {
  overflow: hidden;
}

.site-header__inner {
  padding-left: clamp(20px, 4vw, 60px);
  padding-right: clamp(20px, 4vw, 60px);
}
.btn--hero-sp {
  display: none;
}
button#hamburger {
  display: none;
}

@media (max-width: 1000px) {

  .case-card {
    grid-template-columns: 1fr;
  }

  .case-card__image {
    width: 100%;
  }

  .case-card__image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    min-height: auto;
  }



  .case-badge {
    margin: 0 auto;
  }

  .case-card__text {
    text-align: left;
  }

  .case-card__text h3 {
    font-size: 28px;
  }



}


/* ==========================================================================
   Responsive: 1024x以下（iPad）
   ========================================================================== */


   @media (max-width: 1180px) {

    .pcbr{
      display: none;
    }


  .site-nav__list a {
    font-size: 12px;
    font-weight: 500;
    transition: color var(--transition-base);
}


.site-header__inner {
  padding: 18px 28px !important;
}

.site-header__logo img {
  width: 250px !important;
}

.site-nav {
  gap: 20px !important;
}

.site-nav__list {
  gap: 18px !important;
}

.site-nav__list a {
  font-size: 13px !important;
  white-space: nowrap !important;
}

.btn--header {
  font-size: 13px !important;
  padding: 9px 48px 9px 22px !important;
}

.btn--header .btn__icon {
  right: 18px !important;
  width: 22px !important;
  height: 22px !important;
}

.site-header {
  height: 76px !important;
}

.site-header__inner {
  padding: 40px 40px !important;
}

.hamburger {
  display: flex !important;
}

.site-nav {
  position: fixed !important;
  top: 0 !important;
  right: -100% !important;
  width: 100% !important;
  max-width: 360px !important;
  height: 100vh !important;
  padding: 100px 32px 32px !important;
  background: rgba(0, 0, 0, 0.97) !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 32px !important;
  transition: right .35s ease !important;
}

.site-nav.is-open {
  right: 0 !important;
}

.site-nav__list {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 24px !important;
}

.site-nav__list a {
  font-size: 20px !important;
}

.btn--header {
  width: 100% !important;
  justify-content: center !important;
  font-size: 15px !important;
}



}

/* ==========================================================================
   Responsive: 768px以下（SP）
   ========================================================================== */
@media (max-width: 768px) {
  .pc-only { display: none !important; }
  .sp-only { display: block; }

  .container {
    padding: 0 20px;
  }

  .hamburger {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 26px;
    height: 29px;
    z-index: 1001;
}

  .section-title {
    margin-bottom: 32px;
    font-size: 22px;
  }

  /* Header */
  .site-header__logo img {
    width: 140px;
  }

  .hamburger {
    display: flex;
  }
  .site-header__inner {
    padding: 20px 30px !important;
}
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-height) + 32px) 32px 32px;
    background: rgba(0, 0, 0, 0.97);
    transition: right var(--transition-base);
  }
  .site-header__logo img {
    width: 130px !important;
}
  .site-nav.is-open {
    right: 0;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-bottom: 32px;
  }

  .site-nav__list a {
    font-size: 23px;
    font-weight: 400;
}

  .btn--header {
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero {
    height: auto;
    min-height: 580px;
    padding-top: 0;
  }
  .btn--hero-sp {
    display: inline-flex;
    width: 185px;
    height: 42px;
    margin-top: 18px;
    border-radius: 999px;
    font-size: 12px;
    padding: 0 42px 0 18px;
  }

  .btn--hero-sp .btn__icon {
    right: 14px;
    width: 18px;
    height: 18px;
  }
  .hero__bg {
    background-image: url("../images/saunaimg_SP.png");
    background-position: center top;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.78) 72%,
      rgba(0, 0, 0, 0.9) 100%
    );
  }

  .hero__inner {
    padding: 0 20px 56px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero__achievement {
    width: 132px;
    height: 132px;
  }

  .hero__achievement-small {
    font-size: 13px;
  }

  .hero__achievement-num {
    font-size: 46px;
  }

  .hero__achievement-unit {
    font-size: 13px;
  }

  .hero__title {
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin-bottom: 18px;
  }

  .hero__lead {
    font-size: 13px;
    line-height: 1.9;
  }

  .hero {
    min-height: 640px;
  }

  .hero__inner {
    bottom: 32px;
  }

  .hero__achievement {
    width: 150px;
    height: 150px;
  }

  .hero__achievement-num {
    font-size: 64px;
  }

  .hero__achievement-small {
    font-size: 16px;
  }

  .hero__title {
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.35;
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .btn--hero {
    width: 100%;
    max-width: 320px;
  }


  .site-header {
    height: 76px;
  }

  .site-header__inner {
    padding: 20px 28px;
  }

  .site-header__logo img {
    width: 150px;
  }



  .hero__bg {
    background-image: url("../images/hero_sp.png");
    background-position: center top;
    background-size: cover;
  }

  .hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.35) 0%,
        rgba(0,0,0,.38) 45%,
        rgba(0,0,0,.18) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0,0,0,.58) 0%,
        rgba(0,0,0,.12) 100%
      );
  }

  .hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 90px 28px 28px;
    display: block;
  }

  .hero__copy {
    padding: 0;
    max-width: 330px;
  }

  p.hero__subcopy {
    font-size: 13px;
    letter-spacing: .04em;
    margin-bottom: 2px;
}

  .hero__title {
    font-size: 29px;
    line-height: 1.4;
    letter-spacing: .04em;
    margin-bottom: 14px;
  }

  .hero__lead {
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: .03em;
  }

  .hero .btn--hero,
  .hero__copy .btn {
    width: 210px;
    height: 42px;
    margin-top: 18px;
    border-radius: 999px;
    font-size: 12px;
    padding: 0 42px 0 18px;
  }

  .hero__achievement {
    position: absolute;
    right: 59%;
        bottom: -46%;
        width: 130px;
        height: 130px;
  }

  .hero__achievement-small {
    font-size: 13px;
  }

  .hero__achievement-num {
    font-size: 52px;
  }

  span.hero__achievement-number {
    font-size: 20px;
  }
  /* VALUE */
  .why {
    padding: 60px 0;
  }

  .why__images {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why__figure img {
    height: 220px;
  }

  /* REASON intro */
 
  .point-intro {

    min-height: 250px;

}
.point-intro__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -55px;
  bottom: 5px;
  background: url(../images/Reason01.png) center center / cover no-repeat;
  z-index: 0;
  will-change: transform;
}

    .reason-detail {
      padding: 70px 0 90px;
    }
  
    .reason-detail__inner {
      padding: 0 20px;
    }
  
    .reason-block,
    .reason-block--02 {
      grid-template-columns: 1fr;
      gap: 36px;
      margin-bottom: 88px;
    }
  
    .reason-block--02 .reason-block__media {
      order: 2;
    }
  
    .reason-block--02 .reason-block__text {
      order: 1;
    }
  
    .reason-block__head {
      gap: 18px;
      margin-bottom: 28px;
    }
  
    .reason-block__badge {
      width: 72px;
      height: 72px;
      font-size: 22px;
    }
  
    .reason-block__badge span {
      font-size: 10px;
    }
  
    .reason-block__head h3 {
      font-size: 24px;
      line-height: 1.6;
    }
  
    .reason-block__desc {
      font-size: 13px;
      line-height: 2;
    }
  
    .reason-media__main,
    .reason-media__large {
      max-width: 100%;
      height: auto;
    }
  
    .reason-media__sub {
      width: 54%;
      height: auto;
    }
  
    .reason-media--overlap-left .reason-media__sub {
      left: auto;
      right: 0;
      bottom: -36px;
    }
  
    .reason-media--overlap-right .reason-media__sub {
      right: 0;
      bottom: -36px;
  
  }
  .reason-block--02 .reason-block__media {
    display: flex !important;
    justify-content: flex-end !important;
  }

  .reason-block--02 .reason-media__large {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .value {
    padding: 0px 0 78px;
  }

  .value__heading {
    margin-bottom: 42px;
    padding: 0 20px;
  }

  .value__title {
    font-size: 28px;
    line-height: 1.55;
  }

  .value__label {
    font-size: 18px;
  }

  .value__images {
    grid-template-columns: unset;
    gap: 10px;
    width: 95%;
    margin-bottom: 56px;
  }

  .value__image img {
    height: 200px;
  }

  .value__list {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 0 20px;
  }

  .value__item-head{
    gap:12px;
    margin-bottom:12px;
  }

  .value__icon{
    height: 40px;
  }

  .value__item h3{
    font-size:22px;
  }

  .value__item-text{
    gap:12px;
  }

  .value__arrow{
    width:12px;
    margin-top:4px;
  }

  .value__item p{
    font-size:12px;
    line-height:1.9;
  }
  /* CASE */
  .case {
    padding: 72px 20px 80px;
    background: linear-gradient(90deg, #111 0%, #252525 100%);
  }
  
  .case__inner {
    padding: 0;
  }
  
  .case__heading {
    padding-left: 0;
    margin-bottom: 58px;
  }
  
  .case__title {
    font-size: 28px;
    line-height: 1.55;
    margin-bottom: 6px;
    
  }
  .case-card__text h3 {
    font-size: 20px;
}
  .case__label {
    font-size: 22px;
  }
  
  .case__list {
    gap: 70px;
  }
  
  .case-card {
    display: block;
    min-height: 0;
    background: #fff;
  }
  
  .case-card__image img {
    width: 100%;
    height: 197px;
    min-height: 0;
    object-fit: cover;
  }
  
  .case-card__body {
    display: grid;
    grid-template-columns: 102px 1fr;
    gap: 15px;
    align-items: start;
    padding: 24px 30px 38px;
  }
  
  .case-badge {
    width: 102px;
    height: 102px;
  }
  
  .case-badge__title-img {
    width: 78px;
    top: -10px;
  }
  
  .case-badge__area {
    font-size: 11px;
    margin-bottom: 7px;
  }
  
  .case-badge__type {
    font-size: 18px;
    line-height: 1.25;
  }
  
  .case-card__text h3 {
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: .04em;
  }
  
  .case-card__text p {
    grid-column: 1 / -1;
    font-size: 14px;
    line-height: 2;
    letter-spacing: .04em;
  }
  
  .case-card__body .case-card__text {
    display: contents;
  }
  
  .case__note {
    margin: 34px 0 0;
    font-size: 11px;
    line-height: 2;
  }
  
  .case__cta {
    margin-top: 58px;
  }
  
  .btn--case {
    width: 100%;
    height: 54px;
    font-size: 15px;
    padding: 0 58px 0 28px;
  }
  
  .btn--case .btn__icon {
    right: 18px;
    width: 20px;
    height: 20px;
  }

  .case-card__badge img {
    width: 69px;
    height: auto;
    margin: 0 auto;
}

  /* LINEUP */
 
    .price {
      padding: 70px 0 80px;
    }
    .price-card__body ul {
      margin-top: unset;
      text-align: left;
  }
  .price-card__tax {
    font-size: 14px;
    margin-bottom: 20px;
}
    .price__inner {
      padding: 0 20px;
    }
  
    .price__heading {
      padding-left: 0;
      margin-bottom: 36px;
    }
  
    .price__title {
      font-size: 28px;
    line-height: 1.55;
    }
  
    .price__label {
      font-size: 18px;
    }
  
    .price__grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  
    .price-card__head {
      height: 130px;
    }
  
    .price-card__head h3 {
      font-size: 28px;
    }
  
    .price-card__head p:not(.price-card__en) {
      font-size: 18px;
    }
  
    .price-card__img {
      height: 190px;
    }
  
    .price-card__body {
      min-height: auto;
      padding: 32px 28px 40px;
    }
  
    .price-card__price {
      font-size: 28px;
    }
  
    .price-card__body li {
      font-size: 14px;
    }
  
    .price__note {
      padding-left: 0;
      margin-top: 32px;
      font-size: 12px;
    }
   
 
  /* FLOW */
  .flow {
    background: #5f5f5f;
    color: #fff;
    padding: 86px 17px 96px;
  }

  .flow__inner {
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .flow__heading {
    padding-left: 0;
    margin-bottom: 58px;
  }

  .flow__title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: .04em;
    margin-bottom: 16px;
  }

  .flow__label {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 32px;
  }

  .flow__catch {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 25px;
    line-height: 1.5;
    letter-spacing: .04em;
  }

  .flow__catch img {
    width: 13px;
    height: auto;
  }

  .flow__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 112px 1fr;
    grid-template-areas:
      "icon head"
      "icon title"
      "icon text";
    column-gap: 26px;
    align-items: center;
  
    padding: 30px 22px;
    border: 1px solid rgba(255,255,255,.9);
    text-align: left;
  }
  
  .flow-step__icon {
    grid-area: icon;
    width: 58px;
    height: 58px;
    margin: 0 auto;
  }
  
  .flow-step__num {
    grid-area: head;
    display: inline-flex;
    align-items: center;
    gap: 14px;
  
    font-size: 18px;
    line-height: 1;
    margin: 0 0 8px;
  }
  
  .flow-step__line {
    grid-area: head;
    width: 58px;
    height: 1px;
    margin: 0 0 8px 76px;
    background: rgba(255,255,255,.9);
  }
  
  .flow-step h3 {
    grid-area: title;
    font-size: 22px;
    line-height: 1.35;
    margin: 0 0 14px;
  }
  
  .flow-step p:not(.flow-step__num) {
    grid-area: text;
    font-size: 14px;
    line-height: 2;
  }

  .flow__cta {
    margin-top: 54px;
    text-align: center;
  }

  .btn--flow {
    width: 100%;
    height: 54px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    padding: 0 54px 0 28px;
  }

  .btn--flow .btn__icon {
    right: 20px;
    width: 20px;
    height: 20px;
  }


  .flow {
    background: #5f5f5f !important;
    padding: 86px 17px 96px !important;
  }

  .flow__inner {
    width: 100% !important;
    padding: 0 !important;
  }

  .flow__heading {
    padding-left: 0 !important;
    margin-bottom: 58px !important;
  }

  .flow__title {

    font-size: 28px !important;
    font-weight: 400 !important;
    margin-bottom: 16px !important;
  }

  .flow__label {
    font-size: 22px !important;
    margin-bottom: 32px !important;
  }

  .flow__catch {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 25px !important;
    line-height: 1.5 !important;
  }

  .flow__catch img {
    width: 13px !important;
  }

  .flow__steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .flow-step {
    display: grid !important;
    grid-template-columns: 112px 1fr !important;
    grid-template-areas:
      "icon num"
      "icon title"
      "icon text" !important;
    align-items: center !important;
    min-height: 186px !important;
    padding: 31px 28px !important;
    border: 1px solid rgba(255,255,255,.9) !important;
    text-align: left !important;
  }

  .flow-step__icon {
    grid-area: icon !important;
    width: 58px !important;
    height: 58px !important;
    margin: 0 auto !important;
  }

  .flow-step__num {
    grid-area: num !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 18px !important;
    line-height: 1 !important;
    margin: 0 0 8px !important;
  }

  .flow-step__num::after {
    content: "" !important;
    width: 58px !important;
    height: 1px !important;
    background: rgba(255,255,255,.9) !important;
    display: block !important;
  }

  .flow-step__line {
    display: none !important;
  }

  .flow-step h3 {
    grid-area: title !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    margin: 0 0 14px !important;
  }

  .flow-step p:not(.flow-step__num) {
    grid-area: text !important;
    font-size: 14px !important;
    line-height: 2 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .flow__cta {
    margin-top: 54px !important;
    text-align: center !important;
  }

  .btn--flow {
    width: 100% !important;
    height: 54px !important;
    border-radius: 999px !important;
    font-size: 15px !important;
    padding: 0 54px 0 28px !important;
  }

  .btn--flow .btn__icon {
    right: 20px !important;
    width: 20px !important;
    height: 20px !important;
  }

  /* FAQ accordion (SP) */
  .faq {
    padding: 70px 0 80px;
  }
  
  .faq__inner {
    padding: 0 24px;
  }
  
  .faq__heading {
    margin-bottom: 44px;
  }
  
  .faq__title {
    font-size: 28px;
    line-height: 1.55;
    margin-bottom: 12px;
  }
  
  .faq__label {
    font-size: 18px;
  }
  
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  
  .faq-item {
    background: transparent;
  }
  
  .faq-item__q {
    background: transparent;
    color: #111;
    padding: 0 0 18px;
    margin-bottom: 20px;
    gap: 16px;
    cursor: default;
  }
  
  .faq-item__q span,
  .faq-item__a span {
    font-size: 24px;
  }
  
  .faq-item__q p {
    color: #111;
    font-size: 16px;
  }
  
  .faq-item__a {
    display: flex;
    padding: 0;
    background: transparent;
    color: #111;
    gap: 16px;
  }
  
  .faq-item__a p {
    color: #222;
    font-size: 13px;
    line-height: 1.9;
  }
  
  .faq-parallax {
    height: 280px;
  }
  
  .faq-parallax__bg {
    inset: 0;
    background-attachment: scroll;
    background-position: center;
  }

  .faq-parallax {
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    background: #000;
  }

  .faq-parallax__bg {
    position: static !important;
        width: 100% !important;
        height: 220px !important;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        margin-bottom: 50px;
  }

  /* Contact */
  .contact {
    padding: 0px 0 32px;
  }
  
  .contact__bg {
    width: 100%;
    height: 520px;
    opacity: .45;
  }
  
  .contact__inner {
    padding: 0 24px;
  }
  
  .contact__heading {
    margin-bottom: 44px;
  }
  
  .contact__title {
    font-size: 28px;
    line-height: 1.55;
        text-align: center;
  }
  
  .contact__lead {
    font-size: 11px;
        line-height: 2;
        text-align: center;
  }
  
  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  
  .contact-form__field--empty {
    display: none;
  }
  
  .contact-form__field label {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .contact-form__field input,
  .contact-form__field select {
    height: 42px;
    font-size: 13px;
  }
  
  .contact-form__field textarea {
    height: 140px;
    font-size: 13px;
  }
  
  .contact-form__submit {
    margin-top: 42px;
  }
  
  .contact-submit {
    width: 100%;
    height: 64px;
    font-size: 17px;
    gap: 32px;
  }
  
  .contact-submit__icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
    border-width: 2px;
  }

  .hero-cta {
    padding: 56px 20px 64px;
  }
  
  .btn--hero-cta {
    width: 100%;
    height: 58px;
    font-size: 16px;
    padding: 0 72px 0 28px;
  }
  
  .btn--hero-cta .btn__icon {
    right: 22px;
    width: 28px;
    height: 28px;
  }

  .flow-step {
    grid-template-columns: 70px 1fr !important;
    grid-template-areas:
      "icon head"
      "icon text" !important;
    align-items: center !important;
    padding: 36px 28px !important;
  }

  .flow-step__icon {
    grid-area: icon !important;
    width: 64px !important;
    height: 64px !important;
    margin: 0 auto !important;
  }

  .flow-step__num {
    grid-area: head !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 18px !important;
    line-height: 1 !important;
    margin: 0 !important;
    width: auto !important;
    flex-direction: column;
    align-content: space-between;
    flex-wrap: wrap;
}

.flow-step__num::after {
  content: "" !important;
  display: block !important;
  width: 58px !important;
  height: 1px !important;
  background: rgba(255,255,255,.9) !important;
}

.flow-step h3 {
  grid-area: head !important;
  align-self: center !important;
  justify-self: start !important;
  margin: 0 0 0 40% !important;
  font-size: 20px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
}

.flow-step p:not(.flow-step__num) {
  grid-area: text !important;
  margin-top: 20px !important;
  font-size: 14px !important;
  line-height: 2 !important;
}


}



  

 


