@charset "UTF-8";
/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%; /*emの計算をしやすくするための定番設定*/
    font-family: "ヒラギノ角ゴ ProN", sans-serif;
  font-style: normal;
  line-height: 1.7;
  color: #1a1a1a;
}
/*リンク文字の設定*/
a {
  text-decoration: none;
}

/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}
/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto;
}


/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
        background-image: url("../images/bg_main.jpg");
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
/*記事(ボディ)エリア*/
.article {
  font-size: 1.7em; /*=16px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

/*カラム全体の幅を変更する*/
.article, .top_image_in {
  width:700px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
}

/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  overflow: auto;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 25%;
  float: left;
  margin: 0;
}
/*ヘッダーの問い合わせボタン*/
.header_form {
  width: 40%;
  float: right;
  margin: 2.5em 0;
}

/*ヘッダー内の画像が常に幅100%になるように*/
.header_logo img, .header_form img {
  width: 100%;
}

    /*--------------------------------------------------
ハンバーガーメニュー
-----------------------------------------------------*/
    /*　ハンバーガーボタン　*/
    .hamburger {
        display: block;
        position: fixed;
        z-index: 5003;
        top: 4%;
        right: 2%;
        width: 40px;
        height: 40px;
        cursor: pointer;
        text-align: center;

    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 6px;
        background: #1a1a1a;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 3px;
    }

    .hamburger span:nth-child(2) {
        top: 13px;
    }

    .hamburger span:nth-child(3) {
        top: 23px;
    }

    /* ナビ開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 16px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    nav.globalMenuSp {
        display: block;
        position: fixed;
        z-index: 5002;
        top: 0;
        left: 0;
        color: #1a1a1a;
        background: #fff;
        text-align: center;
        transform: translateY(-100%);
        transition: all 0.6s;
        width: 100%;
    }

    nav.globalMenuSp ul {
        display: block;
        background: #fff;
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    nav.globalMenuSp ul li {
        display: block;
        list-style-type: none;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid #ccc;
    }

    nav.globalMenuSp ul li:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    nav.globalMenuSp ul li:hover {
        background: #eee;
    }

    nav.globalMenuSp ul li a {
        display: block;
        color: #1a1a1a;
        font-size: 1.3em;
        padding: 1em 0;
        text-decoration: none;
        font-weight: 600;
    }
    nav.globalMenuSp ul li:before {
        display: none;
    }

    /* このクラスを、jQueryで付与・削除する */
    nav.globalMenuSp.active {
        transform: translateY(0%);
    }

    .h-text {
        width: 50px;
        font-size: 10px;
        color: #333;
        text-align: center;
        display: inline-block;
        font-weight: bold;

    }





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

.pc_img { display: block !important; }
.sp_img { display: none !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;
}
h3 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: bold;
    text-align: center;
    margin: 20px 0 10px;
}


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

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

.area_cta {
        background-image: url("../images/bg_cta.jpg");
    background-size: cover;
    background-position: top center;
    
}


.cta_main {
    margin: 0 auto ;
    padding:0.5em 0 2em;
}
.cta_main p {
    font-size: 1.5em;
}
.coupon {
    width: 75%;
    margin: 0 auto 0;
    padding-top: 10px;
}
.heijitu {
    width: 65%;
    margin: 0 auto 0;
    padding: 10px 0;
}

.btn_cta {
    width: 90%;
    margin: 1em auto 0.5em;
}
/*--------------------------------------------------
カウントダウン
-----------------------------------------------------*/
.cdt_wrapper {
    background-color: #dbcaa8;
    font-weight: bold;
    text-align: center;
    line-height: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px 0;
  }
  
  @media screen and (min-width: 768px) {
    .cdt_wrapper {
      line-height: 2.5;
      font-size: 1.8rem;
      padding: 0 20px;
    }
  }
  
  .cdt_wrapper small {
    font-size: .6em;
    padding: 0 .4em;
  }
  
  .cdt {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .cdt_txt {
    font-size: .6em;
    display: inline-block;
    margin-right: .6em;
  }
  
  @media screen and (min-width: 768px) {
    .cdt_txt {
      font-size: .5em;
    }
  }
  
  .cdt_txt span {
    display: block;
    line-height: 1;
  }
  
  .cdt_date {
    font-size: 1.6rem;
  }
  
  .cdt_num {
    background-color: #ffffff;
    /* font-size: 18px; */
    padding: 0 .15em;
  }
  
  @media screen and (min-width: 768px) {
    .cdt_num {
      line-height: 1;
      padding: .3em .15em;
    }
  }



.img_graf {
    background-color: #fff;
    padding: 1em 4em 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: 38%;
    margin: 1em auto;
}

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

.wrap_gmap {
    background-color: #fff;
    padding: 1.5em;
}

.img_tenpo {
    width: 100%;
    margin: 10px auto;
}

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

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

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

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









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

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

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

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

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

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

/* Question部分 */
.accordion-open {
    display: block;
    padding: 1.5em 0em 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: 20px;
    height: 3px;
    background: #b99958;
    position: absolute;
    top: 50%;
    right: 5%;
    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;
}






    /*--------------------------------------------------
下部固定ヘッダー（スマホ）
-----------------------------------------------------*/
     
#sp_btn {
        display: none;
}



/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #383635;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
    color: #fff;
}
.footer a {
  color: #fff;
}
