/* =========================================================
   ONE STEP — Design C: COASTAL / SEASIDE / SEA-GRADIENT
   Concept: a sun-bright shore at morning, drawn by hand.
   ========================================================= */

:root {
  --milk:        #EAF7FB;
  --cream:       #F4FAFC;
  --sea-deep:    #C7E5EC;
  --soil:        #1A3540;
  --soil-soft:   #3F5C68;
  --soil-mute:   #7A93A0;
  --pasture:     #2D7A92;
  --pasture-deep:#1F5970;
  --terracotta:  #E8A57A;
  --honey:       #F2C572;
  --line:        #C7DDE5;
  --milk-pure:   #FFFFFF;

  --max:    1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --serif:    "Fraunces", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --hand:     "Caveat", "Indie Flower", cursive;
  --jp:       "Klee One", "Yu Mincho", serif;
  --jp-body:  "Zen Kaku Gothic Antique", "Hiragino Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--jp-body);
  background: linear-gradient(180deg, var(--milk) 0%, var(--sea-deep) 100%);
  background-attachment: fixed;
  color: var(--soil);
  line-height: 1.85;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; }
::selection { background: var(--pasture); color: var(--milk); }

/* Soft paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .25;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10 0 0 0 0 0.21 0 0 0 0 0.25 0 0 0 0.07 0'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* Floating clouds bg */
.bg-clouds {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.bg-clouds .cloud {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: drift 30s ease-in-out infinite;
}
.bg-clouds .c-1 { top: 10%; left: -10%; background: rgba(242, 197, 114, 0.30); }
.bg-clouds .c-2 { top: 50%; right: -10%; background: rgba(113, 195, 210, 0.40); animation-delay: -10s; }
.bg-clouds .c-3 { bottom: 5%; left: 30%; background: rgba(167, 216, 229, 0.35); animation-delay: -20s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(60px, -40px); }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(234, 247, 251, 0.85);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.brand:hover .brand-mark { transform: rotate(-8deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--pasture-deep);
}
.brand-sub {
  font-family: var(--jp);
  font-size: 11px;
  color: var(--soil-mute);
  margin-top: 4px;
  letter-spacing: 0.16em;
}

.primary-nav ul {
  display: flex;
  gap: 6px;
}
.primary-nav a {
  font-family: var(--jp);
  font-size: 15px;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border-radius: 999px;
  position: relative;
  transition: background .3s, color .3s;
}
.primary-nav a:hover { background: var(--milk-pure); color: var(--pasture-deep); }
.primary-nav a.hl {
  background: var(--pasture);
  color: var(--milk);
}
.primary-nav a.hl:hover { background: var(--pasture-deep); color: var(--milk); }

.menu-toggle { display: none; width: 40px; height: 40px; position: relative; border-radius: 50%; transition: background .3s; }
.menu-toggle:hover { background: var(--milk-pure); }
.menu-toggle span {
  position: absolute;
  left: 9px; right: 9px;
  height: 2px;
  background: var(--soil);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 25px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--milk);
  z-index: 40;
  padding: 100px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.7,0,.2,1);
  pointer-events: none;
}
.mobile-nav.open { transform: translateY(0); pointer-events: auto; }
.mobile-nav ul { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav li { border-bottom: 1px solid var(--line); padding: 18px 0; }
.mobile-nav a {
  font-family: var(--jp);
  font-size: clamp(24px, 6vw, 40px);
  letter-spacing: 0.04em;
}
.mobile-nav-foot {
  margin-top: auto;
  font-family: var(--hand);
  font-size: 22px;
  color: var(--terracotta);
}

/* ============ HERO ============ */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(60px, 9vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  position: relative;
}
.hero-inner { position: relative; }
.hero-handwriting {
  font-family: var(--hand);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--terracotta);
  margin-bottom: 8px;
  transform: rotate(-3deg);
  display: inline-block;
}
.hero-title {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(38px, 7vw, 96px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--pasture);
  font-size: 1.05em;
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -4px;
  height: 8px;
  background: var(--honey);
  border-radius: 50%;
  opacity: .55;
  z-index: -1;
}
.hero-lede {
  font-family: var(--jp-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2.05;
  color: var(--soil-soft);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--jp);
  font-size: 15px;
  letter-spacing: 0.06em;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, background .3s, color .3s;
  cursor: pointer;
}
.btn.primary {
  background: var(--pasture);
  color: var(--milk);
  box-shadow: 0 6px 0 var(--pasture-deep);
}
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 var(--pasture-deep);
}
.btn.primary:active { transform: translateY(2px); box-shadow: 0 4px 0 var(--pasture-deep); }
.btn.ghost {
  background: var(--milk-pure);
  color: var(--soil);
  border: 1px solid var(--line);
}
.btn.ghost:hover { border-color: var(--terracotta); color: var(--terracotta); }
.btn.big { padding: 20px 36px; font-size: 17px; }
.btn svg { transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }

.hero-curve { position: absolute; bottom: -40px; left: 0; right: 0; }

.hero-photos {
  position: relative;
  height: 560px;
}
.hp {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(26, 53, 64, 0.18);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.hp img { width: 100%; height: 100%; object-fit: cover; }
.hp figcaption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: var(--milk-pure);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--hand);
  font-size: 18px;
  color: var(--terracotta);
}
.hp-1 { top: 0; left: 8%; width: 280px; height: 320px; transform: rotate(-3deg); animation: floaty 8s ease-in-out infinite; }
.hp-2 { top: 30px; right: 0; width: 200px; height: 200px; transform: rotate(4deg); animation: floaty 7s ease-in-out infinite -2s; }
.hp-3 { bottom: 80px; left: 0; width: 200px; height: 200px; transform: rotate(2deg); animation: floaty 9s ease-in-out infinite -4s; }
.hp-4 { bottom: 0; right: 10%; width: 220px; height: 220px; transform: rotate(-5deg); animation: floaty 8s ease-in-out infinite -6s; }
.hp:hover { transform: rotate(0) scale(1.04); z-index: 5; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-8px) rotate(var(--rot, 0deg)); }
}
.hp-1:hover { z-index: 5; }

/* ============ COMMON ============ */
.kicker {
  font-family: var(--hand);
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--terracotta);
  margin-bottom: 14px;
}
.big-h {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.big-h em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--pasture);
  position: relative;
}
.big-h em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -2px;
  height: 6px;
  background: var(--honey);
  border-radius: 50%;
  opacity: .5;
  z-index: -1;
}
.big-lede {
  font-family: var(--jp-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 2.1;
  color: var(--soil-soft);
  max-width: 720px;
  margin-bottom: 60px;
}
.big-lede a { color: var(--pasture); border-bottom: 1px solid currentColor; }

/* ============ ABOUT ============ */
.about {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) var(--gutter);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-card {
  background: var(--milk-pure);
  border-radius: 28px;
  padding: 40px 32px;
  position: relative;
  border: 1px solid var(--line);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s;
  overflow: hidden;
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(26, 53, 64, 0.10);
}
.about-circle {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: var(--honey);
  border-radius: 50%;
  opacity: .25;
}
.about-circle.c-mission { background: var(--pasture); }
.about-circle.c-values { background: var(--terracotta); }
.about-en {
  font-family: var(--hand);
  font-size: 28px;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.about-card h3 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.4;
  margin-bottom: 18px;
}
.about-body {
  font-family: var(--jp-body);
  font-size: 14px;
  line-height: 2;
  color: var(--soil-soft);
}

/* ============ MESSAGE ============ */
.message {
  background: var(--cream);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.message::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: var(--honey);
  border-radius: 50%;
  opacity: .15;
}
.message::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 380px;
  height: 380px;
  background: var(--pasture);
  border-radius: 50%;
  opacity: .12;
}
.message-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.msg-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.msg-photo {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  transform: rotate(-2deg);
  box-shadow: 0 20px 40px rgba(26, 53, 64, 0.16);
}
.msg-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.msg-photo figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--milk-pure);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--jp);
  font-size: 14px;
}
.msg-body {
  font-family: var(--jp-body);
  font-size: 16px;
  line-height: 2.1;
  color: var(--soil-soft);
}
.msg-body p + p { margin-top: 1em; }
.quote {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 28px) !important;
  line-height: 1.7 !important;
  color: var(--pasture-deep) !important;
  border-left: 3px solid var(--terracotta);
  padding-left: 22px;
  margin-bottom: 28px;
}
.sign {
  margin-top: 24px !important;
  font-family: var(--jp);
  font-weight: 600;
  font-size: 14px;
  color: var(--soil);
}

/* ============ BUSINESS ============ */
.business {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
}
.biz-cards { display: flex; flex-direction: column; gap: clamp(40px, 7vw, 90px); margin-top: 30px; }
.biz-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.biz-card.reverse { grid-template-columns: 1fr 1fr; }
.biz-card.reverse .biz-photo { order: 2; }
.biz-card.reverse .biz-content { order: 1; }
.biz-photo {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(26, 53, 64, 0.14);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.biz-card:hover .biz-photo { transform: translateY(-6px); }
.biz-photo img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.biz-card:hover .biz-photo img { transform: scale(1.05); }
.new-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--terracotta);
  color: var(--milk);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  transform: rotate(6deg);
}
.biz-num {
  font-family: var(--hand);
  font-size: 24px;
  color: var(--terracotta);
}
.biz-content h3 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.4;
  margin: 8px 0 14px;
}
.biz-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--pasture);
  margin-bottom: 18px;
}
.biz-content > p {
  font-family: var(--jp-body);
  font-size: 15px;
  line-height: 2.05;
  color: var(--soil-soft);
  max-width: 520px;
  margin-bottom: 24px;
}
.biz-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.biz-tags li {
  font-family: var(--jp);
  font-size: 13px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--milk-pure);
  color: var(--soil-soft);
}
.biz-card.highlight .biz-content h3 { color: var(--pasture-deep); }

/* ============ RECRUIT BAND ============ */
.recruit-band {
  background: var(--pasture);
  color: var(--milk);
  padding: clamp(70px, 10vw, 120px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.recruit-band::before,
.recruit-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.recruit-band::before {
  width: 360px; height: 360px;
  background: var(--honey);
  top: -80px; left: -80px;
  opacity: .25;
}
.recruit-band::after {
  width: 420px; height: 420px;
  background: var(--terracotta);
  bottom: -180px; right: -100px;
  opacity: .25;
}
.rb-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.rb-handwriting {
  font-family: var(--hand);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--honey);
  margin-bottom: 12px;
}
.recruit-band h2 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.rb-lede {
  font-family: var(--jp-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2.05;
  margin-bottom: 36px;
  color: rgba(234, 247, 251, 0.92);
}
.rb-lede strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4em;
  color: var(--honey);
  letter-spacing: 0.02em;
}
.recruit-band .btn.primary {
  background: var(--milk);
  color: var(--pasture-deep);
  box-shadow: 0 6px 0 var(--soil);
}
.recruit-band .btn.primary:hover {
  background: var(--honey);
  color: var(--soil);
  box-shadow: 0 9px 0 var(--soil);
}

/* ============ COMPANY ============ */
.company {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
}
.cmp-table {
  background: var(--milk-pure);
  border-radius: 28px;
  padding: 16px 32px;
  border: 1px solid var(--line);
}
.cmp-table > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 22px 4px;
  border-bottom: 1px dashed var(--line);
  font-family: var(--jp-body);
}
.cmp-table > div:last-child { border-bottom: 0; }
.cmp-table dt {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 14px;
  color: var(--pasture-deep);
}
.cmp-table dd { font-size: 15px; line-height: 1.9; color: var(--soil); }

/* ============ CONTACT ============ */
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
  margin-top: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 14px;
  color: var(--soil-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.req {
  font-family: var(--jp-body);
  font-size: 11px;
  background: var(--terracotta);
  color: var(--milk);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.field input,
.field textarea {
  font: inherit;
  font-family: var(--jp-body);
  font-size: 16px;
  background: var(--milk-pure);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--soil);
  transition: border-color .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pasture);
  box-shadow: 0 0 0 4px rgba(45, 122, 146, 0.15);
}
.form-foot { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 12px; }
.form-note {
  font-family: var(--jp-body);
  font-size: 13px;
  color: var(--soil-mute);
}
.form-status {
  font-family: var(--jp-body);
  font-size: 14px;
  min-height: 1.5em;
}
.form-status.ok { color: var(--pasture-deep); }
.form-status.ng { color: var(--terracotta); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--cream);
  padding: clamp(60px, 8vw, 100px) var(--gutter) 24px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.footer-brand img { width: 72px; margin-bottom: 16px; }
.footer-name {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 6px;
}
.footer-tag {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--terracotta);
}
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.f-key {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 15px;
  color: var(--pasture-deep);
  margin-bottom: 14px;
}
.footer-cols ul { display: flex; flex-direction: column; gap: 8px; }
.footer-cols a {
  font-family: var(--jp-body);
  font-size: 14px;
  color: var(--soil-soft);
  transition: color .3s;
}
.footer-cols a:hover { color: var(--pasture); }
.footer-cols p {
  font-family: var(--jp-body);
  font-size: 14px;
  line-height: 1.9;
  color: var(--soil-soft);
}
.f-mail { margin-top: 12px; }
.f-mail a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.copyright {
  text-align: center;
  font-family: var(--jp-body);
  font-size: 12px;
  color: var(--soil-mute);
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

/* ============ REVEAL ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.pc-only { display: inline; }

/* ============ RECRUIT LP ============ */
.r-hero {
  padding: clamp(60px, 9vw, 110px) var(--gutter);
  position: relative;
  background:
    linear-gradient(180deg, rgba(234, 247, 251, 0.4) 0%, rgba(234, 247, 251, 0.7) 100%),
    url("https://images.unsplash.com/photo-1500595046743-cd271d694d30?w=2400&q=80&auto=format&fit=crop") center/cover no-repeat fixed;
}
.r-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--milk);
  border-top-left-radius: 50% 80px;
  border-top-right-radius: 50% 80px;
}
.r-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: var(--milk-pure);
  border-radius: 32px;
  padding: clamp(32px, 5vw, 70px);
  box-shadow: 0 30px 60px rgba(26, 53, 64, 0.16);
  border: 1px solid var(--line);
}
.r-handwriting {
  font-family: var(--hand);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--terracotta);
  margin-bottom: 12px;
  transform: rotate(-2deg);
  display: inline-block;
}
.r-hero h1 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(32px, 5.5vw, 64px);
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.r-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--pasture);
  position: relative;
}
.r-hero h1 em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -2px;
  height: 8px;
  background: var(--honey);
  border-radius: 50%;
  opacity: .55;
  z-index: -1;
}
.r-hero p {
  font-family: var(--jp-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2.05;
  margin-bottom: 28px;
  color: var(--soil-soft);
  max-width: 640px;
}
.r-hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.r-hero-meta span {
  font-family: var(--jp);
  font-size: 13px;
  background: var(--cream);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.r-hero-meta span strong {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  margin-right: 6px;
}
.r-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #06C755;
  color: white;
  padding: 20px 36px;
  font-family: var(--jp);
  font-weight: 600;
  font-size: 17px;
  border-radius: 999px;
  border: 0;
  transition: transform .3s, box-shadow .3s, background .3s;
  box-shadow: 0 6px 0 #04923F;
}
.r-hero-cta:hover { transform: translateY(-3px); box-shadow: 0 9px 0 #04923F; background: #05A847; }
.line-icon {
  width: 26px; height: 26px;
  background: white;
  color: #06C755;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
}

.r-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) var(--gutter);
}
.r-h {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.4;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.r-h em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--pasture);
  position: relative;
}
.r-h em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -2px;
  height: 6px;
  background: var(--honey);
  border-radius: 50%;
  opacity: .5;
  z-index: -1;
}
.r-lead {
  font-family: var(--jp-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 2.05;
  color: var(--soil-soft);
  max-width: 720px;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--milk-pure);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px 30px;
  position: relative;
  transition: transform .5s, box-shadow .5s;
  overflow: hidden;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(26, 53, 64, 0.12); }
.why-num {
  font-family: var(--hand);
  font-size: 56px;
  color: var(--terracotta);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 14px;
}
.why-card p {
  font-family: var(--jp-body);
  font-size: 14px;
  line-height: 2;
  color: var(--soil-soft);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.work-item {
  background: var(--milk-pure);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s, box-shadow .5s;
}
.work-item:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(26, 53, 64, 0.12); }
.work-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.work-cap { padding: 24px 28px; }
.work-cap h4 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.work-cap p {
  font-family: var(--jp-body);
  font-size: 14px;
  line-height: 2;
  color: var(--soil-soft);
}

.conditions {
  background: var(--cream);
  padding: clamp(70px, 10vw, 120px) var(--gutter);
}
.conditions-inner { max-width: var(--max); margin: 0 auto; }
.cond-table {
  background: var(--milk-pure);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 16px 32px;
  margin-top: 30px;
}
.cond-table > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 22px 4px;
  border-bottom: 1px dashed var(--line);
  font-family: var(--jp-body);
}
.cond-table > div:last-child { border-bottom: 0; }
.cond-table dt {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 14px;
  color: var(--pasture-deep);
}
.cond-table dd { font-size: 15px; line-height: 1.9; color: var(--soil); }
.cond-table dd strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}

.faq-list { max-width: 880px; }
.faq-item {
  background: var(--milk-pure);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 14px;
  padding: 20px 26px;
  transition: border-color .3s;
}
.faq-item.open { border-color: var(--pasture); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(16px, 1.7vw, 18px);
  gap: 16px;
}
.faq-q::before {
  content: "Q";
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  color: var(--terracotta);
  margin-right: 12px;
}
.faq-q::after {
  content: "+";
  font-family: var(--serif);
  font-size: 28px;
  color: var(--pasture);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding .5s ease;
  font-family: var(--jp-body);
  font-size: 14px;
  line-height: 2;
  color: var(--soil-soft);
  padding-left: 38px;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 16px; }

.r-final {
  background: var(--pasture);
  color: var(--milk);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.r-final::before,
.r-final::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.r-final::before {
  width: 320px; height: 320px;
  background: var(--honey);
  top: -100px; right: -80px;
  opacity: .25;
}
.r-final::after {
  width: 380px; height: 380px;
  background: var(--terracotta);
  bottom: -160px; left: -100px;
  opacity: .25;
}
.r-final-inner { max-width: 720px; margin: 0 auto; position: relative; }
.r-final .r-handwriting { color: var(--honey); }
.r-final h2 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.4;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.r-final p {
  font-family: var(--jp-body);
  font-size: 16px;
  line-height: 2.05;
  margin-bottom: 36px;
  color: rgba(234, 247, 251, 0.92);
}
.line-cta-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 36px;
  background: var(--milk-pure);
  color: var(--soil);
  border-radius: 28px;
}
.line-cta-box small {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 13px;
  color: var(--pasture-deep);
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  font-family: var(--jp);
  font-size: 14px;
  color: rgba(234, 247, 251, 0.85);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.back-home:hover { color: var(--honey); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .primary-nav { display: none; }
  .menu-toggle { display: block; }

  .hero { grid-template-columns: 1fr; gap: 32px; }
  .hero-photos { height: 380px; }
  .hp-1 { width: 60%; height: 240px; }
  .hp-2, .hp-3, .hp-4 { width: 35%; height: 130px; }

  .about-grid,
  .why-grid { grid-template-columns: 1fr; }

  .msg-grid { grid-template-columns: 1fr; }

  .biz-card,
  .biz-card.reverse { grid-template-columns: 1fr; }
  .biz-card.reverse .biz-photo,
  .biz-card.reverse .biz-content { order: initial; }

  .work-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }

  .cmp-table > div,
  .cond-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .contact-form { grid-template-columns: 1fr; }
  .pc-only { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   Multipage extras (Page hero / Digest / char-reveal / etc.)
   ========================================================= */

/* ----- Hero centered (Home, char-reveal) ----- */
.hero-centered {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) var(--gutter) clamp(80px, 10vw, 130px);
  text-align: center;
  display: block;
  position: relative;
}
.hero-centered .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.hero-centered .hero-handwriting {
  display: inline-block;
  margin-bottom: 14px;
}
.hero-centered h1 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  color: var(--soil);
}
.hero-centered h1 .em {
  color: var(--pasture);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
}
.hero-centered .hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(16px, 1.7vw, 20px);
  letter-spacing: 0.04em;
  color: var(--terracotta);
  margin-bottom: 26px;
}
.hero-centered .lead {
  font-family: var(--jp-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2.05;
  color: var(--soil-soft);
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-centered .hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--hand);
  font-size: 18px;
  color: var(--terracotta);
  z-index: 3;
}
.hero-scroll .line {
  width: 1px;
  height: 38px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: var(--terracotta);
  animation: scrollBob 1.8s ease-in-out infinite;
}
@keyframes scrollBob {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* ----- Char-reveal (h1 split into chars) ----- */
.hero-centered h1 .line { display: inline-block; }
.hero-centered h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  animation: heroCharReveal 0.95s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: calc(var(--i) * 0.05s + 0.2s);
  will-change: transform, opacity, filter;
}
@keyframes heroCharReveal {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-centered .animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.95s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero-centered .animate-fade-up.d-0 { animation-delay: 0.10s; }
.hero-centered .animate-fade-up.d-1 { animation-delay: 1.30s; }
.hero-centered .animate-fade-up.d-2 { animation-delay: 1.55s; }
.hero-centered .animate-fade-up.d-3 { animation-delay: 1.80s; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ----- Page hero (sub-pages) ----- */
.page-hero {
  position: relative;
  padding: clamp(70px, 10vw, 120px) var(--gutter) clamp(40px, 6vw, 70px);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--jp-body);
  font-size: 12px;
  color: var(--soil-mute);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--soil-mute); transition: color .2s; }
.breadcrumb a:hover { color: var(--pasture); }
.breadcrumb .sep { color: var(--soil-mute); opacity: .5; }
.breadcrumb [aria-current="page"] { color: var(--soil); font-weight: 600; }
.page-hero .hero-handwriting {
  display: inline-block;
  margin-bottom: 8px;
}
.page-hero h1 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--soil);
  margin-bottom: 22px;
}
.page-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--pasture);
  position: relative;
}
.page-hero h1 em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: -2px;
  height: 6px;
  background: var(--honey);
  border-radius: 50%;
  opacity: .55;
  z-index: -1;
}
.page-hero .lead {
  font-family: var(--jp-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 2;
  color: var(--soil-soft);
  max-width: 660px;
}
.page-hero .lead a { color: var(--pasture); border-bottom: 1px solid currentColor; }

/* ----- Section common (page-level) ----- */
.section {
  padding: clamp(70px, 10vw, 120px) var(--gutter);
}
.section.alt-cream { background: var(--cream); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-head { margin-bottom: clamp(40px, 6vw, 64px); }
.section-head .kicker { display: inline-block; margin-bottom: 8px; }
.section-head h2 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--soil);
  margin-bottom: 18px;
}
.section-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--pasture);
  position: relative;
}
.section-head h2 em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: -2px;
  height: 6px;
  background: var(--honey);
  border-radius: 50%;
  opacity: .5;
  z-index: -1;
}
.section-head .desc {
  font-family: var(--jp-body);
  font-size: 15px;
  line-height: 2;
  color: var(--soil-soft);
  max-width: 660px;
}

/* ----- Buttons (multipage) ----- */
.btn-primary {
  background: var(--pasture);
  color: var(--milk);
  border-radius: 999px;
  padding: 16px 28px;
  font-family: var(--jp);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 0 var(--pasture-deep);
  transition: transform .25s, box-shadow .25s, background .3s;
  border: 0;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--pasture-deep); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 4px 0 var(--pasture-deep); }
.btn-outline {
  background: var(--milk-pure);
  color: var(--soil);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 16px 28px;
  font-family: var(--jp);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: border-color .25s, color .25s, transform .25s;
}
.btn-outline:hover { border-color: var(--terracotta); color: var(--terracotta); transform: translateY(-2px); }
.btn-line {
  background: #06C755;
  color: #fff;
  border-radius: 999px;
  padding: 18px 30px;
  font-family: var(--jp);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 0 #04923F;
  transition: transform .25s, box-shadow .25s;
  border: 0;
}
.btn-line:hover { transform: translateY(-3px); box-shadow: 0 9px 0 #04923F; }
.btn-line .line-icon {
  width: 24px; height: 24px;
  background: #fff;
  color: #06C755;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
}
.btn-lg { padding: 20px 36px; font-size: 17px; }
.btn .arrow { width: 16px; height: 16px; transition: transform .25s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ----- Home: digest cards ----- */
.dig-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.dig-card {
  background: var(--milk-pure);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px 32px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.dig-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(26, 53, 64, 0.10); }
.dig-card .num {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.dig-card h3 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 22px;
  color: var(--soil);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.dig-card p {
  font-family: var(--jp-body);
  font-size: 14px;
  line-height: 2;
  color: var(--soil-soft);
  margin-bottom: 24px;
  flex: 1;
}
.dig-card .more {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 14px;
  color: var(--pasture);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dig-card .more::after { content: "→"; transition: transform .25s; }
.dig-card:hover .more::after { transform: translateX(4px); }

/* ----- Home: business preview ----- */
.biz-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.biz-preview-card {
  background: var(--milk-pure);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.biz-preview-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(26, 53, 64, 0.10); }
.biz-preview-card .ph {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.biz-preview-card .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.biz-preview-card:hover .ph img { transform: scale(1.06); }
.biz-preview-card .body { padding: 18px 22px 22px; flex: 1; }
.biz-preview-card .num {
  font-family: var(--hand);
  font-size: 18px;
  color: var(--terracotta);
}
.biz-preview-card h4 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 15px;
  color: var(--soil);
  margin: 4px 0 6px;
  letter-spacing: 0.02em;
}
.biz-preview-card p {
  font-family: var(--jp-body);
  font-size: 13px;
  line-height: 1.85;
  color: var(--soil-soft);
}
.biz-preview-card .new-badge {
  display: inline-block;
  background: var(--terracotta);
  color: var(--milk);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 2px 10px;
  border-radius: 999px;
  margin-left: 6px;
}

/* ----- Home: recruit banner ----- */
.recruit-banner {
  background: var(--pasture);
  color: var(--milk);
  padding: clamp(40px, 6vw, 64px);
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.recruit-banner::before,
.recruit-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.recruit-banner::before {
  width: 320px; height: 320px;
  background: var(--honey);
  top: -100px; left: -80px;
  opacity: .25;
}
.recruit-banner::after {
  width: 380px; height: 380px;
  background: var(--terracotta);
  bottom: -160px; right: -100px;
  opacity: .25;
}
.recruit-banner .hero-handwriting { color: var(--honey); margin-bottom: 6px; position: relative; }
.recruit-banner h3 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  position: relative;
}
.recruit-banner > div > p {
  font-family: var(--jp-body);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 24px;
  color: rgba(234, 247, 251, 0.92);
  position: relative;
}
.recruit-banner .info-list { display: grid; gap: 12px; position: relative; z-index: 1; }
.recruit-banner .info-list li {
  background: var(--milk-pure);
  color: var(--soil);
  padding: 14px 18px;
  border-radius: 14px;
  font-family: var(--jp-body);
  font-size: 13px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.recruit-banner .info-list strong {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 12px;
  color: var(--pasture-deep);
  min-width: 50px;
}
.recruit-banner .btn-line { background: var(--milk-pure); color: var(--pasture-deep); box-shadow: 0 6px 0 var(--soil); position: relative; }
.recruit-banner .btn-line:hover { box-shadow: 0 9px 0 var(--soil); }
.recruit-banner .btn-line .line-icon { background: var(--pasture); color: var(--milk-pure); }

/* ----- About page: value cards ----- */
.about-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--milk-pure);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(26, 53, 64, 0.10); }
.value-card .circle-bg {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: var(--honey);
  border-radius: 50%;
  opacity: .25;
}
.value-card .circle-bg.is-mission { background: var(--pasture); }
.value-card .circle-bg.is-values  { background: var(--terracotta); }
.value-card .label {
  font-family: var(--hand);
  font-size: 24px;
  color: var(--terracotta);
  margin-bottom: 8px;
  display: block;
}
.value-card h3 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.4;
  color: var(--soil);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.value-card p {
  font-family: var(--jp-body);
  font-size: 14px;
  line-height: 2;
  color: var(--soil-soft);
}

/* ----- Prose ----- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h3 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--soil);
  margin: 40px 0 16px;
  letter-spacing: 0.02em;
}
.prose p {
  font-family: var(--jp-body);
  font-size: 16px;
  line-height: 2.05;
  color: var(--soil-soft);
  margin-bottom: 1em;
}
.prose strong { color: var(--soil); font-weight: 700; }

/* ----- Message page (override) ----- */
.message-grid-v2 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.message-portrait-v2 {
  position: sticky;
  top: 100px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(26, 53, 64, 0.16);
  transform: rotate(-2deg);
}
.message-portrait-v2 img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.message-portrait-v2 figcaption {
  padding: 14px 18px;
  background: var(--milk-pure);
  font-family: var(--jp-body);
  font-size: 13px;
  border-top: 1px solid var(--line);
  color: var(--soil-soft);
}
.message-portrait-v2 figcaption strong {
  display: block;
  font-family: var(--jp);
  font-weight: 600;
  font-size: 16px;
  color: var(--soil);
  margin-bottom: 4px;
}
.message-body-v2 {
  font-family: var(--jp-body);
  font-size: 16px;
  line-height: 2.1;
  color: var(--soil-soft);
}
.message-body-v2 p { margin-bottom: 1.2em; }
.message-body-v2 .quote {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 28px) !important;
  line-height: 1.7 !important;
  color: var(--pasture-deep) !important;
  border-left: 3px solid var(--terracotta);
  padding-left: 24px;
  margin-bottom: 32px;
}
.message-body-v2 .signature {
  margin-top: 28px;
  font-family: var(--jp-body);
  font-size: 14px;
  color: var(--soil-mute);
}
.message-body-v2 .signature strong {
  display: block;
  font-family: var(--jp);
  font-weight: 600;
  font-size: 16px;
  color: var(--soil);
  margin-top: 4px;
}

.message-grid-v2.no-photo {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
}
.speaker-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 22px;
  background: var(--milk-pure);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 32px;
  font-family: var(--jp-body);
  font-size: 13px;
  color: var(--soil-soft);
  letter-spacing: 0.04em;
}
.speaker-tag strong {
  color: var(--soil);
  font-family: var(--jp);
  font-weight: 600;
  font-size: 15px;
}

/* ----- Business page (block layout) ----- */
.biz-list-v2 {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 90px);
}
.biz-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.biz-block.reverse > .photo { order: 2; }
.biz-block .photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(26, 53, 64, 0.14);
  position: relative;
}
.biz-block .photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.biz-block:hover .photo img { transform: scale(1.04); }
.biz-block .new-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--terracotta);
  color: var(--milk);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  transform: rotate(6deg);
}
.biz-block .body .num {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--terracotta);
  display: block;
  margin-bottom: 4px;
}
.biz-block .body h3 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  color: var(--soil);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.biz-block .body .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--pasture);
  margin-bottom: 18px;
}
.biz-block .body p {
  font-family: var(--jp-body);
  font-size: 15px;
  line-height: 2.05;
  color: var(--soil-soft);
  margin-bottom: 22px;
  max-width: 540px;
}
.biz-block .body .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.biz-block .body .tags li {
  font-family: var(--jp);
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  background: var(--milk-pure);
  border-radius: 999px;
  color: var(--soil-soft);
}

/* ----- Company page ----- */
.cmp-table-v2 {
  background: var(--milk-pure);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 16px 32px;
  max-width: 920px;
  margin: 0 auto;
}
.cmp-table-v2 > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 22px 4px;
  border-bottom: 1px dashed var(--line);
  font-family: var(--jp-body);
}
.cmp-table-v2 > div:last-child { border-bottom: 0; }
.cmp-table-v2 dt {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 14px;
  color: var(--pasture-deep);
}
.cmp-table-v2 dd { font-size: 15px; line-height: 1.9; color: var(--soil); }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.access-info {
  background: var(--milk-pure);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
}
.access-info dl > div {
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
}
.access-info dl > div:last-child { border-bottom: 0; }
.access-info dt {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 13px;
  color: var(--pasture-deep);
}
.access-info dd {
  font-family: var(--jp-body);
  font-size: 14px;
  color: var(--soil);
  line-height: 1.85;
}
.access-map {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
  min-height: 320px;
  background: var(--cream);
}
.access-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ----- Contact page ----- */
.contact-shell {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-side {
  background: var(--milk-pure);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
}
.contact-side h3 {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 16px;
  color: var(--soil);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.contact-side dl > div {
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.contact-side dl > div:last-child { border-bottom: 0; }
.contact-side dt {
  font-family: var(--hand);
  font-size: 18px;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.contact-side dd { font-family: var(--jp-body); font-size: 14px; color: var(--soil); line-height: 1.9; }
.contact-side dd a { color: var(--pasture); border-bottom: 1px solid currentColor; }

/* ----- Footer (multipage) ----- */
.site-footer-v2 {
  background: var(--cream);
  padding: clamp(60px, 8vw, 100px) var(--gutter) 24px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.footer-inner-v2 {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.footer-inner-v2 .footer-brand img { width: 64px; margin-bottom: 14px; }
.footer-inner-v2 .footer-name {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 18px;
  color: var(--soil);
  margin-bottom: 6px;
}
.footer-inner-v2 .footer-tag {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--terracotta);
}
.footer-inner-v2 .f-key {
  font-family: var(--jp);
  font-weight: 600;
  font-size: 15px;
  color: var(--pasture-deep);
  margin-bottom: 14px;
}
.footer-inner-v2 ul { display: flex; flex-direction: column; gap: 8px; }
.footer-inner-v2 a {
  font-family: var(--jp-body);
  font-size: 14px;
  color: var(--soil-soft);
  transition: color .3s;
}
.footer-inner-v2 a:hover { color: var(--pasture); }
.footer-inner-v2 .info-block p {
  font-family: var(--jp-body);
  font-size: 14px;
  line-height: 1.85;
  color: var(--soil-soft);
  margin-bottom: 8px;
}
.footer-inner-v2 .f-mail {
  display: inline-block;
  margin-top: 8px;
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.footer-bottom {
  max-width: var(--max);
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-family: var(--jp-body);
  font-size: 12px;
  color: var(--soil-mute);
  letter-spacing: 0.04em;
}

/* ----- Responsive overrides ----- */
@media (max-width: 980px) {
  .dig-cards { grid-template-columns: 1fr; }
  .biz-preview { grid-template-columns: 1fr 1fr; }
  .recruit-banner { grid-template-columns: 1fr; padding: 32px 24px; }
  .about-grid-v2 { grid-template-columns: 1fr; }
  .message-grid-v2 { grid-template-columns: 1fr; gap: 32px; }
  .message-portrait-v2 { position: relative; top: 0; max-width: 420px; transform: none; }
  .biz-block,
  .biz-block.reverse { grid-template-columns: 1fr; gap: 24px; }
  .biz-block.reverse > .photo { order: 0; }
  .access-grid { grid-template-columns: 1fr; }
  .contact-shell { grid-template-columns: 1fr; }
  .cmp-table-v2 > div { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .footer-inner-v2 { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .biz-preview { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-centered h1 .char,
  .hero-centered .animate-fade-up {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}
