/*
=====================
Navigation Bar
=====================
*/

/* 初回表示時のナビゲーションバーを白背景・黒文字に */
.navbar-custom {
  background-color: #fff !important;
}
/* 初回表示時のメニュー文字色（リンク）を黒に */
.navbar-custom .navbar-nav li a {
  color: #000 !important;
}
/* 初回表示時のロゴは濃色版（l-dark）を表示、白ロゴ（logo-dark-mode）は非表示 */
.navbar-custom .navbar-brand .l-dark { display: inline-block !important; }
.navbar-custom .navbar-brand .l-light,
.navbar-custom .navbar-brand .logo-dark-mode { display: none !important; }

/* スクロール後のナビゲーションバー（既存の動作を維持） */
.nav-sticky.navbar-custom {
  background-color: #fff !important;
}

/*
=====================
Typography & Layout
=====================
*/

/* title header 概略説明リード */
.para-desc {
  max-width: 800px;
}

/*
=====================
Interactive Elements
=====================
*/

/* slide div block link */
.client-link {
  text-decoration: none;
  transition: all 0.3s ease;
  color: #000000;
}

.client-link:hover .client-review {
  background-color: rgba(171, 205, 239, 0.3) !important; /* Bootstrap 5のプライマリブルーを30%の透明度で使用 */
  transform: translateY(-2px); /* 少し浮き上がる効果（オプション） */
}

.client-link:hover {
  color: #000000 !important; /* テキストの色を黒のまま維持 */
}

/*
=====================
資料ダウンロード Button Styles
=====================
*/

/* オレンジ色の塗りつぶしボタン */
.btn-custom-orange {
  background-color: #EC6C00;
  color: white;
  border: 2px solid #EC6C00;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  line-height: 1.4;
  /* 枠を広くする設定 */
  padding: 20px 50px !important;  /* 上下20px、左右50pxに増加 */
  min-width: 300px;               /* 最小幅を設定 */
  display: inline-block;
}

.btn-custom-orange:hover {
  background-color: #D55E00;
  border-color: #D55E00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* オレンジ色の枠線ボタン */
.btn-custom-orange-outline {
  background-color: white;
  color: #EC6C00;
  border: 2px solid #EC6C00;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  line-height: 1.4;
  /* 枠を広くする設定 */
  padding: 20px 50px !important;  /* 上下20px、左右50pxに増加 */
  min-width: 300px;               /* 最小幅を設定 */
  display: inline-block;
}

.btn-custom-orange-outline:hover {
  background-color: #EC6C00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 説明テキストのスタイル */
.text-muted {
  font-size: 0.9rem;
  color: #6c757d !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .btn-custom-orange,
  .btn-custom-orange-outline {
    min-width: 250px;           /* スマホでは少し狭く */
    padding: 15px 40px !important;
  }
}

/*
=====================
お問い合わせ Button Styles
=====================
*/

.btn-contact-gradient {
  background: linear-gradient(to right, #FDB913, #FF8C00);
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 10px;  /* 50pxから10pxに変更して統一 */
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-contact-gradient:hover {
  background: linear-gradient(to right, #FFB800, #FF7700);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-contact-gradient:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* メールアイコンのスタイル */
.btn-contact-gradient i {
  font-size: 1.3rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .btn-contact-gradient {
    font-size: 1rem;
    padding: 15px 20px !important;
  }

  .btn-contact-gradient i {
    font-size: 1.1rem;
  }
}

/*
=====================
ポイント div.block Styles
=====================
*/
.point_wrap {
  padding: 60px 0;
  background-color: #f8f9fa;
  margin-bottom: 50px;
}

.point_wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.point_inner {
  background: white;
  border: 3px solid #1b7e99;
  border-radius: 8px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  margin-top: 40px;
}

.point_badge {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #1b7e99;
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.point_badge .point_number {
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  margin-top: 5px;
}

.point_inner h3 {
  color: #1b7e99;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0 30px;
  line-height: 1.5;
}

.point_p {
  margin-bottom: 30px;
}

.point_p p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

.point_img {
  text-align: center;
}

.point_img img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* 背景のハイライト */
.point_inner h3::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 45px;
  width: 200px;
  height: 40px;
  background: #e3f2fd;
  z-index: -1;
}

@media (max-width: 767px) {
  .point_inner {
    margin-bottom: 60px;
  }

  .point_badge {
    padding: 10px 30px;
  }

  .point_badge .point_number {
    font-size: 28px;
  }

  .point_inner h3 {
    font-size: 20px;
  }

  .point_p p {
    font-size: 14px;
  }
}

/*
=====================
FAQ div.block Styles
=====================
*/
.faq_section {
  background-color: #e9ecef;
  padding: 60px 0;
}

.faq_inner {
  max-width: 900px;
  margin: 0 auto;
}

.js_accordion_wrap {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
}

.js_accordion_ttl {
  padding: 25px 30px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.js_accordion_ttl:hover {
  background-color: #f8f9fa;
}

.js_accordion_ttl h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  padding-right: 50px;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

/* Q マーク */
.js_accordion_ttl::before {
  content: '?';
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: #1b7e99;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.js_accordion_ttl h3 {
  padding-left: 70px;
}

/* プラス/マイナス アイコン */
.js_accordion_ttl::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #1b7e99;
  font-size: 30px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.js_accordion_wrap.active .js_accordion_ttl::after {
  content: '−';
}

/* 回答部分 */
.item_messege {
  padding: 0 30px 30px 130px;
  display: none;
}

.item_messege p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.item_messege a {
  color: #1b7e99;
  text-decoration: underline;
}

.item_messege a:hover {
  text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .faq_inner {
    padding: 0 15px;
  }

  .js_accordion_ttl {
    padding: 20px 20px;
  }

  .js_accordion_ttl::before {
    width: 40px;
    height: 40px;
    font-size: 20px;
    left: 20px;
  }

  .js_accordion_ttl h3 {
    font-size: 16px;
    padding-left: 60px;
    padding-right: 40px;
  }

  .js_accordion_ttl::after {
    right: 20px;
    font-size: 24px;
  }

  .item_messege {
    padding: 0 20px 20px 20px;
  }

  .item_messege p {
    font-size: 14px;
  }

  .is-hidden_sp {
    display: none;
  }
}