:root {
  --bg: #f7f3ee;
  --bg-deep: #efe7dc;
  --card: rgba(255, 255, 255, 0.74);
  --white: #ffffff;
  --text: #2d2824;
  --muted: #756d66;
  --line: rgba(66, 54, 44, 0.12);
  --accent: #b89c81;
  --accent-deep: #9d8065;
  --shadow: 0 18px 40px rgba(60, 43, 28, 0.08);
  --shadow-soft: 0 10px 24px rgba(60, 43, 28, 0.05);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 84px;
  padding-bottom: 100px;
  font-family: "Noto Sans JP", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.7), transparent 40%),
    linear-gradient(180deg, #faf7f2 0%, var(--bg) 100%);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html,body {
  touch-action: manipulation;
  overscroll-behavior: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

/* =========================
   Loader
========================= */

#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f7f3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
}

.loader-bar::after {
  content: "";
  position: absolute;
  left: -40%;
  width: 40%;
  height: 100%;
  background: var(--accent);
  animation: loading 1.2s infinite ease;
}

@keyframes loading {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* =========================
   Layout
========================= */

.page-shell {
  width: 100%;
}

/* =========================
   Fixed Apparel-like Header
========================= */

.mobile-header {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 500;
  height: 64px;
  padding: 0 12px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  background: rgba(247, 243, 238, 0.78);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 18px 42px rgba(60,43,28,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: visible;
  transition:
  background .3s ease,
  transform .3s ease,
  box-shadow .3s ease;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  margin-left: 20px;
  width: 92px;
  height: auto;
  display: block;
  object-fit: contain;
}
.brand-logo-terms {
  
  width: 92px;
  height: auto;
  display: block;
  object-fit: contain;
}



.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(66,54,44,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.58);
  display: grid;
  place-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  border-radius: 999px;
  background: var(--text);
  transition: transform .28s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-cta {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--text);
  color: var(--white);
  border: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

/* =========================
   Drawer Menu
========================= */

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(20,18,16,.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 78%;
  max-width: 320px;
  height: 100svh;
  padding: calc(env(safe-area-inset-top) + 22px) 22px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(247,243,238,.92));
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 30px 0 80px rgba(45,40,36,.18);
  transform: translateX(-110%);
  transition: transform .42s cubic-bezier(.22,.9,.22,1);
  display: flex;
  flex-direction: column;
}

.drawer-nav.is-open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(66,54,44,.08);
}

.drawer-label {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: .08em;
}

.drawer-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.05);
  cursor: pointer;
}

.drawer-links {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}

.drawer-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-radius: 14px;
  transition: background var(--transition), transform var(--transition);
}

.drawer-links a::after {
  content: "›";
  color: var(--accent-deep);
}

.drawer-links a:active {
  transform: scale(0.98);
  background: rgba(184,156,129,.12);
}

body.menu-open {
  overflow: hidden;
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;
  min-height: calc(100svh - 96px);
  display: flex;
  align-items: flex-end;
  padding: 0 16px 22px;
}

.hero-media-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 23, 18, 0.12) 0%, rgba(31, 23, 18, 0.46) 68%, rgba(31, 23, 18, 0.72) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 30%, rgba(247,243,238,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px 18px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
}

.eyebrow,
.section-label,
.final-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255,255,255,0.82);
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 10vw, 4rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--white);
}

.hero-copy {
  margin: 18px 0 0;
  font-size: 0.96rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.88);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.8rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

/* =========================
   Buttons
========================= */

.btn,
.section-cta,
.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), opacity var(--transition);
}

.btn {
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 500;
}

.btn:active,
.section-cta:active,
.floating-cta:active,
.header-cta:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.section-cta {
  width: 100%;
  min-height: 54px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--text);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 500;
}

.section-cta.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

/* =========================
   Sections
========================= */

.section {
  padding: 72px 16px 0;
}

.section-head {
  margin-bottom: 22px;
}

.section-label {
  color: var(--accent-deep);
}

.section-head h2,
.final-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.section-desc,
.info-note,
.access-note,
.price-note,
.media-body p,
.promise-card p,
.instructor-body p,
.timeline-body p,
.faq-item p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.85rem;
}

#lesson,
#flow,
#price,
#instructor,
#schedule,
#studio,
#access,
#faq {
  scroll-margin-top: 110px;
}

/* =========================
   Cards
========================= */

.soft-card,
.price-card,
.media-card,
.info-card,
.access-card,
.final-cta-inner {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.soft-card,
.info-card,
.access-card,
.final-cta-inner {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.media-card,
.price-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* =========================
   Intro
========================= */

.concern-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.concern-list li {
  position: relative;
  padding: 0 0 0 22px;
  line-height: 1.8;
}

.concern-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* =========================
   Lesson Media
========================= */

.lesson-grid {
  display: grid;
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.lesson-grid::-webkit-scrollbar {
  display: none;
}

.media-card {
  scroll-snap-align: start;
}

.media-frame {
  position: relative;
  aspect-ratio: 9 / 12;
  background: #ddd3c6;
}

.media-frame video,
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-body {
  padding: 18px 18px 3px;
}

.media-body h3,
.price-card h3,
.timeline-body h3,
.instructor-body h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
}

.insta-btn {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, background 0.2s ease;
  opacity: 0.9;
}

.insta-btn:hover {
  transform: scale(1.08);
  background: #fff;
}

.media-frame:hover .insta-btn {
  opacity: 1;
}

/* =========================
   Price
========================= */

.price-stack,
.faq-list {
  display: grid;
  gap: 14px;
}

.price-card {
  padding: 22px;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(184,156,129,0.16), rgba(255,255,255,0.85));
  border-color: rgba(184,156,129,0.32);
}

.price-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(184,156,129,0.16);
  color: var(--accent-deep);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-value {
  margin: 0;
  font-family: "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.price-value.small {
  font-size: 2.15rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(66, 54, 44, 0.08);
}

.price-label {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.price-amount {
  font-family: "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--text);
}

.price-amount.strong {
  color: var(--accent-deep);
  font-size: 1.65rem;
  font-weight: 500;
}

.price-badge {
  font-size: 0.6rem;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(184,156,129,0.18);
  color: var(--accent-deep);
  letter-spacing: 0.08em;
}

.trial-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  aspect-ratio: 3 / 4;
}

.trial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trial-body {
  padding-top: 12px;
}

.trial-insta-btn {
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
}

.trial-insta-btn svg {
  width: 22px;
  height: 22px;
}

/* =========================
   Flow
========================= */

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 58px;
  bottom: -14px;
  width: 1px;
  background: rgba(184,156,129,0.45);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(180deg, #efe0d0, #e7d5c3);
  color: var(--accent-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.timeline-body {
  padding: 12px 0 0;
}

/* =========================
   Instructor
========================= */

.instructor-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 85%;
  gap: 10px;
  overflow-x: auto;
  padding: 0 16px 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.instructor-grid::-webkit-scrollbar {
  display: none;
}

.instructor-card {
  scroll-snap-align: start;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.instructor-image-wrap {
  aspect-ratio: 4 / 4.4;
  overflow: hidden;
  flex-shrink: 0;
}

.instructor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.instructor-name {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem !important;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: var(--text);
}

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

.label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(157, 128, 101, 0.74);
  text-transform: uppercase;
}

.text {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.72;
  letter-spacing: 0.01em;
}

.instructor-section:last-child .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================
   Schedule / Access / Gallery
========================= */

.info-list {
  margin: 0;
  display: grid;
  gap: 14px;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-list dt,
.info-list dd {
  margin: 0;
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  font-weight: 500;
}

.gallery-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 76%;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  scroll-snap-align: start;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.access-card {
  display: grid;
  gap: 18px;
}

.access-station {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 500;
}

.access-address {
  margin: 0 0 10px;
  line-height: 1.8;
}

.map-frame {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1 / 0.82;
  background: #ddd2c3;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   FAQ
========================= */

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.6);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 48px 18px 20px;
  font-weight: 500;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--accent-deep);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
}

/* =========================
   Contact / Final CTA
========================= */

.contact {
  padding: 20px 16px 0;
}

.contact-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 18px;
}

.contact-lead-line {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: linear-gradient(to right, rgba(157,128,101,0), rgba(157,128,101,0.5));
}

.contact-lead-text {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(117,109,102,0.9);
  white-space: nowrap;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.contact-btn:active {
  transform: scale(0.97);
  box-shadow: 0 6px 14px rgba(60, 43, 28, 0.08);
}

.contact-btn.line {
  background: #00C300;
  color: #fff;
  border: none;
}

.contact-btn.insta {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border: none;
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-line {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.final-cta {
  padding: 55px 16px 20px;
}

.final-cta-inner {
  text-align: center;
  background: linear-gradient(180deg, rgba(184,156,129,0.14), rgba(255,255,255,0.82));
}

.final-label {
  color: var(--accent-deep);
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p {
  margin: 0 0 18px;
  color: var(--muted);
}

.btn.full {
  width: 100%;
}

/* =========================
   Floating CTA / Lightbox / Motion
========================= */

.floating-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(env(safe-area-inset-bottom) + 12px);
  z-index: 40;
  min-height: 58px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(45, 40, 36, 0.92);
  color: var(--white);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(45, 40, 36, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  text-align: left;
}

.floating-cta span {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.7);
}

.floating-cta strong {
  align-self: center;
  font-size: 0.98rem;
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(24, 20, 16, 0.9);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 20px;
}

.lightbox-close {
  position: absolute;
  top: calc(env(safe-area-inset-top) + 16px);
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.5rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   PC / Reduced Motion
========================= */

@media (min-width: 768px) {
  body::before {
    content: "このサイトはスマホ最適化で設計しています。";
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(45, 40, 36, 0.88);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .page-shell {
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
    box-shadow: 0 0 0 1px rgba(66, 54, 44, 0.06), 0 24px 80px rgba(44, 28, 14, 0.12);
  }

  .mobile-header {
    max-width: 410px;
    margin: 0 auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

.terms-section-pc{
  padding: 50px 16px;
}

.terms-card-pc {
  padding-top: 0px;
  height: 250px;

  overflow-y: auto;

  overflow-x: hidden;

  -webkit-overflow-scrolling: touch;

}