body {
  margin: 0;
  padding-top: 100px;
  /* ヘッダーの高さ分のパディングを追加 */
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  overflow-x: hidden;
}


/* ページ全体のスクロールパディング設定 */
html {
  scroll-padding-top: 80px;
  /* アンカーリンクのジャンプ位置に20pxの余白を設定 */
  scroll-behavior: smooth;
  /* スムーズスクロールを有効化 */
}

.for-sp {
  display: none;
}

/* =============================================
 * ヘッダー共通スタイル（header.php用）
 * - ロゴ
 * - ナビゲーション
 * - サブメニュー
 * - お問い合わせボタン
 * ============================================= */

/* ヘッダー全体のスタイル */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  background: var(--main-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 0 max(10px, min(20px, 2vw));
  /* 画面サイズに応じて余白を調整 */
  box-sizing: border-box;
  gap: 10px;
  /* 要素間の最小間隔を確保 */
  position: fixed;
  /* 画面上部に固定 */
  top: 0;
  /* 上端に配置 */
  left: 0;
  /* 左端に配置 */
  z-index: 1000;
  /* 他の要素より前面に表示 */
}

/* ロゴ部分 */
.header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 100px;
  /* 最小幅を少し小さく */
  max-width: min(180px, 20vw);
  /* 画面幅に応じて最大幅を制限 */
}

.header__logo a {
  display: flex;
  height: 100%;
  align-items: center;
  width: 100%;
  /* 親要素いっぱいに広げる */
}

.header__logo-image {
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: clamp(10px, 2vw, 15px) 0;
  /* パディングを画面サイズに応じて調整 */
  box-sizing: border-box;
}

/* ナビゲーション */
.header__nav {
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: max(5px, min(20px, 2vw));
  flex: 1;
  justify-content: flex-end;
}

.header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  align-items: center;
  gap: max(2px, min(5px, 0.5vw));
  flex-wrap: nowrap;
}

.header__nav-item {
  position: relative;
  padding: 0 max(5px, min(10px, 1vw));
  text-align: center;
  display: flex;
  align-items: center;
  flex-shrink: 1;
}

/* 区切り線（垂直線） */
.header__nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  width: 1px;
  background-color: #fff;
}

.header__nav-item a {
  font-size: clamp(0.8rem, 0.7vw + 0.5rem, 1.1rem);
  /* 文字サイズの範囲を調整 */
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: 5px;
  transition: font-size 0.3s ease;
  white-space: nowrap;
  /* 文字の折り返しを防止 */
}

.header__nav-item a:hover,
.header__nav-item a:focus,
li.current a {
  color: #333;
  border-radius: 6px;
  transform: scale(1.06);
  transition: transform 0.2s;
  text-decoration: none;
}

.current {
  text-align: center;
  font-weight: 500;
}

.header__nav-item a.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

/* ドロップダウンメニュー */
.header__nav-item--has-children {
  position: relative;
}

.header__submenu {
  position: static;
  transform: none;
  background: transparent;
  box-shadow: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.header__nav-item--has-children.is-open>.header__submenu {
  max-height: 500px;
  /* 十分な高さを設定 */
}

.header__submenu li {
  border-bottom: none;
  background-color: rgba(255, 255, 255, 0.1);
}

.header__submenu li a {
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1rem;
  position: relative;
  padding-left: 45px;
  /* 左側にインデントを追加 */
  display: block;
}

/* サブメニューの左側に点線を追加 */
.header__submenu li a::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 50%;
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.header__submenu li a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #333;
}

.header__submenu li a:hover::before {
  background-color: #333;
}

/* 三角形を非表示 */
.header__submenu::before,
.header__submenu::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  pointer-events: none;
}

/* 三角形の影 */
.header__submenu::before {
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  bottom: calc(100% - 1px);
}

/* 三角形の本体 */
.header__submenu::after {
  border-width: 0 7px 7px 7px;
  border-color: transparent transparent #fff transparent;
}

/* モバイルサイズでのみ三角形を非表示 */
@media (max-width: 1079px) {

  .header__submenu::before,
  .header__submenu::after {
    display: none;
  }

  .header__nav-item {
    height: 100%;
  }
}

/* アコーディオンのタイトル部分 */
.header__nav-item--has-children>a {
  padding-right: 50px;
  border-bottom: none;
  position: relative;
}

/* ＋アイコンの基本スタイル */
.header__nav-item--has-children>a::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: none;
  /* PCサイズでは非表示 */
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
}

/* アコーディオンが開いているときの×アイコン */
.header__nav-item--has-children.is-open>a::after {
  content: '×';
  font-size: 16px;
  line-height: 24px;
}

/* モバイルサイズでのアイコン表示 */
@media (max-width: 1079px) {
  .header__nav-item--has-children>a::after {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* アコーディオンが開いているときのアイコンの回転 */
  .header__nav-item--has-children.is-open>a::after {
    transform: translateY(-50%) rotate(180deg);
  }
}

/* スマートフォンサイズでの調整 */
@media (max-width: 480px) {
  .header {
    padding: 0 15px;
  }

  .header__nav {
    padding: 20px 15px;
  }

  .header__nav-item a {
    font-size: 1.1rem;
    padding: 15px 10px;
  }

  .header__submenu li a {
    padding: 12px 25px 12px 35px;
    font-size: 1rem;
  }

  .header__submenu li a::before {
    left: 20px;
  }

  .header__nav-item--contact .header__contact-button {
    font-size: 1.1rem;
    padding: 12px 30px;
  }
}



/* スマホ・タブレットサイズでの表示制御 */
@media (max-width: 1079px) {
  .header__nav {
    display: block !important;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: var(--main-color);
    padding: 20px 20px;
    /* 上下のパディングを30pxから20pxに減らす */
    box-sizing: border-box;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: -1;
  }

  .header__nav.is-active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 999;
  }

  /* ハンバーガーメニューボタン */
  .header__menu-button {
    display: none;
    width: 100px;
    height: 70px;
    position: relative;
    cursor: pointer;
    margin-left: 30px;
    background: transparent;
    border: none;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
  }

  /* メニューボタンの線のスタイル */
  .header__menu-button span {
    display: block;
    width: 42px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    position: absolute;
    left: 29px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  /* 上の線 */
  .header__menu-button span:nth-child(1) {
    top: 20px;
  }

  /* 下の線 */
  .header__menu-button span:nth-child(2) {
    top: 35px;
  }

  /* menuテキスト */
  .header__menu-button::after {
    content: 'menu';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1rem;
    text-transform: lowercase;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backface-visibility: hidden;
  }

  /* お問い合わせボタンの表示制御 */
  .header__nav-item--contact {
    display: block;
    /* ナビゲーション内のお問い合わせボタンを表示 */
  }

  .header__contact {
    display: none;
    /* 右側のお問い合わせボタンを非表示 */
  }


  /* リンクのスタイル調整 */
  .header__nav-item a {
    display: block;
    padding: 10px 20px;
    /* パディングを15pxから10pxに減らす */
    width: 100%;
    box-sizing: border-box;
    font-size: 1.4rem;
    /* フォントサイズを2remから1.4remに減らす */
  }

  /* サブメニューのスタイル調整 */
  .header__submenu {
    position: static;
    width: 100%;
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
  }

  .header__submenu li {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .header__submenu li a {
    padding: 8px 40px;
    /* パディングを15pxから8pxに減らす */
    font-size: 1.2rem;
    /* フォントサイズを調整 */
  }

  /* お問い合わせボタンのスタイル */
  .header__nav-item--contact {
    margin-top: 15px;
    /* マージンを20pxから15pxに減らす */
  }

  .for-pc {
    display: none;
  }
}

/* お問い合わせボタン */
.header__contact {
  flex: 0 0 auto;
  /* 固定サイズに */
  margin-left: auto;
  /* 右寄せ */
}

.header__contact-button {
  font-size: clamp(0.8rem, 0.7vw + 0.5rem, 1.1rem);
  /* 文字サイズの範囲を調整 */
  font-weight: bold;
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  padding: clamp(6px, 0.8vw + 4px, 10px) clamp(12px, 1.5vw + 8px, 20px);
  /* パディングの範囲を調整 */
  border-radius: 10px;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.header__contact-button:hover {
  background-color: #e46c5a;
  color: #fff;
  transition: background 0.2s;
}

/* 共通のセクションタイトルスタイル */
.section-title {
  font-weight: 500;
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.2;
  text-align: center;
  margin: 0 0 10px;
  color: #000;
  position: relative;
  z-index: 1;
}

.section-title-line {
  width: 100px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 10px auto 30px;
  position: relative;
  z-index: 1;
}

/* ===============================================
// Scroll to Top Button
// =============================================== */
.page-top-button {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background-color: #fff;
  border: 5px solid #7ab8a6;
  color: #7ab8a6;
  border-radius: 50%;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  z-index: 999;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s, opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.page-top-button.is-active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  .page-top-button:hover {
    background-color: #7ab8a6;
    color: #fff;
    border-color: #7ab8a6;
  }

  .page-top-button:hover .page-top-button__text {
    color: #fff;
  }

  .page-top-button:hover .page-top-button__arrow svg polyline {
    stroke: #fff;
  }
}

.page-top-button__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -5px;
  margin-bottom: 2px;
}

.page-top-button__arrow svg {
  display: block;
  width: 28px;
  height: 18px;
}

.page-top-button__text {
  font-size: 0.85rem;
  color: #7ab8a6;
  margin-top: 2px;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: color 0.3s;
}





/* =============================================
 * 共通ボタンスタイル（button-faq.php, button-price.php用）
 * - 基本レイアウト
 * - アイコン
 * - タイトル
 * - 説明文
 * - ホバーエフェクト
 * ============================================= */

/* ボタンの基本スタイル */
.service-button {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  width: 100%;
}

.service-button:hover {
  transform: translateY(3px);
}

.service-button__inner {
  background: #fff;
  border-radius: 10px;
  padding: clamp(15px, 2vw, 20px);
  box-shadow: 0 5px 0 var(--main-color);
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 20px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  min-height: 70px;
  max-height: 70px;
  /* 必要に応じて調整 */
}

/* アイコン部分 */
.service-button__icon {
  flex: 0 0 clamp(60px, 8vw, 75px);
  width: clamp(60px, 8vw, 75px);
  height: clamp(60px, 8vw, 75px);
  margin-right: 0;
}

.service-button__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* テキスト部分 */
.service-button__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-height: 48px;
  /* 1行でも2行でも高さが揃うように調整 */
}

.service-button__title {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: bold;
  margin: 0 0 clamp(4px, 1vw, 8px);
  color: #000;
}

.service-button__description {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  margin: 0;
  color: #333;
  line-height: 1.6;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

/* 料金ボタン特有のスタイル */
.service-button__description br {
  display: none;
}

@media (min-width: 769px) {
  .service-button__description br {
    display: inline;
  }
}

.service-button--header .service-button__icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}

.service-button:hover .service-button__inner {
  box-shadow: 0 3px 0 var(--main-color);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .service-button__inner {
    padding: 12px 15px;
    gap: 12px;
  }

  .service-button__icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }

  .service-button__title {
    font-size: 1.1rem;
    margin: 0 0 4px;
  }

  .service-button__description {
    font-size: 0.9rem;
    min-height: 38px;
  }

  .for-sp {
    display: block;
  }

}

@media (max-width: 480px) {
  .service-button__inner {
    padding: 10px 12px;
    gap: 10px;
  }

  .service-button__icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
  }

  .service-button__title {
    font-size: 1rem;
    margin: 0 0 2px;
  }

  .service-button__description {
    font-size: 0.85rem;
    min-height: 30px;
  }

  .main-services {
    flex-direction: column;
  }
}

.button--category-link {
  background-color: #FFFFFF;
  /* Figma: #FFFFFF */
  border: 1px solid #000000;
  color: #000000;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 80%;
  /* 親要素に対して幅100%にするか、max-contentなど検討 */
  min-width: 280px;
  /* Figmaの見た目に合わせて最小幅を設定 */
  text-align: left;
  /* ボタン内のテキストを左揃え */
  padding: 15px 20px;
  /* パディング調整 */
}

.button--category-link:hover {
  background-color: var(--main-color);
  color: #FFFFFF;
  border-color: var(--main-color);
}




/* =============================================
 * フッター共通スタイル（footer.php用）
 * - ロゴ
 * - SNSアイコン
 * - 会社情報
 * - ナビゲーション
 * - コピーライト
 * ============================================= */

/* フッター全体 */
.footer {
  background-color: var(--main-color);
  color: #FFFFFF;
  padding: 40px 0 0;
}

.footer__inner {
  margin: 0 auto;
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

/* 1行目: ロゴとSNS */
.footer__top-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 60px;
}

.footer__logo {
  max-width: 160px;
  flex-shrink: 0;
}

.footer__logo-image {
  width: 100%;
  height: auto;
  display: block;
}

/* SNSセクション (右寄せ) */
.footer__sns {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__sns-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 15px;
  text-align: center;
}

.footer__sns-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer__sns-item a {
  display: block;
}

.footer__sns-icon {
  width: 90px;
  height: 90px;
  display: block;
}

/* 2行目: 会社情報 */
.footer__info {
  width: 100%;
}

.footer__info p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #FFFFFF;
  margin: 0;
}

.footer__address {
  margin-bottom: 8px;
  text-align: center;
}

/* 営業時間と定休日を囲む新しいpタグ用のスタイル */
.footer__contact-details {
  text-align: center;
  margin-bottom: 8px;
}

.footer__hours,
.footer__holiday {
  display: inline-block;
}

.footer__hours {
  margin-right: 35px;
}

/* 3行目: フッターナビゲーション */
.footer__nav {
  width: 100%;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer__nav-item a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

/* ホバー時の下線アニメーション */
.footer__nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #FFFFFF;
  transition: width 0.3s ease;
}

.footer__nav-item a:hover {
  color: #333;
}

.footer__nav-item a:hover::after {
  width: 100%;
}

/* コピーライト */
.footer__copyright {
  background-color: #FFFFFF;
  padding: 15px 0;
  text-align: center;
}

.footer__copyright p {
  font-size: 0.75rem;
  color: #333333;
  margin: 0;
  letter-spacing: 0.05em;
}

/* レスポンシブ対応（768px以下） */
@media (max-width: 768px) {
  .footer {
    padding-top: 30px;
  }

  .footer__main {
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer__top-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer__logo {
    max-width: 200px;
  }

  .footer__sns {
    text-align: center;
  }

  .footer__sns-list {
    justify-content: center;
  }

  .footer__info p {
    font-size: 0.8125rem;
  }

  /* ナビメニューを非表示に */
  .footer__nav {
    display: none;
  }

  .footer__copyright {
    padding: 10px 0;
  }

  .footer__copyright p {
    font-size: 0.6875rem;
  }
}

@media (max-width: 480px) {
  .footer__sns-icon {
    width: 60px;
    height: 60px;
  }

  .footer__sns-title {
    font-size: 1.2rem;
  }

  .footer__top-row {
    gap: 0;
  }

}

/* =============================================
 * 共通ページヘッダー（page-header-service-taxi.php用）
 * - メインコンテンツ（アイコン・タイトル）
 * - サブボタン
 * - レスポンシブ対応
 * ============================================= */

/* ヘッダー全体のレイアウト */
.page-header-service-taxi {
  padding: clamp(20px, 4vw, 30px) 0;
  color: #fff;
  background-color: var(--sub-color);
}

.page-header-service-taxi__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* メインコンテンツ（左側）のレイアウト */
.page-header-service-taxi__main-content {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.page-header-service-taxi__title-area {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 30px);
  min-width: 0;
}

/* アイコン */
.page-header-service-taxi__icon {
  flex: 0 0 clamp(120px, 20vw, 250px);
  width: clamp(120px, 20vw, 250px);
  height: clamp(120px, 20vw, 250px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
}

.page-header-service-taxi__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* タイトル */
.page-header-service-taxi__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: bold;
  margin: 0;
  position: relative;
  padding-bottom: clamp(15px, 2vw, 20px);
  color: #333;
  line-height: 1.3;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  min-width: 0;
  width: 100%;
  display: block;
}

.page-header-service-taxi__title::after {
  content: "";
  display: block;
  width: clamp(60px, 8vw, 80px);
  height: 5px;
  background-color: var(--accent-color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

/* サブボタン（右側）のレイアウト */
.page-header-service-taxi__sub-buttons {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 2vw, 20px);
  align-items: center;
  margin-left: clamp(15px, 3vw, 30px);
}

/* サブボタンのスタイル調整 */
.page-header-service-taxi__sub-buttons .service-button {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .page-header-service-taxi__inner {
    flex-direction: column;
    gap: 20px;
  }

  .page-header-service-taxi__title-area {
    justify-content: center;
  }

  .page-header-service-taxi__sub-buttons {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===============================================
// 共通ヘッダー（FAQ・医療福祉関係者ページ用）
// - アイコン・タイトル・ボタンの横並びレイアウト
// - クリーム色背景
// - レスポンシブ対応
// =============================================== */
.page-header-common {
  background-color: var(--sub-color);
  padding: clamp(20px, 4vw, 30px) 0;
  text-align: center;
}

.page-header-common__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
}

.page-header-common__main-content {
  display: flex;
  align-items: center;
  text-align: left;
  flex-grow: 1;
  min-width: 0;
}

.page-header-common__title-area {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 30px);
  min-width: 0;
}

.page-header-common__icon {
  flex: 0 0 clamp(120px, 20vw, 250px);
  width: clamp(120px, 20vw, 250px);
  height: clamp(120px, 20vw, 250px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.page-header-common__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-header-common__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1.3;
  position: relative;
  padding-bottom: clamp(10px, 1.5vw, 15px);
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}

.page-header-common__title::after {
  content: "";
  display: block;
  width: clamp(60px, 8vw, 80px);
  height: 5px;
  background-color: var(--accent-color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.page-header-common__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-left: 30px;
  flex-shrink: 0;
}

.page-header-common__buttons .service-button {
  width: 100%;
  min-width: 280px;
  max-width: 350px;
}

.page-header-common__buttons .service-button__inner {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: left;
}

.page-header-common__buttons .service-button__title {
  color: #333333;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.page-header-common__buttons .service-button__description {
  color: #333333;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .page-header-common__inner {
    flex-direction: column;
    gap: 20px;
  }

  .page-header-common__main-content {
    flex-direction: column;
    text-align: center;
  }

  .page-header-common__title-area {
    flex-direction: column;
  }

  .page-header-common__buttons {
    margin-left: 0;
    width: 60%;
    align-items: center;
  }

  .page-header-common__buttons .service-button {
    max-width: 300px;
  }

}

/* ===============================================
// page-service-taxi.php (福祉タクシーページ)
// "こんなときにご利用いただけます"セクション
// =============================================== */
.service-use-cases {
  padding: 60px 0;
}

/* site-innerでラップして中央揃えと最大幅を設定 */
.service-use-cases>.site-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.service-use-cases__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  text-align: center;
}

.service-use-cases__title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0 10px 0 0;
  display: flex;
  align-items: center;
}

.service-use-cases__title-icon {
  width: 32px;
  height: 32px;
}

.service-use-cases__title-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-use-cases__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* アイテム間の隙間を調整 */
  justify-content: space-between;
  /* 均等配置に戻す */
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-use-cases__item {
  background-color: #fff;
  border: 1px solid var(--main-color);
  /* 緑色の枠線に戻す */
  border-radius: 60px 60px 10px 10px;
  /* 特徴的な角丸に戻す */
  padding: 30px 20px;
  /* パディングを以前の値に戻す */
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* 影は維持 */
  flex-basis: calc(25% - 15px);
  /* 4列表示の場合 (gapを考慮) */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* 内容を上から配置に戻す */
}

.service-use-cases__item-icon {
  width: 180px;
  /* アイコンサイズを以前の値に戻す */
  height: 150px;
  /* アイコンの高さを以前の値に戻す */
  margin-bottom: 25px;
  /* アイコンとタイトルの間隔を以前の値に戻す */
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-use-cases__item-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.service-use-cases__item-title {
  font-size: 1.5rem;
  /* タイトルサイズを以前の値に戻す */
  font-weight: 500;
  /* フォントウェイトを以前の値に戻す */
  color: #333;
  line-height: 1.4;
  margin: 0 0 10px 0;
  /* 下マージン追加 */
}

.service-use-cases__item-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* レスポンシブ対応 (900px以下で2列表示など) */
@media (max-width: 900px) {

  /* 仮のブレークポイント */
  .service-use-cases__list {
    justify-content: space-around;
    /* 中央寄りに */
  }

  .service-use-cases__item {
    flex-basis: calc(50% - 10px);
    /* 2列表示 (gapの半分を引く) */
    margin-bottom: 20px;
    /* アイテム間のマージン */
    border-radius: 40px 40px 10px 10px;
    /* 少し角丸を調整 */
    padding: 25px 15px;
  }

  .service-use-cases__item-icon {
    width: 150px;
    height: 120px;
  }

  .service-use-cases__item-title {
    font-size: 1.3rem;
  }

}

@media (max-width: 500px) {

  /* スマホ */
  .service-use-cases__item {
    flex-basis: 45%;
    /* 1列表示 */
    border-radius: 30px 30px 10px 10px;
    /* さらに角丸を調整 */
    padding: 20px;
  }

  .service-use-cases__item-icon {
    width: 120px;
    /* アイコンサイズ調整 */
    height: 100px;
    /* アイコン高さ調整 */
  }

  .service-use-cases__item-title {
    font-size: 1rem;
    /* タイトルサイズ調整 */
  }

  .service-use-cases__item-description {
    font-size: 0.9rem;
    /* 説明文のフォントサイズ調整 */
  }
}

/* ==========================================================================
   ご利用の手順 (Service Flow)
   ========================================================================== */
.service-flow {
  padding: 30px 0;
  /* 上下の余白を減らす */
  /* 必要に応じて背景色などを設定 */
}

.service-flow__title {
  text-align: center;
  margin-bottom: 20px;
  /* 下の余白を減らす */
  font-size: 2.5rem;
  color: #333;
  position: relative;
}

.service-flow__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0px;
  /* ステップ間のスペースを詰める */
}

.service-flow__item {
  position: relative;
  width: 1000px;
  /* 横幅を1000pxに設定 */
  max-width: 100%;
  /* 親要素の幅を超えないようにする */
  padding: 0;
  box-sizing: border-box;
  /* text-align: center; は内部要素がflexで配置されるため、不要であれば削除検討 */
}

.service-flow__item-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  /* 長方形と三角形を縦に並べるため */
  flex-direction: column;
  /* 縦積み */
}

.service-flow__item-background-rect {
  height: 150px;
  /* 高さを150pxに減らす */
  /* flex-grow: 1; を削除 */
  /* min-height: 0; を削除 */
}

.service-flow__item-background-rect svg {
  display: block;
  width: 100%;
  height: 100%;
  /* 親要素(.service-flow__item-background-rect)いっぱいに広がる */
}

.service-flow__item-background-triangle {
  /* position: absolute; flexアイテムになるので不要に */
  /* bottom: 0; flexアイテムになるので不要に */
  /* left: 0; flexアイテムになるので不要に */
  /* width: 100%; flexアイテムになるので不要に */
  line-height: 0;
  flex-shrink: 0;
  /* 三角形が縮まないようにする */
}

.service-flow__item-background-triangle svg {
  width: 100%;
  height: auto;
  max-height: 20px;
  /* 三角形の最大の高さを20pxに制限 */
  display: block;
}

.service-flow__item-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  display: flex;
  flex-direction: row;
  /* アイコンエリアと詳細エリアを横並び */
  align-items: flex-start;
  /* 上揃え */
  gap: 20px;
  /* アイコンエリアと詳細エリアの間隔 */
}

.service-flow__item-visual {
  /* アイコンを囲むdivのスタイル */
  flex-shrink: 0;
  /* アイコンが縮まないように */
  /* 必要に応じてマージンなどを調整 */
}

.service-flow__item-details {
  /* ヘッダーと説明文を縦に並べるラッパー */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* 残りのスペースを埋める */
  gap: 10px;
  /* ヘッダーと説明文の間隔 */
  align-items: flex-start;
  /* ヘッダー(inline-flex)を左寄せにする */
}

.service-flow__item-header {
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 15px;
  /* 少しパディングを調整 */
  display: inline-flex;
  /* コンテンツの幅に合わせる */
  align-items: center;
  gap: 10px;
  /* width: 100%; を削除 */
  box-sizing: border-box;
}

.service-flow__step-number {
  font-size: 1.1rem;
  /* 少し調整 */
  font-weight: bold;
  color: #8CD2BC;
  /* 色を変更 */
  white-space: nowrap;
}

.service-flow__header-divider {
  border: none;
  border-top: 1px dashed #8CD2BC;
  /* 色を変更 */
  margin: 0;
  /* 上下マージンをリセット（gapで管理） */
  width: 100%;
  /* 親要素の幅いっぱいに広がる */
}

.service-flow__step-title-text {
  font-size: 1.1rem;
  /* 少し調整 */
  font-weight: bold;
  color: #8CD2BC;
  /* 色を変更 */
  white-space: nowrap;
  text-align: left;
  /* タイトルは左寄せのまま */
}

.service-flow__item-text {
  /* タイトル・区切り線・説明文を囲むdivのスタイル */
  flex-grow: 1;
  /* 残りのスペースをテキストエリアが取る */
  text-align: left;
  /* テキストを左寄せに */
  /* margin-top: 10px; を削除 */
}

.service-flow__item-icon {
  width: 150px;
  /* アイコンサイズを背景に合わせる */
  height: 150px;
  /* アイコンサイズを背景に合わせる */
}

.service-flow__item-title {
  font-size: 1.5rem;
  color: #8CD2BC;
  /* タイトルの色を変更 */
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: left;
}

.service-flow__item-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
  /* 説明文も左寄せ */
  margin-top: 0;
  /* pタグのデフォルトのmargin-topをリセット */
  margin-bottom: 0;
  /* ついでにmargin-bottomもリセット（必要に応じて） */
}

.service-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  top: -20px;
  /* 上への移動量を少し減らす */
}

.service-flow__arrow img {
  width: 15px;
  /* 矢印のサイズを大きくする */
  height: auto;
}

/* レスポンシブ対応（必要に応じて） */
@media (max-width: 900px) {

  /* 仮のブレークポイント */
  .service-flow__list {
    gap: 20px;
  }

  .service-flow__item {
    width: 90%;
    max-width: 450px;
    /* レスポンシブ時の最大幅も広げる */
  }

  .service-flow__item-content {
    flex-direction: column;
    /* スマホではアイコンとテキストを縦積みに戻す */
    align-items: center;
    /* 中央揃え */
    text-align: center;
    /* 全体的に中央揃え */
  }

  .service-flow__item-text {
    text-align: center;
    /* スマホではテキストも中央揃え */
  }

  /* .service-flow__item-title,
  .service-flow__item-description {
    text-align: center;
  }
 */
  .service-flow__item-divider {
    margin: 10px auto;
    /* スマホでは中央揃え */
    width: 80%;
    /* 少し短く */
  }

  .service-flow__arrow {
    margin: 10px 0;
    /* スマホでのマージン調整 */
  }

  .service-flow__item-details {
    align-items: center;
  }

}

.service-flow__item-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -20px;
  /* アイコンのはみ出しを少し減らす */
  position: relative;
  z-index: 1;
}

.service-flow__subtitle {
  text-align: center;
}

@media (hover: hover) {

  /* ホバー時のエフェクト */
  .header__menu-button:hover {
    transform: translateY(-2px);
  }

  .header__menu-button:hover span {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background-color: #333;
  }

  .header__menu-button:hover::after {
    color: #333;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
}


/* アクティブ時の状態 */
.header__menu-button.is-active span:nth-child(1) {
  top: 28px;
  transform: rotate(45deg);
  background-color: #333;
}

.header__menu-button.is-active span:nth-child(2) {
  top: 28px;
  transform: rotate(-45deg);
  background-color: #333;
}

.header__menu-button.is-active::after {
  content: 'close';
  color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 1079px) {
  .header__nav {
    display: block !important;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: var(--main-color);
    padding: 20px 20px;
    box-sizing: border-box;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: -1;
  }

  .header__nav.is-active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 999;
  }

  .header__menu-button {
    display: flex !important;
  }

  /* ナビゲーションリストのレイアウト */
  .header__nav-list {
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    gap: 0;
  }

  /* ナビゲーションアイテムのスタイル */
  .header__nav-item {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header__nav-item:last-child {
    border-bottom: none;
  }

  /* 区切り線を非表示 */
  .header__nav-item:not(:last-child)::after {
    display: none;
  }


  /* お問い合わせボタンのスタイル */
  .header__nav-item--contact {
    padding-bottom: 120px;
  }

  .header__nav-item--contact a {
    background-color: var(--accent-color);
    border-radius: 5px;
    text-align: center;
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  .for-pc {
    display: none;
  }
}

/* スマートフォンサイズでの追加調整 */
@media (max-width: 480px) {
  .header {
    padding: 0 15px;
  }

  .header__nav {
    padding: 20px 15px;
  }

  .header__nav-item a {
    font-size: 1.1rem;
    padding: 15px 10px;
  }

  .header__submenu li a {
    padding: 12px 25px 12px 35px;
    font-size: 1rem;
  }

  .header__submenu li a::before {
    left: 20px;
  }

  .header__nav-item--contact .header__contact-button {
    font-size: 1.1rem;
    padding: 12px 30px;
  }
}

/* PCサイズでのヘッダーナビゲーション */
@media (min-width: 1080px) {
  .header__nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    height: 100%;
    padding: 0;
    overflow: visible;
    pointer-events: auto;
  }

  .header__nav-list {
    flex-direction: row;
    gap: 20px;
  }

  .header__nav-item {
    width: auto;
    border-bottom: none;
    padding: 0 max(8px, min(15px, 1.2vw));
  }

  .header__nav-item a {
    font-size: clamp(0.8rem, 0.7vw + 0.5rem, 1.1rem);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    padding: 5px;
    transition: font-size 0.3s ease;
    white-space: nowrap;
  }

  /* サブメニュー（ドロップダウン）のスタイル */
  .header__nav-item--has-children {
    position: relative;
  }

  .header__submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 180px;
    max-height: none;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: block;
  }

  /* 三角形を作成 */
  .header__submenu::before,
  .header__submenu::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    pointer-events: none;
    display: block;
  }

  /* 三角形の影 */
  .header__submenu::before {
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  }

  /* 三角形の本体 */
  .header__submenu::after {
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #fff transparent;
  }

  .header__nav-item--has-children:hover .header__submenu {
    opacity: 1;
    visibility: visible;
  }

  .header__submenu li {
    border: none;
    background: none;
    list-style: none;
  }

  .header__submenu li a {
    color: #333;
    padding: 10px 20px;
    font-size: 0.9rem;
    text-align: left;
    display: block;
    text-shadow: none;
  }

  /* サブメニューの左側の点を非表示 */
  .header__submenu li a::before {
    display: none;
  }

  .header__menu-button {
    display: none !important;
  }

  /* お問い合わせボタンの表示制御 */
  .header__nav-item--contact {
    display: none;
    /* ナビゲーション内のお問い合わせボタンを非表示 */
  }

  .header__contact {
    display: block;
    /* 右側のお問い合わせボタンを表示 */
  }
}

/* メディアクエリの調整 */
@media (min-width: 768px) and (max-width: 1080px) {
  .header__nav-item br {
    display: none;
    /* 改行を無効化 */
  }

  .header__nav-item {
    padding: 0 max(3px, min(8px, 0.8vw));
    /* パディングをさらに調整 */
  }

  .header__nav-list {
    gap: max(1px, min(3px, 0.3vw));
    /* 間隔をさらに調整 */
  }
}

/* 1080px以上のサイズでの調整 */
@media (min-width: 1081px) {
  .header__nav-item {
    padding: 0 max(8px, min(15px, 1.2vw));
  }

  .header__nav-list {
    gap: max(3px, min(8px, 0.8vw));
  }
}

/* ハンバーガーメニュー内の追加情報エリア */
.header__nav-info {
  padding: 20px;
  /* パディングを30pxから20pxに減らす */
  margin-top: 20px;
  /* マージンを30pxから20pxに減らす */
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.header__nav-hours,
.header__nav-holiday {
  margin-bottom: 15px;
  /* マージンを20pxから15pxに減らす */
}

.header__nav-hours-title,
.header__nav-holiday-title,
.header__nav-sns-title {
  font-size: 0.9rem;
  /* フォントサイズを1remから0.9remに減らす */
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px;
  /* マージンを8pxから6pxに減らす */
}

.header__nav-hours-text,
.header__nav-holiday-text {
  font-size: 0.85rem;
  /* フォントサイズを0.9remから0.85remに減らす */
  color: #FFFFFF;
  margin: 0;
}

.header__nav-separator {
  margin: 15px 0;
  /* マージンを20pxから15pxに減らす */
}

.header__nav-sns {
  text-align: center;
}

.header__nav-sns-list {
  margin: 10px 0 0;
  /* マージンを15pxから10pxに減らす */
  gap: 15px;
  /* ギャップを20pxから15pxに減らす */
}

.header__nav-sns-icon {
  width: 35px;
  /* サイズを40pxから35pxに減らす */
  height: 35px;
  /* サイズを40pxから35pxに減らす */
}

/* PCサイズでは非表示 */
@media (min-width: 1080px) {
  .header__nav-info {
    display: none;
  }
}

/* リード文 */
.page-lead {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: #333;
  margin: clamp(20px, 4vw, 30px) auto;
  max-width: 1000px;
  padding: 0 20px;
  text-align: center;
}

/* パンくずリストのスタイル */
.breadcrumbs {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumbs a {
  color: var(--main-color);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 5px;
}

.breadcrumbs .breadcrumb_last {
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
}

/* お問い合わせセクション */
.contact-section {
  padding: clamp(40px, 6vw, 60px) 0;
  margin-top: 5rem;
}

.contact-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-section__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 40px);
  color: var(--main-color);
}

.contact-section__description {
  text-align: center;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  margin-bottom: clamp(30px, 4vw, 40px);
  color: #333;
}

.contact-section__methods {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-section__method {
  flex: 1;
  min-width: 280px;
  max-width: 450px;
  width: 100%;
}

.contact-section__method-inner {
  padding: 25px 20px;
  border-radius: 20px;
  text-align: center;
  color: #FFFFFF;
  height: 250px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* PCサイズでのみホバー効果を適用 */
@media (min-width: 769px) {
  .contact-section__method-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  }
}

.contact-section__method-inner--tel {
  background-color: #F29988;
}

.contact-section__method-inner--line {
  background-color: #8CD2BC;
}

.contact-section__method-catchphrase {
  display: inline-block;
  padding: 6px 20px;
  border: 2px solid #FFFFFF;
  border-radius: 100px;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-section__method-catchphrase--tel {
  color: #F29988;
  background-color: #FFFFFF;
}

.contact-section__method-catchphrase--line {
  color: #8CD2BC;
  background-color: #FFFFFF;
}

/* 電話ボタンのスタイル */
.contact-section__tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFFFFF;
  flex: 1;
  transition: all 0.3s ease;
}


.contact-section__tel-icon {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.contact-section__tel-number {
  font-size: 2.2rem;
  font-weight: bold;
}

/* LINEボタンのスタイル */
.contact-section__line-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFFFFF;
  margin-bottom: 15px;
  flex: 1;
  transition: all 0.3s ease;
}


.contact-section__line-icon {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.contact-section__line-text {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
}

.contact-section__tel-reception {
  font-size: 0.9rem;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .contact-section__methods {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-section__method {
    min-width: 250px;
    width: 100%;
  }

  .contact-section__tel-icon,
  .contact-section__line-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }

  .contact-section__tel-number {
    font-size: 1.8rem;
  }

  .contact-section__line-text {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    line-height: 1.4;
  }

  .contact-section__method-inner {
    height: 200px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .contact-section__method {
    min-width: 220px;
  }

  .contact-section__tel-icon,
  .contact-section__line-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }

  .page-lead {
    text-align: start;
  }


}

/* レスポンシブ対応 */
@media (min-width: 769px) and (max-width: 1980px) {
  .contact-section__line-text {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    line-height: 1.4;
  }
}

/* flowアイコンの楕円形影 */
.service-flow__item-icon {
  position: relative;
  z-index: 1;
}

.service-flow__item-icon::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 80%;
  height: 28px;
  background: #F29988;
  opacity: 0.18;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .service-flow__item-icon::before {
    height: 18px;
  }
}

/* flowアイコンの楕円形影（HTML追加用） */
.service-flow__item-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-flow__item-icon-shadow {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 90%;
  height: 40px;
  background: #F29988;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.service-flow__item-icon {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .service-flow__item-icon-shadow {
    height: 14px;
  }
}

@media (pointer: coarse) {
  a {
    -webkit-tap-highlight-color: transparent;
  }
}