@charset "UTF-8";
/*
Theme Name: ohtani
*/



/* =======================
   Global Theme Variables
======================= */
:root {
    --color-main: #0068b7;      /* ブルー（信頼） */
    --color-accent: #ff7b00;    /* オレンジ（行動喚起） */
    --color-bg: #f5f7fa;
    --color-text: #222;
    --color-muted: #666;
    --color-border: #d9e2ec;
    --radius: 4px;
}

/* =======================
   Base Reset
======================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--color-text);
    background: #fff;
    line-height: 1.8;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

p {
    margin-bottom: 16px;
    color: var(--color-muted);
}

a {
    color: var(--color-main);
    text-decoration: none;
}

section {
    padding: 70px 0;
}

.container {
    width: min(1100px, 90%);
    margin: 0 auto;
}

/* =======================
   Header
======================= */
.header {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo {
    font-size: 20px;
    font-weight: 700;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav a {
    color: var(--color-text);
    font-weight: 500;
}

.nav a:hover {
    color: var(--color-accent);
}

.btn-header {
    background: var(--color-accent);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: var(--radius);
}


/* --- ロゴ --- */
.logo {
  font-weight: 700;
  font-size: 20px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* --- ヘッダー固定（影付き） --- */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 0 40px;
  background: #1F2937; /* 濃紺 */
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
  transition: 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- PCナビ --- */
.nav ul {
  display: flex;
  gap: 24px;
  padding-top: 15px;
}
.nav a {
  color: #243447;
  font-weight: 500;
  transition: opacity .2s;
}
.nav a:hover {
  opacity: 0.7;
}

/* --- ハンバーガー --- */
.hamburger {
  display: flex;
  width: 26px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #243447;
  border-radius: 4px;
}

/* ========== PCナビ ========== */
.nav ul {
  display: flex;
  gap: 28px;
}

.nav ul li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s;
}
.nav ul li a:hover {
  color: #F59E0B; /* アクセント */
}

/* ========== 電話ボタン ========== */
.header-call {
  padding: 8px 14px;
  background: #F59E0B;
  color: #ffffff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
.header-call:hover {
  opacity: 0.85;
}

/* ========== ハンバーガー ========== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

/* ========== SPレイアウト ========== */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 64px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 64px);
    background: #1F2937;
    padding: 40px 20px;
    transition: 0.3s;
  }
  .nav.active {
    right: 0;
  }
  .nav ul {
    flex-direction: column;
    gap: 24px;
  }
  .header-call {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}


/* =============================
   HERO SECTION
============================= */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}

/* 背景画像 */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* オーバーレイ（濃紺透過） */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 41, 55, 0.25); /* #1F2937 55% */
  z-index: 2;
}

/* コンテンツ */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

/* 見出し */
.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 14px;
  color: #fff;
}

/* サブテキスト */
.hero-content p {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 28px;
  color: #dddddd;
}

/* ボタン配置 */
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 黄ボタン */
.btn-primary {
  background: #F59E0B;
  color: #ffffff;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.2s;
}
.btn-primary:hover {
  opacity: 0.85;
}

/* 白枠ボタン */
.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 420px;
  }
  .hero-content h1 {
    font-size: 30px;
  }
  .hero-content p {
    font-size: 16px;
  }
}


.slideshow {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.slideshow .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 表示中のスライド */
.slideshow .slide.active {
    opacity: 1;
}


/* オーバーレイ薄く追加（読みやすくする用） */
.slideshow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    z-index: 1;
}


/* =======================
   Buttons
======================= */
.btn-primary,
.btn-secondary,
.btn-call {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
}

.btn-secondary {
    background: var(--color-main);
    color: #fff;
}

.btn-call {
    background: var(--color-accent);
    color: #fff;
    font-size: 22px;
    padding: 14px 28px;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-call:hover {
    opacity: 0.85;
}

.top-links {
  padding: 60px 20px;
  text-align: center;
}

.link-buttons {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.link-buttons-company {
  text-align: center;
}


.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: #1e40af; /* 青色 */
  color: #fff;
  transition: 0.3s ease;
}

.btn-link:hover {
  background: #1e3a8a;
}

/* スマホ用 */
@media (max-width: 600px) {
  .btn-link {
    width: 100%;
    text-align: center;
  }
}



/* =======================
   Intro
======================= */
.intro {
    background: #f7f9fb;
    padding: 80px 20px;
    text-align: center;
}

.intro h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--main);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.intro h2::after {
    content: "";
    width: 60%;
    height: 3px;
    background: var(--main);
    position: absolute;
    bottom: 0;
    left: 20%;
    border-radius: 2px;
}

.intro p {
    max-width: 840px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.intro-features .feat {
    background: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

@media (max-width: 480px) {
    .intro h2 {
        font-size: 22px;
    }
    .intro-features .feat {
        width: 100%;
        text-align: center;
    }
}



/* =======================
   Service
======================= */
.service {
    padding: 100px 20px;
    background: #FFF;
    text-align: center;
}

.service h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--main);
    margin-bottom: 10px;
}

.service-p{
  margin-bottom: 50px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--main-soft);
    border: 1px solid #d6e6ee;
    border-radius: 14px;
    overflow: hidden;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 18px;
    margin: 16px 0 8px;
    font-weight: 700;
}

.service-card p {
    font-size: 14px;
    padding: 0 14px 18px;
    line-height: 1.6;
    color: #555;
}


/* =======================
   Reason
======================= */
/* Reason Section */
/* === Reason Section === */
/* === Reason Section === */
.reason {
    background: #f7f7f7; /* ← 白から淡グレーへ */
    padding: 80px 20px;
}

.reason h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.reason-list {
    list-style: none;
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.reason-item {
    background: #fff; /* カードは白で浮かせる */
    border-radius: 12px;
    padding: 20px 28px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =======================
   gallery
======================= */

/* reasonの続きとして見せる */
.reason-proof {
  background: #f8f9fb;
  padding: 50px 0 70px;
  text-align: center;
}

.reason-proof-lead {
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #555;
}

/* ギャラリープレビュー */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.gallery-preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

/* ボタン（reasonより少し控えめ） */
.btn-gallery {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid #0b63c6;
  color: #0b63c6;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-gallery:hover {
  background: #0b63c6;
  color: #fff;
}

/* スマホ */
@media (max-width: 768px) {
  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-preview img {
    height: 120px;
  }
}


/* =======================
   insurance
======================= */

/* ========== 保険適用セクション ========== */
.insurance {
  background: #fff;
  padding: 70px 0;
}

.insurance .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.insurance h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 25px;
}

.insurance .lead {
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* 強調ボックス */
.insurance-highlight {
  background: #0a4fa3;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 50px;
}

.insurance-highlight p{
  color: #fff;
}

.highlight-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 見出し */
.insurance h3 {
  font-size: 24px;
  margin: 50px 0 20px;
}

.insurance h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* 手順 */
.insurance-steps {
  padding-left: 20px;
  margin-bottom: 40px;
}

.insurance-steps li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* 保険会社リスト */
.insurance-company {
  margin: 40px 0;
}

.insurance-company-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.insurance-company-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 18px 20px;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.company-name {
  font-weight: bold;
}

.company-tel {
  font-size: 18px;
  font-weight: bold;
  color: #0a4fa3;
  text-decoration: none;
}

.company-tel:hover {
  text-decoration: underline;
}

.insurance-note {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* ケース・保険種別 */
.case-list,
.insurance-type {
  list-style: disc;
  padding-left: 20px;
}

.case-list li,
.insurance-type li {
  margin-bottom: 8px;
}

/* 利用の流れ */
.insurance-flow {
  padding-left: 20px;
  margin-bottom: 40px;
}

.insurance-flow li {
  margin-bottom: 10px;
}

/* 注意書き */
.note {
  font-size: 14px;
  color: #555;
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 40px;
}

/* CTA */
.insurance-cta {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.insurance-cta p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.btn-phone {
  display: inline-block;
  background: #e60023;
  color: #fff;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

.btn-phone:hover {
  opacity: 0.9;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .insurance h2 {
    font-size: 26px;
  }

  .insurance h3 {
    font-size: 22px;
  }

  .insurance-company-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .company-tel {
    font-size: 16px;
  }
}


/* =======================
   Flow
======================= */
/* === Flow Section === */
.flow {
    background: #f7f9fb;
    padding: 80px 20px;
}

.flow h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.flow-cards {
    display: grid;
    gap: 25px;
    max-width: 950px;
    margin: 0 auto;
}

.flow-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f7f9fc;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.flow-card .num {
    width: 36px;
    height: 36px;
    background: var(--accent, #0078ff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.flow-card .title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.flow-card .desc {
    font-size: 0.95rem;
    color: #555;
}

.flow-cta {
    text-align: center;
    margin-top: 40px;
}

.flow-cta .btn-call {
    display: inline-block;
    background: var(--accent, #0078ff);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}


/* =======================
   Area（対応エリア）
======================= */
/* === Area Section === */
.area {
    background: #ffffff;
    padding: 80px 20px;
}

.area h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.area-lead {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #333;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto 20px;
}

.area-tags span {
    background: #fff;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
}

.area-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

.area-map {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.area-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.area-cta {
    text-align: center;
    margin-top: 35px;
}

.area-cta .btn-call {
    display: inline-block;
    background: var(--accent, #0078ff);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}


/* =======================
   price（料金）
======================= */
/* ========= 共通レイアウト ========= */
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 40px 0;
}

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.4;
  font-weight: 600;
}

p, li {
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 15px;
}

/* ========= 料金（トップ用） ========= */

.price-section {
  background: #f8f9fb;
  padding: 60px 0;
}

.price-section .lead {
  margin-bottom: 32px;
  font-size: 15px;
  color: #444;
}

/* カード配置 */
.price-cards {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

/* PCでは横並び */
@media (min-width: 768px) {
  .price-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: #fff;
  border: 1px solid #e3e7ed;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
}

.price-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.price-card .price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0044bb;
}

.price-card .note {
  font-size: 13px;
  color: #777;
}

/* ========= PDF案内 ========= */

.pdf-info {
  background: #eef3ff;
  border-left: 4px solid #3d6cff;
  padding: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #333;
  text-align: center;
}

.pdf-btn {
  display: inline-block;
  background: #3d6cff;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 4px;
  margin-top: 8px;
  font-size: 14px;
  transition: 0.2s;
}

.pdf-btn:hover {
  opacity: 0.85;
}

/* ========= 個別料金ページ ========= */

.detail-price h1 {
  font-size: 26px;
  margin-bottom: 20px;
}

.detail-price h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.detail-price h3 {
  font-size: 16px;
  margin-top: 20px;
}

.detail-price ul {
  padding-left: 18px;
  margin-bottom: 8px;
}

.pdf-block {
  margin: 24px 0;
  background: #eef3ff;
  border-left: 4px solid #3d6cff;
  padding: 16px;
  font-size: 14px;
}

.contact-note {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
}


/* =========================
   FAQ
========================= */

.faq {
  padding: 60px 0;
  background-color: #fff;
}

.faq h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

/* ボタン */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10px;
  font-size: 16px;
  font-weight: 600;
  background: #f7f9fc;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #edf3ff;
}

/* 矢印 */
.faq-question .arrow {
  font-size: 18px;
  transition: transform 0.3s;
}

/* 答え */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 12px 0 18px;
  color: #333;
  line-height: 1.6;
}

/* 開いた状態 */
.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(45deg);
}


/* =========================
   会社概要（小）
========================= */
.company-lite {
    background: #f7f9fb;
    padding: 60px 0;
}

.company-lite h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}

.company-lite ul {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
    line-height: 1.8;
}

.company-lite a {
    font-weight: 600;
}


/* ===============================
   お問い合わせCTA
================================ */
.contact-cta {
    text-align: center;
    background: #0077cc; /* 背景青 */
    color: #fff;
    padding: 60px 20px;
}

.contact-cta h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #fff;
}

.contact-cta .contact-desc {
    font-size: 18px;
    color: #e0f0ff; /* 白系 */
    margin-bottom: 24px;
}

/* ボタン共通 */
.contact-cta .contact-buttons a {
    display: inline-block;
    margin: 8px 12px;
    padding: 14px 28px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    font-size: 16px;
}

/* 電話ボタン */
.contact-cta .btn-phone {
    background: #ff4d4f; /* 赤背景＋白文字 */
    color: #fff;
}

/* メールボタン */
.contact-cta .btn-mail {
    background: #fff;
    color: #0077cc; /* 青文字 */
    border: 2px solid #0077cc;
}

/* LINEボタン */
.contact-cta .btn-line {
    background: #00c300; /* 緑背景 */
    color: #fff;
}

/* ホバー効果 */
.contact-cta .contact-buttons a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.services-cta .container{
  text-align: center;
}

/* =========================
   フッター
========================= */
.footer {
    background: #111;
    color: #ddd;
    padding: 40px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer a {
    color: #ddd;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}


/* ===============================
   丸い電話アイコン（PC版）
================================ */
.floating-call-circle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--color-accent, #e63946);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
  opacity: 0; /* 初期非表示 */
  transition: opacity 0.4s ease, transform 0.2s ease;
}

/* ホバー効果 */
.floating-call-circle:hover {
  transform: scale(1.1);
}

/* スマホ最適化 */
@media (max-width: 768px) {
  .floating-call-circle {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    width: 64px;
    height: 64px;
    font-size: 28px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
  }
}

/* ===============================
   スマホは下中央に固定
================================ */
@media (max-width: 768px) {
    .floating-call-circle {
        bottom: 16px;
        right: 10%;
        transform: translateX(50%);
        width: 64px;
        height: 64px;
        font-size: 28px;
        box-shadow: 0 6px 14px rgba(0,0,0,0.35);
    }
}

/* ===============================
   スマホ最適化
================================ */
@media (max-width: 768px) {
    .floating-call {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        padding: 14px;
        font-size: 18px;
        box-shadow: none;
        text-align: center;
    }
}


/* =======================
   Animation
======================= */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* =======================
   Responsive
======================= */
@media(max-width: 768px) {
    .hero h1 { font-size: 26px; }
    .hero p { font-size: 16px; }
    .btn-call { font-size: 18px; }
}

/* =========================
   スマホUI強化
========================= */

/* セクション間余白 */
section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    section {
        padding: 45px 0;
    }
}

/* タップ領域拡大 */
a, button {
    -webkit-tap-highlight-color: transparent;
}

.contact-buttons a {
    min-width: 180px;
    text-align: center;
    padding: 14px 18px;
    font-size: 1rem;
}

/* 電話リンク強調 */
a[href^="tel"] {
    font-weight: 700;
}

/* テーブル横スクロール（料金表対策） */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-scroll table {
    min-width: 650px;
}

/* 見出し余白 */
h2 {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
}

/* 固定ヘッダー対策 */
body {
    padding-top: 70px;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
}




