@charset "utf-8";

/* reset */
#page {
    font-family: unset;
    line-height: unset;
    overflow: unset;
    width: unset;
    min-width: unset;
    color: unset;
    font-weight: unset;
}
/* /reset */

/* all */
:root {
    --sp-fs10: 2.6667vw;
    --sp-fs11: 2.9334vw;
    --sp-fs12: 3.2vw;
    --sp-fs13: 3.4667vw;
    --sp-fs14: 3.7334vw;
    --sp-fs15: 4vw;
    --sp-fs16: 4.2667vw;
    --sp-fs17: 4.5334vw;
    --sp-fs18: 4.8vw;
    --sp-fs19: 5.0667vw;
    --sp-fs20: 5.3334vw;
    --sp-fs21: 5.6vw;
    --sp-fs22: 5.8667vw;
    --sp-fs23: 6.1334vw;
    --sp-fs24: 6.4vw;
}
* { box-sizing: border-box;}
#page { color: #222222;}
#page a {
    opacity: 1;
	transition: opacity .25s ease-in-out;
    text-decoration: none;
}
#page a:hover {
    opacity: .65;
    text-decoration: none;
}
img { width: 100%;}

figure,
picture {
    display: block;
}

.btn_common {
    width: 176px;
    height: 32px;
    margin-inline: auto;
    background-color: #FFF;
    border: solid 1px #000000;
    border-radius: 100vmax;
    font-size: 14px;
    color: #222;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.btn_common::before {
    content: "";
    display: block;
    width: 7%;
    height: auto;
    padding-block: 3%;
    margin-left: 8.5%;
    background-image: url(../../common/img/icon_vector_member-hotel01.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}
.btn_common span {
    display: block;
    width: 70%;
    text-align: center;
}
#hotel-list {
    font-family: yu-gothic-pr6n, sans-serif;
    padding-top: 72px;
}
#hotel-list h1 {
    font-size: 24px;
    text-align: center;
    padding-bottom: 39px;
}
@media screen and (max-width: 700px) {
    #hotel-list {
        padding-top: 9.8%;
    }
    #hotel-list h1 {
        font-size: var(--sp-fs20);
        padding-bottom: 6%;
    }
    .btn_common {
        font-size: 3.7334vw;
        width: 46.9334vw;
        height: auto;
        padding-block: 0.27%;
    }
}
/* /all */

/* swiper */
/* /swiper */

/* hotel-list */
#hotel-list hgroup {
    text-align: center;
    padding-bottom: 32px;
}
#hotel-list hgroup .subheading {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 16px;
}
#hotel-list hgroup p {
    font-size: 16px;
    color: #000;
}
@media screen and (max-width: 700px) {
    #hotel-list hgroup {
        padding-bottom: 4.5%;
    }
    #hotel-list hgroup .subheading {
        text-align: left;
        font-size: var(--sp-fs20);
        margin-left: 5.3%;
        padding-bottom: 3.4%;
        display: flex;
        justify-content: left;
        align-items: center;
    }
    #hotel-list hgroup .subheading::before {
        content: "";
        display: block;
        width: .96%;
        aspect-ratio: 1 / 5.5;
        background-color: #A37E39;
        margin-right: 2.5%;
        flex-shrink: 0;
    }
    #hotel-list hgroup p {
        width: 89.3334%;
        margin-inline: auto;
        text-align: left;
        font-size: var(--sp-fs14);
    }
}
/*---------- タブ機能 -----------*/
.tab {
    max-width: 1180px;
    margin: 0 auto 76px;
    padding-inline: 20px;
    position: relative;
}
.tab__menu {
    display: flex;
    align-items: flex-end; /* メニューを下揃え */
    justify-content: center;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.tab__menu-item {
    width: 290px;
    font-size: 17px;
    font-weight: 600;
    color: #999999;
    padding-block: 9px;
    text-align: center;
    cursor: pointer;
    /*transition: all .5s;*/
    box-sizing: border-box;
    position: relative;
    margin-right: 21px;
    border-bottom: 3px solid #EDEDED;
}
.tab__menu-item:last-of-type {
    margin-right: 0px;
}

/* is-activeがついている時のスタイル */
.tab__menu-item.is-active {
    font-size: 18px;
    color: #A37E39;
    cursor: auto;
    position: relative;
    z-index: 1;
    border-bottom: 3px solid #A48966;
}

/* タブパネル */
.tab__panel {
    width: 100%;
    position: relative;
    z-index: 1;
}
.tab__panel-text {
    padding-bottom: 14px;
}

.tab__panel-box {
    width: 100%;
}

.tab__panel-box001,
.tab__panel-box002,
.tab__panel-box003,
.tab__panel-box004,
.tab__panel-box005 {
    display: none;
}

/* is-showがついている時のスタイル */
.tab__panel-box.is-show {
    display: block;
}
.tab__panel-box.is-show .tab__panel-text {
    animation: 1s ease-out tab-fade;
    pointer-events: auto;
}
.tab-btnbox {
    width: 800px;
    margin-inline: auto;
    padding-bottom: 49px;
}
.tab__panel section {
    width: 100%;
    margin-inline: auto;
}
.tab__panel .prefectures {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    background-color: #A48966;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 20px;
    height: 30px;
}
.tab__panel .area-wrapper ul {
    width: 100%;
    padding-block: 20px 64px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.75%;
}
.tab__panel .area-wrapper li {
    width: 49.124%;
    margin-bottom: 20px;
    background-color: #F8F5F0;
}

.tab__panel .area-wrapper li a {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    color: #222;
    font-size: 17px;
    font-weight: 600;
    padding: 15px;
}
.tab__panel .area-wrapper li a picture {
    width: 200px;
    height: 143px;
    flex-shrink: 0;
}

@keyframes tab-fade {
    0% { opacity: 0;}
    100% { opacity: 1;}
}
@media screen and (max-width:880px) {
    .tab__panel .area-wrapper ul { display: block;}
    .tab__panel .area-wrapper li { width: 100%;}
    .tab-btnbox { width: 660px;}
}
@media screen and (max-width:700px) {
    .tab {
        margin-bottom: 0;
        padding-inline: 0;
    }
    .tab__menu {
        width: 93.0667%;
        margin: 0 auto;
        justify-content: left;
        flex-wrap: wrap;
        gap: 2.23%;
    }
    .tab__menu-item {
        width: 31.806%;
        aspect-ratio: 1 / 0.5405;
        margin-right: 0;
        font-size: var(--sp-fs15);
        color: #555555;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #F8F5F0;
        border-bottom: none;
        margin-bottom: 2.23%;
    }
    .tab__menu-item::after {
        border-radius: 11px 11px 0 0;
        width: calc(100% - 10px);
        height: calc(100% - 2%);
    }
    .tab__menu-item.is-active {
        font-size: var(--sp-fs16);
        color: #FFF;
        border-bottom: 0px;
        background-color: #A48966;
    }
    .tab__menu-item.is-active::after {
        border-radius: 13px 13px 0 0;
    }
    .tab__panel {
        width: 89.3334%;
        margin-inline: auto;
        background-color: transparent;
    }
    .tab__panel-text {
        padding-bottom: 9%;
    }
    .tab-btnbox {
        width: 100%;
        padding-bottom: 6.6%;
    }
    .tab__panel .prefectures {
        font-size: var(--sp-fs16);
        justify-content: left;
        height: auto;
        aspect-ratio: 1 / 0.0896;
        padding-inline: 6%;
    }
    .tab__panel .area-wrapper ul {
        padding-block: 5.6% 10.7%;
    }
    .tab__panel .area-wrapper li {
        margin-bottom: 6%;
    }
    .tab__panel .area-wrapper li a {
        width: 100%;
        display: block;
        font-size: var(--sp-fs15);
        padding: 0 0 5.2% 0;
    }
    .tab__panel .area-wrapper li a picture {
        width: 100%;
        height: auto;
    }
}
@media screen and (max-width:500px) {
    .tab__menu-item::after { height: calc(100% - 4%);}
}
/*---------- /タブ機能 -----------*/

/*---------- タブ内コンテンツ -----------*/
.tag-box {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-block: 4px 5px;
}
.tag-box span {
    display: inline;
    font-size: 13px;
    color: #FFF;
    font-weight: 500;
    line-height: 1.2;
    padding-inline: 8px;
    margin-right: 8px;
    margin-bottom: 4px;
}
.text-box {
    padding-left: 20px;
}
.tag-box span.area-name { background-color: #A48966;}
.tag-box span.b-price { background-color: #2C4A3F;}
.tag-box span.m-price { background-color: #A0072B;}

.text-box .hotel-name {
    font-size: 17px;
    padding-bottom: 5px;
}
.text-box .hotel-caption {
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width:700px) {
    .tag-box {
        padding-block: 5.2% 0.5%;
    }
    .tag-box span {
        font-size: var(--sp-fs12);
        line-height: 1.35;
        padding-inline: 2.5%;
        margin-right: 2.5%;
        margin-bottom: 1.2%;
    }
    .text-box {
        padding-inline: 6%;
    }
    .text-box .hotel-name {
        font-size: var(--sp-fs17);
        padding-bottom: 1.5%;
    }
    .text-box .hotel-caption {
        font-size: var(--sp-fs14);
    }

    #website-footer,
    #website-footer .footer-banners {
        padding-top: 0;
    }
}
/*---------- /タブ内コンテンツ -----------*/
/* /hotel-list */