@charset "UTF-8";

:root {
  --color-ink: #3e2d2a;
  --color-text: #5b4a47;
  --color-muted: #826f6a;
  --color-white: #ffffff;
  --color-ivory: #fffdfb;
  --color-blush: #fff5f4;
  --color-blush-deep: #f9e8e7;
  --color-pink: #d75872;
  --color-pink-dark: #bc405b;
  --color-pink-soft: #eaa1b1;
  --color-gold: #bd8b3b;
  --color-gold-soft: #dfc088;
  --color-border: #eed4d1;
  --shadow-soft: 0 16px 40px rgba(109, 67, 65, 0.08);
  --shadow-card: 0 10px 26px rgba(112, 68, 67, 0.07);
  --font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
  --font-sans: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --header-height: 88px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--color-text);
  background: var(--color-ivory);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.035em;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
dl,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

:focus-visible {
  outline: 3px solid rgba(189, 139, 59, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 6px;
  color: var(--color-white);
  background: var(--color-pink-dark);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sp-only,
.hero__mobile-break {
  display: none;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 32px;
}

.section {
  position: relative;
  padding-block: 112px;
}

.section-heading {
  position: relative;
  margin-bottom: 56px;
  text-align: center;
}

.section-heading::after {
  display: block;
  width: 72px;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  content: "";
}

.section-heading__en {
  margin-bottom: 5px;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 0;
  color: #5d3936;
  font-size: clamp(30px, 3vw, 38px);
}

.section-heading--left {
  margin-bottom: 34px;
  text-align: left;
}

.section-heading--left::after {
  margin-left: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(232, 194, 191, 0.7);
  background: rgba(255, 253, 251, 0.96);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 251, 0.98);
  box-shadow: 0 8px 30px rgba(84, 54, 53, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1400px);
  height: 100%;
  margin-inline: auto;
  padding-inline: 32px;
}

.brand {
  flex: 0 0 auto;
  width: 270px;
}

.brand img {
  width: 100%;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.global-nav li {
  position: relative;
}

.global-nav li + li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: var(--color-border);
  content: "";
}

.global-nav li a {
  position: relative;
  display: block;
  padding: 10px 14px;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 14px;
  white-space: nowrap;
}

.global-nav li a::after {
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 1px;
  transform: scaleX(0);
  background: var(--color-pink);
  content: "";
  transition: transform 0.25s ease;
}

.global-nav li a:hover::after,
.global-nav li a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 22px;
  border: 1px solid var(--color-pink);
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.62), 0 5px 12px rgba(188, 64, 91, 0.15);
  color: var(--color-white);
  background: linear-gradient(135deg, #df6b82, #ca4f68);
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.header-cta:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-pink-dark);
  background: var(--color-white);
}

.menu-button__line {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-button[aria-expanded="true"] .menu-button__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__line:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-button__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 660px;
  border-bottom: 1px solid var(--color-border);
  background:
    radial-gradient(circle at 5% 20%, rgba(247, 211, 216, 0.5), transparent 23%),
    linear-gradient(105deg, #fffdfb 0%, #fff9f7 52%, #faefec 100%);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0 auto auto 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent);
  content: "";
}

.hero__decoration {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  width: 100%;
  height: auto;
  opacity: 0.42;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
  align-items: center;
  gap: 52px;
  width: min(100%, 1400px);
  min-height: 660px;
  margin-inline: auto;
  padding: 64px 32px 74px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding-left: 26px;
}

.hero__lead {
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 20px;
  color: #674641;
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: 0.12em;
}

.hero__lead::after {
  position: absolute;
  top: 52px;
  left: 0;
  width: 410px;
  height: 1px;
  transform: rotate(1.5deg);
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  content: "";
}

.hero__lead span {
  margin-inline: 7px 3px;
  color: var(--color-pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 20px;
  color: #c84c66;
  font-size: clamp(36px, 3.2vw, 44px);
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 0 #fff;
}

.hero__summary {
  margin-bottom: 8px;
  color: #523834;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.75;
}

.hero__summary strong {
  font-weight: 600;
}

.hero__text {
  max-width: 600px;
  margin-bottom: 28px;
  color: #624f4b;
  font-size: 15px;
  line-height: 1.9;
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.23;
  border: 6px solid rgba(255, 255, 255, 0.88);
  border-radius: 46% 8px 46% 8px / 18% 8px 18% 8px;
  box-shadow: 0 20px 55px rgba(99, 62, 58, 0.15);
  background: #f7ebe8;
}

.hero__image-frame::after {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(189, 139, 59, 0.32);
  content: "";
  pointer-events: none;
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__image-note {
  position: absolute;
  right: 30px;
  bottom: -21px;
  padding: 10px 28px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  color: #7e5a53;
  background: rgba(255, 253, 251, 0.96);
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.11em;
}

.hero__image-note span {
  color: var(--color-gold);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 13px 34px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-align: center;
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.button--primary {
  border: 1px solid #bd405a;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.55), 0 8px 18px rgba(188, 64, 91, 0.2);
  color: var(--color-white);
  background: linear-gradient(135deg, #e16f87, #c84662);
}

.button--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.62), 0 10px 22px rgba(188, 64, 91, 0.23);
}

/* Reasons */
.reasons {
  background: var(--color-ivory);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.reason-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 390px;
  padding: 34px 25px 30px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  background: var(--color-white);
  text-align: center;
}

.reason-card::after {
  position: absolute;
  right: -25px;
  bottom: -35px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--color-blush-deep);
  border-radius: 50%;
  content: "";
}

.reason-card img {
  width: 108px;
  height: 108px;
  margin-bottom: 14px;
  object-fit: contain;
}

.reason-card__number {
  position: absolute;
  top: 16px;
  right: 18px;
  margin: 0;
  color: #edced3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
}

.reason-card h3 {
  min-height: 58px;
  margin-bottom: 15px;
  color: var(--color-pink-dark);
  font-size: 20px;
}

.reason-card > p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.85;
}

/* Philosophy */
.philosophy {
  overflow: hidden;
  background: linear-gradient(115deg, #fff5f3, #fffaf8 62%, #fbecea);
}

.philosophy::before,
.philosophy::after {
  position: absolute;
  border: 1px solid rgba(189, 139, 59, 0.18);
  border-radius: 50%;
  content: "";
}

.philosophy::before {
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
}

.philosophy::after {
  right: -50px;
  bottom: -80px;
  width: 210px;
  height: 210px;
}

.philosophy__inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 78px;
}

.philosophy__content > p {
  margin-bottom: 14px;
  font-size: 15px;
}

.philosophy__visual {
  position: relative;
  padding-bottom: 68px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 72px;
}

.about-highlight {
  padding: 30px 32px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  background: rgba(255, 255, 255, 0.92);
}

.about-highlight__label {
  margin-bottom: 3px;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-highlight h3 {
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-blush-deep);
  color: var(--color-pink-dark);
  font-size: 21px;
}

.about-highlight p:not(.about-highlight__label) {
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.85;
}

.about-highlight p:last-child {
  margin-bottom: 0;
}

.feature-block {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 0.72fr);
  align-items: center;
  gap: 36px;
  padding: 32px;
  margin-top: 24px;
  border: 1px solid rgba(189, 139, 59, 0.24);
  border-radius: 18px;
  background: rgba(255, 250, 248, 0.88);
}

.feature-block__heading h3 {
  margin-bottom: 0;
  color: #5d3936;
  font-size: 23px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-height: 54px;
  padding: 10px 10px 10px 34px;
  border-radius: 8px;
  color: #6f5752;
  background: var(--color-white);
  font-size: 13px;
  line-height: 1.65;
}

.feature-list li::before {
  position: absolute;
  top: 13px;
  left: 11px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-pink-soft);
  font-size: 10px;
  line-height: 1;
  content: "✓";
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border: 7px solid var(--color-white);
  box-shadow: var(--shadow-soft);
  background: #f7e9e6;
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(189, 139, 59, 0.25);
  content: "";
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame--studio {
  aspect-ratio: 16 / 10;
  border-radius: 70px 8px 70px 8px;
}

.check-list {
  position: absolute;
  right: -18px;
  bottom: 0;
  width: min(92%, 480px);
  padding: 24px 30px;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  background: rgba(255, 255, 255, 0.96);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.8;
}

.check-list li + li {
  margin-top: 4px;
}

.check-list li::before {
  position: absolute;
  top: 0.43em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-pink-soft);
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1;
  content: "✓";
}

/* Lessons */
.lessons {
  background: var(--color-ivory);
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.lesson-card {
  position: relative;
  min-height: 410px;
  padding: 42px 36px 34px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px 44px 8px 44px;
  box-shadow: var(--shadow-card);
  background: var(--color-white);
}

.lesson-card::before {
  position: absolute;
  top: 0;
  right: 36px;
  left: 36px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold-soft), transparent);
  content: "";
}

.lesson-card__label {
  margin-bottom: 6px;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lesson-card__icon {
  position: absolute;
  top: 26px;
  right: 26px;
  color: #edb2bf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1;
}

.lesson-card h3 {
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-blush-deep);
  color: var(--color-pink-dark);
  font-size: 23px;
}

.lesson-card p:not(.lesson-card__label) {
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.9;
}

.lesson-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.lesson-card__tags li {
  padding: 5px 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: #7b5552;
  background: var(--color-blush);
  font-size: 11px;
  line-height: 1.5;
}

.lesson-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.lesson-guide {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 28px 30px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: linear-gradient(135deg, #fffafa, #fff);
}

.lesson-guide__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  color: var(--color-pink-dark);
  background: var(--color-blush-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.lesson-guide h3 {
  margin-bottom: 10px;
  color: var(--color-pink-dark);
  font-size: 20px;
}

.lesson-guide p {
  margin-bottom: 7px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
}

.lesson-guide p:last-child {
  margin-bottom: 0;
}

/* Pricing */
.pricing {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 246, 244, 0.93), rgba(255, 246, 244, 0.93)),
    radial-gradient(circle at 20px 20px, rgba(215, 88, 114, 0.09) 1px, transparent 1px);
  background-size: auto, 40px 40px;
}

.pricing__inner {
  max-width: 1000px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.price-card {
  position: relative;
  padding: 42px 38px 34px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
}

.price-card::before,
.price-card::after {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(189, 139, 59, 0.22);
  border-radius: 50%;
  content: "";
}

.price-card::before {
  top: -45px;
  left: -20px;
}

.price-card::after {
  right: -20px;
  bottom: -45px;
}

.price-card__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 170px);
  max-width: 100%;
  min-height: 38px;
  padding: 4px 24px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(135deg, #df758a, #cc526b);
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.1em;
}

.price-card__frequency {
  margin-bottom: 5px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.price-card__frequency strong {
  margin-inline: 3px;
  color: var(--color-pink-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.price-card__duration {
  margin-bottom: 4px;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 20px;
}

.price-card__duration strong {
  margin-right: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.price-card__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--color-pink-dark);
  font-size: 20px;
}

.price-card__amount span {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 17px;
}

.price-card__amount strong {
  font-family: Arial, "Yu Gothic", sans-serif;
  font-size: clamp(44px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.price-card__trial {
  padding-top: 14px;
  margin-bottom: 0;
  border-top: 1px solid var(--color-blush-deep);
  color: var(--color-muted);
  font-family: var(--font-serif);
}

.price-card__trial span {
  color: var(--color-pink);
}

.pricing__notes {
  margin-top: 26px;
  text-align: center;
}

.pricing__notes p {
  margin-bottom: 2px;
  color: var(--color-muted);
  font-size: 13px;
}

/* Voices */
.voices {
  background:
    radial-gradient(circle at 14% 12%, rgba(231, 177, 187, 0.13), transparent 28%),
    var(--color-white);
}

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

.voices__intro {
  max-width: 760px;
  margin: 0 auto 42px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.voice-card {
  position: relative;
  align-self: start;
  padding: 32px 34px;
  border: 1px solid #efcfd4;
  border-radius: 12px 32px 12px 32px;
  box-shadow: 0 10px 26px rgba(112, 73, 69, 0.07);
  background: rgba(255, 255, 255, 0.97);
}

.voice-card__icon {
  position: absolute;
  top: 22px;
  right: 26px;
  color: rgba(189, 139, 59, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

.voice-card__number {
  padding-bottom: 11px;
  margin: 0 42px 19px 0;
  border-bottom: 1px solid #f2dddf;
  color: var(--color-pink-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.17em;
}

.voice-card blockquote {
  margin: 0;
}

.voice-card blockquote p {
  margin-bottom: 15px;
  color: #604d49;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 2;
  text-align: left;
}

.voice-card blockquote p:last-child {
  margin-bottom: 0;
}

/* Teacher */
.teacher {
  background: var(--color-ivory);
}

.teacher__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  grid-template-areas:
    "intro photo"
    "bio photo";
  align-items: start;
  column-gap: 72px;
  row-gap: 0;
}

.teacher__intro {
  grid-area: intro;
}

.teacher__photo {
  grid-area: photo;
  justify-self: end;
  width: 100%;
  max-width: 340px;
}

.teacher__bio {
  grid-area: bio;
}

.photo-frame--teacher {
  aspect-ratio: 4 / 5;
  border-radius: 88px 10px 88px 10px;
}

.photo-frame--teacher picture {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-frame--teacher img {
  object-position: center 38%;
}

.teacher__bio > p {
  margin-bottom: 13px;
  font-size: 15px;
}

.teacher__role {
  margin-bottom: 0 !important;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 14px !important;
  letter-spacing: 0.14em;
}

.teacher__name {
  padding-bottom: 17px;
  margin-bottom: 22px !important;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 34px !important;
  letter-spacing: 0.18em;
}

.teacher__name span {
  margin-left: 8px;
}

.teacher__history {
  color: var(--color-pink-dark);
  font-family: var(--font-serif);
  font-size: 18px !important;
}

.teacher__career {
  padding: 20px 24px;
  margin-top: 24px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-blush);
}

.teacher__career h3 {
  padding-bottom: 9px;
  margin-bottom: 12px;
  border-bottom: 1px solid #ebcfcc;
  color: var(--color-pink-dark);
  font-size: 18px;
}

.teacher__career ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.teacher__career li {
  position: relative;
  padding-left: 20px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.75;
}

.teacher__career li + li {
  margin-top: 4px;
}

.teacher__career li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-gold);
  content: "・";
}

/* Access */
.access {
  background: linear-gradient(115deg, #fff5f3, #fffaf8);
}

.access__intro {
  margin: -25px auto 34px;
  color: #6d4d48;
  font-family: var(--font-serif);
  font-size: 17px;
  text-align: center;
}

.access-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  background: rgba(255, 255, 255, 0.9);
}

.yamamoto-feature {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  align-items: start;
  gap: 30px;
}

.classroom-photo {
  display: block;
  justify-self: end;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  border: 6px solid var(--color-white);
  border-radius: 52px 8px 52px 8px;
  outline: 1px solid rgba(189, 139, 59, 0.25);
  box-shadow: var(--shadow-soft);
  background: #f7e9e6;
}

.classroom-photo img {
  width: 100%;
  height: auto;
}

.access-details {
  min-width: 0;
}

.classroom-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-blush);
}

.classroom-card--yamamoto {
  padding: 28px;
}

.classroom-card--ikoma {
  margin-bottom: 20px;
}

.classroom-card__label {
  margin-bottom: 2px;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.classroom-card h3 {
  padding-bottom: 7px;
  margin-bottom: 9px;
  border-bottom: 1px solid #ebcfcc;
  color: var(--color-pink-dark);
  font-size: 18px;
}

.classroom-card p:not(.classroom-card__label) {
  margin-bottom: 3px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.classroom-card p:last-child {
  margin-bottom: 0;
}

.access-list {
  margin: 0;
}

.access-list__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid #f0dfdc;
}

.access-list__item:last-child {
  border-bottom: 0;
}

.access-list dt {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #77534d;
  font-family: var(--font-serif);
  font-size: 15px;
}

.access-list dt img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.access-list dd {
  margin: 0;
  color: var(--color-ink);
  font-size: 15px;
}

.access-illustration {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid #ead5d0;
  border-radius: 18px;
  background-color: #f2e8e4;
  background-image:
    linear-gradient(32deg, transparent 46%, rgba(255, 255, 255, 0.9) 47%, rgba(255, 255, 255, 0.9) 52%, transparent 53%),
    linear-gradient(122deg, transparent 46%, rgba(255, 255, 255, 0.9) 47%, rgba(255, 255, 255, 0.9) 52%, transparent 53%);
  background-size: 105px 105px;
}

.access-illustration::before,
.access-illustration::after {
  position: absolute;
  background: rgba(215, 191, 182, 0.6);
  content: "";
}

.access-illustration::before {
  top: 46%;
  left: -5%;
  width: 115%;
  height: 12px;
  transform: rotate(-12deg);
}

.access-illustration::after {
  top: -10%;
  left: 32%;
  width: 10px;
  height: 120%;
  transform: rotate(18deg);
}

.access-illustration__station,
.access-illustration__school {
  position: absolute;
  z-index: 2;
  padding: 5px 13px;
  border-radius: 5px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.access-illustration__station {
  bottom: 28%;
  left: 8%;
  background: #a99a94;
}

.access-illustration__school {
  top: 25%;
  right: 7%;
  background: var(--color-pink);
}

.access-illustration__route {
  position: absolute;
  z-index: 1;
  top: 34%;
  right: 28%;
  bottom: 36%;
  left: 27%;
  border-top: 4px dotted var(--color-gold);
  border-right: 4px dotted var(--color-gold);
  border-radius: 0 24px 0 0;
  transform: rotate(-8deg);
}

.access-illustration__pin {
  position: absolute;
  z-index: 2;
  top: 16%;
  right: 23%;
  color: var(--color-pink);
  font-size: 28px;
  text-shadow: 0 2px 0 var(--color-white);
}

.access-illustration p {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 14px;
  margin: 0;
  color: #806d67;
  font-family: var(--font-serif);
  font-size: 14px;
  text-align: right;
}

.access-illustration small {
  font-family: var(--font-sans);
  font-size: 10px;
}

.access__note {
  margin: 18px 12px 0;
  color: var(--color-muted);
  font-size: 13px;
  text-align: right;
}

/* Trial call to action */
.trial-cta {
  position: relative;
  overflow: hidden;
  padding-block: 70px;
  border-block: 1px solid var(--color-border);
  background: linear-gradient(105deg, #fff1ef, #fff8f6 55%, #fbe7e6);
}

.trial-cta__decoration {
  position: absolute;
  top: 50%;
  right: -4%;
  width: 48%;
  transform: translateY(-50%);
  opacity: 0.3;
  pointer-events: none;
}

.trial-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
}

.trial-cta__eyebrow {
  margin-bottom: 4px;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.trial-cta h2 {
  margin-bottom: 12px;
  color: var(--color-pink-dark);
  font-size: clamp(30px, 3.4vw, 42px);
}

.trial-cta p:last-child {
  margin-bottom: 0;
  font-size: 15px;
}

.button--large {
  min-width: 360px;
  min-height: 64px;
}

/* Contact */
.contact {
  background: var(--color-ivory);
}

.contact__container {
  max-width: 980px;
}

.contact__intro {
  margin: -24px auto 44px;
  text-align: center;
}

.contact-form {
  padding: 48px 56px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  background: var(--color-white);
}

.contact-form__required-note {
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 12px;
  text-align: right;
}

.contact-form__required-note span,
.required {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 1px 7px;
  border-radius: 4px;
  color: var(--color-white);
  background: var(--color-pink);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  vertical-align: 0.15em;
}

.form-row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  padding-block: 20px;
  border-bottom: 1px solid #f0dfdc;
}

.form-row > label,
.form-row legend {
  padding-top: 11px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 700;
}

.form-row legend {
  float: left;
  width: 250px;
  margin-right: 24px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d9c8c4;
  border-radius: 7px;
  color: var(--color-ink);
  background: #fffdfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select {
  min-height: 50px;
  padding: 10px 14px;
}

.form-row textarea {
  min-height: 180px;
  padding: 13px 14px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--color-pink-soft);
  outline: none;
  box-shadow: 0 0 0 3px rgba(215, 88, 114, 0.12);
  background: var(--color-white);
}

.form-row--fieldset {
  display: block;
  min-width: 0;
  margin: 0;
  border: 0;
  border-bottom: 1px solid #f0dfdc;
}

.form-row--fieldset::after {
  display: block;
  clear: both;
  content: "";
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  min-height: 50px;
  align-items: center;
}

.radio-group label,
.form-consent label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 14px;
}

input[type="radio"],
input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--color-pink);
}

.form-consent {
  padding: 30px 0 10px;
  text-align: center;
}

.form-status {
  min-height: 30px;
  margin: 16px 0;
  color: #a23c52;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  white-space: pre-line;
}

.form-status.is-sending {
  color: #775a61;
}

.form-status.is-success {
  color: #28764c;
}

.form-status.is-error {
  color: #a23c52;
}

.button--submit {
  display: flex;
  width: min(100%, 390px);
  margin-inline: auto;
  cursor: pointer;
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

/* Footer */
.site-footer {
  padding-top: 60px;
  color: #765d58;
  background: #f8e9e6;
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 44px;
}

.site-footer__brand img {
  width: 290px;
  margin-bottom: 12px;
}

.site-footer__brand p,
.site-footer__info p {
  margin-bottom: 4px;
  font-size: 13px;
}

.site-footer__info {
  padding-left: 34px;
  border-left: 1px solid #e2c8c3;
}

.site-footer__info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--color-pink-dark);
  font-family: var(--font-serif);
  font-weight: 600;
}

.site-footer__copyright {
  padding: 18px 20px;
  margin: 0;
  border-top: 1px solid #e2c8c3;
  font-family: Georgia, "Times New Roman", var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
}

@media (max-width: 1240px) {
  .global-nav {
    gap: 16px;
  }

  .global-nav li a {
    padding-inline: 9px;
    font-size: 13px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
    gap: 32px;
  }

  .hero__copy {
    padding-left: 10px;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    padding-inline: 24px;
  }

  .brand {
    width: 238px;
  }

  .menu-button {
    display: block;
  }

  .global-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: block;
    max-height: calc(100dvh - var(--header-height));
    padding: 18px 24px 28px;
    overflow-y: auto;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 18px 34px rgba(75, 44, 42, 0.12);
    background: rgba(255, 253, 251, 0.99);
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .global-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .global-nav li + li::before {
    display: none;
  }

  .global-nav li a {
    padding: 14px 10px;
    border-bottom: 1px solid #f0dfdc;
    font-size: 15px;
  }

  .header-cta {
    display: flex;
    width: min(100%, 360px);
    margin: 20px auto 0;
  }

  .hero,
  .hero__inner {
    min-height: 610px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
    padding-inline: 24px;
  }

  .hero h1 {
    font-size: clamp(31px, 3.2vw, 34px);
  }

  .hero__lead {
    font-size: 22px;
  }

  .hero__lead span {
    font-size: 50px;
  }

  .hero__lead::after {
    width: 350px;
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-card {
    min-height: 350px;
  }

  .philosophy__inner,
  .teacher__inner {
    gap: 46px;
  }

  .lesson-card {
    padding-inline: 26px;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-panel {
    grid-template-columns: 1fr;
  }

  .access-illustration {
    min-height: 330px;
  }
}

@media (max-width: 900px) {
  .container {
    padding-inline: 24px;
  }

  .section {
    padding-block: 86px;
  }

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

  .sp-only,
  .hero__mobile-break {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 50px 24px 70px;
  }

  .hero__copy {
    max-width: 640px;
    padding-left: 0;
    margin-inline: auto;
    text-align: center;
  }

  .hero__lead {
    position: relative;
    justify-content: center;
    font-size: 24px;
  }

  .hero__lead::after {
    top: auto;
    right: 0;
    bottom: -2px;
    left: 0;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(34px, 7vw, 47px);
  }

  .hero__text {
    margin-inline: auto;
  }

  .hero__visual {
    width: min(100%, 660px);
    margin: 5px auto 0;
  }

  .hero__image-frame {
    aspect-ratio: 16 / 11;
    border-radius: 80px 8px 80px 8px;
  }

  .hero__image-note {
    right: 18px;
  }

  .philosophy__inner,
  .teacher__inner {
    grid-template-columns: 1fr;
  }

  .teacher__inner {
    grid-template-areas:
      "intro"
      "photo"
      "bio";
    row-gap: 34px;
  }

  .voices-grid {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .yamamoto-feature {
    grid-template-columns: 1fr;
  }

  .classroom-photo {
    justify-self: center;
    width: min(100%, 560px);
  }

  .philosophy__content {
    order: 1;
  }

  .philosophy__visual {
    order: 2;
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .lesson-grid {
    grid-template-columns: 1fr;
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .lesson-card {
    min-height: 0;
  }

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

  .lesson-guide-grid {
    grid-template-columns: 1fr;
    width: min(100%, 650px);
    margin-inline: auto;
    margin-top: 24px;
  }

  .teacher__photo {
    justify-self: center;
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .photo-frame--teacher {
    aspect-ratio: 4 / 5;
  }

  .trial-cta__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .button--large {
    min-width: 0;
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .form-row > label {
    padding-top: 0;
  }

  .form-row legend {
    float: none;
    width: auto;
    padding-top: 0;
    margin: 0 0 10px;
  }

  .site-footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15px;
    line-height: 1.85;
  }

  .container {
    padding-inline: 20px;
  }

  .section {
    padding-block: 70px;
  }

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

  .section-heading h2 {
    font-size: clamp(27px, 8vw, 34px);
    letter-spacing: 0.06em;
  }

  .header-inner {
    padding-inline: 16px;
  }

  .brand {
    width: min(68vw, 220px);
  }

  .menu-button {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .global-nav {
    padding-inline: 18px;
  }

  .global-nav ul {
    grid-template-columns: 1fr;
  }

  .global-nav li a {
    padding-block: 11px;
  }

  .hero__inner {
    gap: 34px;
    padding: 42px 20px 56px;
  }

  .hero__lead {
    margin-bottom: 18px;
    font-size: clamp(18px, 5.8vw, 24px);
    letter-spacing: 0.08em;
  }

  .hero__lead span {
    margin-inline: 5px 2px;
    font-size: clamp(44px, 14vw, 58px);
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(22px, 7vw, 26px);
    line-height: 1.5;
    letter-spacing: 0.055em;
  }

  .hero__summary {
    font-size: 16px;
  }

  .hero__text {
    font-size: 14px;
    text-align: left;
  }

  .hero__image-frame {
    border-width: 4px;
    border-radius: 48px 6px 48px 6px;
  }

  .hero__image-note {
    right: 10px;
    bottom: -17px;
    padding: 7px 15px;
    font-size: 11px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 20px;
    font-size: 16px;
  }

  .reason-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .reason-grid {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .reason-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .reason-card img {
    width: 94px;
    height: 94px;
  }

  .reason-card h3 {
    min-height: 0;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 52px;
  }

  .about-highlight {
    padding: 24px 22px;
  }

  .feature-block {
    padding: 24px 20px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .philosophy__content > p {
    font-size: 14px;
  }

  .philosophy__visual {
    padding-bottom: 0;
  }

  .photo-frame--studio {
    border-width: 4px;
    border-radius: 48px 6px 48px 6px;
  }

  .check-list {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 20px);
    padding: 20px;
    margin: -24px auto 0;
  }

  .check-list li {
    font-size: 14px;
  }

  .lesson-card {
    padding: 36px 24px 28px;
    border-radius: 7px 34px 7px 34px;
  }

  .lesson-card h3 {
    font-size: 21px;
  }

  .lesson-guide {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 20px;
  }

  .lesson-guide__icon {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  .lesson-guide h3 {
    font-size: 18px;
    letter-spacing: 0.04em;
  }

  .price-grid {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .price-card {
    padding: 34px 20px 28px;
  }

  .price-card__amount strong {
    font-size: clamp(42px, 14vw, 55px);
  }

  .pricing__notes {
    text-align: left;
  }

  .teacher__inner {
    gap: 30px;
  }

  .voice-card {
    padding: 26px 22px;
  }

  .voices__intro {
    margin-bottom: 30px;
    font-size: 15px;
    text-align: left;
  }

  .photo-frame--teacher {
    border-width: 4px;
    border-radius: 80px 6px 80px 6px;
  }

  .teacher__name {
    font-size: 30px !important;
  }

  .teacher__career {
    padding: 18px;
  }

  .access__intro {
    margin-top: -10px;
    font-size: 15px;
    text-align: left;
  }

  .access-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .classroom-card,
  .classroom-card--yamamoto {
    padding: 20px;
  }

  .classroom-photo {
    border-width: 4px;
    border-radius: 34px 6px 34px 6px;
  }

  .access-list__item {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 13px 4px;
  }

  .access-list dt {
    font-size: 13px;
  }

  .access-list dt img {
    width: 24px;
    height: 24px;
  }

  .access-list dd {
    padding-left: 37px;
    font-size: 14px;
  }

  .access-illustration {
    min-height: 260px;
  }

  .access-illustration__station,
  .access-illustration__school {
    padding-inline: 8px;
    font-size: 10px;
  }

  .access__note {
    margin-inline: 0;
    text-align: left;
  }

  .trial-cta {
    padding-block: 58px;
  }

  .trial-cta__decoration {
    right: -28%;
    width: 105%;
    opacity: 0.16;
  }

  .trial-cta h2 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .trial-cta p:last-child {
    font-size: 14px;
  }

  .contact__intro {
    margin-top: -10px;
    text-align: left;
  }

  .contact-form {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .contact-form__required-note {
    text-align: left;
  }

  .radio-group {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .form-consent {
    text-align: left;
  }

  .site-footer {
    padding-top: 48px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__brand img {
    width: min(78vw, 280px);
  }

  .site-footer__info {
    padding: 24px 0 0;
    border-top: 1px solid #e2c8c3;
    border-left: 0;
  }
}

@media (max-width: 360px) {
  .container,
  .hero__inner {
    padding-inline: 16px;
  }

  .brand {
    width: 205px;
  }

  .hero h1 {
    font-size: 25px;
    letter-spacing: 0.04em;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__lead span {
    font-size: 45px;
  }

  .contact-form {
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
