@charset "UTF-8";
/* ===== reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4 { font-weight: 500; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

:root {
  --bg: #f8f4ea;
  --bg-card: #fffdf8;
  --text: #463f38;
  --text-soft: #6f665c;
  --coral: #e8918a;
  --coral-ink: #d97b78;
  --coral-soft: #f4d6d2;
  --coral-line: #efc9c4;
  --pink: #f0aeb6;
  --pink-soft: #f8dde1;
  --gold: #e7bb4c;
  --gold-soft: #f4e7c2;
  --gold-line: #ecddae;
  --teal: #5cb5ac;
  --teal-soft: #cfe8e4;
  --teal-line: #b6ddd7;
  --green: #9bc04c;
  --green-soft: #e2eec5;
  --green-line: #d2e3ac;
  --hl: #f6e1de;          /* text highlight */
  --line: #e6ded0;
  --ff-jp: "Zen Maru Gothic", sans-serif;
  --ff-mincho: "Shippori Mincho B1", serif;
  --ff-script: "Parisienne", cursive;
  --ff-en: "Cormorant Garamond", serif;
  --maxw: 480px;
  --pad: 22px;
}

html { scroll-behavior: smooth; scroll-padding-top: 70px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-jp);
  color: var(--text);
  background: var(--bg);
  line-height: 1.95;
  font-size: 15px;
  letter-spacing: .02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== layout column ===== */
.layout { position: relative; width: 100%; }
.layout__inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  overflow: hidden;
}
@media (min-width: 481px) {
  .layout__inner { box-shadow: 0 0 60px rgba(150,130,110,.18); }
}
.main { display: block; }
.section { padding: 0 var(--pad); margin: 0 auto 60px; }
.section--flush { padding: 0; }

/* ===== loading ===== */
.loading {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s ease;
}
.loading__inner { text-align: center; opacity: 0; animation: lf 1.4s ease forwards .2s; }
.loading__logo { width: 420px; max-width: 84vw; margin: 0 auto; }
.loading__cap { font-family: var(--ff-script); color: var(--coral); font-size: 19px; letter-spacing: .04em; }
@keyframes lf { from{opacity:0; transform:translateY(8px)} to{opacity:1; transform:none} }
.is-loaded .loading { opacity: 0; pointer-events: none; }

/* ===== header ===== */
.header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--maxw); z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--pad);
}
/* soft white scrim so the logo + hamburger stay legible over any content */
.header::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 42px; z-index: -1;
  background: linear-gradient(180deg, rgba(255,253,250,.96) 0%, rgba(255,253,250,.85) 52%, rgba(255,253,250,0) 100%);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  pointer-events: none;
}
/* hide the scrim while the full-screen drawer is open */
.is-nav .header::before { opacity: 0; }
.brand { display: flex; align-items: center; gap: 9px; }
.brand__full { height: 40px; width: auto; }
.brand__wreath { width: 46px; flex-shrink: 0; }
.brand__tag { font-family: var(--ff-script); font-size: 11px; color: var(--coral); line-height: 1; margin-bottom: 3px; letter-spacing: .03em; }
.brand__name { font-family: var(--ff-jp); font-size: 16px; font-weight: 500; letter-spacing: .04em; line-height: 1; color: var(--text); }
.brand__name .sm { font-size: 13px; }

/* hamburger */
.navtoggle {
  width: 34px; height: 28px; position: relative; cursor: pointer; flex-shrink: 0;
  background: none; border: 0;
}
.navtoggle span {
  position: absolute; left: 4px; right: 4px; height: 2px; border-radius: 2px;
  background: var(--coral); transition: .35s ease;
}
.navtoggle span:nth-child(1){ top: 5px; }
.navtoggle span:nth-child(2){ top: 13px; }
.navtoggle span:nth-child(3){ top: 21px; }
.is-nav .navtoggle span:nth-child(1){ top: 13px; transform: rotate(45deg); }
.is-nav .navtoggle span:nth-child(2){ opacity: 0; }
.is-nav .navtoggle span:nth-child(3){ top: 13px; transform: rotate(-45deg); }

/* ===== nav drawer ===== */
.nav {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--maxw); height: 100dvh; z-index: 80;
  background: linear-gradient(180deg,#fbf7f0 0%, #f6eee2 100%);
  padding: 78px 26px 0;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s ease;
}
.nav__scroll { flex: 1 1 auto; overflow-y: auto; padding-bottom: 22px; }
.nav__pin {
  position: relative; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 12px;
  padding: 0 0 max(20px, env(safe-area-inset-bottom));
}
.nav__pin::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 22px;
  background: linear-gradient(180deg, rgba(246,238,226,0), #f6eee2);
  pointer-events: none;
}
.nav__pin .btn--line { box-shadow: 0 6px 16px rgba(6,199,85,.25); }
.is-nav .nav { opacity: 1; visibility: visible; }
.nav__list { margin-bottom: 8px; }
.nav__item { border-bottom: 1px dashed var(--coral-line); }
.nav__link {
  display: flex; align-items: center; gap: 11px; padding: 15px 4px; font-size: 16px;
}
.nav__link .ic { width: 19px; height: 19px; flex-shrink: 0; }
.nav__en { font-family: var(--ff-script); color: var(--coral); font-size: 14px; margin-left: 2px; }
.nav__sub { padding: 4px 0 12px 14px; }
.nav__sub .nav__link { padding: 9px 4px; font-size: 14.5px; border: 0; }
.nav__sub .nav__item { border: 0; }
.nav__sub .ic { width: 16px; height: 16px; }

.nav__cta { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }

/* buttons (also used in contact) */
.btn {
  position: relative; display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px 20px; border-radius: 40px; font-size: 15px; letter-spacing: .03em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn__arrow { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 14px; }
.btn .ic-badge { width: 26px; height: 26px; display: grid; place-items: center; }
.btn--line { background: #06c755; color: #fff; box-shadow: 0 6px 16px rgba(6,199,85,.25); }
.btn--out { background: var(--bg-card); color: var(--coral-ink); border: 1.5px solid var(--coral-line); }
.btn--out .ic-badge svg { color: var(--coral); }
.btn:active { transform: scale(.99); }
@media (min-width:481px){ .btn:hover{ box-shadow: 0 8px 20px rgba(160,120,110,.18);} }

/* ===== fixed CV (rotating LINE) ===== */
.fab {
  position: fixed; right: 14px; bottom: 16px; z-index: 70; width: 84px; height: 84px;
  transition: opacity .3s ease;
}
.fab a { display: block; width: 100%; height: 100%; position: relative; }
.fab__spin { position: absolute; inset: 0; animation: spin 11s linear infinite; }
.fab__core {
  position: absolute; inset: 24px; border-radius: 50%; background: #06c755;
  display: grid; place-items: center; box-shadow: 0 4px 12px rgba(6,199,85,.3);
}
.fab__core svg { width: 22px; height: 22px; }
@keyframes spin { to { transform: rotate(360deg);} }
.fab.is-hidden { opacity: 0; pointer-events: none; }
@media (min-width:481px){ .fab{ right: calc(50% - 240px + 14px);} }

/* ===== shared fade-in ===== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1; transform:none;} }
