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


@media only screen and (max-width : 768px) {

/*-------------------------------------------------------------------------------------
スマホ用レイアウト（768px以下スクリーン）
----------------------------------------------------------------------------------------*/

/*--------------------------------------------------
共通設定(スマホ)
-----------------------------------------------------*/
	
/*body全体の初期スタイル調整*/
body {
	width: 100%;
  -webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
}
    /*--------------------------------------------------
全体レイアウト／背景設定（スマホ）
-----------------------------------------------------*/
/*記事(ボディ)エリア*/
.article {
  font-size: 1.5em; /*=15px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

.article{
	width: 100%;
    overflow: hidden;
}

/*カラム全体の幅を変更する*/
.top_image_in,.section_inr {
  width: 100%;
  margin: 0 auto; 
}
    
    .pc_img { display: none !important; }
    .sp_img { display: block !important; }
    
/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
  position: static;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  overflow: auto;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 33%;
  float: none;
  display: block;
  margin: 0.5em auto;
}

.header_btn {
display: none;

}


 /*--------------------------------------------------
見出しタグ設定（スマホ）
-----------------------------------------------------*/
h2 {
  font-size: 1.8em;
    line-height: 1.3;
    letter-spacing: .5px;
  font-weight: 600;
    margin: 0 0 1em;
    padding: 0;
    text-align: center;
}

.dual-underline-short {
display: block;
  position: relative;
  padding-bottom: 20px; /* 見出しと線の間隔 */
}

.dual-underline-short::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* ★ 中央寄せ */
  bottom: 0;
  width: 200px; /* ★ 下線の長さ（固定） */
  height: 3px; /* 下線の太さ */
  background: linear-gradient(to right, #3798e1 50%, #ff8f00 50%);
}




.tit_p {
font-size: 1.2em;
text-align: center;
font-weight: 600;
    letter-spacing: .5px;
  font-weight: 600;
    margin: 0 0 ;
    padding: 0;
}



h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	text-align: center;
}

h3::before,
h3::after {
	content: '';
	width: 70px;
	height: 3px;
	background-color: #ff8f00;
}

h3::before {
	margin-right: 20px;
}
h3::after {
	margin-left: 20px;
}


/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/

.section_01 {
    padding: 2em 0;
}
.section_02 {
  padding: 2em 0;
}

.section_03 {
  padding: 2em 0;
}

.section_04 {
  padding: 2em 0;
}
.section_05 {
    padding: 2em 0;
}


/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
    background-image: none;
  }
  .top_image_in img {
    width: 100%;
  }
/*--------------------------------------------------
CTA
-----------------------------------------------------*/

.section_cta {
  background-image: url("../images/bg_cta_sp.jpg");
  background-size: cover;
  background-position: top center;
  padding: 4em 0 1em;
}

.sp_btn_cta {
  width: 95%;
  margin: 1em auto;
}


/*--------------------------------------------------
case
-----------------------------------------------------*/

.ctn_nayami {
  display: flex;
  justify-content: center;
  padding: 1em 0 0;
  flex-wrap: wrap;
}
.box_nayami {
  width: 47%;
  margin: 10px 5px
}


/*--------------------------------------------------
play
-----------------------------------------------------*/


.txt_play {
  float: none;
  width: 95%;
  margin: 0 auto;
}
.tit_play {
  width: 90%;
  margin: 1em 0;

}

.img_play {
  float: none;
  width: 95%;
  margin: 0 auto;
  padding-top: 1em;
}



/*--------------------------------------------------
reason
-----------------------------------------------------*/

.big-orange {
  font-size: 50px;
  color: #ff8f00;
}


.midashi_logo {
  width: 75%;
  margin: 0 auto 1em;
}
.ctn_reason {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.item_reason {
  width: 90%;
  margin-bottom: 10px;
}

.box_set {
  width: 95%;
  padding: 1em ;
  margin: 1em auto;
}

.set_hontai {
    margin-top: 0.5em;
  float: none;
  width: 95%;
  margin: 0 auto;
}
.set_parts {
  float: none;
  width: 95%;
  margin: 0 auto 0;
  padding: 0.5em;
}


/*--------------------------------------------------
flow
-----------------------------------------------------*/
.tit_flow {
  width: 85%;
  margin: 0 auto 1em;
}

.flow {
  width: 90%;
  margin: 1em auto 0;
}

/*--------------------------------------------------
price
-----------------------------------------------------*/

.tit_price {
  width: 80%;
  margin: 0 auto 1em;

}

    
.img_osusume {
  width: 90%;
  margin: 1em auto 0;
}


/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/

.accordion {
  max-width: 98%;
  text-align: left;
  margin: 0 auto;
}

/*------------------------------

ここからアコーディオンのCSS

------------------------------*/
/* チェックボックスは非表示 */
.accordion-hidden {
  display: none;
}

/* Question部分 */
.accordion-open {
  display: block;
  padding: 1em 3em 1em 3em;
  background: #ff8f00;
  cursor: pointer;
  border-radius: 100vh;
  margin: 8px 0;
  position: relative;
  font-weight: bold;
  text-align: left;
  font-size: 20px;
  color: #fff;
}

/* 開閉状態を示すアイコン+の作成 */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}

/* 一本は縦にして+を作る */
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* アコーディオンが開いたら縦棒を横棒にして-にする */
.accordion-hidden:checked + .accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* Answer部分 */
.accordion-close {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
}

/* チェックボックスにチェックが入ったらAnswer部分を表示する */
.accordion-hidden:checked + .accordion-open + .accordion-close {
  height: auto;
  opacity: 1;
  padding: 10px 1em;
  background: #d3e8f8;

}




  
      /*--------------------------------------------------
下部固定ヘッダー（PC）
-----------------------------------------------------*/

#pc_btn {
  display: none!important;
}


      /*--------------------------------------------------
下部固定ヘッダー（スマホ）
-----------------------------------------------------*/


.sp_form {
    width: 100%;

}



#sp_btn {
    display: block!important;
    width: 100%;
    background:rgba(0,0,0,0.7);
    text-align: center;
    padding: 1em 5px;
    transition: .3s;
}
    
#sp_btn img {
    width: 100%;
}

.fixed {
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 100000;
    
}

   
/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  padding: 2em 0.5em 12em;
  font-size: 1.2em;
}
}