.new-top-content {
  --ink: #1f2f2f;
  --deep: #333;
  --sage: #b4a16d;
  --pale: #eaf1ed;
  --cream: #e9e9e9;
  --line: #dce3de;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #8da397, #d8bca7);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.new-top-content {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.045em;
  -webkit-font-smoothing: antialiased;
}

/* main {
  overflow: hidden;
} */

.new-top-content a {
  text-decoration: none;
}

.new-top-content img {
  display: block;
  max-width: 100%;
}

.new-top-content h1,
.new-top-content h2,
.new-top-content h3,
.new-top-content p {
  margin-top: 0;
  border:none;
}
.new-top-content p {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
}
section{
  margin: 0;
}
p::after{
  border:none;
}
.new-top-content section[id] {
  scroll-margin-top: 82px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  display: grid;
  grid-template-columns: 130px 1fr 210px;
  align-items: stretch;
  padding-left: 38px;
  background: rgba(255, 255, 255, 0.96);
  transition: height 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(36, 53, 45, 0.09);
  backdrop-filter: blur(14px);
}
.logo {
  width: 55px;
  height: 55px;
  margin-top: 20px;
}
.logo img {
  width: 55px;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 34px);
  padding: 0 32px;
}

.site-header nav a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  background: #b4a16d;
  font-size: 13px;
  font-weight: 700;
}

.header-cta span,
.button span,
.outline-button span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.header-cta:hover span,
.button:hover span,
.outline-button:hover span {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(520px, 45%) 1fr;
  background: var(--cream);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 20px 64px max(42px, calc((100vw - 1160px) / 2));
  background: linear-gradient(90deg, var(--cream) 78%, rgba(251, 248, 242, 0));
}

.hero-copy > * {
  opacity: 0;
  animation: hero-copy-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy > :nth-child(1) {
  animation-delay: 0.08s;
}
.hero-copy > :nth-child(2) {
  animation-delay: 0.18s;
}
.hero-copy > :nth-child(3) {
  animation-delay: 0.31s;
}
.hero-copy > :nth-child(4) {
  animation-delay: 0.43s;
}
.hero-copy > :nth-child(5) {
  animation-delay: 0.54s;
}
.hero-copy > :nth-child(6) {
  animation-delay: 0.62s;
}
.hero-copy > :nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
    margin-bottom: 0px;
    color: var(--sage);
    font-size: 17px;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.14em;
    margin-left: 0;
}

.hero-kicker {
  margin-bottom: 10px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(32px, 2.15vw, 42px);
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
  letter-spacing: 0.065em;
}

.hero-description {
  margin-bottom: 29px;
  font-size: 15px;
  line-height: 2;
  text-align: left;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 34px;
  border: 1px solid #b4a16d;
  transition: color 0.2s ease, background 0.2s ease;
}

.button-dark {
  width: min(360px, 100%);
  color: #fff;
  background: #b4a16d;
  font-weight: 700;
}

.button-dark:hover,
.button-dark:focus-visible {
  color: #b4a16d;
  background: #fff;
}

.button-offer {
  width: min(360px, 100%);
  margin: 0 0 8px;
  color: #b4a16d;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 600!important;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.hero-note {
  width: min(360px, 100%);
  margin: 12px 0 0;
  text-align: center;
  font-size: 10px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251, 248, 242, 0.65),
    transparent 23%
  );
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  animation: hero-image-in 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 48px));
  min-height: 105px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 12px;
  margin: 20px auto 0;
  padding: 14px 42px;
  border-radius: 7px;
  background-color: #f3f3f3;
  isolation: isolate;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.trust-strip__icon {
  width: 82px;
  height: 82px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid #536158;
  border-radius: 50%;
  background: #fff;
}

.trust-strip__icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.trust-strip__text {
  display: flex;
  flex-direction: column;
  color: #111;
  line-height: 1.25;
}

.trust-strip__text b {
  margin-bottom: 4px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
}

.trust-strip__text strong {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
}

.trust-strip__text strong em {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  font-style: normal;
}

.trust-strip__text small {
  margin-top: 2px;
  font-size: 8px;
  white-space: nowrap;
}

.trust-strip__text .trust-strip__medium {
  font-size: 18px;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 64px;
  text-align: center;
}

.section-heading .section-en {
  margin-bottom: 8px;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(25px, 2.3vw, 35px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.section-heading > p:last-child:not(.section-en) {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reason-card {
  position: relative;
  padding: 22px 18px 18px;
  border-radius: 8px;
  background: radial-gradient(
    circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(234, 241, 237, 0.88),
    transparent 180px
  );
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(38, 54, 46, 0.08);
}

.reason-card img {
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.reason-card h3 {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.reason-card p {
  margin-bottom: 0;
  text-align: left;
  font-size: 13px;
  line-height: 2;
}

.journey-banner {
  position: relative;
  height: 515px;
  overflow: hidden;
  background: #edf0ee;
}

.journey-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.journey-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.13);
}

.journey-banner > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -15px;
  left: 0;
  text-align: center;
}

.journey-banner p {
  margin-bottom: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  letter-spacing: 0.09em;
}

.journey-banner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7.2vw, 110px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.fit-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 122px max(48px, calc((100vw - 1120px) / 2)) 152px;
  background: var(--cream);
}

.fit-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 120px;
  right: 0;
  bottom: 0;
  width: 44%;
  background: linear-gradient(
      90deg,
      rgba(251, 248, 242, 0.02),
      rgba(251, 248, 242, 0.5)
    ),
    url("../img/studio.webp") center/cover no-repeat;
  opacity: 0.68;
}

/* Existing theme slider, placed between the For You and Customer Story sections. */
.new-top-content .stair-loop {
  position: relative;
  width: 100%;
  padding: 72px 0 40px;
  overflow: hidden;
  background: var(--cream);
}

.new-top-content .stair-loop__mask {
  overflow: hidden;
}

.new-top-content .stair-loop__track {
  display: flex;
  width: max-content;
  gap: clamp(16px, 2vw, 32px);
  animation: stair-scroll 100s linear infinite;
}

.new-top-content .stair-loop__item {
  width: clamp(320px, 32vw, 520px);
  max-height: 320px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.new-top-content .stair-loop__item img {
  width: 100%;
  height: auto;
  backface-visibility: hidden;
}

@keyframes stair-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.fit-section .section-heading,
.fit-layout {
  position: relative;
  z-index: 1;
}

.fit-grid {
  width: 77%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fit-card {
  position: relative;
  min-height: 138px;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  border-top: 3px solid #333;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 20px rgba(42, 61, 51, 0.04);
}

.fit-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.fit-card small {
  color: #91a098;
  font-family: Georgia, serif;
  font-size: 13px;
  text-align: left;
}

.fit-card p {
  margin-bottom: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  line-height: 1.65;
}

.fit-check {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #4e4e4e;
  font-size: 14px;
  z-index: 999;
}

.customer-section {
  width: 100%;
  max-width: none;
  padding: 122px max(48px, calc((100vw - 1040px) / 2)) 142px;
  background: var(--cream);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -22px auto 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.process-row > div {
  position: relative;
  min-height: 170px;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 16px;
  padding: 24px 32px;
}

.process-row > div + div {
  border-left: 1px solid var(--line);
}

.process-row > div > span {
  position: absolute;
  top: -17px;
  left: 26px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-family: Georgia, serif;
  font-size: 11px;
}

.process-row img {
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  object-fit: contain;
  align-self: center;
}

.process-row h3 {
  margin: 0 0 4px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
}

.process-row p {
  margin: 0;
  font-size: 11px;
  line-height: 1.65;
}

.stories {
  display: grid;
  gap: 42px;
}

.story-card {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 46px;
  padding: 36px 46px 30px;
  background: radial-gradient(
      circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
      rgba(234, 241, 237, 0.7),
      transparent 260px
    ),
    #fff;
  box-shadow: 0 0 0 rgba(38, 54, 46, 0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(38, 54, 46, 0.08);
}

.story-photo {
  align-self: center;
  text-align: center;
}

.story-photo > p {
  display: flex;
  justify-content: space-around;
  margin: 0 0 8px;
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.story-photo > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.story-photo small {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 22px;
  border-radius: 20px;
  background: var(--cream);
}

.story-eyebrow {
  margin-bottom: 2px;
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.story-copy h3 {
  margin-bottom: 16px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  font-weight: 500;
}

.story-copy ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-copy li {
  display: grid;
  grid-template-columns: 28px 80px 1fr;
  gap: 12px;
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.story-copy li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #b4a16d;
  font-family: Georgia, serif;
  font-size: 10px;
}

.story-copy li b {
  display: block;
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.story-copy li p {
  margin: 1px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.story-copy blockquote {
  position: relative;
  min-height: 100px;
  margin: 17px 0 0;
  padding: 20px 118px 20px 28px;
  border: 1px solid #b8c3bc;
  border-radius: 18px 0 18px 18px;
}

.story-copy blockquote p {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  text-align: left;
  line-height: 1.8;
}

.story-copy blockquote img {
  position: absolute;
  right: 13px;
  bottom: 0;
  width: 98px;
  height: 92px;
  object-fit: contain;
}

.trial-cta-band {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(600px, 660px) minmax(0, 1fr);
  margin: 88px 0;
  background: var(--cream);
}

.trial-cta-band__image {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.trial-cta-band__image--studio {
  object-position: center;
}

.trial-cta-band__image--lesson {
  object-position: center;
}

.trial-cta {
  width: 100%;
  margin: 0;
  padding: 48px 70px;
  text-align: center;
  background: var(--cream);
}

.trial-cta > p {
  margin-bottom: 2px;
  color: #1f2f2f;
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.15em;
}

.trial-cta h2 {
  margin-bottom: 25px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 23px;
  font-weight: 500;
}

.trial-cta .button {
  margin-inline: auto;
}

.trial-cta > .button-offer {
  margin: 0 auto 8px;
  color: #8b7748;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: clamp(11px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.trial-points {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}

.trial-points span {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 21px;
  color: var(--sage);
  text-align: left;
}

.trial-points svg {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #b4a16d;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trial-points b {
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 11px;
  line-height: 1.3;
  white-space: nowrap;
}

.trial-points small {
  color: var(--ink);
  font-size: 7px;
  line-height: 1.3;
  white-space: nowrap;
}

.voice-section {
  padding-top: 68px;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.voice-grid article {
  display: flex;
  flex-direction: column;
  padding: 13px 13px 24px;
  background: #f8f8f8;
}

.voice-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.voice-grid h3 {
  margin: 16px 6px 0;
  padding-bottom: 9px;
  border-bottom: 1px solid #d9dedb;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  font-weight: 500;
}

.voice-grid article > p {
  margin: 10px 6px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.voice-grid article > small {
  display: block;
  margin: auto 6px 0;
  padding-top: 14px;
  color: #7b877f;
  font-size: 14px;
}

.outline-button {
  min-width: 280px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  width: fit-content;
  margin: 34px auto 0;
  padding: 8px 30px;
  border: 1px solid var(--sage);
  border-radius: 30px;
  font-size: 12px;
}

.reviews {
  padding-top: 28px;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section-heading.compact h2 {
  font-size: 22px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-grid article {
  min-height: 185px;
  padding: 20px;
  border: 1px solid #eceeed;
  border-radius: 5px;
  background: radial-gradient(
      circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
      rgba(234, 241, 237, 0.85),
      transparent 145px
    ),
    #fff;
  box-shadow: 0 4px 14px rgba(28, 47, 36, 0.05);
  font-size: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(28, 47, 36, 0.09);
}

.review-head {
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #d86843;
}

.avatar-2 {
  background: #607d8b;
}
.avatar-3 {
  background: #d85e8b;
}
.review-head b {
  font-size: 11px;
}
.review-head i {
  color: #4285f4;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.stars {
  margin: 8px 0 2px;
  color: #f6b51b;
  letter-spacing: 0.04em;
}

.information {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  gap: 70px;
  padding-top: 75px;
}

.info-links a {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 14px 0;
  border-bottom: 1px solid #cfd6d2;
  font-family: Georgia, serif;
  font-size: 23px;

}

.info-links a:first-child {
  border-top: 1px solid #cfd6d2;
}

.info-links small {
  display: block;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size:13px;
  font-weight: 400;
}

.info-links b {
  font-size: 25px;
  font-weight: 400;
}

.info-images {
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: end;
  gap: 18px;
}

.info-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.info-images img:first-child {
  height: 190px;
}

.columns {
  padding-top: 35px;
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.column-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #edf0ee;
}

.column-grid h3 {
  margin: 13px 0 4px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.column-grid p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: #68786f;
  font-size: 10px;
}

.faq {
  width: 100%;
  max-width: none;
  padding: 104px max(48px, calc((100vw - 940px) / 2)) 118px;
  background: #f7f8f7;
}

.faq-list details {
  padding: 24px 0;
  border-top: 1px solid #dfe4e1;
}

.faq-list details:last-child {
  border-bottom: 1px solid #dfe4e1;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 15px;
  cursor: pointer;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span,
.faq-list details > p > span {
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 19px;
}

.faq-list details > p {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  margin: 15px 0 0;
  color: #4e5b54;
  font-size: 13px;
  animation: faq-answer-in 0.35s ease both;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.access {
  padding-top: 108px;
  padding-bottom: 116px;
}

.access-layout {
  display: grid;
  grid-template-columns: 66% 1fr;
  gap: 60px;
  align-items: center;
}

.access-layout iframe {
  width: 100%;
  height: 330px;
  border: 0;
  filter: saturate(0.72);
}

.access-layout h3 {
  margin-bottom: 18px;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 500;
}

.access-layout p {
  margin-bottom: 14px;
  font-size: 16px;
}

.footer-image {
  height: 405px;
}

.footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 41%;
}

.footer-main {
  padding: 32px 24px 35px;
  color: #fff;
  background: #080b09;
  text-align: center;
}

.footer-logo {
  display: block;
  padding-bottom: 21px;
  border-bottom: 1px solid #69706c;
  font-family: Georgia, serif;
  font-size: 26px;
}

.footer-main nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 38px;
  margin-top: 23px;
}

.footer-main nav a {
  font-family: Georgia, serif;
  font-size: 12px;
}

.new-top-content .copyright {
  margin: 0;
  padding: 8px;
  color: #e8e8e8;
  background: #303431;
  text-align: center;
  font-size: 9px;
}

.mobile-cta {
  display: none;
}

.js .new-top-content .reveal {
  opacity: 0;
  filter: none;
  transform: translateY(38px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1)
      var(--reveal-delay, 0ms),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.js .new-top-content .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .new-top-content .reason-card.reveal img,
.js .new-top-content .fit-card.reveal img,
.js .new-top-content .process-row > div.reveal img {
  opacity: 0;
  transform: scale(0.84) rotate(-3deg);
  transition: opacity 0.7s ease calc(var(--reveal-delay, 0ms) + 150ms),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1)
      calc(var(--reveal-delay, 0ms) + 150ms);
}

.js .new-top-content .reason-card.reveal.is-visible img,
.js .new-top-content .fit-card.reveal.is-visible img,
.js .new-top-content .process-row > div.reveal.is-visible img {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.addres{
  padding-bottom:50px;
}
.access-section{
  padding-top:50px;
}
/* Desktop layout tuned to the supplied 2000px-wide design comp. */
@media (min-width: 1001px) {
  

  .new-top-content {
    color: #202620;
    font-size: 18px;
    line-height: 1.8;
  }

  .new-top-content section[id] {
    scroll-margin-top: 122px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 122px;
    grid-template-columns: 150px 1fr 266px;
    padding-left: 48px;
    background: rgba(255, 255, 255, 0.98);
  }

  .site-header nav {
    gap: clamp(18px, 1.65vw, 32px);
    padding: 0 24px;
  }

  .site-header nav a {
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.015em;
    white-space: nowrap;
  }

  .header-cta {
    gap: 22px;
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-size: 18px;
  }

  .hero {
    min-height: 728px;
    grid-template-columns: 45.5% 54.5%;
    background: #fff;
  }

  .hero-copy {
    padding: 64px 34px 56px 123px;
    background: linear-gradient(90deg, #fff 82%, rgba(255, 255, 255, 0));
  }

  .hero-copy > * {
    position: relative;
    top: 70px;
  }

 
  .hero-kicker {
    max-width: 740px;
    color: var(--ink);
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-size: 2.1vw;
    line-height: 1.72;
    letter-spacing: 0.075em;
  }

  .hero-description {
    margin-bottom: 38px;
    color: #333832;
    line-height: 2.05;
    margin-top: 12px!important;
  }

  .button {
    min-height: 84px;
    padding: 16px 42px;
    font-size: 19px;
  }

  .button-dark {
    width: min(520px, 100%);
  }

  .button-offer {
    width: min(520px, 100%);
  }

  .hero-note {
    width: min(520px, 100%);
    margin-top: 24px;
    color: #313731;
    font-size: 15px;
  }

  .hero-visual::after {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.76),
      transparent 21%
    );
  }

  .trust-strip {
    width: min(1600px, calc(100% - 120px));
    min-height: 125px;
    gap: 28px;
    margin-top: 50px;
    padding: 14px 70px;
    border-radius: 20px;
  }

  .trust-strip::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: -50px;
    bottom: -120px;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
  }

  .trust-strip::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    background: #e6eee9;
    pointer-events: none;
  }

  .trust-strip__item {
    gap: 24px;
  }

  .trust-strip__icon {
    width: 94px;
    height: 94px;
  }

  .trust-strip__icon img {
    width: 67px;
    height: 67px;
  }

  .trust-strip__text b {
    margin-bottom: 5px;
    font-size: 17px;
  }

  .trust-strip__text strong {
    font-size: 24px;
  }

  .trust-strip__text strong em {
    font-size: 14px;
  }

  .trust-strip__text small {
    font-size: 8px;
  }

  .trust-strip__text .trust-strip__medium {
    font-size: 19px;
  }

  .section {
    width: min(1600px, calc(100% - 120px));
    padding: 120px 0;
  }

  .section-heading {
    margin-bottom: 76px;
  }

  .section-heading .section-en {
    margin-bottom: 10px;
    font-size: 27px;
    letter-spacing: 0.03em;
    text-transform: none;
  }

  .section-heading h2 {
    margin-bottom: 18px;
    color: var(--ink);
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-size: 40px;
    letter-spacing: 0.055em;
  }

  .section-heading > p:last-child:not(.section-en) {
    font-size: 18px;
    line-height: 1.75;
  }

  .reasons {
    width: 100%;
    max-width: none;
    padding: 102px max(100px, calc((100vw - 1600px) / 2)) 102px;
  }

  .reasons .section-heading {
    margin-bottom: 75px;
  }

  .reasons .section-heading h2 {
    font-size: 48px;
  }

  .reason-grid {
    gap: 0;
  }

  .reason-card {
    min-height: 450px;
    padding: 20px 54px 12px;
    border-radius: 0;
    background: transparent;
  }

  .reason-card + .reason-card {
    border-left: 1px solid #bdc6c0;
  }

  .reason-card:hover {
    transform: none;
    box-shadow: none;
  }

  .reason-card img {
    width: 180px;
    height: 180px;
    margin-bottom: 28px;
  }

  .reason-card h3 {
    margin-bottom: 18px;
    color: var(--ink);
    font-size: 20px;
  }

  .reason-card p {
    font-size: 17px;
    line-height: 1.78;
  }

  .journey-banner {
    height: 650px;
  }

  .journey-banner > div {
    bottom: -7px;
    transform: none !important;
  }

  .journey-banner p {
    font-size: 34px;
  }

  .journey-banner h2 {
    font-size: 92px;
  }

  .fit-section {
    width: 100%;
    max-width: none;
    min-height: 1280px;
    padding: 124px max(70px, calc((100vw - 1600px) / 2)) 145px;
    isolation: isolate;
  }

  .fit-section::after {
    top: 0;
    width: 50%;
    background: linear-gradient(
        90deg,
        var(--cream) 0%,
        rgba(252, 248, 242, 0.54) 30%,
        rgba(252, 248, 242, 0.12) 100%
      ),
      url("../img/studio.webp") center / cover no-repeat;
    opacity: 0.72;
  }

  .fit-section .section-heading {
    margin-bottom: 42px;
  }

  .fit-section .section-heading h2 {
    font-size: 48px;
  }

  .fit-section .section-heading > p:last-child:not(.section-en) {
    font-size: 21px;
  }

  .fit-section .section-en,
  .customer-section .section-en {
    color: var(--ink);
  }

  .fit-section .section-en::after,
  .customer-section .section-en::after {
    content: "⌁  ❧  ⌁";
    display: block;
    height: 20px;
    margin-top: 3px;
    color: #a3aa82;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.2em;
  }

  .fit-grid {
    width: 1110px;
    max-width: 100%;
    gap: 16px;
    margin: 0 auto;
  }

  .fit-card {
    min-height: 196px;
    grid-template-columns: 135px 1fr;
    gap: 18px;
    padding: 24px 34px 24px 30px;
    border: 1px solid #677c70;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: none;
  }

  .fit-card img {
    width: 112px;
    height: 112px;
    margin-left: 26px;
  }

  .fit-card small {
    display: block;
    margin-bottom: 7px;
    padding-bottom: 4px;
    border-bottom: 2px dotted #708278;
    font-size: 28px;
    line-height: 1.1;
  }

  .fit-card p {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.65;
  }

  .fit-check {
    top: 27px;
    left: 24px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .customer-section {
    width: 100%;
    max-width: none;
    padding: 70px max(80px, calc((100vw - 1450px) / 2)) 135px;
  }

  .customer-section .section-heading {
    margin-bottom: 135px;
  }

  .customer-section .section-heading h2 {
    font-size: 38px;
  }

  .stories {
    max-width: 1450px;
    gap: 78px;
    margin: 0 auto;
  }

  .story-card {
    min-height: 680px;
    grid-template-columns: 500px 1fr;
    gap: 44px;
    padding: 0;
    background: transparent;
  }

  .story-card:hover {
    transform: none;
    box-shadow: none;
  }

  .story-photo {
    align-self: stretch;
    padding: 68px 52px 40px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
  }

  .story-photo > p {
    margin-bottom: 14px;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 13px;
    letter-spacing: 0;
  }

  .story-photo > img {
    aspect-ratio: 1;
  }

  .story-photo small {
    min-width: 298px;
    margin-top: 38px;
    padding: 8px 25px;
    font-size: 14px;
  }

  .story-copy {
    align-self: center;
  }

  .story-copy li {
    position: relative;
    grid-template-columns: 50px 78px 1fr;
    gap: 18px;
    min-height: 141px;
    padding: 14px 0;
  }

  .story-copy li > span {
    width: 50px;
    height: 50px;
    margin-left: -27px;
    font-size: 22px;
  }

  .story-copy li > img {
    width: 74px;
    height: 74px;
    object-fit: contain;
  }

  .story-copy li b {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .story-copy li h3 {
    margin: 1px 0 2px;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
  }

  .story-copy li p {
    font-size: 14px;
    line-height: 1.55;
  }

  .story-copy blockquote {
    min-height: 188px;
    margin-top: 16px;
    padding: 53px 205px 35px 92px;
    border-color: #718278;
    border-radius: 18px;
  }

  .story-copy blockquote p {
    color: var(--ink);
    font-size: 23px;
    line-height: 1.75;
  }

  .story-copy blockquote img {
    right: 25px;
    width: 175px;
    height: 164px;
  }

  .trial-cta-band {
    grid-template-columns: minmax(0, 1fr) minmax(780px, 920px) minmax(0, 1fr);
    margin: 0;
  }

  .trial-cta-band__image {
    min-height: 455px;
  }

  .trial-cta {
    width: 100%;
    min-height: 455px;
    margin: 0;
    padding: 56px 90px 48px;
  }

  .trial-cta > p {
    margin-bottom: 2px;
    color: var(--ink);
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-size: 37px;
    letter-spacing: 0.04em;
  }

  .trial-cta h2 {
    margin-bottom: 34px;
    color: var(--ink);
    font-size: 40px;
  }

  .trial-points {
    gap: 38px;
    margin-bottom: 36px;
  }

  .trial-points svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: #b4a16d;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .trial-points b {
    font-size: 16px;
  }

  .trial-points small {
    font-size: 10px;
  }

  .voice-section {
    width: min(1280px, calc(100% - 120px));
    padding: 38px 0 52px;
  }

  .voice-section .section-heading {
    margin-bottom: 74px;
  }

  .voice-section .section-en {
    margin-bottom: 25px;
  }

  .voice-grid {
    gap: 44px;
  }

  .voice-grid article {
    min-height: 570px;
    padding: 27px 38px 30px;
  }

  .voice-grid h3 {
    margin: 22px 0 0;
    padding-bottom: 12px;
    font-size: 19px;
  }

  .voice-grid article > p {
    margin: 14px 0 0;
    line-height: 1.8;
  }

  .voice-grid article > small {
    margin: auto 0 0;
    padding-top: 18px;
    font-size: 12px;
  }

  .outline-button {
    min-width: 400px;
    min-height: 64px;
    margin-top: 38px;
    font-size: 17px;
  }

  .reviews {
    width: min(1020px, calc(100% - 120px));
    padding: 48px 0 75px;
  }

  .section-heading.compact {
    margin-bottom: 42px;
  }

  .section-heading.compact h2 {
    font-size: 37px;
  }

  .review-grid {
    gap: 16px;
  }

  .review-grid article {
    min-height: 235px;
    padding: 21px;
    background: #f7f7f7;
  }

  .review-grid article:hover {
    transform: none;
  }

  .review-head b {
    display: flex;
    flex-direction: column;
    font-size: 13px;
  }

  .review-head b small {
    color: #6d716e;
    font-size: 10px;
    font-weight: 400;
  }

  .information {
    width: min(1600px, calc(100% - 120px));
    grid-template-columns: 720px 1fr;
    gap: 62px;
    padding: 75px 0 80px;
  }

  .info-links a {
    min-height: 132px;
    padding-right: 18px;
    font-size: 31px;
  }

  .info-links small {
    font-size: 12px;
  }

  .info-images {
    grid-template-columns: 294px 1fr;
    gap: 26px;
    padding-right: 4px;
    border-right: 2px solid #303a34;
  }

  .info-images img {
    height: 410px;
  }

  .info-images img:first-child {
    height: 300px;
  }

  .columns {
    width: min(1100px, calc(100% - 120px));
    padding: 37px 0 207px;
  }

  .columns .section-heading {
    margin-bottom: 68px;
  }

  .column-grid {
    gap: 68px;
  }

  .column-grid time {
    display: block;
    margin-bottom: 15px;
    text-align: center;
    font-family: Georgia, serif;
    font-size: 12px;
  }

  .column-grid img {
    aspect-ratio: 1.42;
  }

  .column-grid h3 {
    margin-top: 13px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    text-align: center;
  }

  .faq {
    width: 100%;
    max-width: none;
    padding: 47px max(60px, calc((100vw - 1140px) / 2)) 314px;
  }

  .faq .section-heading {
    margin-bottom: 28px;
  }

  .faq-list details {
    padding: 27px 0;
  }

  .faq-list summary {
    grid-template-columns: 34px 1fr;
    gap: 16px;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 17px;
  }

  .faq-list details > p {
    grid-template-columns: 34px 1fr;
    gap: 16px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.9;
  }

  .access {
    width: min(1180px, calc(100% - 120px));
    padding: 141px 0 27px;
  }

  .access .section-heading {
    margin-bottom: 68px;
  }

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

  .access-layout iframe {
    height: 390px;
  }

  .access-layout > div {
    text-align: center;
  }

  .access-layout p {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.7;
  }

  .footer-image {
    height: 720px;
  }

  .footer-main {
    padding: 43px 24px 52px;
  }

  .footer-logo {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 25px;
    font-size: 38px;
  }

  .footer-main nav {
    gap: 22px 58px;
    margin-top: 29px;
  }

  .footer-main nav a {
    font-size: 19px;
  }

  .new-top-content .copyright {
    padding: 15px;
    font-size: 15px;
  }
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 120px 1fr 185px;
    padding-left: 24px;
  }

  .site-header nav {
    gap: 16px;
    padding: 0 20px;
  }

  .site-header nav a:nth-child(2),
  .site-header nav a:nth-child(4) {
    display: none;
  }

  .hero {
    grid-template-columns: 46% 54%;
  }

  .hero-copy {
    padding-left: 42px;
    padding-right: 20px;
  }

  .trust-strip {
    gap: 10px;
    padding-inline: 18px;
  }

  .trust-strip__item {
    gap: 8px;
  }

  .trust-strip__icon {
    width: 60px;
    height: 60px;
  }

  .trust-strip__icon img {
    width: 42px;
    height: 42px;
  }

  .trust-strip__text b {
    font-size: 13px;
  }

  .trust-strip__text strong {
    font-size: 18px;
  }

  .trust-strip__text strong em {
    font-size: 10px;
  }



  .reason-grid {
    gap: 35px;
  }

  .fit-grid {
    width: 90%;
  }

  .story-card {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    padding-inline: 24px;
  }

  .story-copy li {
    grid-template-columns: 28px 56px minmax(0, 1fr);
    gap: 8px;
  }

  .story-copy li > img {
    width: 54px;
    height: 54px;
    object-fit: contain;
  }

  .story-copy li h3 {
    margin: 2px 0 4px;
    font-size: 17px;
  }

  .story-copy blockquote {
    padding-right: 96px;
  }

  .trial-cta-band {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 58%) minmax(0, 1fr);
  }

  .trial-cta {
    padding-inline: 32px;
  }

  .information {
    gap: 38px;
  }
}

@media (max-width: 767px) {
  .new-top-content {
    font-size: 14px;
    line-height: 1.8;
  }

  .site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 62px;
    grid-template-columns: 1fr 145px;
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.92);
  }

  .new-top-content section[id] {
    scroll-margin-top: 62px;
  }

  .site-header nav {
    display: none;
  }
  .header-cta {
    font-size: 11px;
    gap: 3px;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-visual {
    height: 325px;
  }

  .hero-visual img {
    object-position: 61% center;
  }

  .hero-visual::after {
    background: linear-gradient(0deg, var(--cream), transparent 28%);
  }

  .hero-copy {
    padding: 8px 24px 44px;
    text-align: center;
    margin-top: -10px;
    background: var(--cream);
  }

  .hero h1 {
          margin-bottom: 0 !important;
        font-size: 16px;
        text-align: left;
        margin-top: 0px;
        margin-left: 0;
        font-weight: 600;

  }
  section{
    padding: 0;
  }

  .hero-kicker {
    margin-bottom: 0px;
    margin-top: 20px!important;
    font-size: clamp(20px, 5.2vw, 35px);
    line-height: 1.65;
    text-align: left;
  }

  .hero-description {
    margin-bottom: 23px;
    font-size: 14px;
    text-align: left;
    margin-top:12px!important;
  }

  .hero-description br {
    display: none;
  }

  .hero .button,
  .hero-note {
    margin-inline: auto;
    font-size: 16px;
  }

  .trust-strip {
    width: calc(100% - 32px);
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
    margin-top: 20px;
    padding: 20px 14px;
    border-radius: 10px;
  }

  .trust-strip__item {
    justify-content: flex-start;
    gap: 10px;
  }

  .trust-strip__icon {
    width: 56px;
    height: 56px;
  }

  .trust-strip__icon img {
    width: 40px;
    height: 40px;
  }

  .trust-strip__text b {
    margin-bottom: 2px;
    font-size: 13px;
  }

  .trust-strip__text strong {
    font-size: 18px;
  }

  .trust-strip__text strong em {
    font-size: 10px;
  }

  .trust-strip__text small {
    font-size: 6px;
  }

  .trust-strip__text .trust-strip__medium {
    font-size: 15px;
  }
  .section {
    width: calc(100% - 40px);
    padding:28px 0;
  }
  .voice-section {
    padding-top: 0;
  }
  .voice-grid h3 {
    font-size: 20px;
  }
  .trial-cta > p{
    font-size: 18px;
  }
  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: 23px;
    line-height: 1.65;
  }

  .section-heading > p:last-child:not(.section-en) {
    font-size: 14px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    gap: 49px;
  }

  .reason-card {
    max-width: 390px;
    margin: auto;
  }

  .reason-card img {
    width: 130px;
    height: 130px;
    margin-bottom: 14px;
  }

  .reason-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .reason-card p {
    font-size: 16px;
  }

  .journey-banner {
    height: 330px;
  }

  .journey-banner > img {
    object-position: 12% center;
  }

  .journey-banner > div {
    bottom: 0px;
    padding: 0 12px;
  }

  .journey-banner p {
    font-size: 13px;
  }

  .journey-banner h2 {
    white-space: nowrap;
    font-size: clamp(38px, 11.3vw, 54px);
  }

  .fit-section,
  .customer-section,
  .faq {
    width: 100%;
    padding: 82px 20px;
  }

  .fit-section {
    padding-bottom: 102px;
  }

  .fit-section::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 260px;
    opacity: 0.23;
  }

  .fit-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .fit-card {
    min-height: 112px;
    grid-template-columns: 78px 1fr;
    padding: 15px 18px;
  }

  .fit-card img {
    width: 70px;
    height: 70px;
  }

  .fit-card p {
    font-size: 16px;
  }
  .fit-check {
    width: 27px;
    height: 27px;
    top: 10px;
    left: 10px;
  }

  .process-row {
    grid-template-columns: 1fr;
    margin-bottom: 42px;
  }

  .process-row > div {
    min-height: 122px;
    grid-template-columns: 54px 1fr;
    padding: 24px 20px 20px 62px;
  }

  .process-row > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-row > div > span {
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
  }

  .story-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 25px 20px;
  }

  .story-photo {
    max-width: 330px;
    margin: 0 auto;
  }

  .story-copy h3 {
    font-size: 19px;
  }

  .story-copy li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
  }

  .story-copy li > div {
    width: 100%;
  }

  .story-copy li > span {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .story-copy li b {
    font-size: 12px;
  }
  .fit-card small {
    font-size: 20px;
  }
  .story-copy li p{
        border-top: 1px solid #1f2f2f;
    padding-top: 10px;
  }
  .story-copy li > img {
    display: none;
  }
.customer-section {
  padding-top:20px;;
}
  .story-copy li h3 {
    margin: 2px 0 3px;
    font-size: 16px;
  }

  .story-copy blockquote {
    padding-left: 18px;
    padding-right: 92px;
  }

  .story-copy blockquote img {
    width: 80px;
  }

  .trial-cta-band {
    grid-template-areas:
      "studio lesson"
      "content content";
    grid-template-columns: 1fr 1fr;
    margin: 0px auto 62px auto;
  }

  .trial-cta-band__image {
    min-height: 0;
    height: 150px;
  }

  .trial-cta-band__image--studio {
    grid-area: studio;
  }

  .trial-cta-band__image--lesson {
    grid-area: lesson;
  }

  .trial-cta {
    grid-area: content;
    width: 100%;
    padding: 38px 20px;
  }

  .trial-cta h2 {
    font-size: 20px;
  }

  .trial-points {
    gap: 14px;
  }

  .trial-points svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #b4a16d;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .js .fit-card.reveal.is-visible img{
transform: scale(1.2) rotate(0);
  }

  .trial-points span {
    grid-template-columns: 32px auto;
    column-gap: 5px;
  }

  .trial-points b {
    font-size: 15px;
  }
  .trial-points {
    flex-wrap: wrap;
  }
  .trial-points small {
    font-size: 10px;
  }

  .voice-grid,
  .review-grid,
  .column-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .voice-grid {
    max-width: 400px;
    margin: auto;
  }

  .review-grid article {
    min-height: 0;
  }

  .information {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .info-links a {
    min-height: 74px;
    font-size: 20px;
  }

  .info-images {
    gap: 10px;
  }

  .info-images img {
    height: 190px;
  }
  .info-images img:first-child {
    height: 140px;
  }

  .column-grid {
    max-width: 440px;
    margin: auto;
  }

  .faq-list summary {
    grid-template-columns: 28px 1fr;
    gap: 10px;
  }

  .faq-list details > p {
    grid-template-columns: 28px 1fr;
    gap: 10px;
    font-size: 16px;
  }

  .access-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .access-layout iframe {
    height: 270px;
  }

  .access-layout > div {
    text-align: center;
  }

  .footer-image {
    height: 260px;
  }

  .footer-image img {
    object-position: 55% center;
  }

  .footer-main {
    padding-bottom: 32px;
  }

  .footer-main nav {
    gap: 12px 22px;
  }

  .new-top-content .copyright {
    padding-bottom: 78px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -3px 16px rgba(25, 43, 33, 0.12);
  }

  .mobile-cta a {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    color: #fff;
    background: var(--deep);
    font-size: 13px;
    font-weight: 700;
  }
  .logo {
    margin-top: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .new-top-content .hero-copy > *,
  .js .new-top-content .reveal,
  .js .new-top-content .reveal img {
    opacity: 1 !important;
    transform: none !important;
  }
}

        .instructor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            text-align: center;
        }
        .instructor-card img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            margin: 0 auto 20px;
            object-fit: cover;
            border: 3px solid var(--bg-light);
        }
        .instructor-name {
            font-size: 1.8rem;
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 5px;
        }
        .instructor-title {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
          @media (max-width: 640px) {
        .instructor-grid{
    grid-template-columns: auto;
    margin-top:30px;
        }
        .instructor-card{
          padding: 10px;
          box-sizing: border-box;
        }
        body.studio-ill-new-top {
  overflow-x: clip;
}

body.studio-ill-new-top main {
  overflow-x: clip;
}
}