@charset "UTF-8";
/*
createdate: 2018
update: 2018
ver: 1.0.0
*/

/*
基礎スタイル
*/

/* 横幅調整 */
.box-wrp {
    padding: 0 8px;
}
/* 見出し */
.heading {
    padding: 4px;
    margin-bottom: 20px;
    background: #eeeeee;
    font-weight: 700;
}
.sub-heading {
    padding-left: 8px;
    margin-bottom: 16px;
    font-weight: 700;
    display: inline-block;
    border-left: 3px solid #bf0000;
    border-bottom: 2px solid #eee;
}
.small-heading {
    margin-bottom: 4px;
}
/* ボーダー */
.line-ud {
    padding: 16px 0;
    display: inline-block;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.line-enclose {
    padding: 16px;
    display: inline-block;
    border: 1px solid #ccc;
}
/* 画像 */
.img-max {
    max-width:100%;
}
/* テーブル */
.table-style {
    border-collapse: collapse;
    border-color: #000;
}
/* テーブル -横スクロール- */
.table-style--w {
    width: 100%;
}
.table-scroll {
    overflow: auto;
}
.table-scroll::-webkit-scrollbar {
    height: 5px;
}
.table-scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
}
.table-scroll::-webkit-scrollbar-thumb {
    background: #d6d6d6;
}
.table-scroll td,
.table-scroll th {
    white-space: nowrap;
}
/* チャットボタン */
.btn__faq {
    padding: 15px;
    background: #bf0000;
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.20);
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    border-radius: 10px;
    display: inline-block;
    transition: all .3s;
    -webkit-font-smoothing: antialiased;
}
.btn__faq:hover {
    transition: all .5s;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, .23), 0 3px 6px rgba(0, 0, 0, .08);
}
/* アコーディオン */
.ac {
    min-width: 300px;
    margin: 0 auto;
    padding: 0 8px;
}
.ac-menu {
    border: 2px solid #eee;
    overflow: hidden;
}
.ac-menu:not(:last-child) {
   margin-bottom: 16px;
}
.allhead {
    padding: 12px 8px;
    display: block;
    cursor: pointer;
}
.ac-menu-head:hover {
    color: #bf0000;
}
.ac-menu-subhead {
    padding-right: 40px;
    border-bottom: 1px solid #eee;
    position: relative;
    transition: .3s;
}
.ac-menu-subhead:hover {
    background: rgba(238, 238, 238, 0.5);
}
.ac-menu-subhead::after {
    content: "+";
    right: 8px;
    transition: .3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.ac-menu-subhead.act::after {
    transform: translateY(-50%) rotate(45deg);
}
.ac-box {
    padding: 16px 8px;
    display: none;
 }
.ac-menu-txt {
    padding: 16px 8px 48px;
    display: none;
}
.act {
    background: #eee;
}
.brd {
    color: #bf0000;
    border-bottom: 3px dotted #ddd;
}
.subbrd {
    border-bottom: 1px solid #eee;
}
/* 選択式 */
#check {
    margin: 40px auto 0;
    max-width: 700px;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.q-heading {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
}
.q-btn {
    width: 100%;
    padding: 0 8px;
    margin: 0 auto;
    box-sizing: border-box;
}
.btn-yn {
    margin-bottom: 10px;
    padding: 15px 10px;
    background: #868585;
    box-sizing: border-box;
    border-radius: 5px;
    cursor: pointer;
    color: #fff !important;
    display: block;
    text-decoration: none !important;
}
.btn-yn:hover {
    background: #bf0000;
}
.btn-back {
    width: 30%;
    margin: 64px auto 0;
    text-align: center;
}
.fadein {
    margin-bottom: 56px;
}
.active {
    background: #bf0000;
}