/* =====================================================
   MIINT — PC Unified Stylesheet
   Combines: pc.css + price_pc.css + campaign_pc.css
             + register form styles + legal page styles
   ===================================================== */
/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  min-height: 100%;
  background-color: #E4E2DF;
  transition: background-color 0.05s linear;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: transparent;
  color: #333;
  min-width: 1400px;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
}

/* ── CSS Variables ── */
:root {
  --mint: #CCF3EE;
  --mint-light: #9AE0D8;
  --mint-light2: #CDF3EE;
  --mint-blue: #ACC2D8;
  --mint-dark: #6DCFC4;
  --text-dark: #5a6464;
  --text-mid: #666666;
  --text-light: #999999;
  --bg: #FAFAF8;
  --white: #ffffff;
  --header-h: 64px;
  --error: #e55;
  --border: #e5e5e5;
}

html::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, #ffffff, #cdf3ed 52%, #e8e6e3);
  opacity: 0;
  transition: opacity 2s ease;
  z-index: -1;
}

html.is-bottom::before {
  opacity: 1;
}

/* =====================================================
   HEADER
   ===================================================== */
#header {
  position: fixed;
  top: 59px;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  background: transparent;
}

.header-logo {
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.header-logo img {
  height: 42px;
  width: auto;
  display: block;
}

#header.header-visible .header-logo {
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger */
.menu-btn {
  position: fixed;
  z-index: 200;
  top: 68px;
  right: 23px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 12px;
}

.menu-btn span {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--text-dark);
  transition: opacity 0.2s;
}

.menu-btn:hover span {
  opacity: .5;
}

/* =====================================================
   SOCIAL SIDEBAR (fixed right)
   ===================================================== */
.social-sidebar {
  position: fixed;
  /* right: -62px; */
  right: 55px;
  top: 235px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  /* padding: 20px 90px; */
}

.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-dark);
  color: #5A6464;
  /* opacity: 0.7; */
  transition: opacity 0.2s;
  margin-bottom: 12px;
}

.social-sidebar a:hover {
  opacity: .5;
}

.social-sidebar svg {
  width: 44px;
  height: 44px;
}

/* =====================================================
   MENU OVERLAY
   ===================================================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.45s;
}

.menu-overlay.open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s;
}

/* Blurred KV background (left 60%) */
.menu-bg {
  flex: 1;
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.45s ease;
  width: 100svw;
  height: 100svh;
  background-color: rgba(255, 255, 255, .3);
  backdrop-filter: blur(10px);
}

/* .menu-bg::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: url('../docs/PC/MIINT-KV1-PC_260401.png') center / cover no-repeat;
  filter: blur(14px) brightness(0.75);
} */
.menu-overlay.open .menu-bg {
  opacity: 1;
}

/* Right panel */
.menu-panel {
  width: 450px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 67px 58px 58px 58px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4,
      0,
      0.2,
      1);

  .cta-area {
    padding-bottom: 44px;
  }
}

.menu-overlay.open .menu-panel {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}

.menu-logo {
  display: flex;
  align-items: center;
}

.menu-logo img {
  height: 49px;
  width: auto;
  display: block;
}

.menu-close-btn {
  background: none;
  border: none;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  transform: translateX(24px);

  img {
    width: 70px;
  }
}

.menu-close-btn:hover {
  opacity: 0.5;
}

/* Nav items */
.menu-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}

.menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px 20px 17px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: #5a6464;
  border-bottom: 1px solid #e8e8e8;
  transition: color 0.2s;
}

.menu-nav a:first-child {
  border-top: 1px solid #e8e8e8;
}

.menu-nav a:hover {
  color: #73dfd4;
}

.menu-nav a .arrow {
  font-size: 13px;
}

/* CTA button in menu */
.menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-blue) 100%);
  color: var(--white);
  padding: 17px 28px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(109, 207, 196, 0.35);
  transition: opacity 0.25s, transform 0.25s;
}

.menu-cta:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.menu-cta:hover .btn-arrow {
  transform: translateX(6px);
}

/* Social icons in menu */
.menu-social {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 0;
}

.menu-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  color: var(--text-dark);
  /* opacity: 0.75; */
  transition: opacity 0.2s;
}

.menu-social a:hover {
  opacity: .5;
}

.menu-social svg {
  width: 20px;
  height: 20px;
}

/* =====================================================
   HERO / KV
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 140 / 85;
  /* height: 100vh;
  max-height: 850px; */
  /* height: 850px; */
  overflow: hidden;
  background: #e8e4da;
}

.hero-text {
  position: absolute;
  top: 141px;
  left: 190px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px;
  line-height: 2.275;
  letter-spacing: 0.16em;
  color: #5a6464;
  font-weight: 500;
}

.hero-logo {
  position: absolute;
  top: 304px;
  left: 189px;

  img {
    width: 330px;
  }
}

.hero-catch {
  position: absolute;
  bottom: 219px;
  right: 353px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 24px;
  line-height: 2.275;
  color: #5a6464;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.kv-slider {
  position: absolute;
  inset: 0;
}

.kv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.kv-slide.active {
  opacity: 1;
}

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

/* SCROLL indicator */
.scroll-indicator {
  position: absolute;
  bottom: 68px;
  right: 67px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 10;
  /* animation: arrowmove 3s ease-in-out infinite; */
}

@keyframes arrowmove {
  0% {
    bottom: 99px;
  }

  50% {
    bottom: 68px;
  }

  100% {
    bottom: 99px;
  }
}

.scroll-indicator .scroll-label {
  writing-mode: vertical-rl;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #5a6464;
}

.scroll-line {
  width: 1px;
  height: 130px;
  background: #5a6464;
  transform-origin: top;
  animation: arrowmove 3s ease-in-out infinite;
  /* animation: scrollDown 2.2s ease-in-out infinite; */
}

@keyframes arrowmove {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0px);
  }
}

.scroll-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 1px;
  background: var(--text-dark);
  transform-origin: left center;
  transform: rotate(-45deg);
}

/* @keyframes scrollDown {
  0%   { transform: scaleY(0); opacity: 0; transform-origin: top; }
  45%  { transform: scaleY(1); opacity: 1; }
  46%  { transform-origin: bottom; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
} */
/* =====================================================
   MAIN CONTENT
   ===================================================== */
#mainContent {
  background: transparent;
}

/* ── Letter Section ── */
.letter-section {
  /* padding: 0px 0 80px; */
  margin-top: -30px;
  position: relative;
  z-index: 100;
}

.letter-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
}

.letter-lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.0;
  margin-bottom: 38px;
  color: #5a6464;
}

.letter-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25;
  color: #5a6464;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.letter-quote {
  padding: 28px 32px;
  border-left: 3px solid var(--mint);
  background: #f5fdfb;
  font-style: normal;
  color: var(--text-dark);
  margin: 32px 0;
}

.letter-sign {
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-dark);
}

/* ── Share Buttons ── */
.share-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 45px;
  margin-bottom: 36px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  /* border: 1px solid #d8d8d8; */
  border-radius: 50px;
  padding: 20px 40px;
  font-size: 16px;
  /* font-weight: 300; */
  letter-spacing: 0.0;
  color: #5a6464;
  transition: border-color 0.2s, background 0.2s;
}

.share-btn:hover {
  border-color: var(--mint);
  background: #f5fdfb;
}

.share-btn svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

/* ── Social Row (in content) ── */
.social-row {
  display: flex;
  gap: 34px;
  justify-content: center;
  margin: 0 0 47px;

  img {
    width: 100%;
  }
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #5a6464;
  /* opacity: 0.7; */
  transition: opacity 0.2s;
}

.social-label {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 296px;
  margin: 44px auto 16px;
  font-size: 16px;
  font-weight: 400;
  /* letter-spacing: 0.12em; */
  color: var(--text-mid);
}

.social-label::before,
.social-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.social-row a:hover {
  opacity: .5;
}

.social-row svg {
  width: 44px;
  height: 44px;
}

/* ── CTA Area ── */
.cta-area {
  text-align: center;
  padding-bottom: 80px;
}

.cta-area {
  a {
    position: relative;
  }
}

#register {
  margin-top: 50px;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.age-limit-label {
  margin-top: 20px;
  color: var(--text-light);
  font-size: 14px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background-image: linear-gradient(90deg, #73dfd4, #b7c8df);
  color: var(--white);
  padding: 25px 55px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.25s, transform 0.25s;
  /* box-shadow: 0 4px 20px rgba(109, 207, 196, 0.35); */
}

.cta-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* .cta-btn:hover .btn-arrow { transform: translate(6px); } */
.cta-sub {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ── Campaign Section ── */
.campaign-section {
  padding: 0 0 80px;
}

.campaign-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.campaign-link {
  display: block;
  /* border-radius: 12px; */
  text-align: center;
  overflow: hidden;
  transition: opacity 0.25s;
}

.campaign-link a {
  text-align: center;
}

.campaign-link:hover {
  opacity: 0.88;
}

.campaign-link img {
  width: 100%;
  height: auto;
  /* display: block; */
  width: 800px;
}

/* ── Blog Section ── */
.blog-section {
  padding: 30px 0 100px;
  background: transparent;
}

.blog-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 72px;
  align-items: flex-start;
}

.blog-header-col {
  width: 330px;
  flex-shrink: 0;
  padding-top: 4px;
}

.blog-title-en {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.06em;
  line-height: 1.75;
  color: #5a6464;
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.blog-title-en::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: #48ead9;
  max-width: 60px;
}

.blog-subtitle-ja {
  font-size: 16px;
  font-weight: 400;
  color: #5a6464;
  letter-spacing: 0.06em;
  line-height: 2.25;
  margin-bottom: 30px;
}

.more-blog-btn {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  /* display: inline-flex; */
  align-items: center;
  /* gap: 8px; */
  background-image: linear-gradient(90deg, #73dfd4, #b7c8df);
  color: var(--white);
  padding: 27px 52px;
  border-radius: 50px;
  font-size: 20px;
  letter-spacing: 0.06em;
  transition: opacity 0.25s, transform 0.25s;
  /* box-shadow: 0 4px 20px rgba(109, 207, 196, 0.35); */
}

.more-blog-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* .more-blog-btn:hover .btn-arrow { transform: translateX(6px); } */
.blog-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card-link {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.blog-empty {
  color: var(--text-light);
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 20px 0;
}

.blog-card {
  display: flex;
  flex-direction: row;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(4px);
  /* border-radius: 12px; */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.blog-card-thumb {
  width: 30%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.blog-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.06);
}

.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px 30px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.blog-card-date {
  font-size: 14px;
  font-weight: 400;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

.blog-card-cat {
  font-size: 14px;
  font-weight: 400;
  /* letter-spacing: 0.12em; */
  color: var(--text-mid);
  background-color: var(--mint-light2);
  border: 1px solid var(--mint-light2);
  border-radius: 50px;
  padding: 2px 10px;
  white-space: nowrap;
}

.blog-card-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #5a6464;
}


/* ── Price Section ── */
.price-section {
  padding: 60px 0 80px;
  text-align: center;
}

.price-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.price-lead {
  font-size: 18px;
  font-weight: 400;
  color: #5a6464;
  letter-spacing: 0.06em;
  line-height: 2;
}

.price-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-image: linear-gradient(90deg, #73dfd4, #b7c8df);
  color: var(--white);
  padding: 26px 135px;
  border-radius: 50px;
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--white);
  /* padding: 18px 52px; */
  border-radius: 50px;
  /* font-size: 15px; */
  /* letter-spacing: 0.12em; */
  transition: opacity 0.25s, transform 0.25s;
  /* box-shadow: 0 4px 20px rgba(109, 207, 196, 0.35); */
}

.price-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* .price-btn:hover .btn-arrow { transform: translateX(6px); } */
.price-btn-arrow {
  font-size: 18px;
  letter-spacing: 0;
  opacity: 0.85;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: transparent;
  padding: 120px 40px 48px;
  text-align: center;
}

.footer-rule {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  margin: 0 0 52px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 20px; */
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.footer-logo img {
  /* height: 44px; */
  width: 220px;
  display: block;
}

.footer-nav {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 400;
  color: #5a6464;
  /* transition: color 0.2s; */
}

/* .footer-nav a:hover { color: var(--mint); } */
.footer-nav .sep {
  font-size: 12px;
  color: var(--text-light);
}

.age-limit-footer {
  margin: 10px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 23px 22px;
  border-bottom: 1px solid var(--text-dark);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #5a6464;
  transition: color 0.2s, border-color 0.2s;
  margin-top: 19px;
}

.footer-contact-btn:hover {
  /* color: var(--mint);
  border-color: var(--mint); */
}

.footer-copy {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #5a6464;
  letter-spacing: 0.06em;
  margin-top: 12px;
}

/* =====================================================
   SIDE BANNER
   ===================================================== */
.side-banner {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 156px;
  height: 156px;
  z-index: 200;
  display: block;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: transform, opacity;
}

.side-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.side-banner:hover .side-banner-main {
  transform: translate(-50%, -50%) scale(1.06);
}

.side-banner:hover .side-banner-ring {
  animation-duration: 4s;
}

.side-banner-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: sideBannerSpin 9s linear infinite;
  transform-origin: center center;
  pointer-events: none;
}

.side-banner-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68%;
  height: 68%;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s ease;
  pointer-events: none;
}

@keyframes sideBannerSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
   PRICE PAGE  (body.price-page)
   ===================================================== */
.price-page {
  background: transparent;
}

.price-page #header.header-solid {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

.price-page #header.header-visible .header-logo {
  opacity: 1;
  pointer-events: auto;
}

.pp-hero {
  padding: 140px 0 20px;
  text-align: center;
  background: transparent;
}

.pp-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

.pp-label {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 42px;
  letter-spacing: 0.16em;
  color: var(--text-dark);
  margin: 28px 0;
  text-transform: uppercase;
}

.pp-headline,
.pp-ticket-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.3;
}

.pp-body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 2.4;
  color: var(--text-mid);
  letter-spacing: 0.06em;
}

.pp-ticket-section {
  padding: 60px 0 80px;
  background: transparent;
  text-align: center;
}

.pp-ticket-inner {
  margin: 0 auto;
  padding: 0 40px;
}

.pp-ticket-icon {
  margin: 0 auto 8px;
  width: 170px;
}

.pp-ticket-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.pp-ticket-desc {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 450;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  line-height: 2.2;
  margin-bottom: 24px;
}

.pp-ticket-price {
  display: inline-block;
  background: #ffffff;
  border: none;
  /* border-radius: 6px; */
  padding: 6px 21px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14px;
  font-weight: 450;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  margin-top: 23px;
}

.pp-ticket-amount {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 17px;
  font-weight: 450;
  color: var(--text-dark);
  margin: 0 3px;
}

.pp-ticket-unit {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 11px;
  color: var(--text-mid);
}

.pp-merits-section {
  padding: 10px 0 0;
  background: transparent;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 40px 90px;
}

.pp-merits-inner {
  padding-bottom: 90px;
  border-bottom: 1px solid var(--text-dark);
}

.pp-merits-heading {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 450;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 42px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.pp-merits-heading::before,
.pp-merits-heading::after {
  content: '';
  display: block;
  width: 90px;
  height: 1px;
  background: var(--text-dark);
  opacity: 0.35;
}

.pp-merits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  align-items: start;
}

.pp-merit-item {
  display: flex;
  flex-direction: column;
}

.pp-merit-icon {
  width: 100%;
  margin-bottom: 20px;
}

.pp-merit-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.pp-merit-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 2;
  margin-bottom: 7px;
  letter-spacing: 0.06em;
}

.pp-merit-body {
  font-family: 'Zen Kaku Gothic New',
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.875;

  /* letter-spacing: 0.04em; */
  .pp-merit-note {
    font-size: 14px;
    display: block;
    padding-top: 24px;
  }
}

.pp-compare-section {
  padding: 10px 0 80px;
  background: transparent;
}

.pp-compare-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
}

.pp-compare-inner img {
  width: 100%;
  height: auto;
  display: block;
  /* width: 85%; */
  margin: 0 auto;
}

.pp-campaign-section {
  padding: 0 0 50px;
  background: transparent;
}

.pp-campaign-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
}

.pp-cta-area {
  text-align: center;
  padding: 80px 0 45px;

  a {
    position: relative;
    padding: 25px 60px;

    img {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
    }
  }
}

.pp-payment-section {
  padding: 0 0 96px;
  background: transparent;
}

.pp-payment-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.pp-payment-heading {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
  padding-bottom: 24px;
}

.pp-payment-card {
  background: #ffffff;
  /* border-radius: 16px; */
  /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07); */
  display: flex;
  flex-direction: column;
  padding: 20px 42px 46px;
}

.pp-payment-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
}

.pp-payment-col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / 4;
}

.pp-payment-divider {
  grid-row: 1 / 4;
  width: 1px;
  background: #ebebeb;
  margin: 0 40px;
}

.pp-payment-col-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 32px;
  align-self: end;
}

.pp-payment-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
  align-self: end;
}

.pp-payment-note {
  font-size: 16px;
  font-weight: 450;
  color: var(--text-light);
  line-height: 1.9;
}

.pp-blog-section {
  padding: 65px 0 80px;
  text-align: center;
  background: transparent;
}

.pp-blog-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

.pp-blog-desc {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  line-height: 2;
  margin-bottom: 30px;
}

.pp-blog-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-image: linear-gradient(90deg,
      #73dfd4,
      #b7c8df);
  color: var(--white);
  padding: 26px 104px;
  border-radius: 50px;
  font-family: 'Zen Kaku Gothic New',
    sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: opacity 0.25s,
    transform 0.25s;

  /* box-shadow: 0 4px 20px rgba(109, 207, 196, 0.35); */
  img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
  }
}

.pp-blog-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.pp-blog-btn:hover .btn-arrow {
  transform: translateX(6px);
}

/* =====================================================
   CAMPAIGN PAGE (PC)  (body.campaign-page)
   ===================================================== */
.cp-hero {
  padding: calc(var(--header-h, 60px) + 80px) 80px 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.cp-hero-inner {
  max-width: 760px;
}

.cp-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #999;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cp-headline {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #111;
  margin-bottom: 22px;
}

.cp-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  color: #666;
}

.cp-campaigns-section {
  padding: 0 80px 80px;
}

.cp-campaigns-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cp-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 48px 56px;
  backdrop-filter: blur(4px);
}

.cp-card-alt {
  background: rgba(205, 243, 237, 0.35);
  border-color: rgba(104, 218, 205, 0.25);
}

.cp-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.cp-card-number {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #aaa;
  text-transform: uppercase;
}

.cp-card-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background: #68DACD;
  border-radius: 4px;
  padding: 3px 12px;
}

.cp-card-title {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: #111;
  margin-bottom: 20px;
}

.cp-card-lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #555;
  margin-bottom: 24px;
  /* max-width: 760px; */
}

.cp-card-lead strong {
  color: #111;
  font-weight: 500;
}

.cp-prize-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.cp-prize-box {
  flex: 0 0 200px;
  background: #fff;
  border: 1px solid #e0f5f2;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}

.cp-prize-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cp-prize-value {
  font-size: 18px;
  font-weight: 400;
  color: #111;
  line-height: 1.4;
  margin-bottom: 8px;
}

.cp-prize-note {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
}

.cp-how-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cp-how-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cp-how-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333;
}

.cp-how-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: #666;
}

.caution {
  font-size: 13px;
}

.cp-form-btn {
  display: inline-block;
  padding: 15px 36px;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  border-radius: 6px;
  transition: opacity 0.2s;
}

.cp-form-btn:hover {
  opacity: 0.75;
}

.cp-flyer-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.cp-flyer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 15px 28px;
  border: 1.5px solid #111;
  color: #111;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.cp-flyer-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cp-flyer-btn:hover {
  background: #111;
  color: #fff;
}

.cp-bonus-box {
  background: #fff8e1;
  border-left: 3px solid #f5c842;
  border-radius: 8px;
  padding: 18px 22px;
  flex: 1;
}

.cp-bonus-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #b8960a;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cp-bonus-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.85;
  color: #666;
}

.cp-bonus-note {
  font-size: 12px;
  color: #999;
}

.cp-cta-section {
  padding: 80px 80px 100px;
  text-align: center;
}

.cp-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cp-cta-lead {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

/* =====================================================
   REGISTER PAGE (form & content only)
   ===================================================== */
/* ── REGISTER MAIN ── */
/* ── REGISTER MAIN ── */
.register-main {
  min-height: 100vh;
  padding-top: var(--header-h);
}

/* ── PAGE INNER ── */
.reg-page-inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 56px 40px 120px;
}

/* ── HERO ── */
.reg-hero {
  text-align: center;
  padding: 49px 0 90px;
  position: relative;
}

.reg-title {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-dark);
}

.reg-required-note {
  /* position: absolute;
  top: 36px;
  right: 0; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  color: #fc5656;
  gap: 8px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.req-star {
  color: #d97b60;
  font-size: 12px;
  width: 8px;
  height: 8px;
}

/* ── FORM ELEMENTS ── */
.form-group {
  margin-bottom: 29px;
}

.form-label {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 4px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.form-label .req-star {
  margin-left: 3px;
  width: 8px;
  height: 8px;
}

.form-label-sub {
  font-size: 14px;
  font-weight: 400;
  color: #5a6464;
  margin-left: 6px;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 18px 16px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 3px rgba(109, 207, 196, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.8;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  font-size: 13px;
}

/* ── BIRTH DATE ROW ── */
.birth-date-row {
  display: flex;
  align-items: center;
  gap: 13px;
}

.birth-year-wrap {
  width: 164px;
  flex-shrink: 0;
}

.birth-month-wrap {
  width: 102px;
  flex-shrink: 0;
}

.birth-day-wrap {
  width: 102px;
  flex-shrink: 0;
}

.birth-date-label {
  font-size: 16px;
  color: var(--text-mid);
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 15px;
}

.birth-date-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 15px;
  line-height: 1.6;
}

/* ── INLINE RADIO (gender, marital status) ── */
.radio-inline-group {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 2px 0;
}

.radio-inline-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  user-select: none;
}

.radio-inline-label input[type="radio"] {
  display: none;
}

.radio-dot-inline {
  width: 18px;
  height: 18px;
  border: 1.5px solid #c8c8c8;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  background-color: #ffffff;
}

.radio-dot-inline::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint-dark);
  opacity: 0;
  transition: opacity 0.2s;
}

.radio-inline-label.selected .radio-dot-inline {
  border-color: var(--mint-dark);
}

.radio-inline-label.selected .radio-dot-inline::after {
  opacity: 1;
}

/* ── WEIGHT INPUT ── */
.weight-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.weight-input-wrap .form-input {
  width: 160px;
  flex-shrink: 0;
}

.weight-suffix {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
}

/* ── SECTION DIVIDER ── */
.reg-divider {
  border: none;
  border-top: 1px solid #5a6464;
  margin: 52px 0 35px;
}

/* ── SIMPLE RADIO (connect_with) ── */
.radio-simple-group {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 48px;
  margin-top: 34px;
}

.radio-simple-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  user-select: none;
}

.radio-simple-label input[type="radio"] {
  display: none;
}

.radio-dot-simple {
  width: 18px;
  height: 18px;
  border: 1.5px solid #c8c8c8;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  background-color: #ffffff;
}

.radio-dot-simple::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint-dark);
  opacity: 0;
  transition: opacity 0.2s;
}

.radio-simple-label.selected .radio-dot-simple {
  border-color: var(--mint-dark);
}

.radio-simple-label.selected .radio-dot-simple::after {
  opacity: 1;
}

/* ── CHAR COUNTER ── */
.char-counter {
  text-align: right;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 5px;
  transition: color 0.2s;
}

.char-counter.over {
  color: var(--error);
}

/* ── TERMS CHECKBOX ── */
.terms-group {
  margin-top: 40px;
  margin-bottom: 28px;
}

.terms-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  user-select: none;
}

.terms-label input[type="checkbox"] {
  display: none;
}

.terms-check-box {
  width: 20px;
  height: 20px;
  border: 1.5px solid #c8c8c8;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.terms-check-box::after {
  content: '✓';
  font-size: 12px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.2s;
}

.terms-label.checked .terms-check-box {
  border-color: var(--mint-dark);
  background: var(--mint-dark);
}

.terms-label.checked .terms-check-box::after {
  opacity: 1;
}

.terms-label a {
  color: var(--mint-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── VALIDATION ERROR ── */
.error-msg {
  font-size: 12px;
  color: var(--error);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.error-msg::before {
  content: '！';
}

.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: var(--error);
}

.alert-error {
  background: #fff0f0;
  border: 1px solid #ffcccc;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 13px;
  color: #c00;
}

.alert-error ul {
  padding-left: 20px;
}

.alert-error li {
  margin-bottom: 4px;
}

/* ── SUBMIT BUTTON ── */
.submit-area {
  margin-top: 4px;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 330px;
  margin-inline: auto;
  background: linear-gradient(90deg,
      var(--mint-dark) 0%,
      var(--mint-blue) 100%);
  color: var(--white);
  border: none;
  padding: 24px;
  border-radius: 50px;
  font-family: 'Zen Kaku Gothic New',
    sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.25s,
    transform 0.25s;
  /* box-shadow: 0 4px 20px rgba(109, 207, 196, 0.35); */
  position: relative;

  img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }
}

.submit-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.submit-btn:hover .btn-arrow {
  transform: translateX(6px);
}

/* ── NOTE BOX ── */
.reg-note-box {
  margin-top: 52px;
  /* background: rgba(255, 255, 255, 0.65); */
  /* border-radius: 10px; */
  padding: 24px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
  border: 2px solid #73dfd4;
}

/* ── FORM NOTE ── */
.form-note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.7;
}

/* ── OPTIONAL QUESTION ── */
.optional-select {
  margin-bottom: 12px;
}

.optional-answer-area {
  transition: opacity 0.3s;
}

/* ── FOOTER ── */
footer {
  background: transparent;
  padding: 0 40px 48px;
  text-align: center;
}

.footer-rule {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 0 48px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo img {
  height: 66px;
  width: auto;
}

.footer-contact-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--text-dark);

  span {
    transition: opacity 0.2s;
  }

  img {
    transition: opacity 0.2s;
  }
}

.footer-contact-btn:hover span {
  opacity: .5;
}

.footer-contact-btn:hover img {
  opacity: .5;
}

.footer-nav {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 400;
  color: #5a6464;
  transition: opacity .2s;
}

.footer-nav a:hover {
  opacity: .5;
}

.footer-nav .sep {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.15);
}

.footer-copy {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

/* ── PC: ラベル横並びレイアウト（ニックネーム〜タバコ） ── */
@media (min-width: 769px) {
  .reg-page-inner {
    max-width: 880px;
  }

  .reg-basic-section .form-group {
    display: grid;
    grid-template-columns: 188px 1fr;
    column-gap: 10px;
    align-items: start;
  }

  .reg-basic-section .form-group .form-label {
    padding-top: 17px;
    margin-bottom: 0;
  }

  .reg-basic-section .form-group>*:not(.form-label) {
    grid-column: 2;
  }

  .reg-basic-section .form-group .radio-inline-group {
    padding-top: 15px;
  }
}

.form-group.group-radio {
  .form-label {
    padding-top: 6px;
  }
}

/* ── SP responsive ── */
@media (max-width: 768px) {
  #header {
    padding: 0 24px;
  }

  .reg-page-inner {
    padding: 48px 24px 80px;
  }

  .birth-year-wrap {
    width: 100px;
  }

  .birth-month-wrap {
    width: 68px;
  }

  .birth-day-wrap {
    width: 68px;
  }

  .reg-required-note {
    font-size: 10px;
    top: 38px;
  }

  footer {
    padding: 0 24px 40px;
  }
}

/* ── Pre-registration Confirmation Modal ── */
#regConfirmOverlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(228, 226, 223, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

#regConfirmOverlay.hidden {
  display: none;
}

.rcm-card {
  background: #fff;
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 48px 44px 44px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.10);
}

.rcm-headline {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.rcm-section-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--mint-dark);
  margin: 28px 0 18px;
}

.rcm-item {
  margin-bottom: 20px;
}

.rcm-item-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.rcm-item-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: #5a6464;
}

.rcm-item-body a {
  color: var(--mint-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rcm-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 28px 0;
}

.rcm-agree-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 20px;
  cursor: pointer;
  user-select: none;
}

.rcm-agree-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.rcm-check-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.rcm-check-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s;
}

.rcm-agree-row.checked .rcm-check-box {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
}

.rcm-agree-row.checked .rcm-check-box::after {
  opacity: 1;
}

.rcm-agree-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.rcm-proceed-btn {
  display: block;
  width: 100%;
  padding: 17px 24px;
  background: linear-gradient(90deg, var(--mint-dark) 0%, var(--mint-blue) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(109, 207, 196, 0.35);
  transition: opacity 0.2s;
  cursor: not-allowed;
  opacity: 0.45;
}

.rcm-proceed-btn.active {
  cursor: pointer;
  opacity: 1;
}

.rcm-proceed-btn.active:hover {
  opacity: 0.85;
}

.rcm-back-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 14px 24px;
  background: none;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  border: 1px solid #ddd;
  border-radius: 50px;
  transition: color 0.2s, border-color 0.2s;
}

.rcm-back-btn:hover {
  color: var(--text-mid);
  border-color: #bbb;
}

@media (max-width: 600px) {
  .rcm-card {
    padding: 36px 24px 32px;
  }
}


/* =====================================================
   LEGAL MAIN
   ===================================================== */
.legal-main {
  padding: 60px 0 100px;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Page Header ── */
.legal-page-header {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--mint-light2);
}
.legal-page-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--mint);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.legal-page-title {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.legal-updated {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

/* ── Intro paragraph ── */
.legal-intro {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-mid);
  background: var(--white);
  border-left: 3px solid var(--mint);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-bottom: 48px;
}

/* =====================================================
   ARTICLE (条文)
   ===================================================== */
.legal-article {
  margin-bottom: 44px;
}

/* 条番号 + タイトル */
.legal-article-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.article-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  white-space: nowrap;
  padding: 3px 10px;
  border: 1px solid var(--mint-light);
  border-radius: 50px;
  background: var(--mint-light2);
  flex-shrink: 0;
}
.article-title-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

/* 条文テキスト */
.legal-article-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-mid);
}
.legal-article-body p {
  margin-bottom: 12px;
}

/* 番号付きリスト */
.legal-ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}
.legal-ol > li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 2.0;
  color: var(--text-mid);
}
.legal-ol > li > .li-num {
  font-size: 12px;
  color: var(--mint);
  font-weight: 400;
  padding-top: 4px;
  text-align: right;
}
.legal-ol > li > .li-body { flex: 1; }

/* ネストリスト */
.legal-ol-nested {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-ol-nested > li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 4px 8px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-mid);
  padding-left: 8px;
}
.legal-ol-nested .li-num {
  font-size: 11px;
  color: var(--text-light);
  padding-top: 3px;
  text-align: right;
}

/* =====================================================
   TOKUSHO TABLE
   ===================================================== */
.tokusho-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tokusho-table tr {
  border-bottom: 1px solid var(--border);
}
.tokusho-table tr:first-child {
  border-top: 1px solid var(--border);
}
.tokusho-table th {
  width: 200px;
  padding: 20px 20px 20px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  vertical-align: top;
  white-space: nowrap;
  text-align: left;
}
.tokusho-table th::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 13px;
  background: var(--mint);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}
.tokusho-table td {
  padding: 20px 0 20px 20px;
  font-weight: 300;
  line-height: 2.0;
  color: var(--text-mid);
  vertical-align: top;
}
.tokusho-table td a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.legal-footer {
  background: transparent;
  padding: 0 40px 48px;
  text-align: center;
}
.legal-footer-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 48px;
}
.legal-footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.legal-footer-logo img { height: 34px; width: auto; }
.legal-footer-nav { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.legal-footer-nav a { font-size: 12px; font-weight: 300; color: var(--text-mid); transition: color 0.2s; }
.legal-footer-nav a:hover { color: var(--mint); }
.legal-footer-nav .sep { font-size: 12px; color: #ccc; }
.legal-footer-contact {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.legal-footer-contact:hover { color: var(--mint); }
.legal-footer-copy { font-size: 11px; color: var(--text-light); letter-spacing: 0.06em; }
