/* ========================================
   田中税理士事務所 - スタイルシート（リニューアル版）
   ======================================== */

/* ---- リセット・基本設定 ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a3a6b;
  --navy-dark: #0f2547;
  --navy-light: #2a4f8f;
  --gold: #c8a951;
  --gold-light: #dfc07a;
  --gold-pale: #f5ecd4;
  --white: #ffffff;
  --gray-bg: #f8f7f4;
  --gray-light: #eeecea;
  --gray-text: #666;
  --text: #1e1e1e;
  --border: #e0ddd8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
}

h1, h2, h3, h4 {
  font-family: 'Noto Serif JP', serif;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

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

.section-title {
  font-size: 2rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.section-sub {
  text-align: center;
  color: var(--gray-text);
  margin-bottom: 3rem;
  font-size: 0.95rem;
  font-weight: 300;
}

.gold-line {
  display: block;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.7rem auto 1rem;
  border-radius: 2px;
}

/* ========================================
   ヘッダー
   ======================================== */
.site-header {
  background: var(--navy-dark);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(200,169,81,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo-ja {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.2;
}

.header-logo-en {
  display: block;
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  transition: color 0.2s;
  font-weight: 400;
}

.header-nav a:hover {
  color: var(--gold-light);
}

.header-nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  padding: 8px 20px;
  border-radius: 3px;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  transition: background 0.2s !important;
}

.header-nav-cta:hover {
  background: var(--gold-light) !important;
}

.header-contact {
  text-align: right;
  flex-shrink: 0;
}

.header-tel {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1;
}

.header-tel-label {
  font-size: 0.67rem;
  color: rgba(170,180,190,0.8);
  letter-spacing: 0.05em;
}

.header-hours {
  font-size: 0.67rem;
  color: rgba(170,180,190,0.8);
}

/* ========================================
   ヒーロー
   ======================================== */
.hero {
  position: relative;
  color: var(--white);
  padding: 130px 0 110px;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 28, 60, 0.88) 0%,
    rgba(26, 58, 107, 0.80) 50%,
    rgba(15, 37, 71, 0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 1.4rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: inline-block;
  position: relative;
}

.hero-title em::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--gold);
  margin-top: 2px;
  opacity: 0.5;
  border-radius: 2px;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(210,220,235,0.9);
  margin-bottom: 2.8rem;
  line-height: 2;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 52px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(200,169,81,0.4);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(200,169,81,0.5);
}

.btn-cta small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
}

.btn-hero-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 16px 32px;
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-hero-tel:hover {
  border-color: var(--gold);
  background: rgba(200,169,81,0.1);
}

.hero-note {
  display: block;
  font-size: 0.75rem;
  color: rgba(180,190,210,0.7);
  letter-spacing: 0.12em;
  font-weight: 300;
}

/* ========================================
   実績・数字セクション
   ======================================== */
.stats {
  background: var(--navy-dark);
  padding: 0;
  border-top: 1px solid rgba(200,169,81,0.15);
  border-bottom: 1px solid rgba(200,169,81,0.15);
}

.stats-grid {
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  padding: 40px 20px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  background: rgba(200,169,81,0.2);
  margin: 24px 0;
}

.stat-num {
  font-family: 'Georgia', 'Noto Serif JP', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-unit {
  font-size: 1.4rem;
  font-weight: 400;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(180,190,210,0.7);
  letter-spacing: 0.1em;
  font-weight: 300;
}

/* ========================================
   お悩みセクション
   ======================================== */
.worries {
  background: var(--gray-bg);
  padding: 90px 0;
}

.worries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.worry-card {
  background: var(--white);
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.worry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.worry-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  color: var(--navy);
}

.worry-card p {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

/* ========================================
   サービス
   ======================================== */
.services {
  padding: 90px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* 5枚目のカードを中央に */
.services-grid .service-card:nth-child(4) {
  grid-column: 1;
}
.services-grid .service-card:nth-child(5) {
  grid-column: 2;
}

.service-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.25s, transform 0.25s;
  background: var(--white);
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  transform: translateY(-4px);
}

.service-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,28,60,0.35) 0%,
    rgba(10,28,60,0.75) 100%
  );
}

.service-card-header {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.service-card-header svg {
  flex-shrink: 0;
  color: var(--gold);
}

.service-card-header h3 {
  font-size: 1.05rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.service-card-body {
  padding: 20px 22px 24px;
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.85;
}

.service-tag {
  display: inline-block;
  margin-top: 12px;
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

/* ========================================
   選ばれる理由
   ======================================== */
.reasons {
  background: var(--navy);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.reasons::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a951' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2l-2 2-36 36v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.reasons .section-title {
  color: var(--white);
}

.reasons .section-sub {
  color: rgba(170,180,200,0.8);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.reason-item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s, border-color 0.2s;
}

.reason-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,169,81,0.5);
}

.reason-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(200,169,81,0.25);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}

.reason-icon-wrap {
  margin-bottom: 14px;
}

.reason-item h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.reason-item p {
  font-size: 0.86rem;
  color: rgba(170,185,210,0.85);
  line-height: 1.85;
}

/* ========================================
   料金
   ======================================== */
.pricing {
  padding: 90px 0;
  background: var(--gray-bg);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.pricing-table th {
  background: var(--navy);
  color: var(--white);
  padding: 18px 28px;
  text-align: left;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.pricing-table td {
  padding: 18px 28px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.93rem;
  color: #333;
  line-height: 1.7;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:nth-child(even) td {
  background: var(--gray-bg);
}

.pricing-table tbody tr {
  transition: background 0.15s;
}

.pricing-table tbody tr:hover td {
  background: var(--gold-pale);
}

.price-amount {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

.price-note {
  font-size: 0.78rem;
  color: var(--gray-text);
  margin-top: 1.2rem;
  text-align: center;
  font-weight: 300;
}

/* ========================================
   所長紹介
   ======================================== */
.about {
  padding: 90px 0;
  background: var(--white);
}

.about-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 1rem;
}

.about-photo-wrap {
  flex-shrink: 0;
  width: 260px;
  text-align: center;
}

.about-photo-img {
  width: 240px;
  height: 290px;
  background-size: cover;
  background-position: center top;
  border-radius: 6px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 3px solid var(--gold-pale);
}

.about-photo-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-name-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.about-name-en {
  font-size: 0.72rem;
  color: var(--gray-text);
  letter-spacing: 0.15em;
  font-weight: 300;
}

.about-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.about-text h3 {
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
  letter-spacing: 0.06em;
}

.about-title {
  font-size: 0.83rem;
  color: var(--gold);
  margin-bottom: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--gray-light);
}

.about-text p {
  font-size: 0.95rem;
  color: #444;
  line-height: 2;
  margin-bottom: 1rem;
}

.about-career {
  margin-top: 1.4rem;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

.about-career li {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 6px;
  font-weight: 300;
  line-height: 1.7;
}

.about-career li::before {
  content: '—　';
  color: var(--gold);
  font-size: 0.8rem;
}

/* ========================================
   よくある質問
   ======================================== */
.faq {
  padding: 90px 0;
  background: var(--gray-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 1px;
}

.faq-badge-q {
  background: var(--navy);
  color: var(--white);
}

.faq-badge-a {
  background: var(--gold);
  color: var(--navy-dark);
}

.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 26px 22px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.85;
  border-top: 1px solid var(--gray-light);
  background: rgba(200,169,81,0.03);
}

/* ========================================
   アクセス
   ======================================== */
.access {
  padding: 90px 0;
  background: var(--white);
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.access-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

.access-map-placeholder {
  background: var(--gray-bg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  font-size: 0.88rem;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  line-height: 1.8;
}

.access-info h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold-pale);
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table th {
  width: 90px;
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--gray-text);
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-light);
  vertical-align: top;
  letter-spacing: 0.05em;
}

.access-table td {
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-light);
  line-height: 1.7;
}

.holiday {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ========================================
   CTAセクション
   ======================================== */
.cta-section {
  position: relative;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,28,60,0.93) 0%,
    rgba(20,45,90,0.88) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 300;
}

.cta-section h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.cta-section p {
  color: rgba(190,205,225,0.85);
  margin-bottom: 2.4rem;
  font-size: 0.95rem;
  line-height: 2;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.btn-cta-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ========================================
   フッター
   ======================================== */
.site-footer {
  background: #080f1e;
  color: #7a8898;
  padding: 60px 0 28px;
  border-top: 1px solid rgba(200,169,81,0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {}

.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}

.footer-logo-en {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  font-weight: 300;
}

.footer-desc {
  font-size: 0.8rem;
  line-height: 1.9;
  color: #5a6a7a;
}

.footer-links h4 {
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  font-size: 0.82rem;
  color: #5a6a7a;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-links ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: #3a4a5a;
}

.footer-demo-note {
  margin-top: 6px;
  font-size: 0.72rem;
  color: #2e3e4e;
  font-weight: 300;
}

/* ========================================
   レスポンシブ（960px以下）
   ======================================== */
@media (max-width: 960px) {
  .header-nav {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ========================================
   レスポンシブ（768px以下）
   ======================================== */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.55rem;
  }

  /* ヘッダー */
  .header-inner {
    height: auto;
    padding: 12px 0;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header-tel {
    font-size: 1.15rem;
  }

  /* ヒーロー */
  .hero {
    padding: 80px 0 70px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta {
    padding: 16px 40px;
    font-size: 1rem;
  }

  .btn-hero-tel {
    font-size: 0.95rem;
    padding: 12px 24px;
  }

  /* 実績 */
  .stats-grid {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;
    padding: 28px 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat-num {
    font-size: 2.4rem;
  }

  /* お悩み */
  .worries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* サービス */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* 選ばれる理由 */
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* 料金 */
  .pricing-table th,
  .pricing-table td {
    padding: 14px 16px;
    font-size: 0.85rem;
  }

  /* 所長 */
  .about-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .about-photo-wrap {
    width: 100%;
  }

  .about-photo-img {
    width: 200px;
    height: 240px;
  }

  /* アクセス */
  .access-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 1.65rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* フッター */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .worries-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    flex: 0 0 100%;
  }

  .hero-title {
    font-size: 1.65rem;
  }
}
