/* ===== メモワールしらゆり — 品格・温かみ・白ベース ===== */
:root {
  --navy:    #1a3565;   /* 深い藍 — メインアクセント */
  --navy-dk: #122550;
  --navy-lt: #eaeff8;  /* 薄い藍 — 背景・バッジ */
  --navy-mid: #2a4d8a;
  --white:   #ffffff;
  --bg:      #ffffff;
  --bg2:     #f7f8fb;   /* ほんの少し青みの白 */
  --bg3:     #eef1f8;
  --border:  #d8dde8;
  --text:    #1a1e2d;
  --text2:   #5a6070;
  --gold:    #9b7b3a;   /* サブアクセント — 品格 */
  --radius:  4px;
  --shadow:  0 2px 16px rgba(0,0,0,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Noto Serif JP', 'Noto Sans JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
  padding-top: 60px;
}
a { text-decoration: none; color: inherit; }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.header-logo { display: flex; align-items: baseline; gap: 8px; line-height: 1; }
.header-logo .name {
  font-size: 1.1rem; color: var(--navy); font-weight: 700;
  letter-spacing: 0.08em;
}
.header-logo .sub {
  font-size: 0.6rem; color: var(--text2); letter-spacing: 0.05em;
  display: none; font-family: 'Noto Sans JP', sans-serif;
}
@media (min-width: 600px) { .header-logo .sub { display: block; } }

.pc-nav { display: flex; align-items: center; gap: 24px; }
.pc-nav a {
  color: var(--text2); font-size: 0.78rem; transition: color 0.2s;
  font-family: 'Noto Sans JP', sans-serif; letter-spacing: 0.04em;
}
.pc-nav a:hover { color: var(--navy); }
.pc-nav .nav-cta {
  background: var(--navy); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius);
  font-size: 0.76rem; font-weight: 700;
}
.pc-nav .nav-cta:hover { background: var(--navy-dk); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: var(--white); z-index: 99;
  flex-direction: column; padding: 0 0 12px;
  border-top: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 24px; color: var(--text); font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Noto Sans JP', sans-serif;
}
.mobile-menu .nav-cta-sp {
  margin: 12px 20px 0; background: var(--navy); color: var(--white);
  border-radius: var(--radius); text-align: center; border-bottom: none;
  padding: 13px; font-weight: 700;
}

@media (max-width: 768px) { .pc-nav { display: none; } .hamburger { display: flex; } }

/* ===== HERO ===== */
.hero {
  background: var(--bg2);
  padding: 56px 24px 52px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,53,101,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 0.6rem; letter-spacing: 0.3em;
  color: var(--navy); font-weight: 700; margin-bottom: 20px;
  text-transform: uppercase;
  font-family: 'Noto Sans JP', sans-serif;
}
.hero-title {
  font-size: clamp(1.8rem, 5.5vw, 2.75rem);
  font-weight: 700; line-height: 1.3;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: 0.05em;
}
.hero-title em {
  font-style: normal;
  color: var(--navy);
}
.hero-rule {
  width: 32px; height: 2px;
  background: var(--gold);
  margin: 20px 0;
}
.hero-sub {
  font-size: 0.86rem; color: var(--text2);
  line-height: 2.2; margin-bottom: 34px;
  max-width: 480px;
  font-family: 'Noto Sans JP', sans-serif;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 14px 26px; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 700;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26,53,101,0.2);
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-primary:hover { background: var(--navy-dk); box-shadow: 0 4px 20px rgba(26,53,101,0.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--text);
  padding: 13px 24px; border-radius: var(--radius);
  border: 1.5px solid var(--border); font-size: 0.88rem;
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy);
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 700;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-white:hover { background: var(--navy-lt); }

/* ===== STAT STRIP ===== */
.stat-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stat-strip-inner {
  max-width: 680px; margin: 0 auto;
  padding: 40px 24px 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  padding: 16px 12px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  font-weight: 700; color: var(--navy);
  line-height: 1; margin-bottom: 6px;
}
.stat-num sup { font-size: 0.55em; font-weight: 400; }
.stat-label {
  font-size: 0.68rem; color: var(--text2);
  letter-spacing: 0.08em;
  font-family: 'Noto Sans JP', sans-serif;
}
.stat-strip-caption {
  max-width: 680px; margin: 0 auto;
  padding: 0 24px 36px;
  font-size: 0.82rem; color: var(--text2);
  line-height: 1.9;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== SECTIONS ===== */
.section-inner { max-width: 680px; margin: 0 auto; padding: 56px 24px; }

.section-label {
  font-size: 0.58rem; letter-spacing: 0.3em;
  color: var(--navy); margin-bottom: 10px;
  text-transform: uppercase; font-weight: 700; display: block;
  font-family: 'Noto Sans JP', sans-serif;
}
.section-label--light { color: rgba(255,255,255,0.6); }

.section-title {
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  font-weight: 700; color: var(--text);
  line-height: 1.3; letter-spacing: 0.04em;
}
.section-title--light { color: var(--white); }

.section-rule {
  width: 28px; height: 2px;
  background: var(--gold);
  margin: 16px 0 30px;
}

.section-desc {
  font-size: 0.86rem; color: var(--text2);
  line-height: 2.2; margin-bottom: 28px;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== FEATURE CARDS ===== */
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.feature-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 20px;
  box-shadow: var(--shadow);
}
.feature-item h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--text);
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.feature-item p {
  font-size: 0.82rem; color: var(--text2); line-height: 2.0;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== PLAN CARDS ===== */
.plan-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 12px;
}
@media (min-width: 480px) { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.plan-card.featured {
  border-color: var(--navy);
  border-top: 3px solid var(--navy);
}
.plan-badge {
  display: inline-block;
  background: var(--navy); color: var(--white);
  font-size: 0.58rem; letter-spacing: 0.15em; padding: 3px 8px;
  border-radius: 2px; margin-bottom: 10px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
}
.plan-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--text);
  margin-bottom: 8px; letter-spacing: 0.04em;
}
.plan-card p {
  font-size: 0.8rem; color: var(--text2); line-height: 1.9;
  font-family: 'Noto Sans JP', sans-serif;
}
.plan-price {
  font-size: 0.75rem; color: var(--navy); font-weight: 700;
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--border);
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== FLOW ===== */
.flow-list { display: flex; flex-direction: column; }
.flow-item {
  display: grid; grid-template-columns: 44px 1fr;
  position: relative; padding-bottom: 28px;
}
.flow-item:last-child { padding-bottom: 0; }
.flow-item:not(:last-child) .flow-num-wrap::after {
  content: '';
  position: absolute; left: 21px; top: 44px; bottom: 0;
  width: 1px; background: var(--border);
}
.flow-num-wrap { position: relative; z-index: 1; }
.flow-num {
  width: 44px; height: 44px;
  background: var(--white); border: 2px solid var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--navy);
  font-family: 'Noto Sans JP', sans-serif;
}
.flow-content { padding: 10px 0 0 18px; }
.flow-content h3 {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; color: var(--text);
}
.flow-content p {
  font-size: 0.8rem; color: var(--text2); line-height: 2.0;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== INFO BOX ===== */
.info-box {
  background: var(--navy-lt);
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  font-size: 0.84rem; line-height: 2.0;
  margin-bottom: 28px; color: var(--text2);
  font-family: 'Noto Sans JP', sans-serif;
}
.info-box strong { color: var(--text); }

/* ===== CTA DARK ===== */
.cta-dark {
  background: var(--navy);
  padding: 60px 24px;
}
.cta-dark-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.cta-dark h2 {
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 12px; line-height: 1.5;
  letter-spacing: 0.05em;
}
.cta-dark p {
  font-size: 0.84rem; color: rgba(255,255,255,0.65);
  margin-bottom: 28px; line-height: 2.0;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== ACCESS TABLE ===== */
.access-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.84rem; margin-bottom: 20px;
}
.access-table th {
  background: var(--navy); color: var(--white);
  padding: 11px 14px; text-align: left; font-weight: 500;
  white-space: nowrap; width: 90px; vertical-align: top;
  font-size: 0.76rem;
  font-family: 'Noto Sans JP', sans-serif;
}
.access-table td {
  padding: 11px 14px; border-bottom: 1px solid var(--border);
  vertical-align: top; line-height: 1.9; background: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 44px 24px 36px;
}
.page-hero .section-label { color: var(--navy); margin-bottom: 10px; }
.page-hero .section-title { color: var(--text); }
.page-hero p {
  color: var(--text2); margin-top: 10px; font-size: 0.84rem;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== NOTICE BOX ===== */
.notice-box {
  background: #fff8ef;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px; margin-bottom: 28px;
  font-size: 0.82rem; color: var(--text2); line-height: 2.0;
  font-family: 'Noto Sans JP', sans-serif;
}
.notice-box strong { color: #7a5e2a; }

/* ===== CONTACT FORM AREA ===== */
.contact-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.contact-block h3 {
  font-size: 1.0rem; font-weight: 700; color: var(--text);
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.contact-block p {
  font-size: 0.82rem; color: var(--text2); margin-bottom: 16px;
  font-family: 'Noto Sans JP', sans-serif; line-height: 1.9;
}
.contact-tel-large {
  display: flex; align-items: center; gap: 10px;
  font-size: clamp(1.4rem, 5vw, 1.85rem); font-weight: 700;
  color: var(--navy); letter-spacing: 0.04em;
}
.contact-tel-large small {
  font-size: 0.7rem; color: var(--text2); font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== FOOTER ===== */
footer {
  background: #0f1a30; color: rgba(255,255,255,0.4);
  padding: 40px 24px 100px;
  font-size: 0.8rem; line-height: 2.2;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer-inner { max-width: 680px; margin: 0 auto; }
.footer-name { font-size: 1.0rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.footer-sub { font-size: 0.64rem; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
.footer-tel { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.footer-address { font-size: 0.72rem; margin-bottom: 20px; }
.footer-note {
  font-size: 0.65rem; color: rgba(255,255,255,0.2);
  line-height: 1.9; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== FIXED CTA ===== */
.fixed-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: flex; z-index: 98; height: 54px;
}
.fixed-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 7px; font-size: 0.8rem; font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
}
.cta-mail { background: var(--navy); color: var(--white); }
.cta-mail:hover { background: var(--navy-mid); }
.cta-tel { background: #0f1a30; color: var(--white); }
.cta-tel:hover { background: #0a1020; }
