body {
  background-color: #FAF8F5;
  font-family: '''Noto Sans JP','ヒラギノ角ゴ ProN','Hiragino Kaku Gothic ProN','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  /* font-family: "MS Mincho", "ＭＳ 明朝", serif; */
  .wf-sawarabigothic { font-family: "Sawarabi Gothic"; }

  color: #414141;

  background-color: #f3faff;
}




/* キーカラー */
.key_color {
  color: #004e98 !important;
}

.sub_color {
  color: #d70c18 !important;
}

.bg_sub_color {
  background-color: #d70c18 !important;
}


/* ナビゲーションバーのリンクスタイル */
.navbar-nav .nav-link {
  margin-right: 30px; /* 右側のマージンで間隔を開ける */
  padding-right: 15px; /* 右のパディング */
}

/* 最後のナビゲーションリンクのスタイル調整 */
.navbar-nav .nav-link:last-child {
  border-right: none; /* 最後の要素は縦線を消す */
}










/* メインサイズ */
.w1200 {
  max-width: 1200px;
}
.w1166 {
  max-width: 1166px;
}

.w800 {
  max-width: 850px;
}
.w1000 {
  max-width: 1000px;
}

.custom-container .container-fluid {
  max-width: 1150px !important; /* 好みの最大幅に調整 */
  margin-right: auto !important;
  margin-left: auto !important;
}






.nav-link {
  color: #004e98;
  font-weight: bold;
}

/*スマフォサイズで */
@media only screen and (max-width: 990px) {
  .nav-other {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .nav-other .nav-link {
    font-size: .75em;
    padding-left: 10px;
    margin-top: 15px;
  }
}



/* アクティブのとき　PCのみ */
@media screen and (min-width: 990px) {
  .nav-link.active {
    color: #d70c18 !important; /* Bootstrapのテーマカラー */
    position: relative; /* 疑似要素の基準点 */
  }

  .nav-link.active::after {
    content: ''; /* 疑似要素にはcontentプロパティが必要です */
    display: block;
    width: 90%; /* アンダーラインの幅 */
    height: 2px; /* アンダーラインの太さ */
    background-color: currentColor; /* リンクのテキストカラーを使用 */
    position: absolute;
    left: 50%; /* 要素の左端から中央までの位置 */
    bottom: 0px; /* アンダーラインの位置（テキストからの距離） */
    transform: translateX(-50%); /* アンダーラインを左に50%移動して中央揃えに */
  }
}




/* ボタンキーカラーへ */
.btn-success {
  --bs-btn-color: #fff; /* テキストカラーは変更なし */
  --bs-btn-bg: #00a23f; /* メインの背景色を変更 */
  --bs-btn-border-color: #00a23f; /* ボーダーカラーも合わせて変更 */

  /* ホバー状態のスタイルを調整 */
  --bs-btn-hover-color: #fff; /* ホバーテキストカラーは変更なし */
  --bs-btn-hover-bg: #008837; /* ホバー時の背景色、少し暗めの緑に */
  --bs-btn-hover-border-color: #00782a; /* ホバー時のボーダー色、さらに暗めに */

  /* フォーカス状態のシャドウカラーを調整 */
  --bs-btn-focus-shadow-rgb: 48,120,63; /* より新しい背景色に合わせて調整 */

  /* アクティブ状態のスタイルを調整 */
  --bs-btn-active-color: #fff; /* アクティブテキストカラーは変更なし */
  --bs-btn-active-bg: #00782a; /* アクティブ時の背景色、さらに暗めに */
  --bs-btn-active-border-color: #006d25; /* アクティブ時のボーダー色、最も暗めに */

  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); /* アクティブ時のシャドウは変更なし */

  /* 無効状態のスタイルを調整 */
  --bs-btn-disabled-color: #fff; /* 無効時のテキストカラーは変更なし */
  --bs-btn-disabled-bg: #00a23f; /* 無効時の背景色、新しいメインカラーに合わせて */
  --bs-btn-disabled-border-color: #00a23f; /* 無効時のボーダー色、新しいメインカラーに合わせて */
}

.btn-outline-primary {
  --bs-btn-color: #004e98;
  --bs-btn-border-color: #004e98;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #004e98;
  --bs-btn-hover-border-color: #004e98;
  --bs-btn-focus-shadow-rgb: 13,110,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #004e98;
  --bs-btn-active-border-color: #004e98;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #004e98;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #004e98;
  --bs-gradient: none;

  border-width: 3px !important; /* またはお好みの太さに設定 */
  font-weight: bold !important;
}





.btn-primary {

  --bs-btn-color: #fff;
  --bs-btn-bg: #004e98;
  --bs-btn-border-color: #004e98;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1e64a5;
  --bs-btn-hover-border-color: #004e98;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #004e98;
  --bs-btn-active-border-color: #004e98;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #004e98;
  --bs-btn-disabled-border-color: #004e98;
}


.btn-outline-danger {
  border-width: 3px; /* またはお好みの太さに設定 */
  font-weight: bold;
}






.hero .lead {
  font-weight: 400;
  line-height: 1.7em;
  letter-spacing: .05em;
}


.bg_w_container {
  background-color: #fff;
  box-shadow: 0px 6px 30px rgb(85 85 85 / 5%);
  /* background-color: #ddd; */
}
@media (max-width: 768px) {
  .bg_w_container {
    width: calc(100% - 40px); /* 左右に35pxのパディングを想定 */
    margin-left: auto;
    margin-right: auto;
  }
}

.h1_hero {
  letter-spacing: .15em;
}

.h1_02 {
  font-size: 3em !important;
  letter-spacing: .17em;
}
/* スマートフォンビュー用のスタイル */
@media (max-width: 767.98px) {
  .h1_02 {
    font-size: 1.5em !important;
    letter-spacing: .17em;
  }
  .subheading {
    font-size: .8em !important;
  }
}

/*  */


.wf-sawarabimincho { font-family: "Sawarabi Mincho" !important; }


/* 改行スマフォのみ */
@media screen and (min-width: 768px){
  .br-sp {display: none; }
}
@media screen and (max-width: 768px){
  .br-pc {display: none; }
}


/* ナビのブランド */
@media (max-width: 768px) {
  .navbar-brand {
    display: none;
  }
}





/* #myCarousel {
  height: 1300px !;
} */






/* ：：：：：：：：：：：：：：：：：：： */
/*::: 新着情報 :::: */
/* ：：：：：：：：：：：：：：：：： */

.news h3{
  font-size: 1.3em;
}

.news_date {
  font-size: 1.1em;
  /* font-weight: bold; */
  color: #6a6a6a;
}

.news p{
  font-size: 1em !important;
}

@media (max-width: 700px) {
  .news h3 {
    font-size: 1em; /* 文字サイズを1emに変更 */
  }

  .news p{
    font-size: .9em !important;
  }

  .btn-lg, .btn-group-lg > .btn {
    --bs-btn-font-size: 1rem !important;
  }

}

@media (min-width: 601px) {
  /* タブレット以上のスタイル */
  .news p{
    font-size: 1em !important;
  }

}


.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: 0.5rem;
}






/* ////////////////////////// */


/* リスト部分 */
.list{
  letter-spacing: 1.5px;
}
@media (max-width: 600px) {
  /* スマートフォンのスタイル */
  .list h2 {
    font-size: 19px;
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  /* タブレットのスタイル */
  .list h2 {
    font-size: 22px;
  }
}
@media (min-width: 1025px) {
  /* PCのスタイル */
  .list h2 {
    font-size: 24px;
  }
}


/* モバイルデバイス (デフォルト) */
.custom-font-size {
  font-size: 15px; /* fs-6に相当 */
}
/* タブレット以上のデバイス (mdブレークポイント以上で768px以上) */
@media (min-width: 768px) {
  .custom-font-size {
    font-size: 17px; /* fs-5に相当 */
  }
}
/* デスクトップ以上のデバイス (lgブレークポイント以上で992px以上) */
@media (min-width: 992px) {
  .custom-font-size {
    font-size: 20px; /* fs-4に相当 */
  }
}

/* フォンオーサムアイコン */
/* 通常の画面サイズでのアイコンスタイル */
.osusume .fas {
  font-size: 29px !important; /* 通常サイズ */
}

/* スマートフォンなど小さい画面でのスタイル */
@media (max-width: 768px) {
  .osusume .fas {
    font-size: 37px !important; /* スマートフォンで大きく表示 */
  }
}

.hero_shita {
  margin-top: 80px;
}





/* ///// 課題エリア  ///// */

.kadai2 {
  font-size: 1em;
  line-height: 1.7;
  /* margin-bottom: 30px; */
}
/* スマートフォンサイズで */
@media only screen and (max-width: 600px) {
  .kadai2 {
    font-size: 1em;
  }
}



/* ///// 特徴エリア  ///// */

.tokutyou {
  margin-bottom: 60px;
}


/* モバイルデバイス (デフォルト) */
.tokutyou .num {
  font-size: 26px;
}

.tokutyou h3 {
  font-size: 19px;
}
/* スマートフォンサイズで */
@media only screen and (max-width: 600px) {
  .tokutyou h3 {
    font-size: 21px;
  }
}

.tokutyou p {
  font-size: 17px !important;
  line-height: 1.7em;
  letter-spacing: 1.4px;
}
/* スマートフォンサイズで */
@media only screen and (max-width: 600px) {
  .tokutyou p {
    font-size: 18px !important;
    line-height: 1.5em;
    letter-spacing: 1.2px;
    font-weight: 400;
  }
}

/* タブレット以上のデバイス (mdブレークポイント以上で768px以上) */
@media (min-width: 768px) {
  .tokutyou h3 {
    font-size: 21px;
  }
  .tokutyou p {
    font-size: 16px;
  }
  .tokutyou .num {
    font-size: 30px;
  }
  .tokutyou {
    margin-bottom: 100px;
  }

}
/* デスクトップ以上のデバイス (lgブレークポイント以上で992px以上) */
@media (min-width: 992px) {
  .tokutyou h3 {
    font-size: 24px;
  }
  .tokutyou p {
    font-size: 17px;
  }

  .tokutyou .num {
    font-size: 34px;
  }
}


.tokutyou-h2 {
  display: flex;
  align-items: center; /* 縦方向の中央揃え */
  justify-content: center; /* 横方向の中央揃え */
  color: #d70c18;
  font-size: 17px;
  text-align: center; /* テキストも中央揃え */
}

.tokutyou-h2::before,
.tokutyou-h2::after {
  content: '';
  font-size: 1.3rem;
  color: #d70c18;
  font-weight: bold;
  letter-spacing: -0.1rem;
}

.tokutyou-h2::before {
  content: '＼＼';
  margin-right: 5px; /* 右のテキストからの距離 */
}

.tokutyou-h2::after {
  content: '／／';
  margin-left: 5px; /* 左のテキストからの距離 */
}


/* デフォルト設定（スマートフォン向け）*/
.tokutyou-title-1 {
  font-size: 24px;
  font-weight: bold;
  color: #0FA36A;
  letter-spacing: 4px;
  line-height: 1;
}

.tokutyou-title-2 {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 2px;
  padding-top: 15px;
}

/* PC向け拡大設定 */
@media only screen and (min-width: 600px) {
  .tokutyou-title-1 {
    font-size: 36px;
    letter-spacing: 6px;
  }

  .tokutyou-title-2 {
    font-size: 13px;
    letter-spacing: 3px;
    padding-top: 14px;
    padding-bottom: 20px;
  }
}


/* バッジ */
.my-badge {
  color: #FAF8F5 !important;
  background-color: #f95437 !important;
  font-size: .55em !important;
  padding: .7em;
  font-weight: bold !important;
}


.h2_taikai {
  margin-top: 100px;
}
/* PC向け拡大設定 */
@media only screen and (min-width: 600px) {
  .h2_taikai {
    margin-top: 160px;
  }
}

.syoukai_up {
  margin-top: 120px;
}
/* PC向け拡大設定 */
@media only screen and (min-width: 600px) {
  .syoukai_up {
    margin-top: 160px;
  }
}




/* ：：：：：：：：：：：：： */
/*::: 料金 :::: */
/* ：：：：：：：：：：：：： */

/* priceテーブルのthを薄い灰色に */
.table.price th,
.table.price td{
  padding: 25px;

}
.table.price th {
    background-color: #e2e8ea; /* ここに希望の色を指定してください */
    /* color: #00a23f; */
    font-size: 1.1em;
}

.table.price td:nth-child(2) {
  vertical-align: middle;
}

.table.price td:nth-child(1),
.table.price td:nth-child(3) {
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
}


/* priceテーブルのthを薄い灰色に */
.table.price_2 th,
.table.price_2 td{
  padding: 30px;

}
.table.price_2 th {
    background-color: #e2e8ea; /* ここに希望の色を指定してください */
    /* color: #00a23f; */
    font-size: 1.1em;
}

.table.price_2 td:nth-child(2) {
  vertical-align: middle;
}

.table.price_2 td:nth-child(2) {
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
}
.badge_osusume {
  background-color: #f95437 !important;
  /* color: #00a23f !important;
  font-weight: bold !important; */
}

.ryoukin_sp h3 {
  font-size: 1.3em;
}

/* スマートフォンなど小さい画面でのスタイル */
@media (max-width: 768px) {
  .plan-details {
    font-size: 19px !important; /* スマートフォンで大きく表示 */
  }
  .price_sp {
    font-size: 1.2em;
  }
}




/* ：：：：：：：：：：：：： */
/* top下コンタクト */
/* ：：：：：：：：：：：：： */

.contact_phone_box {
  text-align: center;
  width: 100%;
  border: solid 1pt !important;
  border-color: #C4c4c4;
  margin: 50px auto 0 auto;
  padding: 40px 0;
}

@media only screen and (min-width: 600px) {

  .contact_phone_box {
    width: 60%;
  }
}

.tel_a {
  text-decoration: none;
}

.phone-num {
  text-decoration: none;
  font-weight: bold;
  font-size: 2em;
  color: #00a23f;
}

.fa-phone-alt {
  color: #00a23f;
}


/* フォンオーサムアイコン */
/* 通常の画面サイズでのアイコンスタイル */
.contact_phone_box .fas {
  font-size: 40px !important; /* 通常サイズ */
}

/* スマートフォンなど小さい画面でのスタイル */
@media (max-width: 768px) {
  .contact_phone_box .fas {
    font-size: 33px !important; /* スマートフォンで大きく表示 */
  }
}

/* .top-contact .btn-secondary{
  background-color: #0FA36A !important;
}



.top-contact .btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-border-color: #0FA36A !important;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a !important;
  --bs-btn-hover-border-color: #0FA36A;
  --bs-btn-focus-shadow-rgb: 130,138,145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
} */







/* ・・・・・・・・・・・・・・・・ */
/* パネル洗浄ページ */
/* ・・・・・・・・・・・・・・・・ */


.h1-cleaning {
  padding-top: 80px !important;
}
/* スマフォサイズ以上で */
@media only screen and (min-width: 600px) {
  .h1-cleaning {
    padding-top: 150px !important;
  }
}


/* ///// 課題エリア  ///// */

.kadai3 {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 1.5px;
  /* margin-bottom: 30px; */
}
/* スマートフォンサイズで */
@media only screen and (max-width: 600px) {
  .kadai3 {
    font-size: 1.1em;
  }
}


.h3_before {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #5b5a5a;
  text-align: center;
}
.h3_after {
  font-size: 1.7em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #4caff6;
  text-align: center;
}

.before_after_yajirushi {
  font-size: 4em;
  font-weight: bold;
  color: #676767;
  text-align: center;
}

.h3_after::before {
  content: '＼＼';
  margin-right: 5px; /* 右のテキストからの距離 */
}

.h3_after::after {
  content: '／／';
  margin-left: 5px; /* 左のテキストからの距離 */
}

.pannel_contact {
  margin-top: 80px;
}
/* PCサイズで */
@media only screen and (min-width: 600px) {
  .pannel_contact {
    margin-top: 120px;
  }
}



/* ・・・・・・・・・・・・・・・・ */
/*   FAQのページ   */
/* ・・・・・・・・・・・・・・・・ */

.q_icon {
  color: #00a23f !important;
}

.q_text {
  font-size: 1.1em;
  font-weight: bold;
}
@media only screen and (min-width: 600px) {
  .q_text {
  font-size: 1.1em;
  /* padding-top: 150px !important; */
  }
}

@media screen and (max-width: 768px){
  .tame {display: none; }
}






/* 全てのデバイスで適用する基本スタイル */
.col_top, .col_bottom {
  border: 1px solid #dee2e6;
}


/* スマートフォンビュー用のスタイル */
@media (max-width: 767.98px) {
  .col_top {
    border-bottom: none;
  }
  .col_bottom {
    border-top: none;
    border-bottom: none;
  }
  /* 最後の行のスタイルを調整 */
  .row:last-child .col_bottom {
    border-bottom: 1px solid #dee2e6;
  }
}

/* タブレット・デスクトップビュー用のスタイル */
@media (min-width: 768px) {
  .col_top {
    /* border-right: 1px solid #dee2e6; */
    /* border-bottom: 1px solid #dee2e6; */
    border-bottom: none;
    border-right: none;
  }
  .col_bottom {
    /* border-bottom: 1px solid #dee2e6; */
    border-bottom: none;


  }
  /* 最後の行のスタイルを調整 */
  .row:last-child .col_top, .row:last-child .col_bottom {
    border-bottom: 1px solid #dee2e6;
  }
}

.h1-kaisya {
  padding-top: 80px !important;
}
@media (min-width: 768px) {
  .h1-kaisya {
    padding-top: 150px !important;
  }
}





/* 県連紹介 */


.img-fluid.kenren_button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-fluid.kenren_button:hover {
  transform: scale(1.05); /* 画像をわずかに大きくします */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* 影をつけます */
}

.keren_group {
  margin-bottom: 100px;
}

@media (min-width: 768px) {
  .keren_group {
    margin-bottom: 200px;
  }
}










/* ：：：：：：：：：：：： */
/* 色々追加 */
/* ：：：：：：：：：：：： */

/* デフォルトでは非表示 */
.show-mobile-only {
  display: none;
}
/* 991px以下で表示 */
@media (max-width: 991px) {
  .show-mobile-only {
    display: block;
  }
}
/* 992px以上で非表示 */
@media (min-width: 992px) {
  .show-mobile-only {
    display: none;
  }
}


/* デフォルトでは表示 */
.show-desktop-only {
  display: block;
}
/* 991px以下で非表示 */
@media (max-width: 991px) {
  .show-desktop-only {
    display: none;
  }
}



/* スクロールダウン */

 /* スクロールダウンの位置 */
.scroll {
  position: absolute;
  right: 5%;
  top: 200px;
  writing-mode: vertical-rl;
  color: #ceebff;
  letter-spacing: .5em;
  font-size: .9em;
}

/* 991px以下で非表示 */
@media (max-width: 991px) {
  .scroll {
    right: 1%;
    top: 150px;
    letter-spacing: .5em;
    font-size: .7em;
  }
}


/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #ceebff;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}



/* gemsのcss */

.custom-link {
  font-weight: bold;
  text-decoration: none;
  font-size: 2em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  color: #1175d2;
}
/* 991px以下で非表示 */
@media (max-width: 991px) {
  .custom-link {
    font-size: 1.5em;
    text-align: center !important;
    margin-bottom: 10px;
  }

  .nendo{
    font-size: 1.3em;
    margin-left: 4px;
  }
}

.custom-link .highlighted-text {
  color: red;
  font-size: 1.05em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


/* フッター */

.footer_logo {
  height: 50px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* 991px以下 */
@media (max-width: 991px) {
  .footer_logo {
    height: 40px;
    margin-top: 20px;
    margin-bottom: 40px;
  }

}


.taikai_list a{
  text-decoration: none;
}

.h4_karate {
  font-size: 1.15em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 20px;
}

