@charset "UTF-8";
/* CSS Document */

/*固定ページ共通CSS*/
/*
====参考ブレイクポイント========================
* X-Small  |	--               |	575px以下
* Small    |	sm               |	576px以上ｖ/　767px以下
* Medium   |	md               |	768px以上　/　991px以下
* Large    |	lg               |	992px以上　/　1199px以下
* Extra    |	large	xl         |	1200px以上　/　1399ｐｘ以下
* Extra    |	extra large	xxl  |	1400px以上
=========================================
*
*/
.font-orange {
    color: var(--accent-color);
}

.font-b {
    font-weight: bold;
}
.sp {
  display: none;
}
.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }

}

/* テキストの下線をドットでグラデーションさせる */
.border-dotted {
    position: relative;
}

.border-dotted:before,.border-dotted:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    }

.border-dotted:before {
        z-index: 1;
        height: 3px;
        background-image: linear-gradient(to right, transparent, transparent 2px, #fff 2px, #fff 5px);
        background-size: 5px 3px;
    }

.border-dotted:after {
        height: 2px;
        background: linear-gradient(to right, #F75940, #FFC9C0);
    }

/* お申し込みボタン */
.applyBtn{
    justify-content: center;
    gap: 2em;
}
.applyBtn a img.btn-apply {
    filter: drop-shadow(0 8px 0 #BB240C);
}
.applyBtn a img.btn-tel {
    filter: drop-shadow(0 8px 0 #0D938A);
}
.applyBtn a img:hover {
    filter: none;
    position: relative;
    top: 8px;
}
/* グレイのBOX */
.grayBox {
    justify-content: center;
    gap: 2em;
  }
  .grayBox .grayWrap {
    text-align: center;
    width: 33.33333%;
  }
  .grayBox .grayWrap .bg-gray {
    border-radius: 6px 6px 0 0;
    background: linear-gradient(#6D8294, #364857);
    color: #fff;
    padding: 0.5em;
    font-weight: bold;
    font-size: 1.2rem;
  }
  .grayBox .grayWrap .borderBox {
    border-right: 3px solid var(--font-color);
    border-left: 3px solid var(--font-color);
    border-bottom: 8px solid var(--font-color);
    border-radius: 0 0 6px 6px;
    background: #fff;
    padding: 1em;
  }
  .grayBox .grayWrap .borderBox .title {
    font-weight: bold;
    margin: 0.8em 0;
  }
  .grayBox .grayWrap .borderBox .price {
font-weight: bold;
    font-size: 1.8rem;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding-right: 1em;
  }
  .grayBox .grayWrap .borderBox .price .tax {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: normal;
    font-size: 0.8rem;
  }
  .grayBox .grayWrap .borderBox .price .yen {
    position: absolute;
    bottom: 0;
    right: 0.6em;
  }

  /* グレイのボタン */
  .grayBtn{
    position: relative;
    justify-content: center;
    background: #fff;
    border: 3px solid var(--font-color);
    box-shadow: 0px 5px 0px 0px var(--font-color);
    border-radius:60px;
    width: 450px;
    margin: 1em auto;
    padding: 2em;
    transition: .2s;
  }
  .grayBtn:hover{
    transform: translate3d(0, 8px, 0);
    box-shadow: none;
  }
  .grayBtn a{
    display: block;
    text-decoration: none;
    }
    .grayBtn span{
      font-weight: bold;
      font-size: 1.2rem;
    }
    .grayBtn img{
      padding-left: .5em;
    }

    /* オレンジのアンカーリンクボタン */
    .link-orangeBtn {
      max-width: 980px;
      margin: 0 auto;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 1em;
    }
    .link-orangeBtn li {
      position: relative;
      width: 48%;
      border-radius: 100px;
      background: var(--light-orange, #FFD1A5);
      text-align: center;
      box-sizing: border-box;
    }
    .link-orangeBtn li a {
      display: block;
      font-size: 1.2rem;
      text-decoration: none;
      font-weight: bold;
      padding: 1.5em;
    }
    .link-orangeBtn li a:hover {
      color: var(--font-color);
    }
    .link-orangeBtn li:after {
      position: absolute;
      background-image: url(../../img/pages/orange-arrow.svg);
      content: "";
      width: 20px;
      height: 20px;
      right: 3em;
      bottom: 1.8em;
      transition: all 0.2s ease;
    }
    .link-orangeBtn li:hover:after {
      bottom: 1.6em;
    }
/* ---フォーム箇所のcss--- */
/* 大枠 */
.form-container {
  display: none;
  margin: 0 40px 4em;
}

.form-container.active {
  display: block;
}
/* エラーメッセージ */
.form-container .error-message,
.form-container .vali  {
  display: none;
  color: var(--accent-color);
  font-weight: bold;
  font-size: .8rem;
  margin-top: .2em;
}
.form-container .vali.NG  {
  display: block;
}
.form-container span.vali.NG  {
  display: inline;
}


.form-container .table-message{
  color: var(--accent-color);
  font-weight: bold;
  font-size: .8rem;
}
/* テキストエリア */
.form-container .form_area textarea {
  width: 100%;
  padding: 1em;
  border-radius: 6px;
  border: #364857 1px solid;
  box-sizing: border-box;
}
.form-container .form_area .privacy {
  height: 200px;
  overflow-y: scroll;
  padding: 2em;
  border: 1px solid #364857;
  border-radius: 6px;
  background: #fff;
  line-height: 1.4;
  font-size: .9rem;
}

  .form-container .form_area .privacy::-webkit-scrollbar {
      width: 10px;
  }

  .form-container .form_area .privacy::-webkit-scrollbar-track {
      background-color: #fff;
  }

  .form-container .form_area .privacy::-webkit-scrollbar-thumb {
      background-color: #364857;
      border-radius: 5px;
  }

  .form-container .form_area .privacy ul {
      margin: 0.5em 0;
  }

  .form-container .form_area .privacy ul li {
          list-style: disc;
          margin-left: 1.3em;
          font-size: .9rem;
      }
/* 入力画面に戻るボタン */
.form-container #prev_btn{
  background: #a5a5a5;
  margin: 3em auto 0;
  padding: .8em 1.2em;
}
  .form-container #prev_btn img {
      position: relative;
      right: .3em;
      left: auto;
      transition: .2s;
      display: block;
      transform: rotate(-180deg);
  }
  .form-container #prev_btn:hover img {
          right:.6em;
  }
  /* 送信ボタン(submit) */
.form-container .form-btn{
    position: relative;
    margin: 2em auto 0;
  }
.form-container .form-btn #submit {
  background: none;
  border: none;
  outline: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
  padding: 1.2em;
}
.form-container .btn-text{
  text-align: center;
}

/* オレンジボタン */
.form_btn_detail {
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background: linear-gradient(#FF9787, #F75940);
  border-radius: 10px;
  margin: 3em auto;
  cursor: pointer;
  width: 400px;
  position: relative;
  padding: 1.2em;
}
.form_btn_detail p {
      padding: 0 .5em;
      display: inline-block;
      color: #fff;
      font-weight: bold;
      transition: .2s;
  }

.form_btn_detail img {
      position: relative;
      left: 0;
      transition: .2s;
      display: block;
}

.form_btn_detail:hover img {
    left: .3em;
}
/* フォームのトップ　ステップ箇所 */
.form-step {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 24px;
  margin-bottom: 6em;
  margin-top: 60px;
}

.form-step .step-flow {
      display: flex;
      align-items: center;
      color: #999999;
      column-gap: 46px;
}

.form-step .step-flow.active {
          z-index: 1;
          color: var(--navy, #364857);
}

.form-step .step-flow.active img,.form-step .step-flow.active rt {
              opacity: 1;
          }

.form-step .step-flow:not(:last-child)::before {
          margin-left: 1px;
          border-left-color: #FFF;
      }

.form-step .step-flow:not(:last-child)::before,.form-step .step-flow:not(:last-child)::after {
          border-width: 25px;
          border-left-width: 12px;
      }

.form-step .step-flow img {
          opacity: 0.5;
      }
.form-step .step-flow ruby {
          font-size: 18px;
          font-weight: 700;
      }

.form-step .step-flow rt {
          text-align: left;
          color: var(--orange, #F75940);
          font-size: 16px;
          opacity: 0.5;
      }
.form-step-menu .form-step-menu_title-1 {
            align-items: center;
            justify-content: center;
            display: flex;
            margin-bottom: 24px;
            font-size: 24px;
        }

.form-step-menu .form-step-menu_title-1 .font-orange {
            font-size: 1.6rem;
        }

 /* フォームの枠箇所 */
 .form_area {
  max-width: 720px;
  margin: 0 auto;
}
.form_area h2 {
  font-size: 1.2rem;
  padding-bottom: 0.5em;
}
.form_area select,
.form_area input[type=text],
.form_area input[type=email],
.form_area [type=tel] {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  padding: 1.5em;
  background: #fff;
  border: 1px solid #364857;
  border-radius: 6px;
}
.form_area .formWrap {
  margin: 5em 0 0;
}

.form_area .formWrap .col1 {
  width: 100%;
}
.form_area .formWrap .col2 {
  width: 50%;
}
.form_area .formWrap .col3 {
  width: 33.33333333333%;
}
.form_area .formWrap .col4 {
  width: 25%;
}
.form_area .formWrap .col5 {
  width: 20%;
}
.form_area .formWrap .col6 {
  width: 16.6666666666%;
}
.form_area .formWrap .col7 {
  width: 14.2857142857%;
}
.form_area .formWrap .col8 {
  width: 12.5%;
}
.form_area .formWrap .col9 {
  width: 11.1111111111%;
}
.form_area .formWrap .col10 {
  width: 10%;
}

.form_area .formWrap p.form-title {
  margin: 1em 0 0.2em;
}
.form_area .formWrap .flexWrap {
  column-gap:24px;
}
.form_area .formWrap .flexWrap.postWrap{
  column-gap: 0;
}

.form_area .formWrap .flexWrap .postBetweenBar{
  padding: 0 calc((24px - 10.5px) / 2);
}

.form_area .formWrap .col2 {
  width: 48%;
}
.form_area .formWrap .must {
  position: relative;
}
.form_area .formWrap .must:after {
  content: "※";
  color: var(--accent-color);
  font-size: 0.8rem;
  position: absolute;
  top: 0;
  padding-left: 0.4em;
}
.form_area .formWrap input.email {
  margin-top: 0.8em;
}
.form_area .formWrap ul.radioWrap {
  margin: 2em 0;
  justify-content: flex-start;
}
.form_area .formWrap ul.radioWrap li {
  min-width: 120px;
}
/* フォーム確認画面 */
.form-container.table p.top {
  text-align: center;
}

.form-container.table .tableArea {
      border-radius: 8px;
      border: 1px solid #364857;
}

.form-container.table .tableArea .flexWrap {
          justify-content: center;
          align-items: center;
}

.form-container.table .tableArea .flexWrap .table_left,.form-container.table .tableArea .flexWrap .table_right {
              display: flex;
              align-items: center;
              padding-left: 2em;
          }

.form-container.table .tableArea .flexWrap .table_left {
              width: 30%;
              height: 100%;
              min-height: 80px;
              background: #364857;
              border-bottom: 1px solid #fff;
}

.form-container.table .tableArea .flexWrap .table_left h3,
.form-container.table .tableArea .flexWrap .table_left h4{
                  color: #fff;
                  padding: 0;
                  font-size: 1rem;
                  font-weight: normal;
              }


.form-container.table .tableArea .flexWrap .table_right {
              width: 70%;
              height: 100%;
              min-height: 80px;
              background: #fff;
              color: #364857;
              border-bottom: 1px solid #364857;
          }

.form-container.table .tableArea .flexWrap.table_top .table_left {
              border-radius: 8px 0 0 0;
          }

.form-container.table .tableArea .flexWrap.table_top .table_right {
              border-radius: 0 8px 0 0;
          }

.form-container.table .tableArea .flexWrap.table_bottom .table_left {
              border-radius: 0 0 0 8px;
          }

.form-container.table .tableArea .flexWrap.table_bottom .table_right {
              border-radius: 0 0 8px 0;
}
.form-container.table .tableArea .flexWrap.table_bottom .table_left,.form-container.table .tableArea .flexWrap.table_bottom .table_right {
              border-bottom: none;
}




/* --------スマホの表示--------     */
       
@media screen and (max-width: 767px) { 
  /* 大枠 */
  .form-container {
        margin: 0 0 4em;
  }
  
  /* お申し込みボタン */
  .applyBtn{
    flex-direction:column;
    gap: 1.5em;
  }
  .applyBtn li{
    text-align: center;
  }
  .applyBtn img{
    width: 90%;
  }
/* グレイのBOX */
  .grayBox {
    flex-direction:column;
  }
  .grayBox .grayWrap{
    width: 100%;
  }
/* グレイのボタン */
  .grayBtn{
    width: 80%;
  }
  /* オレンジのアンカーリンクボタン */
  .link-orangeBtn li {
    width: 98%;
  }
/* ---フォーム箇所のcss--- */
  .form_btn_detail {
    width: 80%;
  }
  .form_area .formWrap .flexWrap {
    column-gap:16px ;
  }

  .form_area .formWrap .flexWrap .postBetweenBar{
    padding: 0 calc((16px - 10.5px) / 2);
  }

  /* フォームのトップ　ステップ箇所 */
  .form-step{
  margin-bottom: 4em;
  justify-content: space-between;
  flex-wrap: nowrap;
  column-gap: 0;
  margin-top: 24px;
}

.form-step .step-flow ruby{
    font-size: .8rem;   
}

.form-step .step-flow{
  column-gap: 0;
}

.form-step .step-flow img{
  width: 20px;
  height: 20px;
  padding-left: .5em;
}

/* フォーム確認画面 */
  .form-container.table .tableArea .flexWrap .table_left,.form-container.table .tableArea .flexWrap .table_right {
    padding-left: .5em;
  }
  .form-container.table .tableArea .flexWrap .table_left h3{
    font-size: .8rem;
  }
}

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

}
