@charset "UTF-8";
/*
 * サイト共通の独自スタイルシート (style.scss)
 * * このファイルでは、Bootstrapのデフォルトスタイルを上書きしたり、
 * サイト固有のデザイン（タイムライン、ヒーローセクションなど）を定義します。
 */
/* ==================================================================
 * style.scss (親ファイル)
 * Bootstrap本体はHTML側で読み込む前提
 * ================================================================== */
/* ==================================================================
 * _base.scss (基本スタイル)
 * ================================================================== */
body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f8f9fa;
  /* $gray-100 */
}

/* セクション間のマージン統一 */
.section-padding {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.section-padding-sm {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* 記事本文（.post-body）内の見出しデザイン */
.post-body h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #3d405b;
  padding-left: 1rem;
  border-left: 5px solid #07439c;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.post-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #343a40;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #dee2e6;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
.post-body h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #923203;
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-body h4::before {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  background-color: #923203;
  border-radius: 2px;
  margin-right: 0.5em;
}

/*
==================================================================
画像アスペクト比 共通ヘルパー
==================================================================
*/
.img-aspect-4x3 {
  aspect-ratio: 4/3;
  /* アスペクト比を4:3に強制 */
  -o-object-fit: cover;
     object-fit: cover;
  /* 領域に合わせて画像をトリミング (中央揃え) */
  width: 100%;
  /* 幅を100%に */
  height: auto;
  /* 高さは自動 */
}

.img-aspect-2x1 {
  aspect-ratio: 2/1;
  /* アスペクト比を2:1に強制 */
  -o-object-fit: cover;
     object-fit: cover;
  /* 領域に合わせて画像をトリミング (中央揃え) */
  width: 100%;
  /* 幅を100%に */
  height: auto;
  /* 高さは自動 */
}

/* ==================================================================
 * _layout.scss (レイアウト)
 * ================================================================== */
/* ==================================================================
▼▼▼ グローバルナビ（ヘッダー）のブラッシュアップ ▼▼▼
==================================================================
*/
.navbar {
  /* モバイル用 電話ボタン (d-lg-none) */
}
.navbar .btn-phone-mobile {
  border-radius: 50px; /* 丸くする */
  width: 40px;
  height: 40px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.1rem;
  /* 紺色のアウトライン */
  border-color: #34495e;
  color: #34495e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar .btn-phone-mobile:hover, .navbar .btn-phone-mobile:focus {
  background-color: #34495e;
  color: #fff;
}

.navbar-nav .nav-link {
  font-weight: 700;
  color: #495057;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0.25rem 0;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  background-color: #eef2fa;
  color: #3d405b;
}
.navbar-nav .nav-item.active > .nav-link,
.navbar-nav .nav-item.show > .nav-link,
.navbar-nav .nav-link.active {
  background-color: #eef2fa;
  color: #3d405b;
}
.navbar-nav .dropdown-menu {
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: none;
  margin-top: 0.5rem;
}
.navbar-nav .dropdown-item {
  font-weight: 500;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  width: auto;
}
.navbar-nav .dropdown-item:hover, .navbar-nav .dropdown-item:focus {
  background-color: #eef2fa;
  color: #3d405b;
}
.navbar-nav .dropdown-item.active, .navbar-nav .dropdown-item:active {
  background-color: #3d405b;
  color: #fff;
}
.navbar-nav .btn-primary {
  font-weight: 700;
  background-color: #34495e;
  border-color: #34495e;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar-nav .btn-primary:hover, .navbar-nav .btn-primary:focus {
  background-color: #2c3e50;
  border-color: #2c3e50;
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.navbar-nav .nav-phone-text {
  line-height: 1.3;
}
.navbar-nav .nav-phone-text a {
  text-decoration: none;
}
.navbar-nav .nav-phone-text .fw-bold {
  color: #34495e !important;
}
.navbar-nav .nav-phone-text .small {
  font-size: 0.8rem;
}

/* ▲▲▲ グローバルナビ（ここまで） ▲▲▲ */
/* --------------------------------
 * ページヘッダー
 * -------------------------------- */
.page-header .breadcrumb-item a {
  color: var(--bs-primary); /* Bootstrapのカスタムカラー（リンク色）に合わせる */
}

.page-header .page-title {
  font-weight: 700; /* タイトルの太さを強調 */
}

/* ==================================================================
フッター
==================================================================
*/
.site-footer {
  /* background-color: #3d405b; (HTML側で指定済) */
}
.site-footer .footer-heading {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}
.site-footer .footer-links li {
  margin-bottom: 0.6rem;
}
.site-footer .footer-links a {
  color: #adb5bd;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-footer .footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}
.site-footer .footer-social-icon {
  color: #adb5bd;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-footer .footer-social-icon:hover {
  color: #fff;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#pageTopBtn {
  border-radius: 20px;
}

/* パンくずリスト */
.breadcrumb {
  margin-bottom: 0.5rem;
}

.breadcrumb-item a {
  text-decoration: none;
}

/* ==================================================================
 * _components.scss (部品)
 * ================================================================== */
/* --- サイドバーコンポーネント --- */
.sidebar-widget__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  background-image: linear-gradient(135deg, #2c3e50, #34495e, #3a536b);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sidebar-widget__title .bi {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: #fff;
}
.sidebar-widget__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.sidebar-nav-list {
  margin: 0 -1rem -0.8rem -1rem;
}
.sidebar-nav-list li {
  border-bottom: 1px solid #e9ecef;
}
.sidebar-nav-list li:last-child {
  border-bottom: none;
}
.sidebar-nav-list a {
  display: block;
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: #343a40;
  font-weight: 700;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.sidebar-nav-list a:hover {
  background-color: #e9ecef;
  color: #0d6efd;
}

.sidebar-icon-list {
  margin: 0 -0.5rem -1rem -0.5rem;
  /* ▼▼▼ <img> から <i> タグ (Bootstrap Icon) 用に修正 ▼▼▼ */
  /* ▲▲▲ 修正ここまで ▲▲▲ */
}
.sidebar-icon-list li {
  border-bottom: 2px dotted #ced4da;
}
.sidebar-icon-list li:last-child {
  border-bottom: none;
}
.sidebar-icon-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #212529;
  font-weight: 700;
  padding: 1rem 0.5rem;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.sidebar-icon-list a:hover {
  background-color: #f8f9fa;
  color: #0d6efd;
}
.sidebar-icon-list a:hover .bi {
  color: #0d6efd;
}
.sidebar-icon-list .bi {
  width: 48px; /* imgタグの幅と合わせる */
  height: 48px; /* imgタグの高さと合わせる */
  margin-right: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /* アイコンのサイズと色 */
  font-size: 2rem; /* 32px */
  color: #495057; /* $gray-700 (少し薄い黒) */
  /* アイコンを中央に配置 */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.sidebar-icon-list .main-text {
  display: block;
  line-height: 1.4;
}
.sidebar-icon-list .sub-text {
  display: block;
  font-size: 0.8rem;
  color: #dc3545;
  font-weight: normal;
  margin-top: 0.25rem;
}

.sidebar-banner-list li {
  margin-bottom: 1rem;
}
.sidebar-banner-list li:last-child {
  margin-bottom: 0;
}
.sidebar-banner-list a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar-banner-list a:hover {
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  opacity: 0.9;
}

/* --- 記事・リスト関連 --- */
.post-meta {
  font-size: 0.9rem;
  color: #6c757d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.post-meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-meta-item .bi {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.post-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #e9ecef;
  padding-top: 1.5rem;
  margin-top: 3rem;
}
.post-footer-nav a {
  text-decoration: none;
  max-width: 48%;
}
.post-footer-nav .nav-link-prev,
.post-footer-nav .nav-link-next {
  font-weight: bold;
  color: #343a40;
  display: block;
  font-size: 0.9rem;
}
.post-footer-nav .nav-link-prev:hover,
.post-footer-nav .nav-link-next:hover {
  color: #0d6efd;
}
.post-footer-nav .nav-label {
  font-size: 0.8rem;
  color: #6c757d;
}

.download-list-item {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.download-list-item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 300px;
          flex: 1 1 300px;
  padding-right: 1rem;
}
.download-list-item-actions {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: center;
      align-self: center;
}

.pdf-preview-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f8f9fa;
}
.pdf-preview-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* アーカイブ・検索結果リスト */
.archive-list-item {
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #dee2e6;
}
.archive-list-item:last-child {
  border-bottom: none;
}
.archive-list-item:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.archive-list-item .post-meta-item {
  margin-bottom: 0.5rem;
}
.archive-list-item .post-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}
.archive-list-item:hover .post-title {
  color: #0d6efd;
}

/* CPTアーカイブ (カード型) */
.archive-card-link {
  display: block;
  text-decoration: none;
  color: #212529;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.archive-card-link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.archive-card-link:hover .card-title {
  color: #0d6efd;
}
.archive-card-link .card-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

.status-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  font-size: 0.9rem;
  padding: 0.5em 0.75em;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.newsletter-card .card-title a {
  text-decoration: none;
  color: #212529;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.newsletter-card .card-title a:hover {
  color: #0d6efd;
}
.newsletter-card .card-footer {
  background-color: transparent;
  border-top: none;
  padding-top: 0;
}

/* --- その他 --- */
/* フォーム必須マーク (お問い合わせページ) */
.form-label .required-mark {
  color: #dc3545;
  font-size: 0.8em;
  margin-left: 0.25rem;
  vertical-align: middle;
}

/* LINE追従ボタン (全ページ共通) */
.line-follow-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1030;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  background-color: #06C755;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.line-follow-button .bi {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.line-follow-button:hover {
  color: #ffffff;
  background-color: #05a546;
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* レスポンシブ対応 (LINEボタン) */
@media (max-width: 767.98px) {
  .line-follow-button {
    padding: 0.8rem;
    width: 56px;
    height: 56px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .line-follow-button span {
    display: none;
  }
  .line-follow-button .bi {
    margin-right: 0;
    font-size: 1.8rem;
  }
}
/* ==================================================================
 * _pages.scss (ページ固有スタイル)
 * (主にトップページ)
 * ================================================================== */
/*
==================================================================
▼▼▼ ヒーローカルーセル (ブラッシュアップ) ▼▼▼
==================================================================
*/
.hero-carousel-section {
  /* テキストの位置をBootstrapデフォルト（下）から左中央に変更 */
  /* スマホでの調整 */
}
.hero-carousel-section .carousel-item {
  height: 600px;
  /* ヒーローの高さを固定 (画像サイズに合わせる) */
  min-height: 400px;
}
.hero-carousel-section .carousel-item > img {
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像をトリミングして領域いっぱいに */
  height: 100%;
  width: 100%;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
  /* 画像を少し暗くしてテキストを読みやすく */
}
.hero-carousel-section .carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  background: none;
  /* Bootstrapの黒いグラデーションを削除 */
}
@media (max-width: 767.98px) {
  .hero-carousel-section .carousel-item {
    height: 500px;
    /* スマホでは高さを少し小さく */
  }
  .hero-carousel-section .carousel-caption {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* スマホでは中央寄せ */
  }
  .hero-carousel-section .carousel-caption .display-4 {
    font-size: 2.5rem;
    /* スマホではH1を小さく */
  }
  .hero-carousel-section .carousel-caption .lead {
    font-size: 1.1rem;
  }
  .hero-carousel-section .carousel-caption .btn {
    font-size: 0.9rem;
  }
}

/* ▲▲▲ ヒーローカルーセル (ここまで) ▲▲▲ */
/* --- トップページ見出し (ピックアップ) --- */
.heading-pickup-special {
  text-align: center;
  margin-bottom: 0.3rem;
}
.heading-pickup-special .title-with-underline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-bottom: 0.75rem;
  color: #012b6a;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  z-index: 2;
}
.heading-pickup-special .title-with-underline .bi {
  font-size: 1.3rem;
  margin-right: 0.75rem;
  color: #fd0d0d;
}
.heading-pickup-special .title-with-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 2px;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(135deg, #565e64, #6c757d, #868e96);
  z-index: 1;
}

/* --- トップページ見出し (ハイブリッド) --- */
.heading-hybrid {
  text-align: center;
  position: relative;
  margin-bottom: 2.5rem;
}
.heading-hybrid .sub-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.heading-hybrid .main-title-with-lines {
  display: inline-block;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}
.heading-hybrid .main-title-with-lines::before, .heading-hybrid .main-title-with-lines::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4rem;
  height: 3px;
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.heading-hybrid .main-title-with-lines::before {
  left: -5rem;
}
.heading-hybrid .main-title-with-lines::after {
  right: -5rem;
}

/* 見出しカラークラス (トップページ) */
.heading-color-red .sub-title,
.heading-color-red .main-title-with-lines::before,
.heading-color-red .main-title-with-lines::after {
  background-image: linear-gradient(135deg, #b02a37, #dc3545, #e65c69);
}

.heading-color-green .sub-title,
.heading-color-green .main-title-with-lines::before,
.heading-color-green .main-title-with-lines::after {
  background-image: linear-gradient(135deg, #0f5132, #146c43, #198754);
}

.heading-color-orange .sub-title,
.heading-color-orange .main-title-with-lines::before,
.heading-color-orange .main-title-with-lines::after {
  background-image: linear-gradient(135deg, #e67e00, #fd7e14, #fdaa4e);
}

.heading-color-teal .sub-title,
.heading-color-teal .main-title-with-lines::before,
.heading-color-teal .main-title-with-lines::after {
  background-image: linear-gradient(135deg, #0a6f69, #20c997, #5ee0b3);
}

.heading-color-blue .sub-title,
.heading-color-blue .main-title-with-lines::before,
.heading-color-blue .main-title-with-lines::after {
  background-image: linear-gradient(135deg, #0a58ca, #0d6efd, #3c8aff);
}

.heading-color-purple .sub-title,
.heading-color-purple .main-title-with-lines::before,
.heading-color-purple .main-title-with-lines::after {
  background-image: linear-gradient(135deg, #5a189a, #9d4edd, #c77dff);
}

.heading-color-navy .sub-title,
.heading-color-navy .main-title-with-lines::before,
.heading-color-navy .main-title-with-lines::after {
  background-image: linear-gradient(135deg, #2c2f44, #3d405b, #4f5374);
}

/* --- ピックアップカルーセル (トップページ) --- */
.carousel-partial-view-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-partial-view-scroll::-webkit-scrollbar {
  display: none;
}
.carousel-partial-view-scroll .carousel-inner {
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.carousel-partial-view-scroll .carousel-item {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
  width: 80%;
  margin: 0 1rem;
  scroll-snap-align: center;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: none !important;
          transform: none !important;
}
.carousel-partial-view-scroll .carousel-item:first-child {
  margin-left: 10%;
}
.carousel-partial-view-scroll .carousel-item:last-child {
  margin-right: 10%;
}
.carousel-partial-view-scroll .carousel-indicators,
.carousel-partial-view-scroll .carousel-control-prev,
.carousel-partial-view-scroll .carousel-control-next {
  display: none !important;
}

/* =========================
   ニュースカテゴリ バッジカラー (最終決定版 - 全ページ強制適用)
   ========================= */
.list-group-item .badge.badge-news-imp,
.entry-content a.badge.badge-news-imp {
  background-color: #dc3545 !important; /* Bootstrap Danger (赤) */
  color: #ffffff !important;
}
.list-group-item .badge.badge-seminar,
.entry-content a.badge.badge-seminar {
  background-color: #0dcaf0 !important; /* Bootstrap Info (水色) */
  color: #000000 !important;
}
.list-group-item .badge.badge-event,
.entry-content a.badge.badge-event {
  background-color: #198754 !important; /* Bootstrap Success (緑) */
  color: #ffffff !important;
}
.list-group-item .badge.badge-news-etc,
.entry-content a.badge.badge-news-etc {
  background-color: #6c757d !important; /* Bootstrap Secondary (グレー) */
  color: #ffffff !important;
}

/* --- 関連リンク バナー（トップページ） --- */
.link-banner-item {
  display: block;
  text-decoration: none;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.link-banner-item:hover {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.link-banner-item .card-title {
  color: #212529;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.link-banner-item:hover .card-title {
  color: #0d6efd;
}

/* ====== アクセスのスタイルシート（access.scss)======  */
/* ====== お問い合わせのスタイルシート(contact.scss)====== */
#accordionVehicleInfo .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
#accordionVehicleInfo .accordion-button:not(.collapsed) {
  color: #000;
  background-color: #e7f1ff;
}

.page-service-repair .page-header {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("https://placehold.co/1920x400/556677/FFFFFF?text=Repair+Header");
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("https://placehold.co/1920x400/556677/FFFFFF?text=Repair+Header");
  color: #fff;
}
.page-service-repair .page-header h1 .d-block {
  color: rgba(255, 255, 255, 0.8);
}

.page-service-maintenance .page-header {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("https://placehold.co/1920x400/776655/FFFFFF?text=Maintenance+Header");
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("https://placehold.co/1920x400/776655/FFFFFF?text=Maintenance+Header");
  color: #fff;
}
.page-service-maintenance .page-header h1 .d-block {
  color: rgba(255, 255, 255, 0.8);
}

.page-service-shaken .page-header {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("https://placehold.co/1920x400/557766/FFFFFF?text=Shaken+Header");
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("https://placehold.co/1920x400/557766/FFFFFF?text=Shaken+Header");
  color: #fff;
}
.page-service-shaken .page-header h1 .d-block {
  color: rgba(255, 255, 255, 0.8);
}

.page-service-headlight .page-header {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("https://placehold.co/1920x400/777755/FFFFFF?text=Headlight+Header");
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("https://placehold.co/1920x400/777755/FFFFFF?text=Headlight+Header");
  color: #fff;
}
.page-service-headlight .page-header h1 .d-block {
  color: rgba(255, 255, 255, 0.8);
}

.page-service-custom .page-header {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("https://placehold.co/1920x400/556688/FFFFFF?text=Custom+Header");
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("https://placehold.co/1920x400/556688/FFFFFF?text=Custom+Header");
  color: #fff;
}
.page-service-custom .page-header h1 .d-block {
  color: rgba(255, 255, 255, 0.8);
}

.page-service-sales .page-header {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("https://placehold.co/1920x400/886655/FFFFFF?text=Sales+Header");
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("https://placehold.co/1920x400/886655/FFFFFF?text=Sales+Header");
  color: #fff;
}
.page-service-sales .page-header h1 .d-block {
  color: rgba(255, 255, 255, 0.8);
}

.widget-services-list .list-group-item {
  font-weight: 500;
  color: var(--bs-body-color);
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.widget-services-list .list-group-item i {
  color: var(--bs-primary);
  margin-right: 0.75rem;
  font-size: 1.1em;
}
.widget-services-list .list-group-item:hover, .widget-services-list .list-group-item.active {
  background-color: var(--bs-primary-bg-subtle);
  color: var(--bs-primary);
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.service-recommend-list {
  list-style-type: none;
  padding-left: 0;
}
.service-recommend-list li {
  position: relative;
  padding-left: 2.25rem;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.service-recommend-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--bs-success);
}/*# sourceMappingURL=style.css.map */