@charset "UTF-8";
/*#########################################################

基本設定

#########################################################*/
/* ========================================================
単位用設定
=========================================================*/
/* ========================================================
色用設定
=========================================================*/
/* ========================================================
フォント用設定
=========================================================*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&display=swap");

/*#########################################################

レイアウト用設定

#########################################################*/
/* ========================================================
mixin mq用の変数設定
=========================================================*/
/*
▼iOSデバイス
iPhone5: 320 × 568
iPhone 6-8: 375 × 667（1334x750）
iPhone 6-8 plus: 414 × 736（1920x1080）
iPhone X,XS,11Pro: 375 × 812（1125x2436）
iPhone XR,11: 414 × 896（828x1792）

iPad/iPad Mini: 768 × 1024
iPad Pro: 1024 × 1366
https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions

▼ブートストラップ
xs： ～767px
sm： 768～991px
md： 992～1119px
lg： 1120px～
*/
/* ========================================================
メディアクエリ用Mixin
=========================================================*/
/*
ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
ステップ2.該当する設定を有効化、その他をコメントアウトする。
ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
→実際の設定は_base.scssではなく、インポート元で行う。
*/
/*
// ステップ2：モバイルファースト用（デスクトップファーストの場合はコメントアウト）
$breakpoints: (
	// タブレット
	'md': 'screen and (min-width: ' + ($screen-sm-max + 1) + ') and (max-width: ' + ($screen-md-max) + ')',
	// デスクトップ
	'lg': 'screen and (min-width: ' + ($screen-sm-max + 1) + ')',
) !default;
*/
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
	// デフォルト
	background: yellow;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// デスクトップ
	@include mq(lg){
		background: red;
	}
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
	// デフォルト
	background: red;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// スマートフォン
	@include mq(sm){
		background: yellow;
	}
}
//------------------------------
*/
/* ========================================================
お申込みについて
=========================================================*/
.shitsumon .moushikomi-container h3.tit {
  margin-bottom: 16px;
  line-height: 0.8;
  font-size: 25px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .shitsumon .moushikomi-container h3.tit {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.8;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 14px;
  }
}

.shitsumon .moushikomi-container .txt-box p {
  margin-bottom: 48px;
}

@media screen and (max-width: 599px) {
  .shitsumon .moushikomi-container .txt-box p {
    margin-bottom: 35px;
    padding-bottom: 0;
    font-size: 14px;
  }
}

.shitsumon .moushikomi-container .faq-box dl {
  border-radius: 5px;
  margin: 0 auto 15px;
  border: 1px solid #cccccc;
}

@media screen and (max-width: 599px) {
  .shitsumon .moushikomi-container .faq-box dl {
    margin-bottom: 26px;
  }
}

.shitsumon .moushikomi-container .faq-box dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  /* display: flex; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  /* align-items: center; */
  padding: 25px 50px 25px 100px;
  position: relative;
  font-size: 1.6rem;
  /* line-height: 1.3; */
  text-align: left;
  font-weight: 400;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .shitsumon .moushikomi-container .faq-box dl dt {
    padding: 22px 45px 22px 17px;
    /* line-height: 1.8; */
    font-size: 14px;
  }
}

.shitsumon .moushikomi-container .faq-box dl dt::before {
  position: absolute;
  left: 25px;
  content: "Question";
  font-size: 1.2rem;
  color: #1766dd;
  font-weight: 700;
}

@media screen and (max-width: 599px) {
  .shitsumon .moushikomi-container .faq-box dl dt::before {
    font-size: 1.3rem;
    left: 15px;
    top: -15px;
    background: #fff;
  }
}

.shitsumon .moushikomi-container .faq-box dl dt::after {
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 50%;
  content: "";
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: url(../img/shitsumon/moushikomi/icon_arrow.svg) left top/100% no-repeat;
}

.shitsumon .moushikomi-container .faq-box dl dd {
  padding: 0 30px;
  overflow: hidden;
  max-height: 0;
  text-align: left;
  background: rgba(229, 229, 229, 0.25);
  border-top: 0 solid rgba(229, 229, 229, 0.5);
  border-radius: 0 0 5px 5px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media screen and (max-width: 599px) {
  .shitsumon .moushikomi-container .faq-box dl dd {
    padding: 0 17px;
    font-size: 1.5rem;
  }
}

.shitsumon .moushikomi-container .faq-box dl.on dt::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.shitsumon .moushikomi-container .faq-box dl.on dd {
  max-height: 999px;
  padding: 26px 30px;
  border-top-width: 1px;
}

@media screen and (max-width: 599px) {
  .shitsumon .moushikomi-container .faq-box dl.on dd {
    padding: 22px 17px;
    font-size: 14px;
  }
}

.faq-box {
  margin-bottom: 50px;
}

@media screen and (max-width: 599px) {
  .faq-box {
    margin-bottom: 35px;
    padding-top: 14px;
  }
}

.shitsumon .moushikomi-container .btn-box {
  margin: 0 auto;
  width: 450px;
}

@media screen and (max-width: 599px) {
  .shitsumon .moushikomi-container .btn-box {
    width: 100%;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 599px) {
  .shitsumon .moushikomi-container .btn-box .btn-radius-solid {
    font-size: 1.5rem;
  }
}

.shitsumon .moushikomi-container .link-btn-box {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

@media screen and (max-width: 599px) {
  .shitsumon .moushikomi-container .link-btn-box {
    gap: 12px;
  }
}


.shitsumon .moushikomi-container .link-btn-box a {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  width: 32%;
  text-align: center;
  padding: 12px 15px;
  border-radius: 4px;
  background: #0033cc;
  height: auto;
}

@media screen and (max-width: 599px) {
  .shitsumon .moushikomi-container .link-btn-box a {
    display: block;
    width: 48%;
    font-size: 13px;
    height: 73px;
    line-height: 22px;
    margin: auto;
  }

  .shitsumon .moushikomi-container .link-btn-box a:nth-child(even) {
    width: 48%;
    font-size: 13px;
    line-height: 49px;
  }

  .shitsumon .moushikomi-container .link-btn-box a:nth-child(odd) {
    padding-top: 15px;
  }
}