/* ===========================================================
   efresca プロフィール型ホームページ
   藤田えみ｜efresca — Design draft implementation
   Mobile-first, responsive for tablet / desktop
=========================================================== */

:root {
  --bg: #F5F6FA;
  --bg-hero-top: #EEF1FB;
  --bg-now-1: #FBEFEF;
  --bg-now-2: #F8EEF0;
  --white: #FFFFFF;
  --ink: #1B2233;
  --body: #5B6373;
  --muted: #8891A0;
  --faint: #B9BFC9;
  --line: #EEF0F4;
  --navy: #23304D;
  --navy-dark: #17213A;
  --coral: #C9707C;
  --coral-bg: #FBEFEF;
  --coral-border: #F3DEE0;
  --teal: #3E7385;
  --teal-bg: #E7F1F4;
  --violet: #6A5F9E;
  --violet-bg: #EFEDF7;
  --footer-bg: #1B2233;
  --footer-line: #333C52;
  --footer-muted: #B7BCCB;
  --footer-faint: #7C8298;

  --font-head: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-body: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;

  --container: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-body);
  color: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--coral); }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---------- kicker (small eyebrow label) ---------- */
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.kicker .rule { width: 26px; height: 2px; background: #C9AEB3; flex-shrink: 0; }
.kicker .en { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--muted); }
.kicker.center { justify-content: center; }

/* ---------- shared card ---------- */
.card {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(30, 40, 60, 0.06);
}

.lead {
  font-size: 15px;
  line-height: 1.95;
  color: var(--body);
}

/* ---------- buttons ---------- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  width: 100%;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(35, 48, 77, 0.22);
}
.btn-primary:hover { background: var(--navy-dark); color: var(--white); }
.btn-primary.on-dark { background: var(--white); color: var(--ink); box-shadow: none; }
.btn-primary.on-dark:hover { background: #EDEEF2; color: var(--ink); }
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-secondary:hover { color: var(--navy-dark); border-color: var(--navy-dark); }

@media (min-width: 560px) {
  .btn-primary, .btn-secondary { width: auto; }
}

/* ---------- chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #F1F4F8;
  color: #3A4258;
}
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- checklist ---------- */
.check-list { display: flex; flex-direction: column; gap: 9px; }
.check-list li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--body);
}
.check-list svg { flex-shrink: 0; margin-top: 2px; }

/* ---------- mascot badge ---------- */
.mascot-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(30, 40, 60, 0.16);
  border: 3px solid var(--white);
  overflow: hidden;
  flex-shrink: 0;
}
.mascot-badge img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- section base ---------- */
.section { padding: 56px 22px; }
.section-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

/* =========================================================
   HEADER
========================================================= */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(245, 246, 250, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #EAEBF1;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand .name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: 0.5px;
}
.brand .sub { font-size: 9px; color: #9AA1AD; letter-spacing: 1px; margin-top: 2px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
}
.header-cta:hover { color: #fff; background: var(--navy-dark); }

/* ---------- hamburger button ---------- */
.hamburger-btn {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger-btn .bar {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger-btn.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.is-active .bar:nth-child(2) { opacity: 0; }
.hamburger-btn.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- mobile dropdown menu ---------- */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: max-height 0.3s ease;
}
.mobile-menu.open {
  max-height: 520px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { color: var(--coral); }

@media (min-width: 768px) {
  .site-header { padding: 18px 40px; }
  .brand .name { font-size: 19px; }
  .mobile-menu a { padding: 14px 40px; }
}

/* =========================================================
   HERO
========================================================= */
.hero {
  padding: 40px 22px 48px;
  background: linear-gradient(180deg, var(--bg-hero-top) 0%, var(--bg) 65%, var(--bg) 100%);
}
.hero-kicker-line {
  font-size: 15px;
  font-weight: 700;
  color: #3A4258;
  line-height: 1.8;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
}
.hero .lead { margin-bottom: 28px; }

.hero-photo {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #BFD9E8 0%, #DCEAF1 45%, #EAF3ED 60%, #F1EFE3 100%);
  box-shadow: 0 12px 28px rgba(30, 40, 60, 0.12);
}
.hero-photo .sun { position: absolute; top: 26px; right: 30px; width: 38px; height: 38px; border-radius: 50%; background: #FCEFC7; opacity: 0.9; }
.hero-photo .horizon { position: absolute; left: 0; right: 0; bottom: 34%; height: 1px; background: rgba(255, 255, 255, 0.5); }
.hero-photo .placeholder-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(27, 34, 51, 0.55);
  color: #fff;
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}
.hero-actions { margin-top: 22px; }

@media (min-width: 768px) {
  .hero {
    padding: 64px 40px 72px;
  }
  .hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }
  .hero h1 { font-size: 40px; }
  .hero-photo { height: 100%; min-height: 360px; }
  .hero-actions .btn-primary { width: auto; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 46px; }
}

/* =========================================================
   CONTENTS (nav list)
========================================================= */
.contents-list { display: flex; flex-direction: column; gap: 10px; }
.contents-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.contents-item.now {
  background: var(--coral-bg);
  border-color: var(--coral-border);
}
.contents-item.now svg { stroke: var(--coral); }
.contents-item svg { stroke: #9AA1AD; }

@media (min-width: 768px) {
  .contents-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (min-width: 1024px) {
  .contents-list { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   WHAT I DO
========================================================= */
.pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-num.teal { background: var(--teal-bg); color: var(--teal); }
.pillar-num.coral { background: var(--coral-bg); color: var(--coral); }
.pillar-num.violet { background: var(--violet-bg); color: var(--violet); }
.pillar-title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.pillar-title-row h3 { font-size: 16px; font-weight: 700; }

@media (min-width: 768px) {
  .pillars { flex-direction: row; align-items: stretch; }
  .pillars .card { flex: 1; }
}

/* =========================================================
   PROFILE
========================================================= */
.profile-card { position: relative; }
.profile-card .mascot-badge { position: absolute; top: -18px; right: 18px; }
.profile-card h3.name { font-size: 19px; font-weight: 900; margin-bottom: 4px; }
.profile-card .role { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.profile-divider { height: 1px; background: var(--line); margin: 18px 0; }
.profile-cert-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.profile-note { font-size: 11px; color: var(--faint); line-height: 1.7; margin-top: 14px; }

@media (min-width: 768px) {
  .profile-card { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; align-items: start; }
  .profile-card .mascot-badge { position: static; margin-bottom: 12px; }
}

/* =========================================================
   NOW
========================================================= */
.now-section {
  background: linear-gradient(180deg, var(--bg-now-1) 0%, var(--bg-now-2) 100%);
}
.now-section .kicker .rule { background: var(--coral); }
.now-section .kicker .en { color: var(--coral); }
.now-tag { margin-bottom: 12px; }
.now-title { font-size: 21px; font-weight: 900; line-height: 1.5; margin: 10px 0 6px; }
.now-sub { font-size: 16px; font-weight: 700; color: var(--coral); margin-bottom: 16px; }
.spec-label { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 1px; margin-bottom: 10px; }

/* featured treatment: NOW now sits right after the hero, so it needs to stand out immediately */
.now-card {
  position: relative;
  border: 2px solid #F0C3CA;
  box-shadow: 0 16px 36px rgba(201, 112, 124, 0.18);
}
.now-ribbon {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(201, 112, 124, 0.35);
}

.price-box {
  background: var(--white);
  border: 1.5px dashed #E7C3C8;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.price-box .official { font-size: 12px; color: var(--faint); margin-bottom: 4px; }
.price-box .official s { text-decoration: line-through; }
.price-box .limited { font-size: 11px; color: var(--coral); font-weight: 700; margin-bottom: 6px; }
.price-box .amount { font-size: 40px; font-weight: 900; color: var(--ink); line-height: 1.2; }
.price-box .amount .unit { font-size: 18px; font-weight: 700; }
.price-box .caption { font-size: 11px; color: var(--muted); margin-top: 6px; }
.now-notes { display: flex; flex-direction: column; gap: 10px; }
.now-notes p { font-size: 13px; color: var(--body); }
.now-cta-row { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.now-cta-row .btn-primary { flex: 1; }

@media (min-width: 768px) {
  .now-section .card { padding: 36px; }
  .now-inner-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; }
  .now-title { font-size: 24px; }
}

/* =========================================================
   WHY THIS SITE
========================================================= */
.why-section { text-align: center; }
.why-section .lead { text-align: left; margin-bottom: 14px; }
.why-list { text-align: left; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.why-list li { font-size: 13px; color: var(--muted); }

@media (min-width: 768px) {
  .why-inner { max-width: 760px; margin: 0 auto; }
}

/* =========================================================
   CONSULTATION
========================================================= */
.quote-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.quote-cards .card { padding: 16px 18px; }
.quote-cards .card p { font-size: 13px; color: var(--body); line-height: 1.7; }

@media (min-width: 768px) {
  .quote-cards { flex-direction: row; }
  .quote-cards .card { flex: 1; }
}

/* =========================================================
   SEMINAR
========================================================= */
.seminar-card {
  text-align: center;
  background: var(--bg);
  border-style: dashed;
}
.seminar-card .chip { background: #E9EBF0; color: var(--muted); margin-bottom: 14px; }
.seminar-card .title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }

/* =========================================================
   FOOTER / CONTACT
========================================================= */
.footer {
  background: var(--footer-bg);
  border-radius: 32px 32px 0 0;
  margin-top: 8px;
  padding: 56px 22px 40px;
}
.footer .kicker .rule { background: var(--footer-line); }
.footer .kicker .en { color: var(--footer-faint); }
.footer h2 { color: #fff; }
.footer-lead { font-size: 14px; color: var(--footer-muted); line-height: 1.9; margin-bottom: 24px; }
.footer-divider { height: 1px; background: var(--footer-line); margin: 32px 0 20px; }
.sns-label { font-size: 11px; color: var(--footer-faint); letter-spacing: 1px; margin-bottom: 12px; }
.sns-row { display: flex; gap: 10px; margin-bottom: 28px; }
.sns-slot { width: 38px; height: 38px; border-radius: 50%; border: 1.5px dashed #4B5470; }
.copyright { font-size: 11px; color: #5E6580; }
.footer-note { font-size: 10px; color: #4B5266; margin-top: 6px; }

@media (min-width: 768px) {
  .footer { padding: 72px 40px 48px; }
  .footer-inner { max-width: var(--container); margin: 0 auto; }
}

/* =========================================================
   General section width constraint for tablet/desktop
========================================================= */
@media (min-width: 768px) {
  .section { padding: 72px 40px; }
  .section > .wrap { max-width: var(--container); margin: 0 auto; }
}
@media (min-width: 1024px) {
  .section { padding: 88px 40px; }
}
