/* ===============================
   リセット・基本設定
================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --color-primary: #d4883a;
  --color-primary-dark: #b8712e;
  --color-accent: #e8a84c;
  --color-accent-light: #f0c06a;
  --color-secondary: #e0976a;
  --color-text: #4a3f35;
  --color-text-light: #8a7e72;
  --color-bg: #fffcf8;
  --color-bg-section: #faf6f0;
  --color-white: #ffffff;
  --color-border: #ede5da;
  --font-sans: 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', 'Yu Gothic', 'Meiryo', Arial, sans-serif;
  --font-serif: 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', 'Meiryo', Arial, sans-serif;
  --shadow-sm: 0 2px 12px rgba(180,130,70,0.06);
  --shadow-md: 0 6px 24px rgba(180,130,70,0.08);
  --shadow-lg: 0 16px 40px rgba(180,130,70,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(135deg, #e8a84c 0%, #f0c06a 100%);
  --gradient-accent: linear-gradient(135deg, #e8a84c 0%, #f0c06a 100%);
  --gradient-dark: linear-gradient(135deg, #d4883a 0%, #e8a84c 100%);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: #ffffff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  opacity: 0.75;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===============================
   ヘッダー
================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,136,58,0.1);
  box-shadow: 0 1px 12px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.header-tel a {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  font-family: var(--font-serif);
  line-height: 1;
}

.header-tel a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.header-tel a::before {
  content: '☎ ';
  font-size: 14px;
}

.header-tel-hours {
  font-size: 10px;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-en {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.logo-ja {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
}

.nav-main ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-main a {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-main a:hover::after,
.nav-main a:focus::after {
  width: 100%;
  opacity: 1;
}

.nav-main a:hover {
  color: var(--color-primary);
  opacity: 1;
}

.nav-contact {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 8px 20px !important;
  border-radius: 24px;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  transition: background var(--transition) !important;
}

.nav-contact:hover {
  background: var(--color-secondary) !important;
  opacity: 1 !important;
}

.nav-contact::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===============================
   ヒーロー
================================ */
@keyframes kenburns {
  0%   { transform: scale(1)    translateX(0);   }
  100% { transform: scale(1.08) translateX(-2%); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #faf0e0 0%, #f5e8d5 100%);
}

/* 動画背景 */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* フォールバック背景（動画読み込み前に表示、読み込み後にフェードアウト） */
.hero-bg {
  position: absolute;
  inset: 0;
  background: #1a1a2e;
  z-index: 0;
  transition: opacity 1s ease;
}

/* 動画の上にオーバーレイ（動画の明るさを活かす薄めのオーバーレイ） */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(180, 120, 60, 0.15) 0%,
    rgba(220, 170, 100, 0.06) 50%,
    rgba(240, 200, 140, 0.02) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 80px;
  border-left: 3px solid var(--color-accent);
  padding-left: 40px;
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(218, 160, 74, 0.18);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(218, 160, 74, 0.35);
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(34px, 5.5vw, 58px);
  color: var(--color-white);
  line-height: 1.55;
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 16px rgba(120,80,30,0.3);
  animation: fadeInUp 0.8s ease-out 0.1s both;
  background: linear-gradient(135deg, #ffffff 0%, #fff5e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ===============================
   ボタン
================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(184,145,46,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.15);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===============================
   お知らせバー
================================ */
.news-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.news-bar-inner {
  display: flex;
  align-items: stretch;
  min-height: 72px;
}

.news-label {
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: rgba(58,124,198,0.1);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 28px;
  gap: 6px;
}

.news-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}

.news-date {
  color: var(--color-text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.news-list a {
  color: var(--color-text);
}

.news-list a:hover {
  color: var(--color-primary);
}

/* ===============================
   セクション共通
================================ */
section {
  padding: 96px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header-left {
  text-align: left;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--color-primary);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

.section-header-left .section-title::after {
  left: 0;
  transform: none;
}

.section-desc {
  margin-top: 16px;
  font-size: 15px;
  color: var(--color-text-light);
}

/* ===============================
   強み
================================ */
.strengths {
  background: var(--color-bg-section);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.strength-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.strength-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.strength-card:hover::before {
  opacity: 1;
}

.strength-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--color-primary);
}

.strength-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.strength-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.strength-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.9;
}

/* ===============================
   業務内容
================================ */
.services {
  background: #faf8f4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: linear-gradient(135deg, var(--color-bg) 0%, #ffffff 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(180,130,70,0.15);
}

.service-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-border);
  font-family: var(--font-serif);
  margin-bottom: 12px;
  line-height: 1;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-family: var(--font-serif);
  line-height: 1.4;
}

.service-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
}

.service-card ul li {
  font-size: 13px;
  color: var(--color-text);
  padding: 6px 0;
  border-bottom: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card ul li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===============================
   事務所案内
================================ */
.about {
  background: #faf8f4;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-accent);
}

.about-text p {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.9;
}

.about-profile {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 28px 0;
  border: 1px solid var(--color-border);
}

.profile-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-name span {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-light);
  font-family: var(--font-sans);
}

.office-info table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.office-info th,
.office-info td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.7;
}

.office-info th {
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  width: 120px;
  background: var(--color-white);
}

.office-info td {
  color: var(--color-text);
}

.staff-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.staff-photo-credit {
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 8px;
  text-align: right;
}

.staff-photo-credit a {
  color: var(--color-text-light);
  text-decoration: underline;
}

/* ===============================
   ご依頼の流れ
================================ */
.flow {
  background: linear-gradient(135deg, #fef9f0 0%, #faf3e8 100%);
}

.flow .section-header {
  margin-bottom: 56px;
}

.flow .section-label {
  color: var(--color-accent);
}

.flow .section-title {
  color: var(--color-primary);
}

.flow .section-desc {
  color: var(--color-text-light);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.flow-arrow {
  display: none;
}

.flow-step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.flow-step-num {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 16px;
  background: rgba(212,136,58,0.08);
  border: 1px solid rgba(212,136,58,0.2);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
}

.flow-step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.flow-step h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-family: var(--font-serif);
}

.flow-step p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
}

.flow-arrow {
  font-size: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ===============================
   料金案内
================================ */
.fee {
  background-color: #fffdf9;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C35 15 45 15 50 5 C45 15 45 25 50 30 C45 25 35 25 30 30 C35 25 35 15 30 5z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M30 35 C35 45 45 45 50 35 C45 45 45 55 50 60 C45 55 35 55 30 60 C35 55 35 45 30 35z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M0 5 C5 15 15 15 20 5 C15 15 15 25 20 30 C15 25 5 25 0 30 C5 25 5 15 0 5z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M0 35 C5 45 15 45 20 35 C15 45 15 55 20 60 C15 55 5 55 0 60 C5 55 5 45 0 35z' fill='%23d4883a' fill-opacity='0.025'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23f5ede0' fill-opacity='0'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23e8dcc8' fill-opacity='0.25'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23e8dcc8' fill-opacity='0.15'/%3E%3C/svg%3E");
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.fee-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.fee-card .btn-small {
  margin: auto 28px 28px;
  width: calc(100% - 56px);
}

.fee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fee-card-highlight {
  border-color: var(--color-accent);
  position: relative;
}

.fee-card-highlight::before {
  content: 'POPULAR';
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 40px;
  transform: rotate(45deg);
  transform-origin: center;
}

.fee-card-header {
  background: var(--color-primary);
  padding: 28px;
}

.fee-card-highlight .fee-card-header {
  background: var(--color-primary-dark);
}

.fee-card-header h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.fee-target {
  font-size: 12px;
  color: var(--color-text-light);
}

.fee-price-ref {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  padding: 12px 28px 0;
}
.fee-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  padding: 16px 28px 20px;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.08em;
}

.fee-price span {
  font-size: 26px;
  font-family: var(--font-serif);
}

.fee-list {
  padding: 20px 28px;
}

.fee-list li {
  font-size: 13px;
  color: var(--color-text);
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fee-list li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.fee-note {
  font-size: 12px;
  color: var(--color-text-light);
  padding: 0 28px 20px;
  line-height: 1.7;
}

.fee-cta-note {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ===============================
   お問い合わせ
================================ */
.contact {
  background-color: #f3eadb;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C35 15 45 15 50 5 C45 15 45 25 50 30 C45 25 35 25 30 30 C35 25 35 15 30 5z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M30 35 C35 45 45 45 50 35 C45 45 45 55 50 60 C45 55 35 55 30 60 C35 55 35 45 30 35z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M0 5 C5 15 15 15 20 5 C15 15 15 25 20 30 C15 25 5 25 0 30 C5 25 5 15 0 5z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M0 35 C5 45 15 45 20 35 C15 45 15 55 20 60 C15 55 5 55 0 60 C5 55 5 45 0 35z' fill='%23c8a060' fill-opacity='0.04'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23efe5d4' fill-opacity='0'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23ddd0b8' fill-opacity='0.25'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23ddd0b8' fill-opacity='0.15'/%3E%3C/svg%3E");
  border-top: 2px solid rgba(212,136,58,0.2);
  border-bottom: 2px solid rgba(212,136,58,0.2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-phone {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
}

.contact-hours {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* フォーム */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.required {
  font-size: 11px;
  background: #fde8e8;
  color: #c0392b;
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212,136,58,0.1);
  background: var(--color-white);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-check {
  flex-direction: row;
  align-items: center;
}

.form-check label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  padding: 0;
  -webkit-appearance: checkbox;
  appearance: checkbox;
  cursor: pointer;
  border: 1px solid var(--color-text-light);
}

.form-check a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ===============================
   フッター
================================ */
.site-footer {
  background: #f5f7fb;
  padding: 56px 0 32px;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-logo .logo-en {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-primary);
}

.footer-logo .logo-ja {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
}

.footer-nav a {
  color: var(--color-text-light);
  font-size: 13px;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--color-primary);
  opacity: 1;
}

.footer-address {
  font-size: 12px;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 12px;
  color: var(--color-text-light);
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
  width: 100%;
  text-align: center;
}

/* ===============================
   ロゴリンク
================================ */
.logo a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ===============================
   ナビ アクティブ
================================ */
.nav-active {
  color: var(--color-primary) !important;
}

.nav-active::after {
  width: 100% !important;
}

/* ===============================
   ページヘッダー（内部ページ）
================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 90px;
  min-height: 360px;
  text-align: center;
  border-bottom: 3px solid var(--color-accent);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-default.jpg') center 40% / cover no-repeat;
  z-index: 0;
}

.page-hero-bg.bg-services {
  background-image: url('images/hero-services.jpg');
  background-size: cover;
  background-position: center 30%;
}

.page-hero-bg.bg-flow {
  background-image: url('images/hero-flow.jpg');
  background-position: center 40%;
}

.page-hero-bg.bg-fee {
  background-image: url('images/hero-fee.jpg');
  background-position: center 50%;
}

.page-hero-bg.bg-contact {
  background-image: url('images/hero-contact.jpg');
  background-position: center 40%;
}

.page-hero-bg.bg-about {
  background-image: url('images/hero-about.jpg');
  background-position: center 40%;
}

.page-hero-bg.bg-access {
  background-image: url('images/hero-contact.jpg');
  background-position: center 50%;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(180, 120, 60, 0.25) 0%,
    rgba(220, 170, 100, 0.12) 50%,
    rgba(240, 200, 140, 0.05) 100%
  );
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-en {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(218, 160, 74, 0.18);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(218, 160, 74, 0.35);
  animation: fadeInDown 0.8s ease-out;
}

.page-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(120,80,30,0.3);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* ===============================
   トップページ CTA
================================ */
.top-cta {
  background: var(--color-bg-section);
  padding: 80px 0;
}

.top-cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.top-cta-card {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, var(--color-bg) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  color: var(--color-text);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.8s ease-out;
}

.top-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.top-cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(180,130,70,0.18);
  border-color: var(--color-accent);
  opacity: 1;
}

.top-cta-card:hover::before {
  opacity: 1;
}

.top-cta-icon {
  font-size: 44px;
  margin-bottom: 20px;
}

.top-cta-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.top-cta-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.top-cta-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

/* ===============================
   アクセスページ
================================ */
.access-section {
  background-color: #fffdf9;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C35 15 45 15 50 5 C45 15 45 25 50 30 C45 25 35 25 30 30 C35 25 35 15 30 5z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M30 35 C35 45 45 45 50 35 C45 45 45 55 50 60 C45 55 35 55 30 60 C35 55 35 45 30 35z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M0 5 C5 15 15 15 20 5 C15 15 15 25 20 30 C15 25 5 25 0 30 C5 25 5 15 0 5z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M0 35 C5 45 15 45 20 35 C15 45 15 55 20 60 C15 55 5 55 0 60 C5 55 5 45 0 35z' fill='%23d4883a' fill-opacity='0.025'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23f5ede0' fill-opacity='0'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23e8dcc8' fill-opacity='0.25'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23e8dcc8' fill-opacity='0.15'/%3E%3C/svg%3E");
  padding: 80px 0;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}

.map-wrap iframe {
  display: block;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.access-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.access-card-header {
  background: var(--color-primary);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.access-card-icon {
  font-size: 24px;
}

.access-card-header h2 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.access-info-table {
  padding: 24px 28px;
}

.access-info-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.access-info-table th,
.access-info-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.7;
}

.access-info-table th {
  font-weight: 700;
  color: var(--color-primary);
  width: 90px;
  white-space: nowrap;
}

.access-note {
  font-size: 12px;
  color: var(--color-text-light);
}

.access-transport {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.access-transport li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.access-transport li:last-child {
  border-bottom: none;
}

.transport-icon {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.transport-icon.train {
  background: rgba(212,136,58,0.1);
  color: var(--color-primary);
}

.transport-icon.bus {
  background: rgba(201,168,76,0.15);
  color: #8a6f20;
}

.transport-icon.car {
  background: rgba(80,160,80,0.12);
  color: #3a7a3a;
}

.transport-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.transport-time {
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 2px;
}

.access-cta {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.access-cta-text h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.access-cta-text p {
  font-size: 14px;
  color: var(--color-text);
}

.access-cta-btns {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-block;
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  opacity: 1;
}

@media (max-width: 1024px) {
  .access-grid {
    grid-template-columns: 1fr;
  }

  .access-cta {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .access-cta-btns {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===============================
   信頼バー
================================ */
.trust-bar {
  background: linear-gradient(135deg, #ffffff 0%, #f9f7f3 100%);
  border-top: 3px solid var(--color-accent);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  box-shadow: 0 2px 12px rgba(180,130,70,0.05);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  border-right: 1px solid var(--color-border);
  flex: 1;
  text-align: center;
  transition: all var(--transition);
  animation: slideInUp 0.8s ease-out;
}

.trust-item:hover {
  background: rgba(10, 36, 99, 0.03);
  transform: translateY(-2px);
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.trust-item:last-child {
  border-right: none;
}

.trust-num {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-num span {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-light);
}

.trust-label {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.08em;
}

.trust-badge {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.2);
}

/* ===============================
   お悩みセクション
================================ */
.worries {
  background: var(--color-white);
}

.worries-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.worries-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.worry-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: slideInLeft 0.6s ease-out;
}

.worry-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-accent);
  background: linear-gradient(135deg, #ffffff 0%, #f9f7f3 100%);
}

.worry-item::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.worries-cta {
  text-align: center;
}

.worries-cta p {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.worries-cta p span {
  color: var(--color-accent);
}

.worries-cta .btn {
  display: block;
  margin-bottom: 12px;
}

/* ===============================
   底部CTAバナー（全内部ページ共通）
================================ */
.cta-banner {
  background: linear-gradient(135deg, #fef5e8 0%, #faf0dd 100%);
  padding: 60px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.cta-banner-text p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.7;
}

.cta-banner-free {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.cta-banner-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 220px;
}

.btn-tel {
  background: #16a34a;
  color: var(--color-white) !important;
  border: 2px solid #16a34a;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-tel:hover {
  background: #15803d;
  border-color: #15803d;
  opacity: 1 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,163,74,0.35);
}

.btn-small {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  transition: all var(--transition);
  margin-top: auto;
  padding-top: 10px;
  width: 100%;
  text-align: center;
}

.btn-small:hover {
  background: var(--color-primary);
  color: var(--color-white);
  opacity: 1;
}

/* ===============================
   FAQセクション
================================ */
.faq {
  background-color: #fffdf9;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C35 15 45 15 50 5 C45 15 45 25 50 30 C45 25 35 25 30 30 C35 25 35 15 30 5z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M30 35 C35 45 45 45 50 35 C45 45 45 55 50 60 C45 55 35 55 30 60 C35 55 35 45 30 35z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M0 5 C5 15 15 15 20 5 C15 15 15 25 20 30 C15 25 5 25 0 30 C5 25 5 15 0 5z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M0 35 C5 45 15 45 20 35 C15 45 15 55 20 60 C15 55 5 55 0 60 C5 55 5 45 0 35z' fill='%23d4883a' fill-opacity='0.025'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23f5ede0' fill-opacity='0'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23e8dcc8' fill-opacity='0.25'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23e8dcc8' fill-opacity='0.15'/%3E%3C/svg%3E");
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  transition: background var(--transition);
  user-select: none;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-question {
  background: var(--color-bg);
  color: var(--color-primary);
}

.faq-q-icon {
  width: 28px;
  height: 28px;
  background: rgba(212,136,58,0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item[open] .faq-q-icon {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.faq-arrow {
  margin-left: auto;
  font-size: 12px;
  color: var(--color-text-light);
  transition: transform var(--transition);
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px 68px;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.9;
}

/* ===============================
   お問い合わせ 初回無料バッジ
================================ */
.contact-free-badge {
  text-align: center;
  margin-bottom: 40px;
}

.contact-free-badge span {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-primary-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 30px;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 16px rgba(218,160,74,0.3);
}

/* ===============================
   フェードインアニメーション
================================ */
.fade-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   レスポンシブ
================================ */
@media (max-width: 1024px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-image {
    display: none;
  }

  .fee-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1024px) {
  .top-cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .trust-bar-inner {
    flex-wrap: wrap;
  }
  .trust-item {
    flex: 1 1 calc(50% - 1px);
  }
  .worries-inner {
    grid-template-columns: 1fr;
  }
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner-btns {
    width: 100%;
    min-width: unset;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .nav-main {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    padding: 24px;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-main.is-open {
    display: block;
  }

  .nav-main ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-main li {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-main a {
    display: block;
    padding: 14px 0;
  }

  .nav-main a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-desc br {
    display: none;
  }

  .hero-content {
    padding-top: 60px;
  }

  .news-bar-inner {
    flex-direction: column;
  }

  .news-label {
    padding: 10px 24px;
    width: 100%;
    justify-content: center;
  }

  .news-list {
    padding: 12px 24px;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-arrow {
    text-align: center;
    transform: rotate(90deg);
    font-size: 20px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header-tel { display: none; }
  .worries-list { grid-template-columns: 1fr; }
  .trust-item { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .header-inner {
    height: 64px;
  }
}

/* ===============================
   安心バッジバー
================================ */
.reassure-bar {
  background: linear-gradient(135deg, #fef9f0 0%, #faf3e8 100%);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.reassure-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.reassure-item {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ===============================
   こんな方が相談しています
================================ */
.audience-section {
  background-color: #fffdf9;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C35 15 45 15 50 5 C45 15 45 25 50 30 C45 25 35 25 30 30 C35 25 35 15 30 5z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M30 35 C35 45 45 45 50 35 C45 45 45 55 50 60 C45 55 35 55 30 60 C35 55 35 45 30 35z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M0 5 C5 15 15 15 20 5 C15 15 15 25 20 30 C15 25 5 25 0 30 C5 25 5 15 0 5z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M0 35 C5 45 15 45 20 35 C15 45 15 55 20 60 C15 55 5 55 0 60 C5 55 5 45 0 35z' fill='%23d4883a' fill-opacity='0.025'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23f5ede0' fill-opacity='0'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23e8dcc8' fill-opacity='0.25'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23e8dcc8' fill-opacity='0.15'/%3E%3C/svg%3E");
  padding: 80px 0;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.audience-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.audience-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.audience-card p {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.8;
}

/* ===============================
   フローステップ詳細
================================ */
.flow-detail {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  text-align: left;
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 2;
}
.flow-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

/* ===============================
   よくある質問
================================ */
.faq-section {
  background-color: #fffdf9;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C35 15 45 15 50 5 C45 15 45 25 50 30 C45 25 35 25 30 30 C35 25 35 15 30 5z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M30 35 C35 45 45 45 50 35 C45 45 45 55 50 60 C45 55 35 55 30 60 C35 55 35 45 30 35z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M0 5 C5 15 15 15 20 5 C15 15 15 25 20 30 C15 25 5 25 0 30 C5 25 5 15 0 5z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M0 35 C5 45 15 45 20 35 C15 45 15 55 20 60 C15 55 5 55 0 60 C5 55 5 45 0 35z' fill='%23d4883a' fill-opacity='0.025'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23f5ede0' fill-opacity='0'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23e8dcc8' fill-opacity='0.25'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23e8dcc8' fill-opacity='0.15'/%3E%3C/svg%3E");
  padding: 80px 0;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--color-white);
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  transition: background var(--transition);
}
.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}
.faq-question:hover {
  background: var(--color-bg);
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--color-bg);
}
.faq-item.is-open .faq-answer {
  display: block;
}
.faq-answer p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.9;
}

/* ===============================
   フロー専用CTA
================================ */
.cta-flow {
  background: linear-gradient(135deg, #fef5e8 0%, #faf0dd 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 3px solid var(--color-accent);
}
.cta-flow-inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta-flow-free {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.cta-flow h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.cta-flow p {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 32px;
}
.cta-flow-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .reassure-inner { gap: 16px; }
}

/* ===============================
   クリエイティブ強化
================================ */

/* ヘッダー */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(212,136,58,0.1);
}

/* ナビ お問い合わせボタン */
.nav-contact {
  border-radius: 24px !important;
  background: var(--color-primary) !important;
}

/* ヒーロー 全面背景画像レイアウト */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: #faf0e0;
}

/* 背景画像レイヤー（動画がない場合のフォールバック、ケンバーンズ） */
.hero::after {
  display: none;
}

/* hero::before は .hero-overlay に統合済み */

.hero-left {
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  clip-path: none;
  z-index: 2;
  padding: 160px 10% 100px 8%;
}

.hero-text-block {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.hero-deco-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(218,160,74,0.12);
  border-radius: 50%;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-deco-circle::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(218,160,74,0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-deco-circle::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(218,160,74,0.05);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* hero-right は動画レイアウトに統合済み */

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: var(--gradient-accent);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 700;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  box-shadow: 0 12px 40px rgba(218,160,74,0.5), 0 0 1px rgba(218,160,74,0.3) inset;
  z-index: 100;
  letter-spacing: 0.05em;
  border: 3px solid rgba(255,255,255,0.4);
  animation: bounce 0.8s ease-out, glow 2s ease-in-out infinite;
}

@keyframes bounce {
  0% { transform: scale(0.8) translateY(20px); opacity: 0; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 12px 40px rgba(218,160,74,0.5), 0 0 1px rgba(218,160,74,0.3) inset; }
  50% { box-shadow: 0 12px 48px rgba(218,160,74,0.7), 0 0 8px rgba(218,160,74,0.4) inset; }
}
.hero-badge span {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ミュート解除ボタン */
.mute-toggle {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}
.mute-toggle:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent-light);
  letter-spacing: 0.03em;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-stat span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.18);
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
  }
  .hero-left {
    width: 100%;
    padding: 120px 24px 80px;
    justify-content: flex-start;
  }
  .hero-badge {
    width: 80px;
    height: 80px;
    font-size: 11px;
    bottom: 24px;
    right: 16px;
  }
  .hero-badge span {
    font-size: 14px;
  }
}

/* ボタン */
.btn-primary {
  background: var(--gradient-accent);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(218,160,74,0.3);
  color: var(--color-primary-dark);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e8b44e 0%, #d4953a 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(218,160,74,0.45);
  opacity: 1;
}

/* セクションタイトル */
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
}
.section-title::after {
  background: var(--gradient-accent);
  width: 56px;
  height: 3px;
}

/* セクションラベル */
.section-label {
  letter-spacing: 0.3em;
}

/* 強みセクション */
.strengths {
  background-color: #f3eadb;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C35 15 45 15 50 5 C45 15 45 25 50 30 C45 25 35 25 30 30 C35 25 35 15 30 5z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M30 35 C35 45 45 45 50 35 C45 45 45 55 50 60 C45 55 35 55 30 60 C35 55 35 45 30 35z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M0 5 C5 15 15 15 20 5 C15 15 15 25 20 30 C15 25 5 25 0 30 C5 25 5 15 0 5z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M0 35 C5 45 15 45 20 35 C15 45 15 55 20 60 C15 55 5 55 0 60 C5 55 5 45 0 35z' fill='%23c8a060' fill-opacity='0.04'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23efe5d4' fill-opacity='0'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23ddd0b8' fill-opacity='0.25'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23ddd0b8' fill-opacity='0.15'/%3E%3C/svg%3E");
  border-top: 2px solid rgba(212,136,58,0.2);
  border-bottom: 2px solid rgba(212,136,58,0.2);
}
.strength-card {
  border-top: none;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(180,130,70,0.08), 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.strength-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.strength-card:hover::before {
  opacity: 1;
}
.strength-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 52px rgba(180,130,70,0.15);
  border-top-color: transparent;
}

/* 業務内容セクション */
.services {
  background-color: #fffdf9;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C35 15 45 15 50 5 C45 15 45 25 50 30 C45 25 35 25 30 30 C35 25 35 15 30 5z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M30 35 C35 45 45 45 50 35 C45 45 45 55 50 60 C45 55 35 55 30 60 C35 55 35 45 30 35z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M0 5 C5 15 15 15 20 5 C15 15 15 25 20 30 C15 25 5 25 0 30 C5 25 5 15 0 5z' fill='%23d4883a' fill-opacity='0.025'/%3E%3Cpath d='M0 35 C5 45 15 45 20 35 C15 45 15 55 20 60 C15 55 5 55 0 60 C5 55 5 45 0 35z' fill='%23d4883a' fill-opacity='0.025'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23f5ede0' fill-opacity='0'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23e8dcc8' fill-opacity='0.25'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23e8dcc8' fill-opacity='0.15'/%3E%3C/svg%3E");
}
.service-card {
  border-radius: var(--radius-xl);
  border: none;
  border-top: 2px solid rgba(212,136,58,0.3);
  background: #fefcf8;
  box-shadow: 0 2px 12px rgba(180,130,70,0.06);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(180,130,70,0.14);
  background: #ffffff;
}
.service-card::before {
  height: 4px;
  background: var(--gradient-primary);
}
.service-num {
  font-size: 48px;
  color: rgba(212,136,58,0.12);
}

/* フローセクション */
.flow {
  background-color: #f3eadb;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C35 15 45 15 50 5 C45 15 45 25 50 30 C45 25 35 25 30 30 C35 25 35 15 30 5z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M30 35 C35 45 45 45 50 35 C45 45 45 55 50 60 C45 55 35 55 30 60 C35 55 35 45 30 35z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M0 5 C5 15 15 15 20 5 C15 15 15 25 20 30 C15 25 5 25 0 30 C5 25 5 15 0 5z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M0 35 C5 45 15 45 20 35 C15 45 15 55 20 60 C15 55 5 55 0 60 C5 55 5 45 0 35z' fill='%23c8a060' fill-opacity='0.04'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23efe5d4' fill-opacity='0'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23ddd0b8' fill-opacity='0.25'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23ddd0b8' fill-opacity='0.15'/%3E%3C/svg%3E");
  border-top: 2px solid rgba(212,136,58,0.2);
  border-bottom: 2px solid rgba(212,136,58,0.2);
  position: relative;
  overflow: hidden;
}
.flow::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(218,160,74,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.flow-step {
  border-radius: var(--radius-xl);
  background: var(--color-white);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.flow-step:hover {
  background: var(--color-white);
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

/* 料金カード */
.fee-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.fee-card-header {
  background: linear-gradient(135deg, #fef5e8 0%, #faf0dd 100%);
}
.fee-card-highlight .fee-card-header {
  background: linear-gradient(135deg, #fef0d8 0%, #fae8c8 100%);
}
.fee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(180,130,70,0.16);
}

/* 事務所案内 */
.about {
  background-color: #f3eadb;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C35 15 45 15 50 5 C45 15 45 25 50 30 C45 25 35 25 30 30 C35 25 35 15 30 5z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M30 35 C35 45 45 45 50 35 C45 45 45 55 50 60 C45 55 35 55 30 60 C35 55 35 45 30 35z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M0 5 C5 15 15 15 20 5 C15 15 15 25 20 30 C15 25 5 25 0 30 C5 25 5 15 0 5z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M0 35 C5 45 15 45 20 35 C15 45 15 55 20 60 C15 55 5 55 0 60 C5 55 5 45 0 35z' fill='%23c8a060' fill-opacity='0.04'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23efe5d4' fill-opacity='0'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23ddd0b8' fill-opacity='0.25'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23ddd0b8' fill-opacity='0.15'/%3E%3C/svg%3E");
  border-top: 2px solid rgba(212,136,58,0.2);
  border-bottom: 2px solid rgba(212,136,58,0.2);
}
.about-lead {
  border-bottom: none;
  padding-bottom: 28px;
  position: relative;
}
.about-lead::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
}
.about-profile {
  border-radius: var(--radius-xl);
  border-color: rgba(212,136,58,0.2);
  background: linear-gradient(135deg, #ffffff 0%, #fffaf2 100%);
}
.staff-photo {
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(180,130,70,0.2), 0 4px 16px rgba(0,0,0,0.08);
  aspect-ratio: 4/3;
  object-position: center;
}

/* 信頼バー */
.trust-bar {
  border-top: 2px solid rgba(212,136,58,0.2);
  background-color: #f3eadb;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C35 15 45 15 50 5 C45 15 45 25 50 30 C45 25 35 25 30 30 C35 25 35 15 30 5z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M30 35 C35 45 45 45 50 35 C45 45 45 55 50 60 C45 55 35 55 30 60 C35 55 35 45 30 35z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M0 5 C5 15 15 15 20 5 C15 15 15 25 20 30 C15 25 5 25 0 30 C5 25 5 15 0 5z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M0 35 C5 45 15 45 20 35 C15 45 15 55 20 60 C15 55 5 55 0 60 C5 55 5 45 0 35z' fill='%23c8a060' fill-opacity='0.04'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23efe5d4' fill-opacity='0'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23ddd0b8' fill-opacity='0.25'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23ddd0b8' fill-opacity='0.15'/%3E%3C/svg%3E");
  border-bottom: 2px solid rgba(212,136,58,0.2);
}
.trust-num {
  color: var(--color-primary);
  -webkit-text-fill-color: var(--color-primary);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.trust-num span {
  color: var(--color-text-light);
  -webkit-text-fill-color: var(--color-text-light);
}
.trust-label {
  color: var(--color-text-light);
}
.trust-item {
  border-right-color: var(--color-border);
}
.trust-badge {
  background: var(--color-primary);
  color: var(--color-white);
}

/* CTAバナー */
.cta-banner {
  background-color: #f3eadb;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C35 15 45 15 50 5 C45 15 45 25 50 30 C45 25 35 25 30 30 C35 25 35 15 30 5z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M30 35 C35 45 45 45 50 35 C45 45 45 55 50 60 C45 55 35 55 30 60 C35 55 35 45 30 35z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M0 5 C5 15 15 15 20 5 C15 15 15 25 20 30 C15 25 5 25 0 30 C5 25 5 15 0 5z' fill='%23c8a060' fill-opacity='0.04'/%3E%3Cpath d='M0 35 C5 45 15 45 20 35 C15 45 15 55 20 60 C15 55 5 55 0 60 C5 55 5 45 0 35z' fill='%23c8a060' fill-opacity='0.04'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23efe5d4' fill-opacity='0'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23ddd0b8' fill-opacity='0.25'/%3E%3Crect width='1' height='1' x='2' y='2' fill='%23ddd0b8' fill-opacity='0.15'/%3E%3C/svg%3E");
  border-top: 2px solid rgba(212,136,58,0.2);
  border-bottom: 2px solid rgba(212,136,58,0.2);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(218,160,74,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* アクセスCTA */
.access-cta {
  background: linear-gradient(135deg, #fef5e8 0%, #faf0dd 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(180,130,70,0.1);
  color: var(--color-text);
}

/* アクセスカードヘッダー */
.access-card-header {
  background: linear-gradient(135deg, #fef5e8 0%, #faf0dd 100%);
  color: var(--color-primary);
}

/* トップCTAカード */
.top-cta-card {
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  box-shadow: 0 2px 16px rgba(180,130,70,0.08);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.top-cta-card::before {
  display: none;
}
.top-cta-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 20px 52px rgba(43,94,167,0.14), 0 0 0 1px rgba(218,160,74,0.3);
}

/* FAQアイテム */
.faq-item {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(180,130,70,0.1);
  transition: box-shadow 0.25s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 24px rgba(180,130,70,0.1);
}
.faq-question:hover {
  background: #fef9f0;
}

/* フッター */
.site-footer {
  background: #faf6f0;
}

/* ページヒーロー下部アクセントライン */
.page-hero {
  border-bottom: none;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  z-index: 3;
}

/* 安心バッジバー */
.reassure-bar {
  background: linear-gradient(135deg, #fef5e8 0%, #faf0dd 100%);
  border-bottom: 1px solid var(--color-border);
}

/* フェードインアニメーション（より滑らか）*/
.fade-item {
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* テレボタン */
.btn-tel {
  background: linear-gradient(135deg, #16a34a, #15803d);
  border: none;
  box-shadow: 0 4px 16px rgba(22,163,74,0.3);
}
.btn-tel:hover {
  background: linear-gradient(135deg, #15803d, #166534);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(22,163,74,0.45);
}

/* お悩みアイテム */
.worry-item {
  border-radius: var(--radius-lg);
}
.worry-item:hover {
  border-left-color: var(--color-accent);
  box-shadow: 0 6px 20px rgba(180,130,70,0.1);
}

/* オーディエンスカード */
.audience-card {
  border-radius: var(--radius-xl);
  border-top: none;
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(180,130,70,0.12);
}

/* ===============================
   経営指針セクション
================================ */
.philosophy {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background: #1a1208;
}

.philosophy-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(26, 18, 8, 0.3) 0%,
      rgba(26, 18, 8, 0.15) 40%,
      rgba(26, 18, 8, 0.4) 100%
    ),
    url('images/philosophy-bg.jpg')
    center 60% / cover no-repeat;
  z-index: 0;
}

.philosophy-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.philosophy-poem p {
  font-size: clamp(18px, 2.5vw, 26px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 2.6;
  letter-spacing: 0.18em;
  font-weight: 400;
}

.philosophy-highlight {
  font-size: clamp(24px, 3.2vw, 36px) !important;
  color: #f0c06a !important;
  font-weight: 700 !important;
  margin-top: 20px;
  text-shadow: 0 2px 16px rgba(218, 160, 74, 0.4);
}

.philosophy-message {
  margin-top: 56px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2.2;
  letter-spacing: 0.08em;
}

.philosophy-cta {
  margin-top: 40px;
}

/* ===============================
   フローティングCTA
================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
}

.floating-cta-tel,
.floating-cta-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.floating-cta-tel {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff;
}

.floating-cta-tel:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(22,163,74,0.5);
  opacity: 1;
}

.floating-cta-contact {
  background: var(--gradient-accent);
  color: var(--color-primary-dark);
}

.floating-cta-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(218,160,74,0.5);
  opacity: 1;
}

.floating-cta-icon {
  font-size: 16px;
  line-height: 1;
}

/* スクロール済みのときのみ表示 */
.floating-cta {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 16px;
    right: 16px;
  }
  .floating-cta-tel,
  .floating-cta-contact {
    padding: 11px 16px;
    font-size: 13px;
  }
}
