@charset "utf-8";

:root {
  --white: #ffffff;
  --off-white: #f8f7f5;
  --light-gray: #eeede9;
  --mid-gray: #b8b5ae;
  --dark-gray: #3a3835;
  --charcoal: #1e1c1a;
  --accent: #c8a46e;
  --accent-light: #e8d5b0;
  --font-serif: 'Noto Serif JP', 'Cormorant Garamond', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --header-h: 72px;
  --footer-h: 75px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 400;
  padding-top: var(--header-h);
  padding-bottom: var(--footer-h);
}

a {
  color: #222;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.08em;
}

.logo-sub {
  font-size: 10px;
  color: var(--mid-gray);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

/* ── 通常リンク ── */
nav>a,
.nav-item>a {
  font-size: 13px;
  font-weight: 400;
  color: var(--dark-gray);
  text-decoration: none;
  letter-spacing: 0.1em;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}

nav>a::after,
.nav-item>a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

nav>a:hover,
.nav-item>a:hover {
  color: var(--charcoal);
}

nav>a:hover::after,
.nav-item:hover>a::after {
  width: 100%;
}

/* ── ドロップダウン親 ── */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-item:hover {
  z-index: 2100;
}

/* 矢印アイコン */
.nav-item>a .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray);
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  transition: transform var(--transition), border-color var(--transition);
  vertical-align: middle;
}

.nav-item:hover>a .arrow {
  transform: rotate(-135deg) translateY(-2px);
  border-color: var(--accent);
}

/* ── ドロップダウンメニュー本体 ── */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--light-gray);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 2000;
}

/* 上の三角 */
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid var(--light-gray);
  border-top: 1px solid var(--light-gray);
  pointer-events: none;
}

.nav-item:hover>.dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 11px 22px;
  font-size: 12px;
  color: var(--dark-gray);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  white-space: nowrap;
}

.dropdown a:hover {
  background: var(--off-white);
  color: var(--accent);
  padding-left: 28px;
}

.dropdown hr {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 6px 0;
}

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 10px 22px;
  letter-spacing: 0.12em;
  font-size: 12px !important;
  transition: background var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--white) !important;
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  max-height: calc(100vh - var(--header-h));
  max-height: calc(100dvh - var(--header-h));
  box-sizing: border-box;
  background: var(--white);
  z-index: 1100;
  padding: 40px 32px calc(40px + env(safe-area-inset-bottom));
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--transition);
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 15px;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.mobile-nav .mob-cta {
  margin-top: 28px;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 16px;
  border-bottom: none;
  letter-spacing: 0.15em;
}

/* ─── モバイル アコーディオン ─── */
.mob-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  font-size: 15px;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  user-select: none;
  flex-shrink: 0;
}

.mob-parent .mob-arrow {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--mid-gray);
  border-bottom: 1.5px solid var(--mid-gray);
  transform: rotate(45deg);
  transition: transform var(--transition), border-color var(--transition);
  margin-right: 4px;
  flex-shrink: 0;
}

.mob-parent.open .mob-arrow {
  transform: rotate(-135deg);
  border-color: var(--accent);
}

.mob-children {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--off-white);
  margin: 0 -32px;
  padding: 0 32px;
  flex-shrink: 0;
}

.mob-children.open {
  max-height: 1000px;
}

.mob-children a {
  border-bottom: 1px solid var(--light-gray);
  font-size: 13px;
  color: #7a7770;
  padding: 13px 8px 13px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mob-children a::before {
  content: '└';
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}

.mob-children a:last-child {
  border-bottom: none;
}

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - var(--header-h) - var(--footer-h));
  display: grid;
  grid-template-columns: 50% 50%;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-desc {
  font-size: 14px;
  color: #6b6860;
  line-height: 2;
  margin-bottom: 48px;
  letter-spacing: 0.06em;
}

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

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: background var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-outline {
  border: 1px solid var(--mid-gray);
  color: var(--dark-gray);
  padding: 15px 28px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.hero-right {
  position: relative;
  background: var(--off-white);
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

/* ─── HERO SLIDER ─── */
.hero-slider-wrap {
  width: 85%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
}

.hero-slider-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 10;
}

/* スライドトラック（横に並べた帯） */
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 各スライド */
.slide {
  flex: 0 0 100%;
  height: 100%;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.slide-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.06);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  letter-spacing: 0;
}

.slide-label {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--mid-gray);
  letter-spacing: 0.2em;
}

.slide-sub {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.25);
  letter-spacing: 0.15em;
}

/* スライドごとの背景色を少しずつ変える */
.slide:nth-child(1) {
  background: #f0eeea;
}

.slide:nth-child(2) {
  background: #edeae4;
}

.slide:nth-child(3) {
  background: #ebe7e0;
}

.slide:nth-child(4) {
  background: #e8e4dc;
}

.slide:nth-child(5) {
  background: #e5e1d8;
}

/* 写真差し替え用（imgタグを入れると全面表示） */
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 左右矢印ボタン */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--light-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(4px);
}

.slider-btn:hover {
  background: var(--white);
  border-color: var(--accent);
}

.slider-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--charcoal);
  fill: none;
  stroke-width: 1.8;
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

/* ドット */
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 20;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

/* 旧・看板イラスト用（不要になったが念のため残す） */
.sign-pole {
  width: 8px;
  height: 40px;
  background: var(--mid-gray);
  margin: 0 auto;
  border-radius: 0 0 2px 2px;
}

.sign-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.sign-gold .sign-text {
  color: var(--charcoal);
}

/* ─── HERO NUMBERS ─── */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 8px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.stat-num span {
  font-size: 14px;
  margin-left: 2px;
}

.stat-label {
  font-size: 12px;
  color: var(--dark-gray);
  letter-spacing: 0.15em;
}

/* ─── SECTION BASE ─── */
section {
  padding: 100px 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-eyebrow-h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-eyebrow-h2::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--charcoal);
}

.section-point {
  font-family: var(--font-serif);
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--charcoal);
}

/* ─── SERVICES ─── */
.services {
  background: var(--off-white);
}

.services-grid .service-card>img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-gray);
}

.services-grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--light-gray);
}

.services-grid_2 .service-card>img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
}

#example .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--light-gray);
}

#example .services-grid .service-card>img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
}

.service-card {
  background: var(--white);
  padding: 48px 36px;
  text-decoration: none;
  transition: transform var(--transition);
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.2;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.service-desc {
  font-size: 13px;
  color: #7a7770;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.service-desc-l15 {
  font-size: 13px;
  color: #7a7770;
  line-height: 1.9;
  letter-spacing: 0.05em;
  margin-left: 15px;
}

.service-desc-l15 li {
  margin-bottom: 15px;
}

.service-more {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}

#example .service-more a {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent);
}

/* ─── FEATURES ─── */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
}

.features-list_2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 64px 80px;
}

.features-list_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 80px;
}

.feature-item {
  display: flex;
  gap: 24px;
}

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.feature-text {
  font-size: 14px;
  color: #7a7770;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.feature-text-mid {
  font-size: 1em;
  color: #7a7770;
  line-height: 1.9;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-left: 4%;
}

/* ─── AREA ─── */
.area {
  background: var(--off-white);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--light-gray);
}

.area-card {
  background: var(--white);
  padding: 48px 40px;
}

.area-pref {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.area-pref::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.area-cities {
  font-size: 13px;
  color: #7a7770;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

/* ─── FAQ ─── */
.faq-hero {
  min-height: 420px;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(30, 28, 26, 0.58), rgba(30, 28, 26, 0.58)), url("../images/kanban-1.jpg") center/cover no-repeat;
}

.faq-hero-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 88px 40px;
  position: relative;
  z-index: 1;
}

.faq-hero .hero-eyebrow,
.faq-hero .hero-h1,
.faq-hero .hero-desc {
  color: var(--white);
}

.faq-hero .hero-desc {
  max-width: 620px;
  margin-bottom: 0;
}

.faq-page {
  background: var(--off-white);
}

.faq-section {
  padding-top: 96px;
}

.faq-group {
  margin-top: 56px;
}

.faq-group:first-of-type {
  margin-top: 0;
}

.faq-category {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  margin-bottom: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: var(--accent-light);
  box-shadow: 0 14px 34px rgba(30, 28, 26, 0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 22px 64px 22px 28px;
  position: relative;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.faq-item summary::before,
.faq-item summary::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 28px;
  width: 16px;
  height: 1px;
  background: var(--accent);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  opacity: 0;
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 56px 28px 64px;
  color: #6b6860;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.faq-answer p+p {
  margin-top: 10px;
}

.faq-answer a {
  color: var(--accent);
}

.faq-area-title {
  display: inline-block;
  color: var(--charcoal);
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--charcoal);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(200, 164, 110, 0.15);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(200, 164, 110, 0.08);
  border-radius: 50%;
}

.cta-banner::before,
.cta-banner::after {
  pointer-events: none;
}

.cta-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.cta-tel {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 300;
  margin: 24px 0;
  display: block;
  text-decoration: none;
  line-height: 1em;
}

.cta-hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  margin-bottom: 36px;
  display: block;
}

.cta-btn {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 16px 48px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}

.cta-btn:hover {
  border-color: var(--accent);
  background: rgba(200, 164, 110, 0.1);
}

/* ─── FOOTER ─── */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--footer-h);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
}

.footer-menu {
  float: left;
  width: 25%;
  color: antiquewhite;
  text-align: left;
  line-height: 1.8em;
  font-size: 0.9em;
  letter-spacing: 0.1em;
  margin-top: 50px;
}

.footer-menu li {
  list-style: none;
}

.footer-menu a {
  color: #e5e1d8;
  text-decoration: none;
}

.footer-menu a:hover {
  color: #c8a46e;
}

.footer-menu-map {
  float: left;
  width: 25%;
  color: antiquewhite;
  text-align: left;
  line-height: 1.8em;
  font-size: 0.9em;
  letter-spacing: 0.1em;
  margin-top: 50px;
}

.footer-menu-map p {
  margin-bottom: 15px;
}

.mt15 {
  margin-top: 15px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 30px;
}

.pb15 {
  padding-bottom: 15px;
}

.hr {
  color: var(--accent);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
}

.footer-links {
  float: left;
  width: 33%;
  color: antiquewhite;
  font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
  font-size: small;
}

.footer-tel {
  float: left;
  width: 33%;
  padding-bottom: 5px;
}

.footer-form {
  float: left;
  width: 33%;
}

.text-medium {
  font-size: medium;
}

/* ─── SCROLL TOP ─── */
.scroll-top {
  position: fixed;
  right: 32px;
  bottom: calc(var(--footer-h) + 20px);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), background var(--transition);
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--off-white);
}

.scroll-top svg {
  width: 16px;
  height: 16px;
  stroke: var(--charcoal);
  fill: none;
  stroke-width: 1.5;
}

/* ─── DIVIDER ─── */
.divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--light-gray), transparent);
  margin: 0 auto 60px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  header {
    padding: 0 24px;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 100%;
    min-height: auto;
  }

  .hero-left {
    padding: 60px 24px 40px;
  }

  .hero-right {
    height: 300px;
  }

  .hero-stats {
    gap: 28px;
    margin-top: 8px;
  }

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

  .container {
    padding: 0 24px;
  }

  section {
    padding: 72px 0;
  }

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

  #example .services-grid {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .faq-hero {
    min-height: 340px;
  }

  .faq-hero-inner {
    padding: 72px 24px;
  }

  .faq-section {
    padding-top: 72px;
  }

  .faq-item summary {
    padding: 18px 52px 18px 20px;
    font-size: 15px;
  }

  .faq-item summary::before,
  .faq-item summary::after {
    right: 20px;
  }

  .faq-answer {
    padding: 0 22px 24px 22px;
  }

  footer {
    padding: 0 24px;
  }

  .scroll-top {
    right: 16px;
  }

  .footer-menu {
    float: left;
    width: 50%;
  }

  .footer-menu-map {
    float: none;
    width: 100%;
  }

}

@media (max-width: 480px) {

  .hero-h1 {
    font-size: 26px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-left {
    padding-bottom: 32px;
  }

  .hero-right {
    height: 220px;
  }

  .faq-hero {
    min-height: 300px;
  }

  .faq-category {
    font-size: 19px;
  }

  .faq-item summary {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta-banner {
    padding: 60px 24px;
  }

  .footer-links {
    display: none;
  }

  .footer-tel {
    display: none;
  }

  .footer-menu {
    float: none;
    width: 100%;
  }

}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.25s;
}

.delay-3 {
  animation-delay: 0.4s;
}

.delay-4 {
  animation-delay: 0.55s;
}

.delay-5 {
  animation-delay: 0.7s;
}

ul.list-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  font-size: 0.8rem;
  margin-bottom: 0.2rem !important;
  line-height: 1;
  color: #eeede9;
}

ul.list-icons li {
  border: 1px solid #c8a46e;
  border-radius: 2em;
  background: #c8a46e;
  padding: 0.4rem !important;
  /*余白。0.2文字分*/
  color: #eeede9;
}

ul.list-icons2 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  font-size: 0.8rem;
  margin-bottom: 0.2rem !important;
  line-height: 1;
  color: #c8a46e;
}

ul.list-icons2 li {
  border: 1px solid #eeede9;
  border-radius: 2em;
  background: #eeede9;
  padding: 0.4rem !important;
  /*余白。0.2文字分*/
}

ol.feature-text-mid li {
  padding-bottom: 15px;
}

ul.feature-text-mid li {
  padding-bottom: 15px;
}

.price-section {
  max-width: 900px;
  margin: 40px auto;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333;
}

.price-section h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.price-section .subtitle {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.price-section .note {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-bottom: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

/* ヘッダー行：白背景・黒文字・下線なし */
thead th {
  background-color: #ffffff;
  color: #333;
  padding: 10px 8px;
  text-align: left;
  font-weight: 400;
  border: 1px solid #ccc;
}

/* 左端の見出しセル（奇数行：薄グレー、偶数行：白） */
tbody tr:nth-child(odd) th {
  background-color: #e8e8e8;
  color: #333;
  font-weight: 400;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid #ccc;
  white-space: nowrap;
}

tbody tr:nth-child(even) th {
  background-color: #ffffff;
  color: #333;
  font-weight: 400;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid #ccc;
  white-space: nowrap;
}

tbody tr:nth-child(odd) td {
  background-color: #e8e8e8;
  color: #333;
  font-weight: 400;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid #ccc;
  white-space: nowrap;
}

tbody tr:nth-child(even) td {
  background-color: #ffffff;
  color: #333;
  font-weight: 400;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid #ccc;
  white-space: nowrap;
}

/* データセル：白背景 */
tbody td {
  padding: 10px 8px;
  text-align: left;
  border: 1px solid #ccc;
  color: #333;
  line-height: 1.6;
  vertical-align: middle;
  background-color: #ffffff;
}

/* 税込価格：緑色・アンダーライン */
.tax-price {
  display: block;
  color: #c8a46e;
  font-weight: bold;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-style: double;
  text-underline-offset: 2px;
}

/* 単価表示 */
.unit-price {
  display: block;
  font-size: 12px;
  color: #555;
}

.section-divider {
  margin: 60px 0;
  border: none;
  border-top: 2px dashed #ccc;
}

.privacy-page {
  padding: 100px 0;
  min-height: 70vh;
}

.privacy-content {
  max-width: 900px;
  margin-top: 40px;
  line-height: 2;
}

.privacy-content h2 {
  margin: 40px 0 16px;
  font-size: 22px;
}

.service-card a {
  color: #333;
  font-size: 13px;
}

.service-card li {
  color: #333;
  font-size: 13px;
  line-height: 1.2;
}

.txt-small {
  font-size: 18px;
  font-weight: bold;
}

.txt-center {
  text-align: center;
}

.txt-bold {
  font-weight: bold;
}

.container_bkwh {
  background-color: #fff;
  padding-top: 3%;
  padding-bottom: 5%;
}