/* =========================================
   RESET & VARIABLES
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --mint:   #4ECDC4;
  --coral:  #FF6B6B;
  --yellow: #FFE66D;
  --navy:   #1A1A4E;
  --white:  #FFFFFF;
  --gray:   #F7F9FC;
  --text:   #2D3748;
  --sub:    #718096;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}


/* =========================================
   SCROLL ANIMATIONS  (index.html)
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }


/* =========================================
   HEADER  (shared — index uses .header-fixed)
   ========================================= */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
header.header-fixed {
  position: fixed;
  left: 0; right: 0;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  gap: 1px;
}
.logo-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: .62rem;
  color: var(--sub);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.logo-main {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--mint);
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo-main .logo-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--navy);
}
.logo-main .logo-dot { color: var(--coral); font-size: 1.4rem; line-height: 1; }

/* index nav */
nav a {
  color: var(--text);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  margin-left: 28px;
  transition: color .2s;
}
nav a:hover { color: var(--mint); }
.nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: #e85555 !important; transform: translateY(-2px); }

/* subpage back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sub);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.back-link:hover { color: var(--mint); }


/* =========================================
   FOOTER  (shared)
   ========================================= */
footer {
  background: #0f0f2e;
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 40px;
  font-size: .85rem;
  line-height: 2;
}
footer a { color: var(--mint); text-decoration: none; }
footer a:hover { text-decoration: underline; }


/* =========================================
   BUTTONS  (shared)
   ========================================= */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral), #ff8c8c);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255,107,107,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,107,107,.45); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--mint);
  color: var(--mint);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.btn-outline:hover { background: var(--mint); color: var(--white); transform: translateY(-3px); }


/* =========================================
   SECTION COMMON  (index.html)
   ========================================= */
section { padding: 100px 40px; }
.sec-inner { max-width: 1200px; margin: 0 auto; }

.sec-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--mint), #38b2ac);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.sec-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}
.sec-sub {
  color: var(--sub);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 600px;
}
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head .sec-sub { margin: 0 auto; }


/* =========================================
   HERO  (index.html)
   ========================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
  background: linear-gradient(135deg, #e8f9f8 0%, #fff5f5 50%, #fffde8 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
}
.blob1 { width: 500px; height: 500px; background: var(--mint);   top: -100px; left: -100px; animation: float 8s ease-in-out infinite; }
.blob2 { width: 400px; height: 400px; background: var(--coral);  bottom: -80px; right: -60px; animation: float 10s ease-in-out infinite reverse; }
.blob3 { width: 300px; height: 300px; background: var(--yellow); top: 40%; right: 20%; animation: float 12s ease-in-out infinite; }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: .85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: bounceIn .8s ease forwards;
}
@keyframes bounceIn {
  0%  { opacity: 0; transform: scale(.6); }
  60% { transform: scale(1.1); }
  100%{ opacity: 1; transform: scale(1); }
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--coral); position: relative; }
.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 8px;
  background: var(--yellow);
  opacity: .6;
  z-index: -1;
  border-radius: 4px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--sub);
  line-height: 1.9;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 20px;
  margin-top: 24px;
  box-shadow: var(--shadow);
  font-size: .9rem;
  font-weight: 700;
}
.hero-price-badge .big { font-size: 1.6rem; color: var(--coral); font-weight: 900; }

.hero-img-wrap { position: relative; }
.hero-img-wrap img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  animation: heroImg 1s ease .3s both;
}
@keyframes heroImg {
  from { opacity: 0; transform: translateY(30px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  font-weight: 700;
  font-size: .88rem;
  animation: floatCard 4s ease-in-out infinite;
  white-space: nowrap;
}
.fc1 { top: -20px; right: -20px; color: var(--coral); animation-delay: 0s; }
.fc2 { bottom: 20px; left: -20px; color: var(--mint); animation-delay: 2s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}


/* =========================================
   TROUBLE  (index.html)
   ========================================= */
#trouble { background: var(--navy); }
#trouble .sec-label { background: linear-gradient(135deg, var(--coral), #ff8c8c); }
#trouble .sec-title { color: var(--white); }
#trouble .sec-sub   { color: rgba(255,255,255,.7); }

.trouble-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.trouble-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trouble-icon {
  width: 48px; height: 48px;
  background: var(--coral);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.trouble-text { color: rgba(255,255,255,.9); font-size: .95rem; line-height: 1.7; font-weight: 500; }


/* =========================================
   FEATURES  (index.html)
   ========================================= */
#features { background: var(--gray); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--coral));
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.12); }

.feature-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--gray);
  line-height: 1;
  margin-bottom: 4px;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.fi-mint   { background: #e6faf9; }
.fi-coral  { background: #fff0f0; }
.fi-yellow { background: #fffbe6; }
.fi-purple { background: #f3f0ff; }
.fi-blue   { background: #ebf8ff; }
.fi-green  { background: #f0fff4; }
.feature-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-desc  { font-size: .9rem; color: var(--sub); line-height: 1.8; }


/* =========================================
   FLOW  (index.html)
   ========================================= */
#flow { background: var(--white); }
.flow-list { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}
.flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -28px;
  width: 2px;
  background: linear-gradient(180deg, var(--mint), transparent);
}
.flow-item + .flow-item { padding-top: 32px; }
.flow-step {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-bg-1 { background: var(--mint);   color: var(--white); }
.step-bg-2 { background: var(--coral);  color: var(--white); }
.step-bg-3 { background: var(--yellow); color: var(--navy); }
.step-bg-4 { background: #a78bfa;       color: var(--white); }
.step-bg-5 { background: #68d391;       color: var(--white); }
.flow-body  { padding-top: 8px; }
.flow-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.flow-desc  { font-size: .9rem; color: var(--sub); line-height: 1.8; }


/* =========================================
   PRICE  (index.html)
   ========================================= */
#price { background: linear-gradient(135deg, #f0fffe, #fff5f5); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.price-card:hover { transform: translateY(-8px); }
.price-card.popular { background: var(--navy); }
.price-card.ai-plan { border: 2px solid var(--mint); }
.price-card.ai-plan .price-amount         { color: var(--mint); }
.price-card.ai-plan .price-list li::before{ color: var(--mint); }

.price-badge-popular {
  position: absolute;
  top: 20px; right: -28px;
  background: var(--coral);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(35deg);
  letter-spacing: .05em;
}
.plan-name {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--sub);
  margin-bottom: 8px;
}
.price-card.popular .plan-name { color: rgba(255,255,255,.6); }
.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
}
.price-card.popular .price-amount { color: var(--yellow); }
.price-unit { font-size: .9rem; color: var(--sub); margin-bottom: 24px; }
.price-card.popular .price-unit { color: rgba(255,255,255,.5); }
.price-list { list-style: none; text-align: left; margin-bottom: 28px; }
.price-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray);
}
.price-card.popular .price-list li { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.1); }
.price-list li::before { content: '✓'; color: var(--mint); font-weight: 700; }
.price-card.popular .price-list li::before { color: var(--yellow); }
.price-note { font-size: .78rem; color: var(--sub); margin-top: 16px; }
.price-card.popular .price-note { color: rgba(255,255,255,.4); }

.price-no-update {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3cd;
  color: #856404;
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin-top: 10px;
  border: 1px solid #ffc107;
}


/* =========================================
   WORKS  (index.html)
   ========================================= */
#works { background: var(--gray); }
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.work-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.work-card:hover { transform: translateY(-6px); }
.work-img { width: 100%; height: 200px; object-fit: cover; }
.work-info { padding: 20px 24px; }
.work-tag {
  display: inline-block;
  background: #e6faf9;
  color: var(--mint);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.work-name { font-weight: 700; font-size: 1rem; color: var(--navy); }
.work-desc { font-size: .85rem; color: var(--sub); margin-top: 4px; line-height: 1.6; }


/* =========================================
   VOICE  (index.html)
   ========================================= */
#voice { background: var(--white); }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.voice-card {
  background: var(--gray);
  border-radius: 20px;
  padding: 28px;
  position: relative;
}
.voice-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--mint);
  opacity: .3;
  line-height: 1;
}
.voice-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.voice-person { display: flex; align-items: center; gap: 12px; }
.voice-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.voice-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.voice-role { font-size: .8rem; color: var(--sub); }
.stars { color: var(--yellow); font-size: .9rem; margin-bottom: 6px; }


/* =========================================
   FAQ  (index.html)
   ========================================= */
#faq { background: var(--gray); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  user-select: none;
}
.faq-q-icon {
  width: 30px; height: 30px;
  background: var(--mint);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .8rem;
  flex-shrink: 0;
}
.faq-arrow { margin-left: auto; color: var(--mint); transition: transform .3s; font-size: .8rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: .9rem;
  color: var(--sub);
  line-height: 1.9;
  padding: 0 24px 0 70px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px 70px; }


/* =========================================
   CTA  (index.html)
   ========================================= */
#cta {
  background: linear-gradient(135deg, var(--navy) 0%, #2d2d7e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta .blob1 { opacity: .15; }
#cta .blob2 { opacity: .12; }
.cta-label { background: linear-gradient(135deg, var(--yellow), #ffd000); color: var(--navy); }
.cta-title { color: var(--white); }
.cta-sub   { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 40px; }


/* =========================================
   FORM  (index.html)
   ========================================= */
.form-wrap {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 48px;
  max-width: 600px;
  margin: 0 auto;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 700; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--mint); background: rgba(255,255,255,.14); }
.form-group select option { background: var(--navy); }
.form-full { grid-column: 1 / -1; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--coral), #ff8c8c);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(255,107,107,.4);
  transition: transform .2s, box-shadow .2s;
  font-family: inherit;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,107,107,.5); }


/* ハニーポット：視覚的に完全非表示（display:noneはBotに検知されるため使わない） */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  left: -9999px;
}

/* =========================================
   AREA BADGE  (index.html)
   ========================================= */
.area-wrap { text-align: center; margin-bottom: 24px; }
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e6faf9;
  color: var(--mint);
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 18px;
  border-radius: 50px;
}


/* =========================================
   PAGE HERO  (tokutei / privacy)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2d2d7e 100%);
  padding: 64px 40px;
  text-align: center;
}
.page-hero-label {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; }


/* =========================================
   CONTENT WRAP  (tokutei / privacy)
   ========================================= */
.content-wrap {
  max-width: 800px;
  margin: 48px auto 80px;
  padding: 0 24px;
}

/* base card */
.card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
/* tokutei: table needs overflow hidden */
.card--table { overflow: hidden; }
/* privacy: text content needs padding */
.card--padded { padding: 48px; }

.updated {
  text-align: right;
  font-size: .8rem;
  color: var(--sub);
  margin-top: 20px;
  padding-right: 4px;
}


/* =========================================
   TABLE  (tokutei.html)
   ========================================= */
table { width: 100%; border-collapse: collapse; }
tr { border-bottom: 1px solid #edf2f7; }
tr:last-child { border-bottom: none; }
th {
  width: 220px;
  background: #f0fffe;
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
  padding: 20px 24px;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid #e2e8f0;
  white-space: nowrap;
}
td {
  padding: 20px 24px;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.85;
  vertical-align: top;
}
td a { color: var(--mint); text-decoration: none; }
td a:hover { text-decoration: underline; }


/* =========================================
   POLICY SECTIONS  (privacy.html)
   ========================================= */
.intro {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #edf2f7;
}
.policy-section { margin-bottom: 36px; }
.policy-section:last-child { margin-bottom: 0; }
.policy-section h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--mint);
}
.policy-section p,
.policy-section li { font-size: .92rem; color: var(--text); line-height: 1.9; }
.policy-section ul { list-style: none; padding: 0; }
.policy-section ul li { padding: 5px 0 5px 20px; position: relative; }
.policy-section ul li::before { content: '・'; position: absolute; left: 0; color: var(--mint); font-weight: 700; }
.policy-section a { color: var(--mint); text-decoration: none; }
.policy-section a:hover { text-decoration: underline; }


/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  /* index */
  header.header-fixed { padding: 14px 20px; }
  nav a { display: none; }
  .nav-cta { display: block; }
  section { padding: 70px 20px; }
  #hero { padding: 100px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
  .flow-item:not(:last-child)::after { left: 27px; }
}

@media (max-width: 600px) {
  /* subpages */
  header { padding: 14px 20px; }
  .page-hero { padding: 48px 20px; }
  .card--padded { padding: 28px 20px; }
  table, thead, tbody, tr, th, td { display: block; }
  th { width: 100%; border-right: none; border-bottom: 1px solid #e2e8f0; padding: 14px 20px 8px; }
  td { padding: 8px 20px 18px; }
}
