/* =====================================================
   MIINT — SP Unified Stylesheet  (375px base)
   Combines: sp.css + price_sp.css + campaign_sp.css
             + register form styles (SP) + legal page styles (SP)
   ===================================================== */

/* ── 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;
  width: 100%;
  max-width: 750px;
  min-height: 100%;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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: 52px;
  --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;
}


/* =====================================================
   SOCIAL SIDEBAR
   ===================================================== */
.social-sidebar {
  position: absolute;
  right: 0;
  top: 42%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 14px;
}

.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--text-dark);
  opacity: 0.7;
  transition: opacity 0.2s;
}

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

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

/* =====================================================
   HEADER
   ===================================================== */
#header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: background 0.4s, box-shadow 0.4s;
}

/* #header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
} */

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

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

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

/* Hamburger */
.menu-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 8px 8px;
}

.menu-btn span {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--text-dark);
}

/* =====================================================
   MENU OVERLAY
   ===================================================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  z-index: 200;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 28px 24px 40px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  overflow-y: auto;
}

.menu-overlay.open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

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

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

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

.menu-close-btn {
  background: none;
  border: none;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: 44px;
  }
}

/* Nav items */
.menu-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  padding: 0 23px;
}

.menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 15px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  border-bottom: 1px solid #e8e8e8;
}

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

.menu-nav a .arrow {

  /* font-size: 14px;
  color: var(--text-mid); */
  img {
    width: 20px;
  }
}

/* CTA */
.menu-cta {
  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: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.25s, transform 0.25s;
}

/* Social icons */
.menu-social {
  display: flex;
  gap: 24px;
  justify-content: center;
}

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

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

/* =====================================================
   HERO / KV
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 75 / 125;
  width: 100%;
  /* height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; */
}

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

.hero-logo {
  position: absolute;
  top: 198px;
  left: 30px;

  img {
    width: 205px;
  }
}

.hero-catch {
  position: absolute;
  top: 300px;
  left: 30px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px;
  line-height: 2;
  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: scale-down;
  object-position: center;
}

/* SCROLL indicator */
.scroll-indicator {
  position: absolute;
  bottom: 11px;
  right: 39px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 10;

}



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

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

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

  50% {
    bottom: -5px;
  }

  100% {
    bottom: 5px;
  }
}

.scroll-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  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: 60px 0 0;
}

.letter-container {
  padding: 0 24px;
}

.letter-lead {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.1;
  margin-bottom: 40px;
  color: var(--text-dark);
}

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

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

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

/* ── Social Row ── */
.social-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin: 0 0 36px;
}

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

.social-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 256px;
  margin: 48px auto 16px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text-mid);
}

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

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

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

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

.age-limit-footer {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 28px;
  margin-top: 40px;
}

.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: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.25s, transform 0.25s;
  position: relative;

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

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-sub {
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-light);
}

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

.campaign-inner {
  padding: 0 16px;
}

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

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

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

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

.blog-inner {
  padding: 0 16px;
}

.blog-header-row {
  margin-bottom: 28px;
}

.blog-title-en {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 20px;
  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;
  line-height: 2.15;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* flex-direction: column; */
  gap: 25px;
}

.blog-card {
  /* background: var(--white); */
  /* border-radius: 10px; */
  /* overflow: hidden; */
}

.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 15px 0;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.blog-card-date {
  font-size: 10px;
  font-weight: 400;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.06em;
  color: #5a6464;
}

.blog-card-cat {
  font-size: 10px;
  font-weight: 400;
  /* letter-spacing: 0.1em; */
  color: #5a6464;
  /* border: 1px solid var(--mint); */
  background-color: #fff;
  /* border: 1px solid #fff; */
  border-radius: 50px;
  padding: 2px 10px;
  white-space: nowrap;
}

.blog-card-title {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-dark);
}

.blog-more-wrap {
  text-align: center;
  margin-top: 36px;
}

.blog-more-link {
  /* display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 36px;
  border: 1px solid var(--text-dark);
  border-radius: 50px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-dark); */
  display: block;
  width: 100%;
  max-width: 270px;
  margin-inline: auto;
  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: 16px;
  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); */
}

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

  img {
    width: 20px;
    ;
  }
}

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

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

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

.price-btn {
  /* display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-blue) 100%);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 18px rgba(109, 207, 196, 0.35); */
  /* display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 36px;
  border: 1px solid var(--text-dark);
  border-radius: 50px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-dark); */
  display: block;
  width: 100%;
  max-width: 270px;
  margin-inline: auto;
  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: 14px;
  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); */
}

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

  img {
    width: 20px;
    ;
  }
}

/* ── Share buttons ── */
.share-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 15px;
  /* gap: 12px; */
  margin: 40px 0 32px;
}

.share-btn {

  text-align: center;
  padding: 13px 15px;
  /* border: 1px solid rgba(0, 0, 0, 0.15); */
  border-radius: 50px;
  font-size: 10px;
  font-weight: 400;
  /* letter-spacing: 0.1em; */
  color: #5a6464;
  background-color: #fff;
  /* background: rgba(255, 255, 255, 0.6); */
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: transparent;
  padding: 0 24px 36px;
  text-align: center;
}

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

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

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

.footer-logo img {
  height: 36px;
  width: auto;
  display: block;
}

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

.footer-nav a {
  font-size: 10px;
  font-weight: 400;
  color: #5a6464;
}

.footer-nav .sep {
  font-size: 11px;
  color: var(--text-light);
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  transition: color 0.2s, border-color 0.2s;
  margin-top: 40px;
  padding-bottom: 15px;

  img {
    width: 15px;
  }
}


.footer-copy {
  font-size: 10px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #5a6464;
  letter-spacing: 0.05em;
}

/* =====================================================
   SIDE BANNER
   ===================================================== */
.side-banner {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 112px;
  height: 112px;
  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-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 (SP)  (body.price-sp-page)
   ===================================================== */

.price-sp-page #header.header-solid {
  background: transparent;
}

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

.price-sp-page #header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
}

.psp-hero {
  padding: 88px 0 40px;
  text-align: center;
}

.psp-hero-inner {
  padding: 0 24px;
}

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

.psp-headline {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.psp-body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2.2;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-align: left;
}

.psp-ticket-section {
  padding: 0 0 48px;
  text-align: center;
}

.psp-ticket-inner {
  padding: 0 24px;
}

.psp-ticket-icon {
  width: 160px;
  margin: 0 auto 24px;
}

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

.psp-ticket-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.psp-ticket-desc {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5a6464;
  letter-spacing: 0.06em;
  line-height: 2;
  margin-bottom: 20px;
}

.psp-ticket-price {
  display: inline-block;
  background: #ffffff;
  border: none;
  /* border-radius: 6px; */
  padding: 8px 24px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #5a6464;
  letter-spacing: 0.06em;
}

.psp-merits-section {
  padding: 40px 0 0;
}

.psp-merits-inner {
  padding: 0 24px 56px;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
}

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

.psp-merits-heading::before,
.psp-merits-heading::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: #5a6464;
}

.psp-merit-item {
  margin-bottom: 40px;
}

.psp-merit-item:last-child {
  margin-bottom: 0;
}

.psp-merit-icon {
  width: 100%;
  margin-bottom: 16px;
}

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

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

.psp-merit-body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5a6464;
  line-height: 2.2;
  letter-spacing: 0.06em;

  .pp-merit-note {
    font-size: 12px;
    display: block;
    padding-top: 10px;
  }
}

.psp-compare-section {
  padding: 48px 16px 56px;
}

.psp-compare-inner {
  padding: 70px 0 0;
  border-top: 1px solid #5a6464;
}

.psp-compare-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.psp-campaign-section {
  /* padding: 0 0 48px; */
}

.psp-campaign-inner {
  padding: 0 16px;
}

.psp-cta-area {
  text-align: center;
  padding: 70px 0 35px;
}

.psp-payment-section {
  padding: 48px 0 0;
}

.psp-payment-inner {
  padding: 0 16px;
}

.psp-payment-card {
  background: #ffffff;
  /* border-radius: 12px; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  padding: 28px 24px;
}

.psp-payment-heading {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-align: center;
  /* margin-bottom: 24px; */
  padding-bottom: 20px;
  /* border-bottom: 1px solid #ebebeb; */
}

.psp-payment-col {
  padding: 4px 0;
}

.psp-payment-divider {
  height: 1px;
  background: #ccc;
  margin: 20px 0;
}

.psp-payment-col-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.psp-payment-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.psp-payment-note {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 2.15;
}

.psp-blog-section {
  padding: 70px 0 64px;
  text-align: left;
}

.psp-blog-inner {
  padding: 0 24px;
}

.psp-blog-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 20px;
}

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

.psp-blog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-blue) 100%);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  box-shadow: 0 4px 18px rgba(109, 207, 196, 0.35);
  width: 100%;
  max-width: 327px;
  margin: 0 auto;
}


/* =====================================================
   CAMPAIGN PAGE (SP)  (body.campaign-sp-page)
   ===================================================== */

.csp-hero {
  padding: calc(var(--header-h) + 56px) 24px 48px;
}

.csp-hero-inner {
  max-width: 480px;
  margin: 0 auto;
}

.csp-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-mid);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.csp-headline {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.csp-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-mid);
}

.csp-campaign-section {
  padding: 48px 24px;
  background: transparent;
}

.csp-campaign-alt {
  background: rgba(255, 255, 255, 0.45);
}

.csp-campaign-inner {
  max-width: 480px;
  margin: 0 auto;
}

.csp-campaign-number {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.csp-campaign-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--mint-dark);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 16px;
}

.csp-campaign-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.csp-campaign-lead {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.csp-campaign-lead strong {
  color: var(--text-dark);
  font-weight: 500;
}

.csp-prize-box {
  background: #fff;
  border: 1px solid #e0f5f2;
  border-radius: 12px;
  padding: 20px 20px 16px;
  margin-bottom: 20px;
  text-align: center;
}

.csp-prize-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.csp-prize-value {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
}

.csp-prize-note {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}

.csp-how-box {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.csp-how-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.csp-how-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.csp-how-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-mid);
}

.caution {
  font-size: 11px;
  display: flex;
}

.csp-form-btn {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: var(--text-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 6px;
  transition: opacity 0.2s;
}

.csp-form-btn:hover {
  opacity: 0.8;
}

.csp-flyer-download {
  margin-bottom: 24px;
}

.csp-flyer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

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

.csp-flyer-btn:hover {
  background: var(--text-dark);
  color: #fff;
}

.csp-bonus-box {
  background: #fff8e1;
  border-left: 3px solid #f5c842;
  border-radius: 8px;
  padding: 16px 18px;
}

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

.csp-bonus-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-mid);
}

.csp-bonus-note {
  font-size: 12px;
  color: var(--text-light);
}

.csp-cta-section {
  padding: 56px 24px 72px;
  text-align: center;
}

.csp-cta-inner {
  max-width: 480px;
  margin: 0 auto;
}

.csp-cta-lead {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}


/* =====================================================
   /* =====================================================
   REGISTER PAGE (form & content, SP overrides)
   ===================================================== */

.register-main {
  min-height: 100vh;
  padding-top: var(--header-h);
}

.reg-page-inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.reg-hero {
  text-align: center;
  padding: 32px 0 40px;
  position: relative;
}

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

.reg-required-note {
  /* position: absolute;
  top: 38px;
  right: 0; */

  text-align: right;
  font-size: 10px;
  color: #fc5656;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}

.req-star {
  display: inline-block;
  color: #fc5656;
  font-size: 12px;
  background-color: #fc5656;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

.form-label-sub {
  font-size: 12px;
  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: 13px 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: 14px;
}

.birth-date-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

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

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

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

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

.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: 300;
  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-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

.reg-divider {
  border: none;
  border-top: 1px solid #5a6464;
  margin: 40px 0;
}

.radio-simple-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.radio-simple-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #5a6464;
  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 {
  text-align: right;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 5px;
  transition: color 0.2s;
}

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

.terms-group {
  margin-top: 40px;
  margin-bottom: 28px;
}

.terms-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  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;
}

.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: 14px;
  color: #c00;
}

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

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

.submit-area {
  margin-top: 4px;
}

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

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

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

.form-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.7;
}

.optional-select {
  margin-bottom: 12px;
}

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

.thanks-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  text-align: center;
}

.thanks-icon {
  font-size: 48px;
  margin-bottom: 32px;
  color: var(--mint-dark);
}

.thanks-title {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.thanks-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.thanks-share-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.thanks-sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: var(--text-dark);
  opacity: 0.75;
  transition: opacity 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.thanks-sns-btn:hover {
  opacity: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.thanks-sns-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.thanks-sns-btn.thanks-copy-btn.copied {
  color: var(--mint-dark);
  border-color: var(--mint-dark);
  opacity: 1;
}

.thanks-copy-toast {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--mint-dark);
  text-align: center;
  margin-bottom: 32px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.thanks-copy-toast.show {
  opacity: 1;
}

.thanks-survey-box {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 20px 20px;
  margin: 32px auto 0;
  text-align: left;
}

.thanks-survey-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--mint-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.thanks-survey-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.7;
}

.thanks-survey-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.thanks-survey-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-light);
}

.thanks-survey-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: linear-gradient(90deg, var(--mint-dark) 0%, var(--mint-blue) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(109, 207, 196, 0.30);
  transition: opacity 0.2s;
}

.thanks-survey-btn:hover {
  opacity: 0.85;
}

.thanks-closing {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.0;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  margin: 32px 0 36px;
  text-align: center;
}

.thanks-share-lead {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.0;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.thanks-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--mint-dark) 0%, var(--mint-blue) 100%);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 20px rgba(109, 207, 196, 0.35);
  transition: opacity 0.25s, transform 0.25s;
}

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

/* ── SP header override ── */
#header {
  padding: 0 24px;
}


/* =====================================================
   LEGAL PAGES  (SP)
   ===================================================== */

.legal-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.legal-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-logo img {
  height: 32px;
  width: auto;
}

.legal-header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
}

.legal-header-nav a:not(.legal-nav-cta) {
  display: none;
}

.legal-header-nav a {
  transition: color 0.2s;
}

.legal-header-nav a:hover {
  color: var(--mint);
}

.legal-nav-cta {
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-blue) 100%);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: opacity 0.2s !important;
}

.legal-nav-cta:hover {
  opacity: 0.85;
}

.legal-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.legal-breadcrumb-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
}

.legal-breadcrumb-inner a {
  color: var(--text-light);
  transition: color 0.2s;
}

.legal-breadcrumb-inner a:hover {
  color: var(--mint);
}

.bc-sep {
  opacity: 0.6;
}

.legal-main {
  padding: 40px 0 80px;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.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: 22px;
  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;
}

.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;
}

.legal-article {
  margin-bottom: 44px;
}

.legal-article-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: baseline;
  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: SP block layout */
.tokusho-table,
.tokusho-table tbody,
.tokusho-table tr,
.tokusho-table th,
.tokusho-table td {
  display: block;
}

.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: 100%;
  padding: 20px 0 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  vertical-align: top;
  white-space: normal;
  text-align: left;
  border-bottom: none;
}

.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: 0 0 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;
}

.legal-footer {
  background: transparent;
  padding: 0 20px 40px;
  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;
  margin-top: 40px;
}

.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;
}