/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #2a2520;
  background: #faf6ed;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul,ol { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,p { margin: 0; }
table { border-collapse: collapse; width: 100%; }

:root {
  --green: #3a5d3e;
  --green-deep: #28432d;
  --green-light: #6b8a5f;
  --terracotta: #c97a4a;
  --terracotta-deep: #a55f33;
  --cream: #faf6ed;
  --cream-deep: #f0e9d8;
  --bg-card: #ffffff;
  --text: #2a2520;
  --text-soft: #6b6358;
  --line: #e5dfd0;
}

.container { width: min(1200px, 92%); margin: 0 auto; }
.container--narrow { max-width: 760px; }
.section { padding: 100px 0; }
.section--cream { background: var(--cream-deep); }
.section--green { background: var(--green); color: #faf6ed; }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  color: var(--terracotta);
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
  position: relative; padding-bottom: 12px;
}
.section-eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 1.5px;
  background: var(--terracotta);
}
.section-title {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.85rem, 4.5vw, 2.6rem);
  letter-spacing: 0.12em;
  color: var(--green-deep);
  margin-bottom: 24px;
  line-height: 1.5;
}
.section-lead {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 56px;
  font-size: 1rem;
  line-height: 1.95;
}

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 237, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  width: min(1280px, 96%); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 16px;
}
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo-icon { font-size: 1.5rem; }
.header__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.header__logo-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.08em;
}
.header__logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--terracotta);
  margin-top: 2px;
}
.header__nav { display: flex; gap: 28px; }
.header__nav a {
  font-size: 0.92rem; font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--green); }
.header__actions { display: flex; align-items: center; gap: 10px; }
.header__sns {
  padding: 9px 14px;
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  color: #fff; font-weight: 700; font-size: 0.82rem;
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 6px;
  transition: transform 0.2s;
}
.header__sns:hover { transform: translateY(-1px); }
.header__call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 9px 14px; border-radius: 6px;
  font-weight: 700;
  transition: background 0.2s;
}
.header__call:hover { background: var(--green-deep); }
.header__call-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; letter-spacing: 0.02em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 28px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s;
  letter-spacing: 0.04em;
  border-radius: 4px;
  min-width: 220px;
}
.btn--primary {
  background: var(--green); color: #fff;
  border: 1.5px solid var(--green);
}
.btn--primary:hover {
  background: var(--green-deep); border-color: var(--green-deep);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent; color: #fff;
  border: 1.5px solid #fff;
}
.btn--outline:hover { background: rgba(255,255,255,0.15); }

/* ===== HERO ===== */
.hero {
  position: relative; isolation: isolate;
  min-height: 88vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(40, 67, 45, 0.85) 0%, rgba(40, 67, 45, 0.5) 50%, rgba(40, 67, 45, 0.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}
.hero__inner {
  width: min(1200px, 92%); margin: 0 auto;
  position: relative; z-index: 1;
  padding: 80px 0;
}
.hero__eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: #f0d6a8;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 6.5vw, 4.5rem);
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.hero__title-strong { color: #f0d6a8; }
.hero__lead {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== INTRO ===== */
.intro__lead {
  text-align: center;
  font-size: 1rem; line-height: 2.05;
  color: var(--text);
  margin: 0 auto 56px;
  max-width: 820px;
}
.intro__features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-card);
  padding: 36px 24px;
  border: 1px solid var(--line);
}
.intro__feature {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid var(--line);
}
.intro__feature:last-child { border-right: none; }
.intro__feature-icon { font-size: 2.2rem; margin-bottom: 12px; }
.intro__feature h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--green-deep); margin-bottom: 8px;
}
.intro__feature p {
  font-size: 0.85rem;
  color: var(--text-soft); line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.products__card {
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s;
  border: 1px solid var(--line);
}
.products__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(40, 67, 45, 0.1);
}
.products__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-deep);
}
.products__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.products__card:hover .products__photo img { transform: scale(1.05); }
.products__card.no-img .products__photo {
  background: linear-gradient(135deg, var(--green-light), var(--green));
}
.products__card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--green-deep);
  padding: 22px 24px 10px;
  letter-spacing: 0.06em;
}
.products__card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.85;
  padding: 0 24px 24px;
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.services__card {
  background: var(--bg-card);
  padding: 36px 32px;
  border-left: 4px solid var(--terracotta);
  transition: all 0.25s;
}
.services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(40, 67, 45, 0.08);
}
.services__num {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 800;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.services__card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}
.services__voice {
  background: var(--cream);
  padding: 16px 18px;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 16px;
  border-radius: 2px;
  position: relative;
  line-height: 1.8;
}
.services__voice::before {
  content: '"';
  position: absolute;
  top: -10px; left: 12px;
  font-family: serif;
  font-size: 2.5rem;
  color: var(--terracotta);
  line-height: 1;
}
.services__voice-name {
  display: block;
  text-align: right;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 8px;
  font-style: italic;
}
.services__desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.95;
}

/* ===== VOICE ===== */
.voice__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.voice__card {
  background: var(--bg-card);
  padding: 28px 26px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.voice__stars {
  color: #d4a93b;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.voice__text {
  font-size: 0.88rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 14px;
}
.voice__name {
  font-size: 0.78rem;
  color: var(--text-soft);
  font-style: italic;
}
.voice__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 28px;
}

/* ===== INFO ===== */
.info__grid {
  display: grid; grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: start;
}
.info__photo {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
}
.info__photo.no-img {
  background: linear-gradient(135deg, var(--green-light), var(--green));
}
.info__photo img { width: 100%; height: 100%; object-fit: cover; }
.info__table {
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.info__table tr {
  border-bottom: 1px solid var(--line);
}
.info__table tr:last-child { border-bottom: none; }
.info__table th {
  background: var(--cream);
  padding: 16px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-deep);
  text-align: left;
  width: 130px;
  vertical-align: top;
  letter-spacing: 0.05em;
}
.info__table td {
  padding: 16px 22px;
  font-size: 0.9rem;
  line-height: 1.85;
}
.info__table a { color: var(--terracotta); font-weight: 600; }
.info__sub {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 4px;
}
.info__placeholder {
  color: var(--text-soft);
  opacity: 0.6;
  font-style: italic;
  font-size: 0.85rem;
}

/* ===== CONTACT ===== */
.contact__eyebrow { color: #f0d6a8; }
.contact__eyebrow::after { background: #f0d6a8; }
.contact__title { color: #fff; }
.contact__lead {
  text-align: center;
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 40px;
  opacity: 0.92;
}
.contact__channels {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact__channel {
  display: flex; align-items: center; gap: 18px;
  padding: 28px 24px;
  border-radius: 4px;
  transition: transform 0.2s;
}
.contact__channel--call {
  background: rgba(255,255,255,0.95);
  color: var(--green-deep);
}
.contact__channel--ig {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  color: #fff;
}
.contact__channel:hover { transform: translateY(-3px); }
.contact__channel-icon {
  font-size: 2rem;
  width: 60px; height: 60px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__channel--ig .contact__channel-icon {
  background: rgba(255,255,255,0.2);
}
.contact__channel-text { display: flex; flex-direction: column; line-height: 1.3; }
.contact__channel-label { font-size: 0.78rem; opacity: 0.85; font-weight: 600; }
.contact__channel-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  letter-spacing: 0.02em; margin: 4px 0;
}
.contact__channel-sub { font-size: 0.72rem; opacity: 0.8; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-deep); color: rgba(255,255,255,0.88);
  padding: 48px 0 24px;
  font-size: 0.88rem;
}
.footer__grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer__brand-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}
.footer__brand-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.footer__info p { margin-bottom: 6px; line-height: 1.85; }
.footer__info a { color: #f0d6a8; font-weight: 700; }
.footer__copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-family: 'Inter', sans-serif;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .voice__grid { grid-template-columns: repeat(2, 1fr); }
  .info__grid { grid-template-columns: 1fr; }
  .info__photo { aspect-ratio: 16/10; }
}
@media (max-width: 720px) {
  body { font-size: 14px; }
  .section { padding: 56px 0; }
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); letter-spacing: 0.08em; }
  .section-lead { margin-bottom: 36px; font-size: 0.9rem; }
  .section-eyebrow { font-size: 0.78rem; letter-spacing: 0.2em; }

  .header__inner { padding: 12px 0; gap: 8px; }
  .header__logo-icon { font-size: 1.2rem; }
  .header__logo-name { font-size: 1.05rem; }
  .header__logo-sub { display: none; }
  .header__sns { padding: 8px 10px; font-size: 0.7rem; }
  .header__sns span:not([aria-hidden]) { display: none; }
  .header__call { padding: 8px 10px; }
  .header__call-num { font-size: 0.85rem; }

  .hero { min-height: 70vh; }
  .hero__inner { padding: 60px 0; }
  .hero__title { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .hero__lead { font-size: 0.92rem; line-height: 1.95; margin-bottom: 28px; }
  .hero__cta { flex-direction: column; gap: 10px; align-items: stretch; }
  .hero__cta .btn { width: 100%; min-width: 0; padding: 14px 18px; }

  .intro__features { grid-template-columns: 1fr 1fr; padding: 28px 16px; gap: 0; }
  .intro__feature { padding: 18px 12px; border-right: 1px solid var(--line); }
  .intro__feature:nth-child(2n) { border-right: none; }
  .intro__feature:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 22px; }
  .intro__feature:nth-child(n+3) { padding-top: 22px; }
  .intro__feature h3 { font-size: 0.98rem; }
  .intro__feature p { font-size: 0.78rem; }

  .products__grid { grid-template-columns: 1fr; gap: 18px; }
  .products__card h3 { font-size: 1.1rem; padding: 18px 20px 8px; }
  .products__card p { font-size: 0.85rem; padding: 0 20px 20px; }

  .services__grid { gap: 18px; }
  .services__card { padding: 28px 24px; }
  .services__card h3 { font-size: 1.2rem; }
  .services__voice { padding: 14px 16px; font-size: 0.82rem; }
  .services__desc { font-size: 0.85rem; }

  .voice__grid { grid-template-columns: 1fr; gap: 16px; }
  .voice__card { padding: 24px 22px; }

  .info__table th { width: 100px; padding: 12px 14px; font-size: 0.78rem; }
  .info__table td { padding: 12px 16px; font-size: 0.85rem; }

  .contact__channels { grid-template-columns: 1fr; gap: 14px; }
  .contact__channel { padding: 22px 20px; gap: 14px; }
  .contact__channel-icon { width: 48px; height: 48px; font-size: 1.6rem; }
  .contact__channel-value { font-size: 1.1rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
}
