/* =========================================================
   rasiku — Design System  (Color Plan A: Natural Core)
   Ivory 40 / Green 35 / Yellow 15 / Charcoal 10
   Life = Dusty Pink accent  /  Business = Smoky Blue accent
   ========================================================= */

:root {
  --sage:        #8FAF9A;
  --sage-soft:   #B7CEBF;
  --forest:      #3F6F5A;
  --forest-deep: #2F5444;
  --yellow:      #F3D36B;
  --yellow-soft: #F8E6AC;
  --ivory:       #F8F4EA;
  --ivory-deep:  #F0EADA;
  --paper:       #FCFAF3;
  --charcoal:    #333333;
  --life:        #D99AA5;
  --life-deep:   #C5808C;
  --life-pale:   #F6E3E6;
  --biz:         #4F7890;
  --biz-deep:    #2F4F66;
  --biz-pale:    #E4EEF3;
  --ink:         #353433;
  --ink-soft:    #5f5d58;
  --ink-mute:    #8c887f;
  --hair:        #e4ddcd;
  --hair-soft:   #ece6d8;
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:  "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --latin: "Cormorant Garamond", "Noto Serif JP", serif;
  --measure: 1180px;
  --narrow: 720px;
  --section-y: clamp(76px, 11vw, 150px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(70,62,40,.05);
  --shadow-md: 0 18px 50px -28px rgba(63,111,90,.35);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.95;
  font-size: 16px;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
  margin: 0;
  color: var(--charcoal);
}
p { margin: 0; text-wrap: pretty; }
::selection { background: var(--sage-soft); color: #233; }

/* ---------- Layout ---------- */
.wrap   { width: 100%; max-width: var(--measure); margin-inline: auto; padding-inline: clamp(22px, 6vw, 56px); }
.narrow { max-width: var(--narrow); }
.section { padding-block: var(--section-y); }
.bg-ivory  { background: var(--ivory); }
.bg-paper  { background: var(--paper); }
.bg-deep   { background: var(--ivory-deep); }
.bg-forest { background: var(--forest-deep); color: #f3efe3; }
.bg-forest h1,.bg-forest h2,.bg-forest h3 { color: #fbfaf4; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px; font-weight: 600; letter-spacing: .42em;
  color: var(--forest); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 14px; margin: 0;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--sage); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 26px; height: 1px; background: var(--sage); display: inline-block; }

/* ---------- Ornament ---------- */
.ornament { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--yellow); }
.ornament::before, .ornament::after { content: ""; height: 1px; width: 46px; background: linear-gradient(90deg, transparent, var(--sage)); }
.ornament::after { background: linear-gradient(90deg, var(--sage), transparent); }
.ornament i { width: 6px; height: 6px; transform: rotate(45deg); background: var(--yellow); display: block; }

/* ---------- Headings ---------- */
.display { font-size: clamp(30px, 6vw, 56px); font-weight: 500; line-height: 1.62; letter-spacing: .055em; }
.h-sec { font-size: clamp(25px, 3.6vw, 38px); line-height: 1.55; letter-spacing: .06em; }
.lead { font-size: clamp(15px, 1.7vw, 17px); color: var(--ink-soft); line-height: 2.15; font-weight: 400; }

/* ---------- Buttons ---------- */
.btn {
  --c: var(--forest);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: .14em;
  padding: 16px 34px; border-radius: 999px;
  background: var(--c); color: #fff; border: 1px solid var(--c);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, background .3s, color .3s;
  will-change: transform;
}
.btn .arw { transition: transform .35s; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -18px color-mix(in srgb, var(--c) 70%, #000); }
.btn:hover .arw { transform: translateX(5px); }
.btn.ghost { background: transparent; color: var(--c); }
.btn.ghost:hover { background: var(--c); color: #fff; }
.btn.life  { --c: var(--life-deep); }
.btn.biz   { --c: var(--biz); }
.btn.block { width: 100%; }
.btn.lg { padding: 19px 42px; font-size: 15px; }

/* ---------- Text link ---------- */
.tlink { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; letter-spacing: .12em; color: var(--forest); padding-bottom: 4px; position: relative; }
.tlink::after { content:""; position:absolute; left:0; bottom:0; height:1px; width:100%; background: currentColor; transform: scaleX(.4); transform-origin: left; opacity:.4; transition: transform .4s, opacity .4s; }
.tlink:hover::after { transform: scaleX(1); opacity:1; }
.tlink .arw { transition: transform .35s; }
.tlink:hover .arw { transform: translateX(4px); }

/* ---------- Card surface ---------- */
.card { background: var(--paper); border: 1px solid var(--hair-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* ---------- Image placeholder ---------- */
.ph { position: relative; background-color: #efe9da; background-image: repeating-linear-gradient(135deg, rgba(143,175,154,.16) 0 2px, transparent 2px 11px); border: 1px solid var(--hair); border-radius: var(--radius-lg); display: grid; place-items: center; overflow: hidden; color: #9a9789; }
.ph span { font-family: var(--sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; background: rgba(252,250,243,.82); padding: 7px 14px; border-radius: 999px; border: 1px solid var(--hair); }
.ph.life { background-color: #f7ebed; background-image: repeating-linear-gradient(135deg, rgba(217,154,165,.16) 0 2px, transparent 2px 11px); }
.ph.biz  { background-color: #e9eff4; background-image: repeating-linear-gradient(135deg, rgba(79,120,144,.16) 0 2px, transparent 2px 11px); }
/* 実写真フレーム — phを使わず専用クラスで管理 */
.img-frame {
  display: block;
  overflow: hidden !important;
  border-radius: var(--radius-lg) !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* Safari fix */
}
.img-frame.life  { aspect-ratio: 5/4; }
.img-frame.biz   { aspect-ratio: 5/4; }
.img-frame.profile {
  aspect-ratio: 4/5;
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg) !important;
  max-width: 340px;
}
.img-frame .ph-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* srow内 */
.srow .s-media { overflow: hidden; border-radius: var(--radius-lg); }
.srow .img-frame { width: 100%; height: auto; aspect-ratio: 5/4; border-radius: var(--radius-lg) !important; overflow: hidden !important; }
@media (max-width: 760px) {
  .img-frame.life, .img-frame.biz, .srow .img-frame { aspect-ratio: 4/3; }
}

/* ---------- Section intro ---------- */
.intro { text-align: center; max-width: 640px; margin-inline: auto; }
.intro .eyebrow { margin-bottom: 22px; }
.intro .h-sec { margin-bottom: 20px; }

/* =========================================================
   Header
   ========================================================= */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--ivory) 86%, transparent);
  backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-head.scrolled { border-color: var(--hair); background: color-mix(in srgb, var(--ivory) 94%, transparent); }
body.admin-bar .site-head { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-head { top: 46px; } }
.head-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { font-family: var(--latin); font-size: 27px; font-weight: 500; letter-spacing: .26em; color: var(--charcoal); padding-left: .26em; line-height: 1; }
.nav-main { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 34px); flex-wrap: nowrap; }
.nav-cta { white-space: nowrap; }
.nav-main a.nl { font-size: 13.5px; letter-spacing: .1em; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color .3s; white-space: nowrap; }
.nav-main a.nl:hover { color: var(--forest); }
.nav-main a.nl.active { color: var(--forest); }
.nav-main a.nl::after { content:""; position:absolute; left:50%; bottom:-2px; height:1px; width:0; background: var(--forest); transform: translateX(-50%); transition: width .3s; }
.nav-main a.nl:hover::after, .nav-main a.nl.active::after { width: 100%; }
.nav-cta { margin-left: 6px; }
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--hair); border-radius: 50%; background: transparent; cursor: pointer; position: relative; }
.burger span { position:absolute; left:13px; width:18px; height:1.4px; background: var(--charcoal); transition: .3s; }
.burger span:nth-child(1){ top:18px; }
.burger span:nth-child(2){ top:23px; }
.burger.open span:nth-child(1){ top:22px; transform: rotate(45deg); }
.burger.open span:nth-child(2){ top:22px; transform: rotate(-45deg); }
.burger.open { background: var(--forest) !important; border-color: var(--forest) !important; }
.burger.open span { background: #fff; }
.drawer { position: fixed; inset: 0; z-index: 55; background: var(--ivory); display: flex; flex-direction: column; justify-content: center; padding: 40px clamp(28px,8vw,56px); transform: translateY(-100%); transition: transform .5s cubic-bezier(.6,0,.2,1); pointer-events: none; }
.drawer.open { transform: translateY(0); pointer-events: auto; }
.drawer a { font-family: var(--serif); font-size: 24px; letter-spacing: .08em; padding: 16px 0; border-bottom: 1px solid var(--hair-soft); display: flex; justify-content: space-between; align-items: baseline; color: var(--charcoal); }
.drawer a small { font-family: var(--latin); font-size: 13px; letter-spacing:.2em; color: var(--sage); }
.drawer .btn { margin-top: 30px; display: flex; justify-content: center; color: #fff !important; }

/* =========================================================
   Footer
   ========================================================= */
.site-foot { background: var(--forest-deep); color: #d9e2d8; padding-block: clamp(56px,7vw,82px) 30px; }
.site-foot a { color: #d9e2d8; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-brand .fb { font-family: var(--latin); font-size: 30px; letter-spacing: .26em; color: #fff; }
.foot-brand p { color: #aebfb1; font-size: 13.5px; margin-top: 18px; max-width: 320px; }
.foot-col h4 { color: #fff; font-family: var(--sans); font-size: 12px; letter-spacing: .24em; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; }
.foot-col a { display: block; font-size: 14px; color: #b9c8bc; padding: 7px 0; transition: color .3s; }
.foot-col a:hover { color: #fff; }
.foot-base { margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 12px; color: #93a597; letter-spacing: .08em; }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 880px) {
  .nav-main { display: none; }
  .burger { display: block; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 15px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-base { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Sub-page components
   ========================================================= */
.t-life { --accent: var(--life); --accent-deep: var(--life-deep); --accent-pale: var(--life-pale); }
.t-biz  { --accent: var(--biz);  --accent-deep: var(--biz-deep);  --accent-pale: var(--biz-pale); }
:root   { --accent: var(--forest); --accent-deep: var(--forest-deep); --accent-pale: #e7efe8; }

/* Page hero */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(58px, 9vw, 116px) clamp(40px, 6vw, 72px); }
.page-hero .latin { font-family: var(--latin); font-style: italic; font-size: clamp(40px, 7vw, 76px); line-height: 1; color: var(--accent-deep); letter-spacing: .02em; }
.page-hero .latin .reg { font-style: normal; color: var(--charcoal); margin-right: .12em; }
.page-hero .ttl { font-size: clamp(24px, 3vw, 33px); margin-top: 22px; letter-spacing: .07em; }
.page-hero .lead { max-width: 620px; margin-top: 26px; }
.page-hero .crumb { font-size: 12px; letter-spacing: .14em; color: var(--ink-mute); margin-bottom: 30px; }
.page-hero .crumb a:hover { color: var(--accent-deep); }
.hero-tint { position: absolute; inset: 0; pointer-events: none; }
.hero-tint::before { content:""; position:absolute; width: 360px; height: 360px; right: -110px; top: -120px; border-radius:50%; background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--accent) 38%, transparent), transparent 64%); filter: blur(6px); }

/* Block 2-col */
.block-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.block-2.flip .b-media { order: 2; }
.block-2 .ph { aspect-ratio: 5/4; }
.b-body h2 { font-size: clamp(22px, 2.8vw, 30px); line-height: 1.6; margin-bottom: 20px; }
.b-body p { color: var(--ink-soft); line-height: 2.2; font-size: 15px; }
.b-body p + p { margin-top: 18px; }
@media (max-width: 760px){ .block-2, .block-2.flip { grid-template-columns: 1fr; } .block-2.flip .b-media { order: 0; } .block-2 .ph { aspect-ratio: 4/3; } }

/* Checklist */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; margin-top: 10px; }
.checklist li { list-style: none; display: flex; gap: 14px; align-items: flex-start; padding: 16px 4px; border-bottom: 1px solid var(--hair-soft); line-height: 1.85; color: var(--ink-soft); font-size: 15px; }
.checklist .mk { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-pale); color: var(--accent-deep); display: grid; place-items: center; font-size: 11px; margin-top: 3px; }
ul.checklist { padding: 0; margin-inline: 0; }
@media (max-width: 640px){ .checklist { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start; background: var(--paper); border: 1px solid var(--hair-soft); border-radius: var(--radius-lg); padding: 28px 30px; }
.step .num { font-family: var(--latin); font-size: 36px; color: var(--accent); line-height: 1; font-weight: 500; }
.step h4 { font-size: 18px; margin-bottom: 8px; letter-spacing: .04em; }
.step p { color: var(--ink-soft); font-size: 14.5px; line-height: 2; }
@media (max-width: 560px){ .step { grid-template-columns: 1fr; gap: 8px; padding: 24px; } }

/* Menu / price cards */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.menu-grid-3 { grid-template-columns: repeat(3, 1fr); }
.menu-card { background: var(--paper); border: 1px solid var(--hair-soft); border-radius: var(--radius-lg); padding: 36px 34px; display: flex; flex-direction: column; }
.menu-card.feature { border-color: color-mix(in srgb, var(--accent) 45%, var(--hair)); box-shadow: var(--shadow-md); }
.menu-card .tag { align-self: flex-start; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep); background: var(--accent-pale); padding: 6px 13px; border-radius: 999px; margin-bottom: 20px; }
.menu-card h3 { font-size: 22px; letter-spacing: .04em; margin-bottom: 14px; }
.menu-card .price { font-family: var(--latin); font-size: 30px; color: var(--charcoal); margin: 6px 0 18px; }
.menu-card .price small { font-family: var(--sans); font-size: 13px; color: var(--ink-mute); letter-spacing: .06em; margin-left: 6px; }
.menu-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 2; margin-bottom: 22px; }
.menu-card .feat { list-style: none; padding: 0; margin: 0 0 26px; }
.menu-card .feat li { font-size: 14px; color: var(--ink-soft); padding: 9px 0 9px 26px; position: relative; border-top: 1px solid var(--hair-soft); }
.menu-card .feat li::before { content: ""; position: absolute; left: 4px; top: 17px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.menu-card .btn { margin-top: auto; }
@media (max-width: 680px){ .menu-grid, .menu-grid-3 { grid-template-columns: 1fr; } }

/* FAQ */
.faq { border-top: 1px solid var(--hair); }
.faq details { border-bottom: 1px solid var(--hair); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 18px; padding: 26px 4px; font-family: var(--serif); font-size: 17px; color: var(--charcoal); letter-spacing: .03em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { font-family: var(--latin); font-style: italic; color: var(--accent); font-size: 19px; flex: none; }
.faq summary .pm { margin-left: auto; flex: none; width: 24px; height: 24px; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content:""; position:absolute; background: var(--accent-deep); transition: transform .3s; }
.faq summary .pm::before { top: 11px; left: 4px; width: 16px; height: 1.5px; }
.faq summary .pm::after { top: 4px; left: 11px; width: 1.5px; height: 16px; }
.faq details[open] summary .pm::after { transform: scaleY(0); }
.faq .ans { padding: 0 4px 28px 42px; color: var(--ink-soft); font-size: 14.5px; line-height: 2.1; }
@media (max-width: 560px){ .faq .ans { padding-left: 4px; } }

/* Info table */
.info-table { border-top: 1px solid var(--hair); }
.info-table .row { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 24px 6px; border-bottom: 1px solid var(--hair); }
.info-table dt { font-family: var(--serif); font-size: 15px; color: var(--charcoal); letter-spacing: .06em; margin: 0; }
.info-table dd { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 2; }
@media (max-width: 600px){ .info-table .row { grid-template-columns: 1fr; gap: 6px; } }

/* Contact form */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.form-aside .card { padding: 32px 30px; }
.form-aside h3 { font-size: 19px; margin-bottom: 14px; }
.form-aside p { color: var(--ink-soft); font-size: 14px; line-height: 2; }
.form-aside .meta { margin-top: 24px; border-top: 1px solid var(--hair-soft); padding-top: 22px; }
.form-aside .meta b { display:block; font-family: var(--sans); font-size: 12px; letter-spacing: .14em; color: var(--ink-mute); margin-bottom: 4px; font-weight: 600; }
.form-aside .meta span { font-family: var(--serif); font-size: 17px; color: var(--charcoal); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 13px; letter-spacing: .08em; color: var(--charcoal); margin-bottom: 10px; font-weight: 500; }
.field label .req { color: var(--life-deep); font-size: 11px; margin-left: 8px; letter-spacing: .1em; }
.field input, .field textarea, .field select { width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--paper); border: 1px solid var(--hair); border-radius: 12px; padding: 14px 16px; transition: border-color .25s, box-shadow .25s; outline: none; }
.field textarea { min-height: 150px; resize: vertical; line-height: 1.9; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.seg label { display: flex; flex-direction: column; gap: 4px; cursor: pointer; padding: 16px 18px; border: 1px solid var(--hair); border-radius: 14px; background: var(--paper); transition: border-color .25s, background .25s; margin: 0; }
.seg label .t { font-family: var(--latin); font-style: italic; font-size: 18px; }
.seg label .d { font-size: 12px; color: var(--ink-mute); letter-spacing: .04em; }
.seg label.life .t { color: var(--life-deep); }
.seg label.biz  .t { color: var(--biz); }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label:has(input:checked).life { border-color: var(--life); background: var(--life-pale); }
.seg label:has(input:checked).biz  { border-color: var(--biz);  background: var(--biz-pale); }
.form-note { font-size: 12.5px; color: var(--ink-mute); line-height: 1.9; margin-top: 6px; }
.form-note a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 820px){ .form-wrap { grid-template-columns: 1fr; } .form-aside { order: 2; } }
@media (max-width: 460px){ .seg { grid-template-columns: 1fr; } }
.sent { display: none; text-align: center; padding: 50px 20px; }
.sent.show { display: block; }
.sent .mk { width: 60px; height: 60px; border-radius: 50%; background: var(--accent-pale); color: var(--accent-deep); display: grid; place-items: center; font-size: 26px; margin: 0 auto 24px; }
.sent h3 { font-size: 24px; margin-bottom: 12px; }
.sent p { color: var(--ink-soft); line-height: 2; }

/* Article */
.article { max-width: 760px; }
.article h2 { font-size: clamp(20px, 2.4vw, 25px); margin: 48px 0 16px; letter-spacing: .05em; }
.article h2:first-child { margin-top: 0; }
.article p { color: var(--ink-soft); line-height: 2.2; font-size: 15px; margin-bottom: 16px; }
.article ul, .article ol { color: var(--ink-soft); line-height: 2.1; font-size: 15px; padding-left: 22px; margin: 0 0 16px; }
.article li { margin-bottom: 8px; }
.article .updated { font-size: 13px; color: var(--ink-mute); letter-spacing: .08em; margin-bottom: 40px; }

/* Cross links */
.cross { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cross a { display: block; padding: 32px 30px; border-radius: var(--radius-lg); border: 1px solid var(--hair-soft); background: var(--paper); transition: transform .35s, box-shadow .35s; }
.cross a:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cross .rt { font-family: var(--latin); font-style: italic; font-size: 20px; color: var(--accent-deep); }
.cross h4 { font-size: 17px; margin: 8px 0 12px; }
.cross .go { font-size: 13px; letter-spacing: .1em; color: var(--accent-deep); display: inline-flex; gap: 8px; align-items: center; }
@media (max-width: 600px){ .cross { grid-template-columns: 1fr; } }
.mb-intro { margin-bottom: clamp(40px, 6vw, 70px); }

/* =========================================================
   Home page specific
   ========================================================= */
.hero { position: relative; overflow: hidden; padding-top: clamp(48px, 8vw, 92px); }
.hero-inner { text-align: center; max-width: 860px; margin-inline: auto; }
.hero .ornament { margin-bottom: 30px; }
.hero .display { margin-bottom: 30px; }
.hero .lead { max-width: 620px; margin-inline: auto; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 42px; }
.hero-cta .btn { min-width: 230px; }
.hero-cta .sub { display:block; font-family: var(--latin); font-size: 12px; letter-spacing:.22em; opacity:.85; font-weight:400; margin-top:2px; }
.hero-cta .btn b { font-weight: 500; }
.hero-figure { margin-top: clamp(48px, 7vw, 80px); }
.hero-figure .ph { aspect-ratio: 21 / 8; }
.hero-photo { width: 100%; aspect-ratio: 21 / 8; object-fit: cover; object-position: center 30%; border-radius: var(--radius-lg); display: block; }
@media (max-width: 640px){ .hero-figure .ph { aspect-ratio: 4/3; } .hero-photo { aspect-ratio: 4/3; } .hero-cta .btn { width: 100%; } }
.leaf-blur { position:absolute; width: 320px; height: 320px; border-radius:50%; background: radial-gradient(circle at 30% 30%, rgba(143,175,154,.30), transparent 62%); filter: blur(8px); pointer-events:none; }
.leaf-blur.a { top:-90px; left:-110px; }
.leaf-blur.b { top:120px; right:-150px; background: radial-gradient(circle at 30% 30%, rgba(243,211,107,.26), transparent 62%); }

.concept-body { max-width: 700px; margin-inline:auto; text-align:center; }
.concept-body p { font-size: clamp(15px,1.7vw,17.5px); color: var(--ink-soft); line-height:2.3; }
.concept-body p + p { margin-top: 24px; }
.pillars { display:grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 54px; }
.pillar { background: var(--paper); border:1px solid var(--hair-soft); border-radius: var(--radius-lg); padding: 34px 30px; text-align:left; }
.pillar .tag { font-family: var(--latin); font-size: 14px; letter-spacing:.2em; }
.pillar.life .tag { color: var(--life-deep); }
.pillar.biz  .tag { color: var(--biz); }
.pillar h3 { font-size: 20px; margin: 12px 0 12px; line-height:1.7; }
.pillar p { font-size: 14.5px; color: var(--ink-soft); line-height: 2.05; }
@media (max-width: 640px){ .pillars { grid-template-columns: 1fr; } }

.srow { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,72px); align-items:center; }
.srow + .srow { margin-top: clamp(64px,8vw,110px); }
.srow .ph { aspect-ratio: 5/4; height:100%; }
.srow.flip .s-media { order: 2; }
.s-kicker { font-family: var(--latin); font-size: clamp(26px,3.4vw,38px); letter-spacing:.04em; line-height:1.1; }
.s-kicker .for { font-style: italic; }
.srow.life .s-kicker .for { color: var(--life-deep); }
.srow.biz  .s-kicker .for { color: var(--biz); }
.s-name { display:inline-block; font-size:13px; letter-spacing:.18em; color: var(--ink-mute); margin-top:18px; padding:6px 14px; border-radius:999px; border:1px solid var(--hair); }
.s-lead { font-family: var(--serif); font-weight:500; font-size: clamp(19px,2.4vw,25px); line-height:1.75; color: var(--charcoal); margin: 22px 0 18px; letter-spacing:.04em; }
.s-desc { color: var(--ink-soft); line-height:2.15; font-size:15px; max-width: 460px; }
.s-foot { margin-top: 30px; }
@media (max-width: 760px){ .srow, .srow.flip { grid-template-columns: 1fr; } .srow.flip .s-media { order: 0; } .srow .ph { aspect-ratio: 4/3; } }

.profile { display:grid; grid-template-columns: 360px 1fr; gap: clamp(36px,5vw,68px); align-items:center; }
.profile .ph { aspect-ratio: 4/5; border-radius: 200px 200px var(--radius-lg) var(--radius-lg); position: relative; overflow: hidden; display: block; background: none; border: none; }
.profile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.profile .role { color: var(--ink-mute); font-size:13px; letter-spacing:.2em; }
.profile h2 { font-size: clamp(28px,3.4vw,40px); margin: 14px 0 6px; }
.profile .reading { font-family: var(--latin); font-size:15px; letter-spacing:.24em; color: var(--sage); }
.profile p.bio { color: var(--ink-soft); line-height:2.2; font-size:15px; margin-top:24px; max-width: 540px; }
@media (max-width: 700px){ .profile { grid-template-columns: 1fr; } .profile .ph { max-width: 280px; margin-inline:auto; } }

.cta-band { text-align:center; }
.cta-band .h-sec { color:#fbfaf4; margin: 22px 0 14px; }
.cta-band p { color:#bcccbe; max-width: 520px; margin: 0 auto 38px; line-height:2.1; }
.cta-routes { display:grid; grid-template-columns:1fr 1fr; gap:18px; max-width: 720px; margin-inline:auto; }
.route { background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 30px 26px; text-align:left; transition: background .3s, transform .35s, border-color .3s; }
.route:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); border-color: rgba(255,255,255,.28); }
.route .rt { font-family: var(--latin); font-style:italic; font-size:22px; }
.route.life .rt { color: #f0c4cb; }
.route.biz  .rt { color: #bcd7e6; }
.route h4 { color:#fff; font-family: var(--sans); font-size:16px; font-weight:500; letter-spacing:.04em; margin:8px 0 14px; }
.route .go { display:inline-flex; align-items:center; gap:8px; font-size:13px; letter-spacing:.12em; color:#dbe6dc; }
@media (max-width: 600px){ .cta-routes { grid-template-columns:1fr; } }

/* ── Kadence page title banner を非表示 ── */
.entry-hero { display: none !important; }

/* ── Kadence content area の余白をリセット ── */
.content-area { margin-top: 0 !important; margin-bottom: 0 !important; }
.entry-content-wrap { padding: 0 !important; }
