/* =============================================================
   CarnaBelle 鍼灸院 LP – style.css
   モバイルファースト / ブレークポイント 768px
   ============================================================= */

/* ── CSS変数 ─────────────────────────────────────────── */
:root {
  --color-base:            #FFFFFF;
  --color-text-main:       #2A2320;
  --color-text-sub:        #7A7572;
  --color-blue-grey:       #BBC8D2;
  --color-blue-grey-light: #E8EEF1;
  --color-beige-accent:    #C4986A;
  --color-beige-light:     #FAF7F2;
  --color-placeholder:     #E0DAD3;
  --color-border:          #D6CDB8;
  --color-dark:            #2A2320;

  --font-serif: 'Noto Serif JP', 'YuMincho', 'Hiragino Mincho ProN', serif;
  --font-sans:  'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-deco:  'Cormorant Garamond', Georgia, serif;

  --max-width: 1100px;
  --section-pad-sp: 48px 20px;
  --section-pad-pc: 80px 40px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-base);
  color: var(--color-text-main);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.85;
  -webkit-text-size-adjust: 100%;
}

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

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

ul, ol {
  list-style: none;
}

/* ── プレースホルダ画像 ───────────────────────────────── */
.placeholder-img {
  width: 100%;
  background-color: var(--color-placeholder);
  display: block;
}

.placeholder-hero {
  aspect-ratio: 4 / 3;
  background-color: var(--color-blue-grey);
}

.hero-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.director-img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.placeholder-menu {
  aspect-ratio: 4 / 3;
}

.menu-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.placeholder-director {
  aspect-ratio: 2 / 3;
  background-color: #C5D3DB;
  margin-bottom: 12px;
}

.placeholder-interior {
  aspect-ratio: 16 / 9;
}

.placeholder-map {
  width: 100%;
  height: 240px;
  background-color: var(--color-placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text-sub);
  letter-spacing: 0.08em;
}

/* ── 共通セクション ───────────────────────────────────── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad-sp);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--color-text-main);
  text-align: center;
  margin-bottom: 32px;
}

/* ── ボタン ──────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--color-beige-accent);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  min-height: 44px;
  border-radius: 2px;
  text-align: center;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-beige-accent);
  border: 1px solid var(--color-beige-accent);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  min-height: 44px;
  border-radius: 2px;
  text-align: center;
  transition: opacity 0.2s;
}

.btn-secondary:hover {
  opacity: 0.8;
}

/* ── ヘッダー ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--color-base);
  border-bottom: 1px solid var(--color-blue-grey-light);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(42, 35, 32, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-deco {
  font-family: var(--font-deco);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--color-text-main);
}

.logo-sub {
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
}

.site-nav {
  display: none;
}

/* ── ハンバーガーボタン（SP用） ──────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--color-text-main);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* 開いた状態（× 変形） */
.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── SP ドロワーナビ ──────────────────────────────────── */
.site-nav.is-open {
  display: block;
  position: absolute;
  top: 60px; /* ヘッダー高さ */
  left: 0;
  right: 0;
  background-color: var(--color-base);
  border-bottom: 1px solid var(--color-blue-grey-light);
  box-shadow: 0 4px 16px rgba(42, 35, 32, 0.08);
  animation: nav-slide-down 0.22s ease forwards;
  z-index: 99;
}

@keyframes nav-slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-nav.is-open ul {
  display: flex;
  flex-direction: column;
}

.site-nav.is-open ul li a {
  display: block;
  padding: 16px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--color-text-main);
  border-bottom: 1px solid var(--color-blue-grey-light);
}

.site-nav.is-open ul li a:hover {
  background-color: var(--color-beige-light);
}

.site-nav.is-open ul li a.nav-cta {
  color: var(--color-beige-accent);
  font-weight: 500;
}

/* ── オーバーレイ ─────────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(42, 35, 32, 0.35);
  z-index: 98;
}

.nav-overlay.is-open {
  display: block;
}

/* ── ヒーロー (Sec.1) ─────────────────────────────────── */
.hero {
  padding-top: 60px; /* ヘッダー分 */
  background-color: var(--color-base);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-catch {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--color-text-main);
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.hero-sub {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-text-sub);
  letter-spacing: 0.06em;
}

.hero-lead {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text-sub);
}

.hero-price-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.price-label {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text-sub);
  letter-spacing: 0.08em;
  width: 100%;
}

.price-num {
  font-family: var(--font-deco);
  font-weight: 400;
  font-size: 36px;
  color: var(--color-beige-accent);
  line-height: 1;
}

.price-note {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text-sub);
}

.price-tags {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--color-text-sub);
  letter-spacing: 0.04em;
}

/* ── コンセプト (Sec.2) ──────────────────────────────── */
.concept {
  background-color: var(--color-beige-light);
}

.concept-list {
  display: flex;
  flex-direction: column;
}

.concept-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}

.concept-item:first-child {
  border-top: 1px solid var(--color-border);
}

.concept-num {
  font-family: var(--font-deco);
  font-weight: 300;
  font-size: 28px;
  color: var(--color-beige-accent);
  letter-spacing: 0.1em;
  line-height: 1;
}

.concept-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.concept-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-main);
}

/* ── メニュー (Sec.3) ─────────────────────────────────── */
.menu {
  background-color: var(--color-base);
}

.menu-columns {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.menu-col {
  border: 1px solid var(--color-border);
  padding: 28px 24px;
  background-color: var(--color-base);
}

.menu-col-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--color-text-main);
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.menu-plan {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-blue-grey-light);
}

.menu-plan:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}

.plan-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-large {
  font-family: var(--font-deco);
  font-weight: 400;
  font-size: 28px;
  color: var(--color-text-main);
  line-height: 1;
}

.plan-tax {
  font-size: 12px;
  color: var(--color-text-sub);
}

.plan-desc {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.85;
}

.menu-img-wrap {
  margin-top: 20px;
}

/* ── 初めての方へ (Sec.4) ────────────────────────────── */
.flow {
  background-color: var(--color-blue-grey);
}

.flow-title {
  color: var(--color-base);
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.flow-step {
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--color-base);
  position: relative;
}

.flow-step:not(:last-child) {
  margin-bottom: 4px;
}

.step-num {
  font-family: var(--font-deco);
  font-weight: 300;
  font-size: 36px;
  color: rgba(250, 250, 248, 0.6);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.step-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-base);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.step-desc {
  font-size: 14px;
  color: rgba(250, 250, 248, 0.85);
  line-height: 1.85;
}

.flow-anxiety {
  background-color: rgba(250, 250, 248, 0.12);
  padding: 24px;
  margin-bottom: 32px;
}

.anxiety-item {
  padding: 16px 0;
}

.anxiety-item:not(:last-child) {
  border-bottom: 1px solid rgba(250, 250, 248, 0.2);
}

.anxiety-q {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-base);
  margin-bottom: 8px;
}

.anxiety-item p {
  font-size: 14px;
  color: rgba(250, 250, 248, 0.85);
  line-height: 1.85;
}

.flow-cta {
  text-align: center;
}

.menu-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── お客様の声 (Sec.5) ──────────────────────────────── */
.voices {
  background-color: var(--color-beige-light);
}

.voice-list {
  max-width: 720px;
  margin: 0 auto;
}

.voice-item {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--color-border);
}

.voice-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.voice-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-main);
  position: relative;
  padding-left: 20px;
}

.voice-text::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--color-beige-accent);
  position: absolute;
  left: 0;
  top: -8px;
  line-height: 1;
}

.voice-footer {
  margin-top: 12px;
  padding-left: 20px;
}

.voice-name {
  display: block;
  font-size: 13px;
  color: var(--color-text-sub);
  font-style: normal;
  margin-bottom: 4px;
}

.voice-disclaimer {
  font-size: 12px;
  color: var(--color-text-sub);
}

/* ── 院長挨拶 (Sec.6) ─────────────────────────────────── */
.about {
  background-color: var(--color-base);
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-main);
  margin-bottom: 16px;
}

.about-sign {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-text-main);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

/* ── アクセス (Sec.7) ─────────────────────────────────── */
.access {
  background-color: var(--color-beige-light);
}

.access-map {
  margin-bottom: 28px;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.access-address {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.access-tel {
  font-size: 15px;
  margin-bottom: 16px;
}

.access-tel a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text-main);
}

.access-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 15px;
  margin-bottom: 12px;
}

.access-hours dt {
  font-weight: 500;
  color: var(--color-text-main);
}

.access-hours dd {
  color: var(--color-text-main);
}

.access-note {
  font-size: 14px;
  color: var(--color-text-sub);
}

/* ── 予約CTA (Sec.8) ─────────────────────────────────── */
.contact {
  background-color: var(--color-blue-grey);
}

.contact-title {
  color: var(--color-base);
}

.contact-support {
  font-size: 15px;
  color: rgba(250, 250, 248, 0.85);
  text-align: center;
  margin-bottom: 20px;
}

.contact-tel {
  text-align: center;
  margin-bottom: 8px;
}

.contact-tel a {
  font-family: var(--font-deco);
  font-weight: 400;
  font-size: 36px;
  color: var(--color-base);
  letter-spacing: 0.05em;
}

.contact-hours {
  font-size: 13px;
  color: rgba(250, 250, 248, 0.75);
  text-align: center;
  margin-bottom: 28px;
}

.contact-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact .btn-secondary {
  color: var(--color-base);
  border-color: rgba(250, 250, 248, 0.6);
}

/* ── フッター (Sec.9) ─────────────────────────────────── */
.site-footer {
  background-color: var(--color-dark);
  color: var(--color-base);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px 40px;
}

/* FAQ */
.faq-section {
  max-width: 720px;
  margin: 0 auto 48px;
}

.faq-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-base);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item details {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  gap: 12px;
  min-height: 44px;
}

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

summary::marker {
  display: none;
}

.faq-q {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-base);
  line-height: 1.6;
  flex: 1;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  color: var(--color-beige-accent);
  font-family: var(--font-sans);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before {
  content: '+';
  font-size: 20px;
  line-height: 1;
  color: var(--color-beige-accent);
  font-weight: 300;
}

details[open] .faq-icon::before {
  content: '−';
}

.faq-answer {
  padding: 4px 0 20px 0;
}

.faq-answer p {
  font-size: 14px;
  color: rgba(250, 250, 248, 0.8);
  line-height: 1.85;
  padding-left: 16px;
}

/* SNS・コピーライト */
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sns-link {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(250, 250, 248, 0.65);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.sns-link:hover {
  color: var(--color-base);
}

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

.copyright {
  font-size: 12px;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 4px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(250, 250, 248, 0.35);
  line-height: 1.6;
}

/* =============================================================
   PC レイアウト（min-width: 768px）
   ============================================================= */
@media (min-width: 768px) {

  .section-inner {
    padding: var(--section-pad-pc);
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 48px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 36px;
    font-size: 16px;
  }

  /* ヘッダー */
  .hamburger {
    display: none;
  }

  .nav-overlay {
    display: none !important;
  }

  .site-nav {
    display: block;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .site-nav a {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-text-sub);
    letter-spacing: 0.06em;
    transition: color 0.2s;
  }

  .site-nav a:hover {
    color: var(--color-text-main);
  }

  .nav-cta {
    background: var(--color-beige-accent) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 2px;
    font-weight: 500;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* ヒーロー */
  .hero-inner {
    flex-direction: row;
    align-items: center;
    padding: 80px 40px;
    gap: 48px;
  }

  .hero-text {
    flex: 0 0 58%;
    max-width: 58%;
  }

  .hero-image {
    flex: 1;
  }

  .hero-catch {
    font-size: 52px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .price-num {
    font-size: 44px;
  }

  .placeholder-hero {
    aspect-ratio: 3 / 4;
  }

  .hero-img {
    aspect-ratio: 3 / 4;
  }

  /* コンセプト */
  .concept-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    padding: 36px 0;
  }

  .concept-num {
    flex: 0 0 100px;
    font-size: 36px;
    padding-top: 2px;
  }

  .concept-body {
    flex: 1;
  }

  .concept-heading {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .concept-body p {
    font-size: 16px;
  }

  /* メニュー */
  .menu-columns {
    flex-direction: row;
    gap: 28px;
  }

  .menu-col {
    flex: 1;
    padding: 36px 28px;
  }

  .menu-col-title {
    font-size: 22px;
  }

  .price-large {
    font-size: 32px;
  }

  .plan-name {
    font-size: 17px;
  }

  .plan-desc {
    font-size: 15px;
  }

  /* 初めての方へ */
  .flow-steps {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 48px;
  }

  .flow-step {
    flex: 1;
    padding: 0 0 0 20px;
    border-left: 2px solid rgba(250, 250, 248, 0.5);
  }

  .step-num {
    font-size: 48px;
  }

  .step-heading {
    font-size: 18px;
  }

  .step-desc {
    font-size: 14px;
  }

  .flow-anxiety {
    padding: 32px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }

  .anxiety-item {
    padding: 16px 0;
  }

  .anxiety-item:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid rgba(250, 250, 248, 0.2);
    padding-right: 40px;
  }

  .anxiety-q {
    font-size: 16px;
  }

  .anxiety-item p {
    font-size: 15px;
  }

  /* お客様の声 */
  .voices .section-inner {
    max-width: 800px;
  }

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

  /* 院長挨拶 */
  .about-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .about-photo {
    flex: 0 0 36%;
    max-width: 36%;
  }

  .placeholder-director {
    aspect-ratio: 2 / 3;
    margin-bottom: 12px;
  }

  .placeholder-interior {
    aspect-ratio: 16 / 9;
  }

  .about-text {
    flex: 1;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-sign {
    font-size: 16px;
  }

  /* アクセス */
  .placeholder-map {
    height: 320px;
  }

  .access-info {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .access-details {
    flex: 1;
  }

  .access-cta {
    flex: 0 0 auto;
    padding-top: 8px;
  }

  .access-tel a {
    font-size: 24px;
  }

  /* 予約CTA */
  .contact-tel a {
    font-size: 52px;
  }

  .contact-btns {
    flex-direction: row;
    justify-content: center;
  }

  /* フッター */
  .footer-inner {
    padding: 80px 40px 60px;
  }

  .faq-title {
    font-size: 26px;
  }

  .faq-q {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}
