.hero__subtitle::after,.service-head__lead::after{content:"\5e97 \8217 \65b0 \7bc9 \30fb \6539 \4fee \5de5 \4e8b \306b \3082 \5bfe \5fdc \3057 \3066 \3044 \307e \3059 \3002";display:block;margin-top:.25em}.service-card:nth-child(1) .service-card__text::after{content:"\5e97 \8217 \306e \65b0 \7bc9 \5de5 \4e8b \306b \3082 \5bfe \5fdc \3057 \3066 \3044 \307e \3059 \3002";display:block;margin-top:.4em}.service-card:nth-child(2) .service-card__text::after{content:"\5e97 \8217 \6539 \4fee \3082 \3054 \76f8 \8ac7 \304f \3060 \3055 \3044 \3002";display:block;margin-top:.4em}:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-dark: #0A2540;
  --bg-darker: #061826;
  --text: #0F172A;
  --text-muted: #64748B;
  --text-soft: #94A3B8;
  --accent-blue: #0D47A1;
  --accent-red: #E60028;
  --accent-green: #617b56;
  --natural-bg: #f7f2ea;
  --natural-paper: #fffdf8;
  --border: #E5E7EB;
  --border-strong: #CBD5E1;

  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Inter', sans-serif;
  --font-display: 'Manrope', 'Inter', sans-serif;

  --container: 1280px;
  --pad: clamp(20px, 4vw, 48px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

.eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent-red);
}

.heading {
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--text);
}
.h-en {
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--pad);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(20px);
  padding: 14px var(--pad);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: auto;
  transition: filter 0.3s ease;
}
.header.scrolled .logo img { height: 42px; }
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.nav a {
  position: relative;
  color: #ffffff;
  transition: color 0.3s ease;
}
.header.scrolled .nav a { color: var(--text); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--accent-red);
  color: #fff;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230,0,40,0.35);
}
.cta-btn svg { width: 14px; height: 14px; }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--bg-darker);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.05);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,37,64,0.45) 0%, rgba(10,37,64,0.05) 35%, rgba(10,37,64,0.75) 100%),
    linear-gradient(90deg, rgba(10,37,64,0.75) 0%, rgba(10,37,64,0.35) 45%, rgba(10,37,64,0) 75%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 10vh, 120px);
}
.hero__top {
  position: absolute;
  top: 50%;
  left: var(--pad);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.hero__top::before {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.4);
  margin: 0 auto 20px;
}
.hero__index {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__index::before {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
.hero__title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 28px;
  max-width: 920px;
}
.hero__title em {
  font-style: normal;
  color: #fff;
  position: relative;
  white-space: nowrap;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 4px;
  background: var(--accent-red);
}
.hero__subtitle {
  font-family: var(--font-jp);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  color: rgba(255,255,255,0.9);
  margin-bottom: 48px;
  max-width: 760px;
}
.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__lead {
  max-width: 480px;
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.85);
}
.hero__scroll {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: "";
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  position: relative;
}
.hero__scroll::after { animation: scroll-line 2.4s ease-in-out infinite; }
@keyframes scroll-line {
  0%, 100% { transform: scaleX(0.3); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

/* ==========================================
   SECTION COMMON
   ========================================== */
.section {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--dark .heading { color: #fff; }
.section--dark .eyebrow { color: #fff; }
.section--dark .eyebrow::before { background: rgba(255,255,255,0.4); }

#contact.section--dark {
  position: relative;
  background: var(--bg-dark);
  isolation: isolate;
}
#contact.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
  opacity: 0.38;
  z-index: -1;
}
#contact.section--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.15), rgba(10,37,64,0.55) 100%);
  z-index: -1;
}

.section__head {
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section__head--center {
  align-items: center;
  text-align: center;
}
.section__title {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.section__lead {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 2;
}
.section--dark .section__lead { color: rgba(255,255,255,0.75); }

/* ==========================================
   SERVICE
   ========================================== */
.service-section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 11vw, 138px) 0 clamp(72px, 9vw, 116px);
  background: #fff;
  color: #26231f;
}
.service-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: clamp(-72px, -4vw, -24px);
  width: clamp(190px, 21vw, 320px);
  height: clamp(190px, 21vw, 320px);
  background:
    linear-gradient(140deg, transparent 52%, rgba(97,123,86,0.22) 53%, transparent 54%),
    radial-gradient(ellipse at 40% 22%, rgba(97,123,86,0.14) 0 18%, transparent 19%),
    radial-gradient(ellipse at 58% 38%, rgba(97,123,86,0.13) 0 16%, transparent 17%),
    radial-gradient(ellipse at 38% 54%, rgba(97,123,86,0.12) 0 15%, transparent 16%),
    radial-gradient(ellipse at 66% 66%, rgba(97,123,86,0.12) 0 16%, transparent 17%);
  opacity: 0.7;
  transform: rotate(-20deg);
  pointer-events: none;
}
.service-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(42px, 5vw, 64px);
}
.service-head__en {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.48em;
  color: var(--accent-green);
  text-indent: 0.48em;
  margin-bottom: 20px;
}
.service-head__en::after {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--accent-green);
}
.service-head__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(38px, 5.4vw, 66px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  color: #24211d;
  margin-bottom: 22px;
}
.service-head__lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 2.15;
  letter-spacing: 0.08em;
  color: #342f29;
}
.service-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(214,206,192,0.68);
  box-shadow: 0 22px 60px rgba(84,67,45,0.07);
}
.service-card {
  min-width: 0;
  padding: clamp(28px, 3.1vw, 46px) clamp(16px, 2vw, 28px) clamp(28px, 3vw, 42px);
  text-align: center;
  border-right: 1px solid rgba(214,206,192,0.78);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,253,248,0.76));
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:last-child { border-right: 0; }
.service-card:hover {
  background: #fffdf8;
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(77,65,49,0.08);
}
.service-card__icon {
  width: min(15vw, 160px);
  min-width: 116px;
  aspect-ratio: 1;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #f3eee6 0%, #f8f5ef 70%);
  color: #2c2924;
}
.service-card__icon svg {
  width: 70%;
  height: 70%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--accent-green);
  margin-bottom: 18px;
}
.service-card__title::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 16px auto 0;
  background: rgba(97,123,86,0.72);
}
.service-card__text {
  min-height: 9.8em;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 2.05;
  letter-spacing: 0.035em;
  color: #2f2b26;
  margin-bottom: 26px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent-green);
  transition: color 0.25s ease, gap 0.25s ease;
}
.service-card__link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.service-card__link:hover {
  gap: 14px;
  color: #415b38;
}
.service-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(28px, 3.2vw, 42px) clamp(24px, 4vw, 52px);
  background:
    linear-gradient(90deg, rgba(255,253,248,0.92), rgba(247,242,234,0.78)),
    var(--natural-paper);
  border: 1px solid rgba(214,206,192,0.68);
  border-top: 0;
}
.service-cta__marks {
  display: flex;
  gap: 12px;
}
.service-cta__marks span {
  width: 72px;
  height: 72px;
  border: 1px solid var(--accent-green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.12em;
  color: var(--accent-green);
  background: rgba(255,255,255,0.5);
}
.service-cta__text h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(19px, 2.05vw, 28px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: #24211d;
  margin-bottom: 8px;
}
.service-cta__text p {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #554f46;
}
.service-cta__button {
  min-width: min(100%, 340px);
  min-height: 76px;
  padding: 18px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(135deg, #748d68, #4f6a45);
  color: #fff;
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 500;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(79,106,69,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-cta__button::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.service-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(79,106,69,0.24);
}
.service-cta__line {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #5f7a53;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

/* ==========================================
   ABOUT
   ========================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 4px;
}
.about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px 35px #ffffff;
  pointer-events: none;
  border-radius: 4px;
}
.about__year {
  position: absolute;
  bottom: -36px;
  left: -36px;
  background: var(--accent-red);
  color: #fff;
  padding: 28px 36px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  z-index: 2;
}
.about__year span {
  display: block;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-top: 8px;
  opacity: 0.9;
}
.about__body p {
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 2;
}
.about__body p:first-of-type {
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
}

.about__features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.about__feature {
  text-align: center;
}
.about__feature-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--icon-c, #1e40af);
  transition: transform 0.3s ease, background 0.3s ease;
}
.about__feature:hover .about__feature-icon {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15,23,42,0.08);
}
.about__feature-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about__feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.about__feature-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.7;
  letter-spacing: 0;
}

/* ==========================================
   NUMBERS
   ========================================== */
.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.numbers__item {
  padding: 56px 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.numbers__item:last-child { border-right: 0; }
.numbers__label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.numbers__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}
.numbers__unit {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255,255,255,0.7);
}
.numbers__plus {
  color: var(--accent-red);
  font-size: clamp(40px, 6vw, 80px);
}
.numbers__note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* ==========================================
   PHILOSOPHY
   ========================================== */
.mission {
  text-align: center;
  margin-bottom: 96px;
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.mission::before, .mission::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-red);
  top: 50%;
  transform: translateY(-50%);
}
.mission::before { left: 0; }
.mission::after { right: 0; }
.mission__label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.mission__text {
  font-family: var(--font-jp);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.mission__lead {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 2;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.value::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--accent-red);
  transition: height 0.4s ease;
}
.value:hover {
  transform: translateY(-4px);
  border-color: var(--accent-red);
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}
.value:hover::before { height: 100%; }
.value__num {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}
.value__title-en {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--accent-blue);
}
.value__title-jp {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.value__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ==========================================
   BUSINESS (v2)
   ========================================== */
.business-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.biz-v2 {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.biz-v2:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(15,23,42,0.12);
}
.biz-v2__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eee;
}
.biz-v2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.biz-v2:hover .biz-v2__media img { transform: scale(1.06); }
.biz-v2__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,37,64,0.45) 100%);
  pointer-events: none;
}
.biz-v2__num {
  position: absolute;
  bottom: 18px;
  right: 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 80px;
  line-height: 0.85;
  color: #fff;
  letter-spacing: -0.04em;
  z-index: 2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.biz-v2__body {
  padding: 40px 36px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.biz-v2__cat {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent-red);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.biz-v2__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.biz-v2__lead {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 28px;
}
.biz-v2__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 32px;
}
.biz-v2__list li {
  font-size: 13px;
  padding-left: 16px;
  position: relative;
  color: var(--text);
}
.biz-v2__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 1px;
  background: var(--accent-red);
}
.biz-v2__cta {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.biz-v2:hover .biz-v2__cta { color: var(--accent-red); }
.biz-v2__cta-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.biz-v2:hover .biz-v2__cta-arrow {
  background: var(--accent-red);
  color: #fff;
  transform: translateX(4px);
}

/* ==========================================
   STRENGTHS
   ========================================== */
.strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.strength {
  background: #fff;
  padding: 56px 40px;
  position: relative;
  transition: background 0.3s ease;
}
.strength:hover { background: var(--bg-soft); }
.strength__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  color: var(--accent-red);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}
.strength__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.strength__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ==========================================
   WORKS (Before/After style)
   ========================================== */
.works {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.work {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  display: block;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease, border-color 0.5s ease;
  cursor: pointer;
}
.work:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(15,23,42,0.10);
}
.work__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f3f4f6;
  line-height: 0;
}
.work__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.work:hover .work__media img { transform: scale(1.02); }
.work__info {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.work__info-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.work__cat-badge {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent-red);
  font-weight: 600;
  text-transform: uppercase;
  border-left: 2px solid var(--accent-red);
  padding-left: 12px;
}
.work__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--text);
}
.work__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.85;
  flex: 1;
  min-width: 220px;
}
.works-cta {
  text-align: center;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  border: 1px solid var(--text);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: var(--text);
  color: #fff;
}

/* ==========================================
   SOCIAL GUIDE
   ========================================== */
.social-guide {
  background: #F8F5EF;
  color-scheme: light;
}
.social-guide__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}
.social-panel {
  background: #fff;
  border: 1px solid rgba(210, 201, 188, 0.72);
  padding: clamp(24px, 3vw, 36px);
  color: var(--text);
  color-scheme: light;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.social-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 16, 46, 0.18);
  box-shadow: 0 18px 44px rgba(63,46,31,0.08);
}
.social-panel__head {
  margin-bottom: 24px;
}
.social-panel__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 12px;
}
.social-panel__label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-red);
}
.social-panel__title {
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.social-panel__text,
.line-lead {
  font-size: 14px;
  line-height: 2;
  color: var(--text-muted);
}
.insta-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}
.insta-card {
  position: relative;
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
  background: #eee8df;
  isolation: isolate;
}
.insta-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.52) 100%);
  z-index: 1;
}
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.insta-card:hover img { transform: scale(1.04); }
.insta-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.hai-flyer {
  position: relative;
  min-height: 360px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(210, 201, 188, 0.70);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.86) 0%, rgba(255,252,246,0.96) 100%),
    linear-gradient(90deg, rgba(122,95,71,0.08) 1px, transparent 1px) 100% 0 / 56px 100% no-repeat;
  color: var(--text);
  color-scheme: light;
  isolation: isolate;
}
.hai-flyer::before {
  content: "";
  position: absolute;
  left: clamp(28px, 4vw, 48px);
  top: clamp(28px, 4vw, 48px);
  bottom: clamp(28px, 4vw, 48px);
  width: 1px;
  background: rgba(200,16,46,0.34);
  z-index: 1;
}
.hai-flyer::after {
  content: "";
  position: absolute;
  right: clamp(26px, 4vw, 46px);
  top: clamp(26px, 4vw, 46px);
  width: 72px;
  height: 72px;
  border-top: 1px solid rgba(122,95,71,0.22);
  border-right: 1px solid rgba(122,95,71,0.22);
  z-index: 1;
  pointer-events: none;
}
.hai-flyer__copy {
  position: relative;
  z-index: 2;
  width: min(560px, 86%);
  min-height: 360px;
  padding: clamp(40px, 5vw, 64px) clamp(32px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.hai-flyer__brand {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #7A5F47;
  margin-bottom: 26px;
}
.hai-flyer__title {
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: #18202C;
  margin-bottom: 24px;
}
.hai-flyer__lead {
  font-size: 14px;
  line-height: 2;
  color: #5C6675;
  margin: 0 auto 30px;
  max-width: 430px;
}
.hai-flyer__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}
.hai-flyer__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(122,95,71,0.16);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: #4B5563;
  backdrop-filter: blur(6px);
}
.line-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 30px;
}
.line-points li {
  position: relative;
  min-height: 46px;
  padding: 12px 14px 12px 36px;
  border: 1px solid rgba(210, 201, 188, 0.76);
  background: #fff;
  color-scheme: light;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  color: #3F2E1F;
}
.line-points li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #739269;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.social-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.social-btn--instagram {
  border: 1px solid var(--text);
  color: var(--text);
  background: #fff;
  color-scheme: light;
}
.social-btn--instagram:hover {
  background: var(--text);
  color: #fff;
}
.social-btn--line {
  border: 1px solid #6F8D67;
  background: #6F8D67;
  color: #fff;
}
.social-btn--line:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(111,141,103,0.24);
  background: #627F5B;
}
.case-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 28px auto 0;
}
.case-link {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px;
  background: #fff;
  border: 1px solid rgba(210, 201, 188, 0.76);
  color: var(--text);
  color-scheme: light;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.case-link span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.case-link em {
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-style: normal;
  color: var(--accent-red);
  transition: transform 0.3s ease;
}
.case-link:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 16, 46, 0.28);
  background: #FFFEFC;
}
.case-link:hover em { transform: translateX(4px); }

/* ==========================================
   CONTACT
   ========================================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__left {
  padding-right: 32px;
}
.contact__phone-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact__phone {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}
.contact__hours {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  margin-bottom: 56px;
}
.contact__sub {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.7);
  max-width: 380px;
}
.contact__form {
  background: rgba(255,255,255,0.04);
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================
   COMPANY (会社概要)
   ========================================== */
.company-info {
  max-width: 920px;
  margin: 0 auto;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--border);
}
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table th,
.company-table td {
  padding: 22px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.85;
}
.company-table th {
  width: 200px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-family: var(--font-jp);
}
.company-table td { color: var(--text); }
.company-table td .label-mini {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-red);
  letter-spacing: 0.1em;
  border-left: 2px solid var(--accent-red);
  padding-left: 8px;
  margin-right: 10px;
  vertical-align: middle;
}
.company-table td .addr-block { display: block; }
.company-table td .addr-block + .addr-block { margin-top: 14px; }
@media (max-width: 768px) {
  .company-table th, .company-table td {
    display: block;
    padding: 12px 14px;
  }
  .company-table th {
    background: var(--bg-soft);
    width: 100%;
    font-size: 12px;
    padding: 10px 14px;
  }
}

/* COMPANY MAP (アクセス) */
.company-map {
  max-width: 1100px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: stretch;
}
.company-map__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.company-map__head h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 18px 0 14px;
  letter-spacing: 0.02em;
}
.company-map__head .map-addr {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
}
.company-map__head .map-addr strong {
  display: block;
  font-size: 12px;
  color: var(--accent-red);
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 6px;
}
.company-map__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, transform 0.2s ease;
}
.company-map__cta:hover {
  background: var(--accent-red);
  transform: translateY(-1px);
}
.company-map__embed {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f3f4f6;
}
.company-map__embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
@media (max-width: 768px) {
  .company-map { grid-template-columns: 1fr; gap: 24px; margin-top: 56px; }
  .company-map__embed { aspect-ratio: 16/10; }
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--accent-red);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: var(--accent-red);
  color: #fff;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 12px;
}
.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(230,0,40,0.4);
}

/* Contact Form 7 styling tweaks */
.contact__form .wpcf7-form-control-wrap { display: block; }
.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form input[type="tel"],
.contact__form input[type="url"],
.contact__form input[type="number"],
.contact__form input[type="date"],
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.contact__form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: var(--accent-red);
  color: #fff;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 12px;
}
.contact__form input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(230,0,40,0.4);
}
.contact__form .wpcf7-not-valid-tip { color: #ffb3b3; font-size: 12px; margin-top: 6px; }
.contact__form .wpcf7-response-output {
  color: #fff;
  border-color: rgba(255,255,255,0.3) !important;
  margin: 24px 0 0 !important;
  padding: 12px 16px !important;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #ffffff;
  color: var(--text-muted);
  padding: 80px var(--pad) 32px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand img {
  height: 56px;
  width: auto;
  margin-bottom: 24px;
}
.footer__addr {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-muted);
}
.footer__addr strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.footer__col h4 {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent-red);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer__list { list-style: none; }
.footer__list li {
  font-size: 13px;
  padding: 6px 0;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer__list li:hover { color: var(--text); }
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom a { color: var(--text-muted); }
.footer__bottom a:hover { color: var(--accent-red); }

/* ==========================================
   ANIMATION
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .nav { display: none; }
  .hero {
    min-height: 640px;
  }
  .hero__content {
    padding-bottom: clamp(48px, 10vh, 76px);
  }
  .hero__title {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.38;
    margin-bottom: 22px;
  }
  .hero__subtitle {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 34px;
  }
  .hero__lead {
    font-size: 13px;
    line-height: 1.9;
  }
  .hero__scroll,
  .hero__top {
    display: none;
  }
  .hai-design-link,
  .home-care-link {
    display: none !important;
  }
  .about__grid, .business, .business-v2, .contact { grid-template-columns: 1fr; gap: 48px; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .strengths, .works, .numbers { grid-template-columns: 1fr; }
  .service-section::before { opacity: 0.38; }
  .service-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { border-right: 1px solid rgba(214,206,192,0.78); border-bottom: 1px solid rgba(214,206,192,0.78); }
  .service-card:nth-child(2n) { border-right: 0; }
  .service-card:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .service-card__text { min-height: 0; }
  .service-cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .service-cta__marks { order: 2; }
  .service-cta__button { order: 3; width: 100%; }
  .social-guide__grid { grid-template-columns: 1fr; }
  .case-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strengths { gap: 0; }
  .strength { border-bottom: 1px solid var(--border); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .numbers__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .numbers__item:last-child { border-bottom: 0; }
}
@media (max-width: 480px) {
  .hero {
    min-height: 620px;
  }
  .hero__index {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
  }
  .hero__index::before {
    width: 26px;
  }
  .hero__title {
    font-size: 33px;
    letter-spacing: 0.02em;
  }
  .hero__subtitle {
    font-size: 15px;
    letter-spacing: 0.02em;
  }
  .service-section {
    padding-top: 72px;
  }
  .service-head {
    margin-bottom: 34px;
  }
  .service-head__title {
    font-size: 38px;
    letter-spacing: 0.18em;
    text-indent: 0.18em;
  }
  .service-head__lead {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.04em;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:nth-child(2n),
  .service-card:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(214,206,192,0.78);
  }
  .service-card:last-child { border-bottom: 0; }
  .service-card__icon {
    width: 138px;
    min-width: 0;
    margin-bottom: 22px;
  }
  .service-card__title {
    font-size: 21px;
  }
  .service-card__text {
    font-size: 14px;
    line-height: 2;
  }
  .service-cta {
    padding: 28px 20px 32px;
  }
  .service-cta__marks span {
    width: 64px;
    height: 64px;
    font-size: 14px;
  }
  .service-cta__button {
    min-height: 66px;
    padding: 16px 18px;
  }
  .service-cta__line {
    width: 44px;
    height: 44px;
    font-size: 12px;
  }
  .values { grid-template-columns: 1fr; }
  .insta-cards { gap: 8px; }
  .insta-card span {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 11px;
  }
  .hai-flyer {
    min-height: 360px;
  }
  .hai-flyer::after {
    width: 48px;
    height: 48px;
  }
  .hai-flyer__copy {
    width: 100%;
    min-height: 360px;
  }
  .line-points { grid-template-columns: 1fr; }
  .case-links { grid-template-columns: 1fr; }
  .social-btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ==========================================
   HORIO HOME CARE
   ========================================== */
.section--homecare {
  background: #F5EFE5;
  color: #3F2E1F;
  position: relative;
  overflow: hidden;
}
.section--homecare::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 10% 0%, rgba(255,255,255,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 90% 100%, rgba(255,255,255,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.homecare__inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.homecare__eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: #8B6F47;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.homecare__brand {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: #8B6F47;
  margin-bottom: 28px;
}
.homecare__title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #3F2E1F;
  margin-bottom: 28px;
}
.homecare__title em {
  font-style: normal;
  color: #B89A6E;
  font-weight: 700;
}
.homecare__lead {
  font-size: 15px;
  line-height: 2;
  color: #5E4B36;
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.homecare__menu {
  margin-bottom: 48px;
}
.homecare__menu-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: #8B6F47;
  font-weight: 600;
  margin-bottom: 28px;
}
.homecare__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 56px;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.homecare__list li {
  font-size: 15px;
  color: #3F2E1F;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
}
.hc-mark {
  color: #B89A6E;
  font-size: 18px;
  flex-shrink: 0;
}
.homecare__price-card {
  background: #fff;
  border: 1px dashed #C9A876;
  padding: 32px 40px;
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
}
.hc-plan-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: #8B6F47;
  font-weight: 600;
  margin-bottom: 14px;
}
.hc-price {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #3F2E1F;
  line-height: 1;
  margin-bottom: 12px;
}
.hc-yen {
  font-size: 28px;
  font-weight: 700;
  vertical-align: top;
  margin-right: 2px;
}
.hc-amount {
  font-size: 56px;
}
.hc-unit {
  font-family: var(--font-jp);
  font-size: 16px;
  color: #5E4B36;
  font-weight: 500;
  margin-left: 8px;
}
.hc-extra {
  font-size: 13px;
  color: #5E4B36;
  margin-bottom: 16px;
}
.hc-area {
  font-size: 12px;
  color: #8B6F47;
  letter-spacing: 0.05em;
  border-top: 1px dotted #C9A876;
  padding-top: 14px;
  margin-top: 14px;
}
.homecare__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hc-btn--call {
  background: #3F2E1F;
  color: #fff;
}
.hc-btn--call:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(63,46,31,0.25);
}
.hc-btn--ghost {
  background: transparent;
  color: #3F2E1F;
  border: 1px solid #3F2E1F;
}
.hc-btn--ghost:hover {
  background: #3F2E1F;
  color: #fff;
}
.homecare__footer {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #B89A6E;
  font-weight: 600;
}
@media (max-width: 768px) {
  .homecare__list { grid-template-columns: 1fr; gap: 10px; }
  .hc-amount { font-size: 44px; }
  .homecare__cta { flex-direction: column; align-items: stretch; }
}