@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 {
  background-color: #fff;
  border-left: none;
  border-right: none;
  font-size: 1.7em; /*=17px*/
}
/*記事(ボディ)エリアの行間*/
.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-static;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  overflow: auto;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 30%;
  float: left;
  padding: 1em 0 ;
}

.header_tel {
    width: 35%;
    float: right;
    padding: 1em ;

  }
  .header_line {
    width: 35%;
    float: right;
    padding: 1em 0.7em;
  }



 /*--------------------------------------------------
見出しタグ設定（スマホ）
-----------------------------------------------------*/
h2 {
  font-size: 1.8em;
    margin: 0 0 0.5em;
}


h3 {
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.5em;
    
}

h5 {
      background-color: #ff914c;
    font-size: 1.4em;
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    padding: 0.5em 0 ;
    margin: 0 0 0.5em;

}

/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
.section_slider {
  padding: 1em 0;
}

.section_01 {
  padding: 2em 0 ;
}
.img_user {
  width: 80%;
  margin: 2em auto 1em;
}


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


.section_04 {
    padding: 2em 0em ;
  }


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

.section_cta {
  padding: 0 0 2em;

}
.img_cta {
    width: 90%;
    margin: 0 auto ;
}

.btn_line {
    width: 95%;
    margin: 0.5em auto 0;

}


/*--------------------------------------------------
user
-----------------------------------------------------*/
.img_user {
  width: 98%;
  margin: 1em auto 0;
}

/*--------------------------------------------------
flow
-----------------------------------------------------*/
.img_flow {
  width: 95%;
  margin: 1em auto 2em;
}

/*--------------------------------------------------
動画
-----------------------------------------------------*/

.movie {
    width: 100%;
    margin: 2em auto 1em;
}
.iframe-wrap {
    position: relative;
    width: 95%;
    padding-top: 56.25%;
    overflow: auto;
    margin: 0 auto ;
}

.iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
/*--------------------------------------------------
理由
-----------------------------------------------------*/
.box_reason01 {
  width: 95%;
  margin: 1em auto ;
  padding: 1em 0.5em;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
}
.img_reason {
  width: 80%;
  margin: 0 auto;
}
.ctn_reason {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
.box_reason {
  width: 95%;
  margin: 1em 0;
  padding: 1em 0.5em;
}

/*--------------------------------------------------
お客様の声
-----------------------------------------------------*/
.tit_voice {
  width: 95%;
  margin: 0 auto 5px;

}

.ctn_voice {
  margin-top: 1em;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

.box_voice p {
  line-height: 1.5;
}



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


.accordion {
  max-width: 95%;
  padding: 1em 0em ;
  text-align: left;
  margin: 0 auto;
}

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

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

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

/* Question部分 */
.accordion-open {
  display: block;
  padding: 0.5em 2em 0.5em 1em;
  cursor: pointer;
  margin: 5px 0;
  position: relative;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  /* 変更部分 */
}

/* 開閉状態を示すアイコン+の作成 */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 15px;
  height: 2px;
  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 1.5em;

}

.ctn_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.item_bnr {
  width: 90%;
  margin: 0.5em 0;
}



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


    .menu_left {
        float: left;
        width: 50%;
        padding: 1em 0.2em;
    }

    .menu_right {
        float: right;
        width: 50%;
        padding: 1em 0.2em;
    }
#sp_btn {
        display: block!important;
        width: 100%;
        background:rgba(0,0,0,0.5);
        text-align: center;
        padding: 0.5em 0em;
        transition: .3s;
    }
        
 #sp_btn img {
        width: 100%;
    }
    
.fixed {
        position: fixed;
        bottom: 0px;
        left: 0px;
        z-index: 100000;
        
    }


/*--------------------------------------------------
お問い合わせフォーム
-----------------------------------------------------*/



.wrap_form {
    margin: 0 auto;
    padding: 1.2em 0.8em;
    background-color: #fff;
    border-radius: 20px;
    margin-bottom: 1em;
}

.Form-Item-Label-Required {
   
    margin-right: 8px;
    width: 48px;
    line-height: 1.7em;
    display: inline-block;
    text-align: center;
    background: #E42626;
    color: #fff;
    font-size: 75%;
}

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