/* フォントの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap');

main{
    padding-top: 160px;
}
main img{
    width: 100%;
}
.mv{
    width: 100vw;
    margin-bottom: 120px;
}
.mv .mv-title{
    width: 80%;
    max-width: 450px;
    margin: 80px auto 32px;
}
.stay-btn{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.stay-btn-item{
    display: block;
    margin-bottom:40px ;
}

/* stay-navのスタイリング */
.stay-nav {
    width: 100%;
    max-width: 700px;
    display: flex;
    justify-content: center;
    margin: 120px auto 80px;
}

.stay-nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 80px;
    background-color: #E2E2E2;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.stay-nav-item:hover {
    opacity: 0.8;
}

.stay-nav-item.active {
    background-color: #082222;
    color: white;
}

.stay-nav-item p {
    margin: 0;
    font-weight: bold;
    font-size: 16px;
}

/* コンテンツの表示/非表示 */
#hot, #cold {
    transition: opacity 0.3s ease;
}

/* 初期状態でcoldを非表示 */
#cold {
    display: none;
}
._title{
    text-align: center;
    margin-bottom: 40px;
}
._title span{
    color:#2D2D2D;
    font-family: "Noto Serif JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}
._title h1{
    color:#2D2D2D;
    font-family: "Noto Serif JP";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}

#stay-cont{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}
._day{
    margin: 0 auto 40px;
}
._day h2{
    color: #000;
    font-family: "Noto Serif JP";
    font-size: clamp(2rem, 1.515rem + 2.07vw, 4rem);
    font-style: normal;
    font-weight: 700;
    line-height: 160%; 
    text-align: center;
}
._flex{
    display: flex;
    gap: 2%;
    margin-bottom: 40px;
}
._flex-img{
    width: 50%;
}
._flex-text{
    width: 50%;
}
._flex-text-time{
    width: 100%;
    border-bottom: 1px solid #2D2D2D;
    margin-bottom: 24px;
}
._flex-text-time p{
    color: #2D2D2D;
    font-family: "Noto Serif JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}
._flex-text-title{
    color: #2D2D2D;
    font-family: "Noto Serif JP";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 24px;
}
._flex-text-title span{
    color: #2D2D2D;
    font-family: "Noto Serif JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
}
._flex-text > p{
    color: #2D2D2D;
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
}

._decoration{
    display: flex;
    align-items: start;
    gap: 4%;
    margin-bottom: 56px;
    width: 50%;
}
._decoration img{
    width: 48%;
}
._decoration img:nth-child(2){
    padding-top:40px ;
}
.active-pool{
    position: relative;
    transform: translateX(-50%);
    left: 50%;
    width: 100vw;
    margin-bottom: 40px;
    background-image: url(../../img/stay/active/pool-bg.webp);
    padding: 40px 0;
}
.active-pool-inner{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}
.active-pool-inner h3{
    color: #082222;
    font-family: "Noto Serif JP";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    text-align: center;
    margin-bottom: 16px;
}
.active-pool-inner p{
    color:  #2D2D2D;
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    margin-bottom: 80px;
}

._img{
    width: 100%;
    margin-bottom: 40px;
}
._flex:not(:has(._flex-img)){
    display: block;
}
._flex > h3{
    color: #2D2D2D;
    font-family: "Noto Serif JP";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; 
    margin-bottom: 24px;
}
._flex > p{
    color: var(--txt, #2D2D2D);
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
}

._color._flex{
    gap: 0px;
    justify-content: center;
}
._color ._flex-text{
    padding: 32px 0 32px 32px;
    background: #F5F1EA;
}

._flex-img-text{
    position: relative;
}
._flex-img-text::after{
    content: "";
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #2D2D2D;
    z-index: -1;
}

._flex-img-text p{
    position: relative;
    background-color: #fff;
    width: fit-content;
    color: #000;
    font-family: "Noto Serif JP";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    z-index: 2;
    padding-right: 8px;
}