/* メインビジュアル */
.main_visual {
    text-align: center;
}

/* たびらい会員限定プランとは？ */
.pageWrapper {
    padding: 32px 0;
}

.member_plan {
    background: #ceedf6;
    margin: 30px 0;
}

.member_plan_inner {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    width: 980px;
    margin: 0 auto;
}

.member_plan_tit {
    font-weight: bold;
    text-align: center;
    color: #003894;
    font-size: 20px;
    padding: 30px 0;
}

.member_plan_box {
    display: flex;
}

.member_plan_item {
    background: #fff;
    padding: 24px;
    text-align: center;
    width: calc(980px / 4 - 15px);
    margin-right: 15px;
}

.member_plan_item:last-child {
    margin-right: 0;
}

.member_plan_item--tit {
    font-weight: bold;
    color: #003894;
    font-size: 18px;
    padding: 10px 0;
}

.member_plan_item--txt {
    text-align: left;
}

.btn_box {
    text-align: center;
    background: #fff;
    margin: 20px 0;
}

a.btn_blue {
    background: #003894;
    color: #fff;
    text-decoration: none;
    padding: 13px 65px 13px 32px;
    border-radius: 3px;
    display: inline-block;
    font-weight: bold;
    margin: 30px;
    position: relative;
    cursor: pointer;
}

a.btn_blue::after,
.btn_white::after {
    content: "";
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    width: 9px;
    height: 9px;
    right: 11px;
}

.btn_blue:hover {
    opacity: .8;
}

a.btn_white {
    background: #fff;
    color: #003894;
    border: 1px solid #003894;
    text-decoration: none;
    padding: 13px 65px 13px 32px;
    border-radius: 3px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    cursor: pointer;
}

.btn_white::after {
    border-top: 2px solid #003894;
    border-right: 2px solid #003894;
    transform: rotate(45deg);
    top: 17px;
    width: 8px;
    height: 8px;
    right: 13px;
}

.sub_txt {
    display: block;
    color: #003894;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* タイトル帯 */
.headline {
    background: #013893;
    color: #fff;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

#okinawa .headline,
#hokkaido .headline {
    background: #ceedf6;
    color: #003894;
}

/* 会員限定プラン */
.ac-nav {
    padding: 10px 0;
    margin-top: 30px;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    width: 980px;
    margin: 0 auto;
}

.button__list {
    width: 285px;
    font-size: 14px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.button__list__item {
    padding: 6px 10px;
}

.button__list__item.\--isActive {
    background: #969696;
    color: #FFF;
    border-radius: 8px;
}

.plan_area .ac-plan {
    border-bottom: 0;
}

.new-special__btn {
    margin: 30px auto;
    text-align: center;
}

.new-special__btn a {
    color: #003894;
    border: 2px solid #003894;
    border-radius: 3px;
    padding: 10px;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    width: 300px;
}

.new-special__btn a::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-right: 2px solid #003894;
    border-top: 2px solid #003894;
    right: 10px;
    top: 15px;
}

.btn_white:hover,
.new-special__btn a:hover {
    background: #D9E7FF;
}

/* よくある質問 */
.accordion {
    border-top: 1px solid #013893;
}

.accordion:last-child {
    border-bottom: 1px solid #013893;
}

.accordion__headline {
    position: relative;
    cursor: pointer;
    font-size: 18px;
    padding: 20px 20px 20px 60px;
}

.accordion__headline::before {
    position: absolute;
    content: '';
    background: url(/activity/special/membersonly/img/ico_question.png);
    width: 30px;
    height: 30px;
    top: 25%;
    left: 2%;
}

.accordion__content {
    position: relative;
    display: none;
}

.accordion__headline span {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 0;
}

.accordion__headline span::after {
    display: block;
    position: absolute;
    content: '';
    border-top: solid 3px #013893;
    border-right: solid 3px #013893;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 36%;
    right: 30%;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.accordion__headline.\--isActive span::after {
    display: block;
    position: absolute;
    content: '';
    border-top: solid 3px #013893;
    border-right: solid 3px #013893;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 36%;
    right: 30%;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.accordion__answer {
    position: relative;
    min-height: 2.2em;
    padding: 0 60px 0;
    margin: 25px 0;
}

.accordion__answer__text {
    line-height: 1.6;
    font-size: 18px;
    padding: 20px 20px 20px 60px;
    border-top: 1px solid #013893;
    background: #f8f8f8;
}

.accordion__answer__text::before {
    position: absolute;
    content: '';
    background: url(/activity/special/membersonly/img/ico_answer.png);
    width: 30px;
    height: 30px;
    top: 25%;
    left: 2%;
}

/* footer */
.whyreccomendInner__heading {
    line-height: 1.8;
}

.whyreccomendWrapper {
    padding: 0 0 50px;
}