@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 {
  border-left: none;
  border-right: none;
  font-size: 1.6em; /*=16px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

.article{
	width: 100%;
}

/*カラム全体の幅を変更する*/
.top_image_in,.section_inr {
  width: 100%;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
}
/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
  top: 0;
  z-index: 5000;
  overflow: auto;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
    
/*ヘッダーのロゴ*/
.header_logo {
  width: 30%;
  float: left;
  margin: 0;
}
/*ヘッダーの問い合わせボタン*/
.header_form {
  width: 48%;
  float: right;
  margin:1.7em 0.5em;
    margin-right: 6em;
}
    /*　ハンバーガーボタン　*/
    .hamburger {
        display: block;
        position: fixed;
        z-index: 5003;
        right: 2%;
        top: 3%;
        width: 40px;
        height: 40px;
        cursor: pointer;
        text-align: center;

    }
    
    
    
    
    
/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: none;
}
.top_image_in img {
  width: 100%;
}
    .pc_img { display: none !important; }
    .sp_img { display: block !important; }

    
/*--------------------------------------/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
.section_01 {
    padding: 2em 0.5em;
    color: #fff;
}
.section_01 a{
    color: #fff;
}

.section_pr {
    padding: 2em 0.5em;
    color: #1a1a1a;
    background-color: #fff;
}

h2 {
    font-size: 1.6em;
    line-height: 1.4;
    font-weight: bold;
}

h4 {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
    border-left: 2px solid #ccc;
    padding-left: 8px;
}

/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/


.cta_main {
    margin: 0 auto ;
    padding:0.5em 0 1em;
}
.cta_main p {
    font-size: 1.2em;
}
.coupon {
    width: 100%;
    margin: 0 auto 0;
    padding-top: 10px;
}
.heijitu {
    width: 85%;
    margin: 0 auto 0;
    padding: 10px 0 0;
}

.btn_cta {
    width: 98%;
    margin: 0.8em auto 0;
}



.img_graf {
    background-color: #fff;
    padding: 0.5em 2em 2em;
}
.sec_voice {
 background-image: url("../images/bg_voice.jpg");
    background-size: cover;}
.box_voice {
    padding: 10px 0;
}


/*--------------------------------------------------
アクセス
-----------------------------------------------------*/
.sec_access {
    background-color: #E3E4EB;
    padding: 2em 10px;
}
.sec_access a {
    text-decoration: underline;
    color: #1a1a1a;
}

.tit_access {
    width: 45%;
    margin: 1em auto;
}

.tit_tenpo {
    width: 75%;
    margin: 30px auto 10px;
}


.img_tenpo {
    width: 100%;
    margin: 0 auto;
}

table{
  width: 100%;
    margin: 1em 0 ;
}

table th{
  position: relative;
  text-align: left;
  width: 20%;
}

table th:after{
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #333;
  position: absolute;
  top:calc(50% - 1px);
  right: -28px;
}

table td{
  text-align: left;
  padding:7px 0 7px 40px;
  width: 80%;
}









/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
.sec_faq {
    background-color: #fff;
}

.tit_faq {
    width: 35%;
    margin: 0 auto;
    padding: 3em 0 2em;
}

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

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

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

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

/* Question部分 */
.accordion-open {
    display: block;
    padding: 1.5em 2em 1.5em 1em;
    background: #fff;
    border-bottom: 2px solid #171717;
    cursor: pointer;
    margin: 5px 0;
    position: relative;
    color: #171717;
    font-weight: bold;
    text-align: left;
    /* 変更部分 */
}

/* 開閉状態を示すアイコン+の作成 */
.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;
    background: #f1f1f1;
}
    
    
/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  padding: 2em 0em ;
  font-size: 1.2em;
}
}