@charset "utf-8";

/*-----------------------------------------------------
大見出し
-------------------------------------------------------*/

/* 中見出し
------------------------------------------------*/

/* 小見出し/コメント */

/* 1400px以下 */
@media only screen and (max-width: 1399px) {
}

/* 1200px以下 */
@media only screen and (max-width: 1199px) {
}

/* タブレット以下 */
@media only screen and (max-width: 991px) {
}

/* スマホ */
@media only screen and (max-width: 767px) {
}

/* -----------------------------------------------------
container
------------------------------------------------------- */
.container{
  max-width: 350px;
  padding: 0;
}
@media only screen and (max-width: 1399px) {
  .container{
  max-width: 350px;
  padding: 0;
}}
@media only screen and (max-width: 1199px) {
  .container{
  max-width: 350px;
  padding: 0;
}}
@media only screen and (max-width: 991px) {
  .container{
  max-width: 350px;
  padding: 0;
}}
@media only screen and (max-width: 767px) {
  .container{
  max-width: 350px;
  padding: 0;
}}

/* -----------------------------------------------------
共通(文字サイズ高齢者向け)
------------------------------------------------------- */

body{
  font-family:'Noto Serif JP',serif !important;
}
h2{
  font-size: 30px;
}
h3{
  font-size: 25px;
  line-height: 1.5em;
}
p {
  font-size: 18px;
  line-height: 1.75em;
}

/* -----------------------------------------------------
固定背景（左右）
------------------------------------------------------- */
.side-bg-left {
  position: fixed;
  top: 0;
  height: 100vh;
  background-image: url("../images/left.png");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

.side-bg-right {
  position: fixed;
  top: 0;
  height: 100vh;
  background-image: url("../images/right.png");
  background-size: cover;
  background-position: right;
  pointer-events: none;
  z-index: 0;
}


.side-bg-left {
  left: 0;
  width: calc((100vw - 400px) / 2);
}

.side-bg-right {
  right: 0;
  width: calc((100vw - 400px) / 2);
}

/*-----------------------------------------------------
レイアウト
-------------------------------------------------------*/
.layout {
  display: flex;
  justify-content: center;
}

.main-content {
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
}

/*-----------------------------------------------------
header
-------------------------------------------------------*/
#Header {
  /* ▼基本設定 */
  width: 100%;
  max-width: 400px; /* メイン幅に合わせる */
  margin: 0 auto;   /* 中央揃え */

  /* ▼固定表示の設定 */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  /* ▼アニメーション設定（重要） */
  transition: transform 0.3s ease !important;

  /* ▼PCでは非表示（初期値） */
  display: none;
}

/* ▼隠すときに付与するクラス（最優先） */
.header-hidden {
  transform: translateY(-100%) !important;
}

/* ▼スマホ（991px以下）の時だけ表示する設定 */
@media (max-width: 991px) {
  #Header {
    display: block; /* スマホで表示 */
  }
  
  /* 固定ヘッダー分の余白を確保 */
  body {
    padding-top: 70px;
  }
}
/* -----------------------------------------------------
ハンバーガーメニュー
------------------------------------------------------ */
.bg-navi{
  background: rgba(104,131,182,0.9);
}
.nav-link{
    color:#fff !important;
}
.nav-link:focus,.nav-link:hover {
    color:#fff !important;
}
/* 閉じているとき：collapsed が付いている時 → 三本線 */
.navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* 開いたとき：collapsed が無い時 → × */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e") !important;
}

/* -----------------------------------------------------
PC表示（992px以上）のヘッダーカスタマイズ
------------------------------------------------------- */
@media (min-width: 992px) {
  
  /* 1. ヘッダーを表示し、横幅制限を解除して画面いっぱいに */
  #Header {
    display: block !important; /* 表示させる */
  }

  /* 2. 中身（ロゴ）を中央寄せにする */
  #Header .container-fluid {
    justify-content: center;   /* Flexboxで中央揃え */
  }

  /* 3. ハンバーガーボタンとメニュー中身を非表示にする */
  .navbar-toggler,
  #header_nav {
    display: none !important;
  }
  
  /* 念のためロゴの余白調整 */
  .navbar-brand {
    margin: 0;
  }
}

/* -----------------------------------------------------
中央400pxを基準に左右メニューを中央揃えにする
------------------------------------------------------ */

/* 左メニューの位置調整 */
.side-menu.left .pc_menu {
  position: fixed;
  top: 50%;
  left: calc((100vw - 400px) / 2 - 285px); /* ←メニュー幅の半分に置換 */
  transform: translateY(-50%);
  z-index: 10;
}

/* 右メニューの位置調整 */
.side-menu.right .pc_menu {
  position: fixed;
  top: 50%;
  right: calc((100vw - 400px) / 2 - 125px);
  transform: translateY(-50%);
  z-index: 10;
}


/* スマホ非表示 */
@media (max-width: 991px) {
  .side-menu {
    display: none;
  }
}
.side-menu ul{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu_logo{
  width: 95%;
}
.side-menu_text{
  font-size: 1.2rem;
  color: #1d1045;
  font-weight: 600;
  padding: 0.25rem 0 0;
}
.side-menu a {
  color: #1d1045
}
.side-menu a:hover {
  color: #443474;
}
/*------------CTAボタン-------------*/
a.navi_btn-shiryou-color {
  color: #ffffff; /*CTAの文字色*/
  background-color: #017e2a; /*CTAボタン色*/
  border-bottom: 5px solid #004517; /*CTAボタンの影色*/
}

a.navi_btn-shiryou-color:hover {
  margin-top: 3px;
  color: #fff; /*CTAがホバーされた時の文字色*/
  background: #039b36; /*CTAがホバーされた時のボタン色*/
  border-bottom: 2px solid #039b36;された時のボタンの影色*/
}

a.navi_btn-kengaku-color {
  color: #ffffff; /*CTAの文字色*/
  background-color: #07818c; /*CTAボタン色*/
  border-bottom: 5px solid #00565e; /*CTAボタンの影色*/
}

a.navi_btn-kengaku-color:hover {
  margin-top: 3px;
  color: #fff; /*CTAがホバーされた時の文字色*/
  background: #1699a5; /*CTAがホバーされた時のボタン色*/
  border-bottom: 2px solid #1699a5; /*CTAがホバーされた時のボタンの影色*/
}

a.navi_btn-tel-color {
  color: #ffffff; /*CTAの文字色*/
  background-color: #ff8400; /*CTAボタン色*/
  border-bottom: 5px solid #ce6b00; /*CTAボタンの影色*/
}

a.navi_btn-tel-color:hover {
  margin-top: 3px;
  color: #fff; /*CTAがホバーされた時の文字色*/
  background: #f58f22; /*CTAがホバーされた時のボタン色*/
  border-bottom: 2px solid #f58f22; /*CTAがホバーされた時のボタンの影色*/
}
.navi_cta_btn,a.navi_cta_btn,button.navi_cta_btn {
  font-size:1.25rem;
  font-weight:bold;
  padding:0.8rem .5rem;
  width: 12rem;
  border-radius: 50vw;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.navi_cta_smalltext{
  font-size: 1rem;
}


/*-----------------------------------------------------
共通
-------------------------------------------------------*/
section {
  padding: 3rem 0;
}
a {
  text-decoration-line: none;
}
.w-90{
  width: 90%;
}
/*-----------------------------------------------------
フォント
-------------------------------------------------------*/
.text-bold{
  font-weight: bold;
}
.text-bold02{
  font-weight: 900;
}
.text-blue{
  color: #1d1045;
}
.text-white{
  color: #fff;
}
.text-red{
  color: #ff000c;
}
.text-orange{
  color: #ff6c00;
}
.text-yellow{
  color: #ffcc00;
}

/*-----------------------------------------------------
タイトル
-------------------------------------------------------*/
.ttl{
  color: #1d1045;/*文字色*/
  padding: 0.5em 0;/*上下の余白*/
  border-top: solid 3px #1d1045;/*上線*/
  border-bottom: solid 3px #1d1045;/*下線*/
  text-align: center;
  font-weight: 900;
  margin-bottom: 2rem;
}
.ttl_small{
  font-size: 25px;
}

/*-----------------------------------------------------
CTA
-------------------------------------------------------*/
.cta{
  background-image: url(../images/cta_bg.png);
  padding: 2.5rem 0;
}
.cta-box{
  background-color: #fff;/*CTAの内側の背景色*/
  border-radius: 20px;
  padding: 1.5rem 0;
  text-align: center;
}
.cta_ttl{
  font-size: 1.5rem;
  font-weight: 900;
  color: #1d1045;
  padding-bottom: 0.5rem;
}
.cta_text{
  padding-bottom: 0.5rem;
 }

/*------------CTAボタン-------------*/
a.btn-shiryou-color {
  color: #ffffff; /*CTAの文字色*/
  background-color: #017e2a; /*CTAボタン色*/
  border-bottom: 10px solid #004517; /*CTAボタンの影色*/
}

a.btn-shiryou-color:hover {
  margin-top: 3px;
  color: #fff; /*CTAがホバーされた時の文字色*/
  background: #039b36; /*CTAがホバーされた時のボタン色*/
  border-bottom: 2px solid #039b36;された時のボタンの影色*/
}

a.btn-kengaku-color {
  color: #ffffff; /*CTAの文字色*/
  background-color: #07818c; /*CTAボタン色*/
  border-bottom: 10px solid #00565e; /*CTAボタンの影色*/
}

a.btn-kengaku-color:hover {
  margin-top: 3px;
  color: #fff; /*CTAがホバーされた時の文字色*/
  background: #1699a5; /*CTAがホバーされた時のボタン色*/
  border-bottom: 2px solid #1699a5; /*CTAがホバーされた時のボタンの影色*/
}

a.btn-tel-color {
  color: #ffffff; /*CTAの文字色*/
  background-color: #ff8400; /*CTAボタン色*/
  border-bottom: 10px solid #ce6b00; /*CTAボタンの影色*/
}

a.btn-tel-color:hover {
  margin-top: 3px;
  color: #fff; /*CTAがホバーされた時の文字色*/
  background: #f58f22; /*CTAがホバーされた時のボタン色*/
  border-bottom: 2px solid #f58f22; /*CTAがホバーされた時のボタンの影色*/
}
.cta_btn,a.cta_btn,button.cta_btn {
  font-size:2rem;
  font-weight:bold;
  padding:0.8rem .5rem;
  width: 18rem;
  border-radius: 50vw;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.cta_smalltext{
  font-size: 1.5rem;
}


/*-----------------------------------------------------
FV
-------------------------------------------------------*/
.fv {
  padding: 0;
}

/*-----------------------------------------------------
ランキング
-------------------------------------------------------*/
.ranking {
  padding: 0;
}

/*-----------------------------------------------------
ポイント
-------------------------------------------------------*/
.point {
  background-image: url(../images/point_bg.png);
}

/*-----------------------------------------------------
比較
-------------------------------------------------------*/
.hikaku {
  background-color: #fffde9;
}

.point_textbox{
  padding: 0 1.5rem;
}

/*-----------------------------------------------------
口コミ
-------------------------------------------------------*/
.voice {
  padding-top: 0;
  background-image: url(../images/voice_bg.png);
}
.voice_ttl_box{
  background-image: url(../images/voice_ttl_bg.png);
  background-position: top;
  background-repeat: no-repeat;
  height: 12rem;
}
.voice_ttl {
  padding: 3.2rem 6rem 0;
}
.voice_box{
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid #00065f;
  padding: 0.5rem;
}

/*スライド
-------------------------------------------------------*/
.voice ul{
  padding-inline-start: 0;
}
/* スライドエリア全体 */
.voice .slide_box {
    width: 100%;
    margin: 0 auto;
}

/* 独自のクラスに対してスタイルを当てる */
.voice .slide-items-voice img {
    width: 100%;       /* 横幅いっぱいに */
    height: auto;      /* 高さはなりゆき */
    object-fit: cover; /* 必要であればトリミング */
}

/* 矢印を消す（念のためCSSでも制御） */
.voice .slide-items-voice .slick-prev,
.voice .slide-items-voice .slick-next {
    display: none !important;
}

/* もしSlick標準のCSSで arrows:false にしても消えきらない要素がある場合 */
.voice .slick-prev, 
.voice .slick-next {
    display: none !important;
}

/*スライドの下に数字をいれる
-------------------------------------------------------*/
/* 元々の黒丸（•）を消す */
.voice .slick-dots li button:before {
    display: none !important;
}

/* --- 数字（ボタン）自体の設定 --- */
.voice .slick-dots li button {
    font-size: 2rem !important;  /* ★ここで好きな大きさに変更 */
    font-weight: 900;
    color: #cccccc !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}

/* --- ★ここが重要：数字と数字の間の隙間を広げる --- */
.voice .slick-dots li {
    width: auto !important;      /* 幅の制限をなくす */
    height: auto !important;     /* 高さの制限をなくす */
    margin: 0 15px !important;   /* ★左右に15pxずつの隙間を作る（重なるならここを増やす） */
}

/* アクティブな数字の色 */
.voice .slick-dots li.slick-active button {
    color: #0c0074 !important;
}

/* 位置の微調整（必要であれば） */
.voice .slick-dots {
    bottom: -40px; /* スライドの下からの距離 */
}
/*-----------------------------------------------------
選ばれる理由
-------------------------------------------------------*/
.reason{
  background-image: url(../images/reason_bg.png);
  background-size: cover;
}

/*-----------------------------------------------------
料金表
-------------------------------------------------------*/
.price{
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #d7ffda 50%, #d7ffda 100%);
}
.price_ttl{
  color: #fff;
  background-color: #1d1045;
  border-radius: 50vw;
  padding: 1rem 0;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}
.price02{
  background-color: #d7ffda;
}

/*-----------------------------------------------------
オンライン見学
-------------------------------------------------------*/
.online_ttl {
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 23rem;
    padding: .8em 1.2em;
    border-radius: 50vw;
    background-color: #1d1045;
    color: #ffffff;
    margin: 0 auto 15px;
}
.online_ttl::before {
    position: absolute;
    bottom: -15px;
    width: 30px;
    height: 15px;
    background-color: #1d1045;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.online_ttl h2{
  font-size: 1.25rem;
}
.online_text{
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #1d1045;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #1d1045;/*左線*/
  font-size: 1rem;
}

/*-----------------------------------------------------
無料見学会実施中
-------------------------------------------------------*/
.step{
  background-image: url(../images/kengaku_bg.png);
}
.kengaku_pic{
  width: 8rem;
}
/*-----------------------------------------------------
form
-------------------------------------------------------*/
.form{
  background-color: #d7ffda;
}

/*タブ
-------------------------------------------------------*/
.form_tab {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    max-width: 500px;
}
.form_tab > label {
    flex: 1 1;
    order: -1;
    opacity: .5;
    min-width: 70px;
    padding: 0.5rem 1em;
    border-radius: 5px 5px 0 0;
    background-color: #1d1045;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}
.form_tab > label:hover {
    opacity: .8;
}
.form_tab input {
    display: none;
}
.form_tab > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
    border: 3px solid #1d1045;
}
.form_tab label:has(:checked) {
    opacity: 1;
}
.form_tab label:has(:checked) + div {
    display: block;
}

/*フォーム内容
-------------------------------------------------------*/
.tab_bg input {
    display: block;
}
.p-privacy__list {
    list-style-type: none;
}
.badge {
  border-radius: 0px !important;
}
.form_ttl {
    max-width: 20rem;
}
.form_ttl h2{
  font-size: 1.25rem;
}
.form-text {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.2rem;
}

.text-bg-danger{
  background-color: #2b84bc !important;
  border: 2px solid #2b84bc !important;
  font-size: 1rem;
}
.text-bg-light{
  background-color: #fff !important;
  color: #2b84bc !important;
  border: 2px solid #2b84bc !important;
  font-size: 1rem;
}
.btn-primary{
  background-color: #2b84bc !important;
  border: #2b84bc;
}
.btn-lg{
   padding-left: 5rem;
   padding-right: 5rem;
   border-radius: 15px;
}
.form-check-input{
  border: var(--bs-border-width) solid #444;
}
.p-privacy__list {
    margin-left: 1em;
}
.p-privacy h2{
  font-size: 1rem;
}
.p-privacy h3{
  font-size: 1rem;
}
.p-privacy p{
  font-size: 0.8rem;
}
.p-privacy__small{
  font-size: 0.8rem;
  padding-left: 1em;
  text-indent: -1em;
}
.privacy_text{
  font-size: 1.2rem;
}
/*-----------------------------------------------------
footer
-------------------------------------------------------*/
#Footer{
  color: #fff;
  background-color: #3b5991;
  padding: 0 2em 7em;
}
#Footer p{
  font-size: 0.8rem;
}
/*-----------------------------------------------------
スライド
-------------------------------------------------------*/
.slide_box{
  width: 80%;
  margin: 0 auto;
}
.slide-items{
  position: relative;
}

/* 矢印をスライドの真ん中に重ねる */
.slick-prev, .slick-next {
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
/* 左矢印 */
.slick-prev {
  left: -40px !important; 
}

/* 右矢印 */
.slick-next {
  right: -25px !important; 
}

/* 矢印アイコン画像 */
.slick-arrow:before{
    content:""!important;
    width: 35px !important;
    height: 35px !important;
    position: absolute;
    top: 0;
    left: 0;
}

.slick-next:before{
    background: url(../images/slick-next.png)!important;
    background-size: contain!important;
}

.slick-prev:before{
    background: url(../images/slick-prev.png)!important;
    background-size: contain!important;
}

.slide-items img{
  width: 100%;
}

.slick-dots li{
  width: 15px !important;
}
.slick-dots li button:before{
  font-size:15px!important;/*ドットのサイズ*/
  padding-top: 15px;
}
.slick-dots {
  left: 50%;
  transform: translateX(-50%);
}

/*-----------------------------------------------------
 追従 
-------------------------------------------------------*/
.fix-navi_sp{
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  color: #fff;
  transition: opacity 0.3s ease;
  margin-bottom: 0;
}
.fix-navi_sp a{
  color: #fff;
}

.fix-navi_sp li{
  padding: 1rem;
  font-weight: bold;
  font-size: 1.5rem;
  width: 133.33333px;
}
.fix_kengaku{
  background-color: #07818c;
}
.fix_shiryo{
  background-color: #017e2a;
}
.fix_tel{
  background-color: #ff8400;
}
.fix_text{
  font-size: 1rem;
}
.fix_kengaku:hover {
  opacity: 0.6; /* 半透明 */
}
.fix_shiryo:hover {
  opacity: 0.6; /* 半透明 */
}
.fix_tel:hover {
  opacity: 0.6; /* 半透明 */
}

/*scroll-up
-------------------------------------------------------*/
  .scroll-up{
    bottom: 125px;
}

/*-----------------------------------------------------
サンクスページ
-------------------------------------------------------*/
#thks{
  background-color: #fff4d1;
  margin: 0;
}
.thanks_page {
  background-color: #fff4d1;
  min-height: 100vh; /* 画面の高さいっぱいに */
  display: flex;     /* Flexboxを使う */
  align-items: center; /* 上下中央揃え */
  justify-content: center; /* 左右中央揃え */
  padding: 2rem 0;   /* スマホなどで窮屈にならないよう少し余白 */
}
.thanks_box{
  background-color: #fff;
  border-radius: 30px;
  padding: 2rem;
}
.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
    border-radius: 50vw;
    margin: 0 auto;
    font-size: 1.25rem;
    padding: 1rem 0;
    width: 15rem;
}
