@charset "UTF-8";

/* =========================================================
  Green Zama / main.css
  - Variables
  - Reset
  - Layout (container / section / full-bleed)
  - Typography
  - Components
  - Header
  - Footer
  - Hero
  - Reveal
  - Concept
  - Service
  - Step
  - Stacking (overlap)
  - Responsive
========================================================= */

html {
  scroll-behavior: smooth;
}

/* =========================
  Variables
========================= */

:root {
  /* Layout */
  --container: 1140px;
  --gutter: 20px;

  /* Color */
  --bg: #fff7f7;
  --surface: #ffffff;
  --surface-2: #faf6f6;
  --text: #3b3b3b;
  --muted: #6b6b6b;
  --line: rgba(0, 0, 0, 0.10);

  /* Accent */
  --accent: #FFA6B7;
  --accent-dark: #ff8ea6;

  /* Radius / Shadow */
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  /* Typography */
  --font-base:
    "Zen Maru Gothic",
    "Hiragino Maru Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "YuGothic",
    Meiryo,
    sans-serif;

  --font-mincho:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;

  --font-script:
    "Allura",
    "Brush Script MT",
    cursive;

  --lh: 1.9;

  --float-cta-h: 50px;

  --anchor-offset: 120px;
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

/* =========================
  Reset
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--text);
  line-height: var(--lh);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body,
.page {
  background: #fff;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================
  Layout primitives
========================= */
.page-content {
  padding-top: 80px;
  padding-bottom: 120px;
  background: #fff;
}

.l-container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.l-section {
  padding: 72px 0;
}

.l-section--tight {
  padding: 56px 0;
}

.l-surface {
  background: var(--surface);
}

.l-surface--soft {
  background: var(--surface-2);
}

/* =========================
  Full-bleed background
========================= */
.l-full {
  width: 100%;
}

.l-full--bg {
  background: var(--surface);
}

.l-full--soft {
  background: var(--surface-2);
}

.l-full--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================
  Typography
========================= */
h1,
.h1 {
  font-family: var(--font-mincho);
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.35;
  letter-spacing: 0.04em;
}

h2,
.h2 {
  font-family: var(--font-mincho);
  margin: 0 0 20px;
  font-size: clamp(24px, 3vw, 28px);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

h3,
.h3 {
  font-family: var(--font-mincho);
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.6;
}

p {
  margin: 0 0 14px;
}

.lead {
  color: var(--muted);
  font-size: 15px;
}

/* =========================
  Section title (明朝＋筆記体)
========================= */
.c-title {
  position: relative;
  text-align: center;
  margin-bottom: 34px;
}

.c-title__script {
  position: absolute;
  inset: auto 0 -14px;
  font-family: var(--font-script);
  font-size: clamp(48px, 8vw, 96px);
  color: rgba(231, 140, 152, 0.25);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.c-title h2 {
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.c-title__sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
  Components
========================= */
.c-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.c-card__inner {
  padding: 22px;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, opacity 0.12s ease;
}

.c-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.c-btn--ghost {
  background: transparent;
  color: var(--accent-dark);
  border-color: rgba(0, 0, 0, 0.14);
}

.c-btn--ghost:hover {
  background: rgba(255, 166, 183, 0.12);
}

/* =========================
  Header (no fixed)
========================= */
.site-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1000;
}

.site-header__inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* PC/SP switch */
.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

/* Logo wrapper (div.site-header__logo 前提) */
.site-header__logo,
.site-header__logo .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0; /* img下の余白防止 */
}

.site-header__logo {
  max-width: 240px; /* 念のため暴れ防止。不要なら外してOK */
}

/* fallback text logo */
.site-header__logo a {
  font-family: var(--font-mincho);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 20px;
  white-space: nowrap;
}

/* image logo */
.site-header__logo img,
.site-header__logo .custom-logo {
  display: block;
  height: auto;
  max-height: 56px; /* PC */
  width: auto;
}

/* PC Nav */
.site-header__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.site-header__menu a {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 6px 2px;
}

.site-header__menu a:hover {
  opacity: 0.85;
  text-decoration: none;
}

/* SP Drawer (details/summary) */
.site-header__drawer {
  position: relative;
}

.site-header__drawer > summary {
  list-style: none;
  cursor: pointer;
}

.site-header__drawer > summary::-webkit-details-marker {
  display: none;
}

.site-header__hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
}

/* icon */
.hamburger {
  width: 18px;
  height: 14px;
  position: relative;
  display: inline-block;
}

.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: transform 0.15s ease, top 0.15s ease, opacity 0.15s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 6px;
}

.hamburger span:nth-child(3) {
  top: 12px;
}

/* opened -> X */
.site-header__drawer[open] .hamburger span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.site-header__drawer[open] .hamburger span:nth-child(2) {
  opacity: 0;
}

.site-header__drawer[open] .hamburger span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* panel */
.site-header__drawer-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: min(320px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px;
  z-index: 50;
}

.drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.drawer-menu a {
  display: block;
  padding: 12px 12px;
  border-radius: 10px;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.drawer-menu a:hover {
  background: rgba(255, 166, 183, 0.12);
}

/* =========================
  Footer
========================= */
.site-footer {
  background: var(--accent);
  color: #fff;
}

.site-footer__inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

/* Upper */
.site-footer__upper {
  padding: 56px 0;
}

.site-footer__contact {
  text-align: center;
  display: grid;
  gap: 0;
  margin-bottom: 10px;
}

.site-footer__tel,
.site-footer__mail {
  color: #fff;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  opacity: 0.95;
}

.site-footer__tel:hover,
.site-footer__mail:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* Footer menu */
.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer menu separator (PC) */
.site-footer__menu li {
  position: relative;
  padding-right: 16px;
}

.site-footer__menu li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.site-footer__menu a {
  color: #fff;
  font-family: var(--font-base);
  font-size: 16px;
  text-decoration: none;
  opacity: 0.95;
}

.site-footer__menu a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* Divider */
.site-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

/* Lower */
.site-footer__lower {
  padding: 22px 0;
}

.site-footer__lower .site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__copy {
  font-size: 14px;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.breadcrumb-wrap {
  padding: 15px 0;
  background: #fff;
  border-top: 1px solid #eee;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #666;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  opacity: 0.6;
}

.breadcrumb__link {
  color: inherit;
  text-decoration: none;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__current {
  color: #333;
}

/* =========================
  Hero
========================= */
.hero {
  position: relative;
  width: 100%;
  height: 760px;
  min-height: 760px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 中身 */
.hero__inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 700px;
  text-align: left;
}

/* h1 */
.hero__title {
  margin: 0 0 30px;
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.25;
  letter-spacing: 0.06em;
  color: #221100;
  text-shadow:
    0 2px 10px rgba(255, 255, 255, 0.8),
    0 0 2px rgba(255, 255, 255, 0.9);
}

/* 強調文字（髪） */
.hero__title-em {
  display: inline-block;
  font-size: 1.25em;
  letter-spacing: 0.08em;
}

/* テキストボックス */
.hero__lead {
  display: inline-block;
  background: #fffdf2d6;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0 0 20px;
}

.hero__lead p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

/* CTAボタン（押下影） */
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-base);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 0 #e07a8f;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.hero__btn:hover {
  text-decoration: none;
  opacity: 0.92;
}

.hero__btn:active {
  transform: translateY(6px);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
}

/* =========================
  Reveal animation
========================= */
.js-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================
  Concept
========================= */
.concept {
  padding: 96px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.concept__inner {
  text-align: center;
}

/* Title */
.c-title--concept {
  margin-bottom: 40px;
}

.concept__title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 28px;
  color: #807264;
  letter-spacing: 0.08em;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Script behind */
.c-title--concept .c-title__script {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  font-family: var(--font-script);
  font-size: clamp(64px, 7vw, 110px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1;
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
}

/* Body */
.concept__text {
  max-width: 720px;
  margin: 0 auto;
}

.concept__text p {
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
  color: #3b3b3b;
  letter-spacing: 0.02em;
}

/* =========================
  Service section
========================= */
.service {
  position: relative;
  background: #FCF6F4;
  padding: 0;
}

/* blocks */
.service__block {
  background: #fff;
  margin: 0 auto 34px;
}

/* 1) problem */
.service__block--problem {
  background: #CDD2DB;
  padding: 18px 22px;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service__title {
  margin: 0 0 10px;
  font-family: var(--font-mincho);
  font-size: 24px;
  color: #3b3b3b;
  letter-spacing: 0.06em;
  text-decoration: underline;
}

.service__list {
  margin: 0;
  padding-left: 18px;
  color: #3b3b3b;
  line-height: 1.9;
}

/* 2/3) rows */
.service__block--row {
  background: #fff;
  padding: 0;
}

.service__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
}

.service__col--text p {
  margin: 0;
  line-height: 2.0;
  color: #3b3b3b;
}

.service__row--media-left .service__col--media {
  order: 1;
}

.service__row--media-left .service__col--text {
  order: 2;
}

.service__col--media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* 4) area */
.service__block--area {
  background: #FCFFF8;
  padding: 18px 22px;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.service__area-text {
  margin: 0;
  line-height: 1.9;
  color: #3b3b3b;
}

/* spacing fix */
.service__block:last-child {
  margin-bottom: 0;
}

/* =========================
  Step section
========================= */
.step {
  position: relative;
  background: #fff;
  padding: 200px 0 40px;
  margin-top: -120px;
  z-index: 20;
}

/* 上部の三角 */
.step::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 180px;
  background: #FCF6F4;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 100%);
}

/* 中身は三角より前面に */
.step__inner {
  position: relative;
  z-index: 1;
}

/* Title */
.c-title--step {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.step__title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 28px;
  color: #807264;
  letter-spacing: 0.08em;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Script: Step */
.c-title--step .c-title__script {
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  font-family: var(--font-script);
  font-size: clamp(64px, 7vw, 110px);
  color: rgba(252, 246, 244, 0.9);
  line-height: 1;
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
}

/* list */
.step__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 26px;
}

.step__item {
  display: grid;
  justify-items: center;
}

/* card */
.step__card {
  width: 100%;
  border: 2px solid rgba(128, 114, 100, 0.85);
  background: #fff;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: center;
}

/* badge */
.step__badge {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: #7a6a5b;
  color: #fff;
  line-height: 1;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  text-align: center;
}

.step__badge-step {
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.95;
  line-height: 1;
}

.step__badge-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 0;
  line-height: 1;
}

/* body */
.step__h3 {
  margin: 0 0 6px;
  font-family: var(--font-mincho);
  font-size: 20px;
  color: #6b5f54;
  letter-spacing: 0.06em;
}

.step__text {
  margin: 0;
  line-height: 2.0;
  color: #3b3b3b;
}

/* arrow between steps */
.step__arrow {
  width: 0;
  height: 0;
  margin-top: 24px;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 16px solid rgba(255, 166, 183, 0.35);
}

/* =========================
  Stacking (overlap)
========================= */
.service {
  z-index: auto;
}

.service__area--front {
  position: relative;
  z-index: 30;
}

/* =========================
  Facility CTA
========================= */
.facility-cta {
  padding: 64px 0;
  background: #fff;
}

.facility-cta__card {
  background: #fff;
  border-top: 3px solid var(--accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: 34px 28px;
  text-align: center;
}

.facility-cta__title {
  margin: 0 0 14px;
  font-family: var(--font-mincho);
  font-size: 24px;
  letter-spacing: 0.08em;
  color: #807264;
}

.facility-cta__text {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 2.0;
  color: var(--text);
}

.facility-cta__actions {
  display: flex;
  justify-content: center;
}

.facility-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-base);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 0 #e07a8f;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.facility-cta__btn:hover {
  text-decoration: none;
  opacity: 0.92;
}

.facility-cta__btn:active {
  transform: translateY(6px);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
}

/* =========================
  Price
========================= */
.price {
  background: #fff;
  padding: 96px 0 110px;
}

.c-title--price .c-title__script {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  font-family: var(--font-script);
  font-size: clamp(64px, 7vw, 110px);
  color: rgba(252, 246, 244, 0.9);
  line-height: 1;
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
}

.price__title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 28px;
  color: #807264;
  letter-spacing: 0.08em;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Grid */
.price__grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 240px;
  gap: 28px;
  align-items: start;
}

/* Right side stack */
.price__side {
  display: grid;
  gap: 28px;
}

/* Card */
.price-card {
  border-radius: 14px;
  overflow: hidden;
  background: #f7eaea;
}

.price-card__head {
  background: rgba(255, 166, 183, 0.75);
  color: #fff;
  text-align: center;
  font-family: var(--font-base);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 12px;
  font-size: 16px;
  margin-bottom: 0;
}

.price-card__sub {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-top: 0px;
  opacity: 0.95;
}

.price-card__body {
  padding: 22px 18px 24px;
  background: #FFEEEA;
}

.price-card--tall .price-card__body {
  min-height: 360px;
}

.price-card--mini .price-card__body {
  padding: 22px 16px;
}

.price-card__price {
  margin: 0 0 10px;
  padding: 0 0 10px;
  text-align: center;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 30px;
  color: #7a6a5b;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #fff;
}

.price-card--mini .price-card__price {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.price-card__yen {
  font-size: 0.65em;
  margin-left: 2px;
}

.price-card__tax {
  font-size: 0.45em;
  margin-left: 6px;
  color: rgba(122, 106, 91, 0.9);
  font-weight: 600;
}

.price-card__desc {
  margin: 0;
  line-height: 1.8;
  color: #3b3b3b;
}

/* Notes */
.price__notes {
  margin-top: 34px;
  text-align: center;
  font-size: 13px;
  line-height: 2.0;
  color: #3b3b3b;
}

.price__notes p {
  margin: 0;
}

.price__assurance {
  margin: 26px 0 0;
  text-align: center;
  font-family: var(--font-base);
  font-weight: 600;
  color: #7a6a5b;
  letter-spacing: 0.04em;
}

/* =========================
  Voice
========================= */
.voice {
  background: var(--bg);
  padding: 96px 0 110px;
}

.c-title--voice .c-title__script {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  font-family: var(--font-script);
  font-size: clamp(64px, 7vw, 110px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
}

.voice__title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 28px;
  color: #807264;
  letter-spacing: 0.08em;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.voice__grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.voice-card {
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 28px 26px 30px;
}

.voice-card__head {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.voice-card__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f3f3;
  flex-shrink: 0;
}

.voice-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.voice-card__name {
  font-family: var(--font-base);
  font-weight: 700;
  color: #7a6a5b;
  letter-spacing: 0.02em;
  font-size: 18px;
  line-height: 1.4;
}

.voice-card__loc {
  margin-top: 4px;
  font-size: 13px;
  color: #807264;
  letter-spacing: 0.02em;
}

.voice-card__text {
  margin: 0;
  color: #3b3b3b;
}

/* =========================
  Contact
========================= */
.contact {
  background: #fff;
}

/* ★ここが“離れて見える”原因になりやすいので調整 */
.contact__top {
  display: grid;

  /* 1fr + 固定420px → 右カラム可変に */
  grid-template-columns: 1fr minmax(280px, 440px);

  /* 60px → 詰める（必要ならここだけ数値変更でOK） */
  gap: 24px;

  /* 画像の見た目を上すぎないように */
  align-items: center;

  margin-bottom: 56px;
}

.c-title--contact {
  position: relative;
  text-align: left;
  margin-bottom: 18px;
}

.c-title--contact .c-title__script {
  position: absolute;
  left: 0;
  top: -22px;
  transform: none;
  font-family: var(--font-script);
  font-size: clamp(64px, 7vw, 110px);
  color: rgba(252, 246, 244, 0.9);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.contact__title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 28px;
  color: #807264;
  letter-spacing: 0.08em;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.contact__desc {
  margin-top: 10px;
}

.contact__desc p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 2.0;
  color: #3b3b3b;
}

.contact__shop {
  margin-top: 18px;
}

.contact__shop-name {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #3b3b3b;
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 22px;
}

/* =========================
  Contact icons (Font Awesome)
========================= */
.contact__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  position: relative;
}

.contact__icon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  color: var(--accent-dark);
  display: block;
}

.contact__icon.is-tel::before {
  content: "\f879";
}

.contact__icon.is-mail::before {
  content: "\f674";
}

.contact__icon.is-time::before {
  content: "\f017";
}

.contact__link {
  color: #3b3b3b;
  text-decoration: none;
}

.contact__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__text {
  color: #3b3b3b;
}

/* 右画像（★右寄せ + 表示幅制御で余白感を抑える） */
.contact__media {
  justify-self: end;
}

.contact__media img {
  width: 100%;
  max-width: 440px; /* 444×591でも“間延び”しにくい */
  height: auto;
  display: block;
}

.contact__form_title {
  font-size: 28px;
  text-align: center;
  color: #807264;
}

/* =========================
  Contact Form (CF7)
========================= */

/* フォーム全体 */
.contact__form {
  width: min(860px, 100%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 40px 44px;
}

/* CF7デフォルト余白リセット */
.contact__form .wpcf7 form {
  margin: 0;
}

/* =========================
  行単位
========================= */
.contact__form .form-row {
  margin-bottom: 22px;
}

.contact__form .form-row:last-child {
  margin-bottom: 0;
}

/* =========================
  ラベル
========================= */
.contact__form .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 16px;
  color: #3b3b3b;
}

.contact__form .form-label__text {
  font-weight: 500;
}

/* 必須バッジ */
.contact__form .req {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  background: rgba(255, 166, 183, 0.18);
  color: #c64d63;
}

/* =========================
  入力UI 共通
========================= */
.contact__form .form-control {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* textarea */
.contact__form .form-control--textarea {
  min-height: 160px;
  resize: vertical;
}

/* focus */
.contact__form .form-control:focus {
  border-color: rgba(255, 166, 183, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 166, 183, 0.18);
}

/* select矢印の違和感防止（必要なら） */
.contact__form select.form-control {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #999 50%),
    linear-gradient(135deg, #999 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* =========================
  acceptance
========================= */
.contact__form .form-row--acceptance {
  margin-top: 6px;
  font-size: 13px;
}

.contact__form .wpcf7-acceptance label {
  cursor: pointer;
}

.contact__form .wpcf7-acceptance a {
  color: #c64d63;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================
  submit
========================= */
.contact__form .form-row--submit {
  margin-top: 28px;
  text-align: left;
}

.contact__form .form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 18px;
  border: none;
  border-radius: 0; /* デザインに合わせて角丸なし */
  background: #f2f2f2;
  color: #3b3b3b;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.12s ease;
}

.contact__form .form-submit:hover {
  opacity: 0.9;
}

/* =========================
  バリデーション表示
========================= */
.contact__form .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 6px;
}

.contact__form .wpcf7-response-output {
  margin: 18px 0 0;
  font-size: 13px;
}

/* =========================================
   Page Titlebar
========================================= */
.page-titlebar {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.page-titlebar__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6); /* 文字可読性UP */
}

.page-titlebar__inner {
  position: relative;
  height: 100%;
  width: min(1080px, calc(100% - 20px));
  margin: 0 auto;
}

.page-titlebar__title {
  position: absolute;
  bottom: 40%;
  left: 0;
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 40px;
  line-height: 1.3;
  color: #fff;
}

/* =========================================
   404
========================================= */
.page-404 .page-titlebar__bg {
  background: #f6f6f6;
}

.page-404 .page-titlebar__bg {
  background-image: url("../img/titlebar/titlebar_pc.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-404__lead {
  text-align: center;
  font-size: 20px;
  margin: 0 0 12px;
}

.page-404__text {
  text-align: center;
  margin: 0 0 24px;
  color: #666;
}

.page-404__actions {
  text-align: center;
  display: block;
  margin: 0 auto;
  max-width: 320px;
}

/* SP Float CTA */
.float-cta {
  display: none;
}

.grecaptcha-badge{
  display: none;
}

/* =========================
  Responsive
========================= */
@media (max-width: 768px) {
  :root {
    --gutter: 16px;
  }
  
  .page-content {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .l-section {
    padding: 56px 0;
  }

  .l-section--tight {
    padding: 48px 0;
  }

  .c-card__inner {
    padding: 18px;
  }

  .c-title__script {
    font-size: clamp(42px, 12vw, 72px);
  }

  .site-header__inner {
    height: 72px;
  }

  .is-pc {
    display: none;
  }

  .is-sp {
    display: block;
  }

  .site-header__logo img,
  .site-header__logo .custom-logo {
    max-height: 44px;
  }

  .site-footer__upper {
    padding: 44px 0;
  }

  .site-footer__contact {
    text-align: left;
    margin-bottom: 18px;
  }

  .site-footer__menu {
    display: grid;
    justify-content: start;
    gap: 10px;
  }

  .site-footer__menu li {
    padding-right: 0;
  }

  .site-footer__menu li:not(:last-child)::after {
    content: none;
  }

  .site-footer__menu a {
    font-weight: 500;
  }

  .hero {
    min-height: 620px;
  }

  .hero__inner {
    align-items: flex-start;
    padding-top: 240px;
    padding-bottom: 40px;
  }

  .hero__bg img {
    object-position: 20% center;
  }

  .hero__content {
    max-width: 92%;
  }

  .hero__lead p {
    font-size: 13px;
  }

  .hero__btn {
    min-width: 200px;
  }

  .concept {
    padding: 72px 0;
  }

  .concept__title {
    font-size: 24px;
  }

  .concept__text {
    max-width: 100%;
  }

  .concept__text p {
    text-align: left;
    line-height: 2.0;
  }

  .c-title--concept .c-title__script {
    top: -20px;
    font-size: clamp(56px, 14vw, 86px);
  }

  .service__title {
    font-size: 18px;
  }

  .service__row {
    grid-template-columns: 1fr;
    padding: 20px 18px;
  }

  .service__col--media {
    order: 1;
  }

  .service__col--text {
    order: 2;
  }

  .step {
    padding: 140px 0 20px;
    margin-top: -80px;
  }

  .step::before {
    height: 110px;
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 100%);
  }

  .step__title {
    font-size: 24px;
  }

  .step__card {
    padding: 18px 16px;
    grid-template-columns: 74px 1fr;
    gap: 0px;
    align-items: flex-start;
  }

  .step__badge {
    width: 58px;
    height: 58px;
  }

  .step__badge-num {
    font-size: 28px;
  }

  .step__h3 {
    font-size: 18px;
  }

  .step__text {
    font-size: 14px;
    line-height: 1.95;
  }

  .step__arrow {
    border-left-width: 22px;
    border-right-width: 22px;
    border-top-width: 14px;
    margin-top: 22px;
  }

  .facility-cta {
    padding: 52px 0;
  }

  .facility-cta__card {
    padding: 28px 18px;
    text-align: center;
  }

  .facility-cta__title {
    font-size: 20px;
  }

  .facility-cta__text {
    text-align: left;
    line-height: 1.95;
  }

  .facility-cta__btn {
    min-width: 200px;
  }

  .price {
    padding: 60px 0;
  }

  .price-card {
    border-radius: 8px;
  }

  .price__title {
    font-size: 24px;
  }

  .price__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .price__side {
    gap: 20px;
  }

  .price-card--tall .price-card__body {
    min-height: auto;
  }

  .price__notes {
    text-align: left;
    font-size: 13px;
  }

  .price__assurance {
    text-align: left;
  }

  .voice {
    padding: 72px 0 90px;
  }

  .voice__title {
    font-size: 24px;
  }

  .voice__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .voice-card {
    padding: 22px 18px 24px;
  }

  .voice-card__head {
    grid-template-columns: 72px 1fr;
    gap: 14px;
  }

  .voice-card__icon {
    width: 72px;
    height: 72px;
  }

  .voice-card__name {
    font-size: 16px;
  }

  /* Contact：SPは縦積み */
  .contact__top {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .contact__content {
    order: 1;
  }

  .contact__media {
    order: 2;
    justify-self: start;
  }

  .contact__media img {
    max-width: 100%;
  }

  .c-title--contact {
    text-align: left;
  }

  .contact__title {
    font-size: 24px;
  }

  .contact__form_title {
    font-size: 24px;
  }

  .contact__form {
    padding: 26px 18px;
  }

  .contact__form .form-row {
    margin-bottom: 18px;
  }

  .contact__form .form-row--submit {
    text-align: center;
  }

  .contact__form .form-submit {
    display: block;
    margin: 0 auto;
    min-width: 280px;
  }
  
  .page-titlebar {
    height: 220px;
  }

  .page-titlebar__title {
    font-size: 28px;
  }

  .page-404__lead,
  .page-404__text {
    text-align: left;
  }

  .float-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--float-cta-h);
    z-index: 9999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;

    /* 初期は非表示 */
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  /* 表示状態 */
  .float-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .float-cta__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .float-cta__item img {
    max-height: 100%;
    width: auto;
    display: block;
  }

  /* フッター最後に追従分の余白を確保（重なり防止） */
  .site-footer {
    padding-bottom: calc(var(--float-cta-h) + 0px);
  }
}