/* ============================================
   まき＠オンライン秘書 - スタイルシート
   ベース: ベージュ / アクセント: くすみピンク
   ============================================ */

:root{
  --cream:      #F3EBE4;
  --cream-2:    #FAF6F2;
  --pink:       #D89BA5;
  --pink-deep:  #C57E8C;
  --pink-soft:  #F0D9DD;
  --ink:        #4A382E;
  --ink-2:      #5A4437;
  --muted:      #8C7668;
  --white:      #FFFFFF;

  --font-head: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', sans-serif;
  --font-body: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Meiryo', sans-serif;
  --font-en:   'Jost', sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  scroll-padding-top:90px;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.8;
  letter-spacing:.02em;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

h1,h2,h3,p,ul,ol,dl,dd,figure{ margin:0; padding:0; }
ul,ol{ list-style:none; }
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:100%;
  max-width:1120px;
  margin-inline:auto;
  padding-inline:24px;
}

.pc-only{ display:inline; }
.sp-only{ display:none; }

/* ---------- ボタン ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--font-head);
  font-weight:500;
  font-size:15px;
  letter-spacing:.04em;
  color:var(--white);
  background:linear-gradient(135deg,#E3AEB6 0%,#C57E8C 100%);
  border-radius:999px;
  padding:17px 38px;
  box-shadow:0 12px 26px rgba(197,126,140,.30);
  transition:transform .25s ease, box-shadow .25s ease;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(197,126,140,.38);
}
.btn-ghost{
  color:var(--ink);
  background:transparent;
  border:1px solid rgba(90,68,55,.25);
  box-shadow:none;
}
.btn-ghost:hover{
  background:rgba(255,255,255,.7);
  box-shadow:0 8px 20px rgba(90,68,55,.10);
}
.btn-small{
  font-size:13px;
  padding:11px 22px;
  box-shadow:0 8px 18px rgba(197,126,140,.26);
}

/* ---------- ヘッダー ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(250,246,242,.88);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(90,68,55,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:24px;
  height:72px;
}
.brand{ display:flex; align-items:center; gap:11px; margin-right:auto; }
.brand-mark{
  width:34px; height:34px;
  flex:none;
  display:grid; place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg,#E3AEB6 0%,#C57E8C 100%);
  color:var(--white);
  font-family:var(--font-en);
  font-size:17px;
  font-weight:500;
  box-shadow:0 6px 14px rgba(197,126,140,.30);
}
.brand-name{
  font-family:var(--font-head);
  font-weight:700;
  font-size:15px;
  letter-spacing:.03em;
}
.brand-at{ color:var(--pink-deep); }

.site-nav{ display:flex; gap:28px; }
.site-nav a{
  font-size:13.5px;
  color:var(--ink-2);
  position:relative;
  padding-bottom:3px;
  transition:color .2s ease;
}
.site-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:1.5px;
  background:var(--pink-deep);
  transition:width .25s ease;
}
.site-nav a:hover{ color:var(--pink-deep); }
.site-nav a:hover::after{ width:100%; }

/* ---------- ヒーロー ---------- */
.hero{
  position:relative;
  overflow:hidden;
  padding:clamp(72px,9vw,120px) 0 clamp(80px,10vw,130px);
  background:linear-gradient(175deg,#FBF7F4 0%,#F3EBE4 62%,#F0E3DD 100%);
}
.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(70px);
  pointer-events:none;
}
.blob-a{
  width:520px; height:520px;
  top:-160px; right:-140px;
  background:radial-gradient(circle,rgba(216,155,165,.55) 0%,rgba(216,155,165,0) 70%);
}
.blob-b{
  width:420px; height:420px;
  bottom:-180px; left:-120px;
  background:radial-gradient(circle,rgba(232,205,181,.65) 0%,rgba(232,205,181,0) 70%);
}
.ring-a{
  position:absolute;
  width:460px; height:460px;
  border-radius:50%;
  border:1px solid rgba(197,126,140,.22);
  top:12%; right:6%;
  pointer-events:none;
}

.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:52px;
  align-items:center;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:12px;
  color:var(--muted);
  letter-spacing:.06em;
  margin-bottom:26px;
}
.eyebrow-en{
  font-family:var(--font-en);
  font-weight:500;
  font-size:12px;
  letter-spacing:.24em;
  color:var(--pink-deep);
}
.eyebrow-sep{
  width:26px; height:1px;
  background:rgba(197,126,140,.5);
}

.hero-title{
  font-family:var(--font-head);
  font-weight:700;
  font-size:clamp(1.85rem,4.2vw,3.1rem);
  line-height:1.55;
  letter-spacing:.01em;
  color:var(--ink);
}
.hero-title em{
  font-style:normal;
  position:relative;
  color:var(--pink-deep);
}
.hero-title em::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:.08em;
  height:.28em;
  background:rgba(240,217,221,.85);
  border-radius:4px;
  z-index:-1;
}
.hero-lead{
  margin-top:28px;
  font-size:15px;
  line-height:2.15;
  color:#6E5B4F;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:40px;
}

.hero-visual{ position:relative; display:grid; place-items:center; }
.avatar-frame{
  width:min(340px,72vw);
  aspect-ratio:1;
  border-radius:50%;
  overflow:hidden;
  border:10px solid var(--white);
  box-shadow:0 30px 60px rgba(90,68,55,.18);
  background:var(--pink-soft);
}
.avatar{ width:100%; height:100%; object-fit:cover; }
.hero-badge{
  position:absolute;
  right:2%;
  bottom:6%;
  background:var(--white);
  border-radius:18px;
  padding:16px 22px;
  text-align:center;
  box-shadow:0 16px 34px rgba(90,68,55,.16);
}
.hero-badge-num{
  display:block;
  font-family:var(--font-en);
  font-weight:500;
  font-size:22px;
  color:var(--pink-deep);
  line-height:1.2;
}
.hero-badge-num .unit{ font-size:14px; margin-left:1px; }
.hero-badge-label{
  display:block;
  font-size:11.5px;
  color:var(--muted);
  margin-top:4px;
  letter-spacing:.04em;
}

/* ---------- 共通セクション ---------- */
.section{ padding:clamp(78px,9.5vw,130px) 0; }

.section-label{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:20px;
}
.section-label .en{
  font-family:var(--font-en);
  font-weight:500;
  font-size:12px;
  letter-spacing:.24em;
  color:var(--pink-deep);
}
.section-label .ja{
  font-size:12.5px;
  color:var(--muted);
  letter-spacing:.08em;
  position:relative;
  padding-left:16px;
}
.section-label .ja::before{
  content:"";
  position:absolute;
  left:0; top:50%;
  width:9px; height:1px;
  background:rgba(140,118,104,.5);
}
.section-label.light .en{ color:#E9BCC4; }
.section-label.light .ja{ color:rgba(255,255,255,.62); }
.section-label.light .ja::before{ background:rgba(255,255,255,.4); }

.section-title{
  font-family:var(--font-head);
  font-weight:700;
  font-size:clamp(1.45rem,3.1vw,2.3rem);
  line-height:1.72;
  letter-spacing:.01em;
  color:var(--ink);
  margin-bottom:.9em;
}
.section-title.center{ text-align:center; margin-inline:auto; }
.section-title.light{ color:var(--white); }

.section-service .section-label,
.section-policy .section-label,
.section-flow .section-label,
.section-contact .section-label{ justify-content:center; }

/* ---------- ABOUT ---------- */
.section-about{ background:var(--white); }
.about-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:start;
}
.about-body p{
  font-size:15px;
  line-height:2.2;
  color:#6E5B4F;
  margin-bottom:1.3em;
}
.about-body mark{
  background:linear-gradient(transparent 62%,rgba(240,217,221,.95) 62%);
  color:inherit;
  padding:0 2px;
  font-weight:500;
}
.about-side{
  background:var(--cream-2);
  border-radius:26px;
  padding:42px 38px;
}
.about-side-title{
  font-family:var(--font-head);
  font-weight:700;
  font-size:14.5px;
  color:var(--ink);
  margin-bottom:12px;
  letter-spacing:.03em;
}
.target-list li{
  display:grid;
  grid-template-columns:36px 1fr;
  gap:12px;
  padding:18px 0;
  border-bottom:1px dashed rgba(90,68,55,.16);
}
.target-list li:last-child{ border-bottom:none; }
.target-num{
  font-family:var(--font-en);
  font-weight:500;
  font-size:13px;
  color:var(--pink-deep);
  letter-spacing:.06em;
  padding-top:3px;
}
.target-text{ font-size:12.8px; color:var(--muted); line-height:1.95; }
.target-text strong{
  display:block;
  font-family:var(--font-head);
  font-weight:700;
  font-size:14.5px;
  color:var(--ink);
  margin-bottom:5px;
  letter-spacing:.02em;
}
.about-quote{
  margin-top:26px;
  padding-left:16px;
  border-left:3px solid var(--pink);
  font-size:13.5px;
  line-height:2.05;
  color:var(--ink-2);
}

/* ---------- SERVICE ---------- */
.section-service{ background:var(--cream-2); }
.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(272px,1fr));
  gap:24px;
  margin-top:52px;
}
.card{
  background:var(--white);
  border:1px solid rgba(90,68,55,.06);
  border-radius:22px;
  padding:36px 30px 34px;
  box-shadow:0 6px 22px rgba(90,68,55,.06);
  transition:transform .28s ease, box-shadow .28s ease;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(90,68,55,.11);
}
.card-num{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-en);
  font-weight:500;
  font-size:12px;
  letter-spacing:.14em;
  color:var(--pink-deep);
  margin-bottom:16px;
}
.card-num::after{
  content:"";
  width:22px; height:1px;
  background:rgba(197,126,140,.45);
}
.card h3{
  font-family:var(--font-head);
  font-weight:700;
  font-size:16.5px;
  line-height:1.6;
  color:var(--ink);
  margin-bottom:12px;
}
.card p{ font-size:13.3px; line-height:2.05; color:var(--muted); }

/* ---------- POLICY ---------- */
.section-policy{
  background:linear-gradient(150deg,#5A4437 0%,#463427 100%);
}
.policy-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(258px,1fr));
  gap:0 44px;
  margin-top:44px;
}
.policy-item{
  padding:30px 0;
  border-top:1px solid rgba(255,255,255,.16);
}
.policy-item h3{
  position:relative;
  padding-left:22px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:15.5px;
  color:var(--white);
  margin-bottom:10px;
  line-height:1.6;
}
.policy-item h3::before{
  content:"";
  position:absolute;
  left:0; top:.62em;
  width:8px; height:8px;
  border-radius:50%;
  background:var(--pink);
}
.policy-item p{
  padding-left:22px;
  font-size:12.8px;
  line-height:2;
  color:rgba(255,255,255,.66);
}

/* ---------- WORKS ---------- */
.section-works{ background:var(--white); }
.works-lead{ max-width:640px; }
.works-heading{
  display:flex;
  align-items:center;
  gap:16px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:14px;
  letter-spacing:.08em;
  color:var(--pink-deep);
  margin:52px 0 20px;
}
.works-heading::after{
  content:"";
  flex:1;
  height:1px;
  background:rgba(197,126,140,.28);
}
.work-main{
  background:linear-gradient(135deg,#FBF7F4 0%,#F3EBE4 100%);
  border-radius:26px;
  padding:clamp(32px,4.5vw,52px) clamp(26px,4vw,48px);
}
.work-main-tag{
  display:inline-block;
  background:var(--white);
  color:var(--pink-deep);
  font-size:11.5px;
  letter-spacing:.08em;
  padding:7px 17px;
  border-radius:999px;
  margin-bottom:20px;
  box-shadow:0 4px 12px rgba(90,68,55,.08);
}
.work-main h3{
  font-family:var(--font-head);
  font-weight:700;
  font-size:clamp(1.1rem,2.3vw,1.55rem);
  line-height:1.65;
  color:var(--ink);
  margin-bottom:14px;
}
.work-main p{
  font-size:14.5px;
  line-height:2.15;
  color:var(--muted);
  max-width:62ch;
}
.work-sub-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(272px,1fr));
  gap:24px;
}
.work-sub{
  background:var(--white);
  border:1px solid rgba(90,68,55,.13);
  border-radius:22px;
  padding:34px 30px;
}
.work-badge{
  display:inline-block;
  font-size:11px;
  letter-spacing:.1em;
  color:var(--muted);
  border:1px solid rgba(90,68,55,.22);
  border-radius:999px;
  padding:5px 13px;
  margin-bottom:16px;
}
.work-sub h3{
  font-family:var(--font-head);
  font-weight:700;
  font-size:16px;
  line-height:1.6;
  color:var(--ink);
  margin-bottom:11px;
}
.work-sub p{ font-size:13.3px; line-height:2.05; color:var(--muted); }
.works-note{
  margin-top:28px;
  font-size:12.3px;
  line-height:1.95;
  color:var(--muted);
}

/* ---------- FLOW ---------- */
.section-flow{ background:var(--cream-2); }
.flow-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(182px,1fr));
  gap:20px;
  margin-top:52px;
}
.flow-list li{
  background:var(--white);
  border-radius:22px;
  padding:34px 20px 30px;
  text-align:center;
  box-shadow:0 6px 22px rgba(90,68,55,.06);
}
.flow-num{
  display:grid;
  place-items:center;
  width:46px; height:46px;
  margin:0 auto 18px;
  border-radius:50%;
  background:linear-gradient(135deg,#E3AEB6 0%,#C57E8C 100%);
  color:var(--white);
  font-family:var(--font-en);
  font-weight:500;
  font-size:18px;
  box-shadow:0 9px 20px rgba(197,126,140,.32);
}
.flow-list h3{
  font-family:var(--font-head);
  font-weight:700;
  font-size:14.5px;
  color:var(--ink);
  margin-bottom:10px;
}
.flow-list p{ font-size:12.3px; line-height:1.95; color:var(--muted); }

/* ---------- INFO ---------- */
.section-info{ background:var(--white); }
.info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  margin-top:44px;
}
.info-card{
  background:var(--cream-2);
  border-radius:26px;
  padding:clamp(32px,4vw,46px) clamp(26px,3.4vw,42px);
}
.info-card-price{
  background:linear-gradient(140deg,#F7E7EA 0%,#F3EBE4 100%);
}
.info-card h3{
  font-family:var(--font-head);
  font-weight:700;
  font-size:17.5px;
  color:var(--ink);
  padding-bottom:16px;
  margin-bottom:22px;
  border-bottom:1px solid rgba(90,68,55,.14);
}
.info-list div{
  display:grid;
  grid-template-columns:132px 1fr;
  gap:12px;
  padding:11px 0;
}
.info-list dt{
  font-size:12.8px;
  font-weight:500;
  color:var(--pink-deep);
  letter-spacing:.04em;
  padding-top:2px;
}
.info-list dd{ font-size:14px; line-height:1.95; color:var(--ink-2); }
.price-lead{
  font-size:14.8px;
  line-height:2.15;
  color:var(--ink-2);
  margin-bottom:16px;
}
.price-note{ font-size:13px; line-height:1.95; color:var(--muted); }

/* ---------- CONTACT ---------- */
.section-contact{
  position:relative;
  overflow:hidden;
  background:linear-gradient(170deg,#F3EBE4 0%,#F2DFE2 100%);
  text-align:center;
}
.blob-c{
  width:560px; height:560px;
  top:-220px; left:50%;
  transform:translateX(-50%);
  background:radial-gradient(circle,rgba(255,255,255,.85) 0%,rgba(255,255,255,0) 70%);
}
.contact-inner{ position:relative; z-index:2; }
.contact-title{
  font-family:var(--font-head);
  font-weight:700;
  font-size:clamp(1.4rem,3.5vw,2.4rem);
  line-height:1.75;
  color:var(--ink);
  margin:.5em 0 .7em;
}
.contact-lead{ font-size:14.5px; color:var(--muted); margin-bottom:44px; }
.contact-box{
  background:var(--white);
  border-radius:26px;
  padding:44px 30px;
  max-width:520px;
  margin-inline:auto;
  box-shadow:0 22px 50px rgba(90,68,55,.12);
}
.contact-box-label{
  font-family:var(--font-en);
  font-weight:500;
  font-size:11.5px;
  letter-spacing:.26em;
  color:var(--pink-deep);
  margin-bottom:14px;
}
.contact-mail{
  font-family:var(--font-head);
  font-weight:700;
  font-size:clamp(1rem,2.3vw,1.25rem);
  color:var(--ink);
  line-height:1.7;
  word-break:break-all;
}
.contact-btn{ margin-top:24px; }
.contact-box-note{ font-size:12px; color:var(--muted); margin-top:16px; }

/* ---------- フッター ---------- */
.site-footer{
  background:#46342A;
  padding:58px 0 44px;
  text-align:center;
}
.footer-mark{ margin:0 auto 18px; }
.footer-name{
  font-family:var(--font-head);
  font-weight:700;
  font-size:15px;
  color:var(--white);
  letter-spacing:.04em;
  margin-bottom:22px;
}
.footer-copy{
  font-family:var(--font-en);
  font-size:11.5px;
  letter-spacing:.08em;
  color:rgba(255,255,255,.45);
}

/* ============================================
   タブレット
   ============================================ */
@media (max-width:960px){
  .site-nav{ display:none; }
  .hero-inner{
    grid-template-columns:1fr;
    gap:52px;
    text-align:center;
  }
  .eyebrow{ justify-content:center; }
  .hero-actions{ justify-content:center; }
  .ring-a{ display:none; }
  .about-grid{ grid-template-columns:1fr; gap:44px; }
  .info-grid{ grid-template-columns:1fr; }
}

/* ============================================
   スマートフォン
   ============================================ */
@media (max-width:640px){
  .pc-only{ display:none; }
  .sp-only{ display:inline; }

  .container{ padding-inline:20px; }
  .header-inner{ height:64px; gap:12px; }
  .brand-name{ font-size:13.5px; }
  .btn{ font-size:14px; padding:15px 28px; }
  .btn-small{ font-size:12px; padding:10px 16px; }

  .hero{ padding:56px 0 78px; }
  .hero-lead{ font-size:14px; line-height:2.05; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions .btn{ width:100%; }
  .avatar-frame{ border-width:8px; }
  .hero-badge{ right:0; bottom:0; padding:13px 18px; }
  .hero-badge-num{ font-size:19px; }

  .about-side{ padding:32px 24px; border-radius:22px; }
  .card{ padding:30px 24px; }
  .policy-grid{ gap:0; }
  .work-sub{ padding:28px 24px; }

  .info-list div{ grid-template-columns:1fr; gap:2px; padding:12px 0; }
  .info-list dt{ font-size:12px; }

  .contact-box{ padding:36px 22px; }
  .section-label{ flex-wrap:wrap; gap:10px; }
}
