@charset "utf-8";

/* サブビジュアル */
.hero {
    width: 100vw;
    height: 75vh;
    background-image: url(../images/images_other/guide_sp.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.title {
    position: absolute;
    bottom: 45%;
    left: 50%;
    transform: translate(-50%, 50%);
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl; 
    text-orientation: upright;
    color: #FFF;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 160%; /* 39px */
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 1rem;
    white-space: nowrap;
}

/* サブビジュアル　PC */
@media screen and (min-width:769px) {
    .hero {
        height: 70vh;
        background-image: url(../images/images_other/guide_pc.webp);
    }

    .title {
        font-size: 3.2rem;
    }
}

/* チェックインアウト */
.section {
    padding: 120px 8% 50px;
    text-align: center;
}

.topic {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 150%; /* 33px */
    letter-spacing: 0.66px;
    position: relative;
}

.topic::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: #A2A2A2;
}

.checkinout_container {
    margin-top: 44px;
    margin: 44px auto 0;
}

.checkin_container,
.checkout_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 8px;
    border-bottom: 1px solid #A2A2A2;
}

.checkinout_content {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 250%; /* 37.5px */
    letter-spacing: 0.45px;
}

.time {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 250%; /* 37.5px */
    letter-spacing: 0.45px;
}

/* チェックインアウト pc*/
@media screen and (min-width:768px) {
    .section {
        padding: 120px 10% 50px;
    }

    .topic {
        font-size: 2.5rem;
    }

    .topic::after {
        bottom: -24px;
        width: 100px;
    }

    .checkinout_content,
    .time {
        font-size: 1.8rem;
    }

    .checkinout_container {
        margin-top: 48px;
        width: 30.5vw;
        max-width: 500px;
        margin: 44px auto 0;
    }
}

@media screen and (min-width:1024px) {
    .section {
        padding: 120px 12.5% 50px;
    }

    .topic {
        font-size: 3.2rem;
    }
}

/* 注意事項 */
.section_attention {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.attention_container {
    text-align: left;
    margin: 24px auto;
}

.attention_txt {
    margin: 15px 0 0 1em;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.48px;
    list-style: disc;
}

.attention_txt::marker{
    color: #5E7E68;
    font-size: 0.7em;
}

@media screen and (min-width:768px) {
    .attention_container {
        margin-top: 48px;
        max-width: 980px;
    }

    .attention_txt {
        margin-top: 24px;
        font-size: 1.8rem;
    }
}

/* キャンセルポリシー */
.cancel_txt {
    margin-top: 44px;
}

.cancel_txt {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.54px;
}

.cancel_content {
    margin: 24px auto;
}

.cancel_item {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #A2A2A2;
}

.day {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 0.48px;
    text-align: left;
}

.price {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: 0.48px;
}

.day_topic {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 160%; /* 27.2px */
    letter-spacing: 0.51px;
}

.price_topic {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 160%; /* 27.2px */
    letter-spacing: 0.51px;
}

.day_small {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.48px;
}


@media screen and (min-width:768px) {
    .cancel_txt {
        margin-top: 48px;
        font-size: 1.8rem;
    }

    .cancel_content {
        margin-top: 32px;
        max-width: 500px;
    }
    
    .day {
        font-size: 1.9rem;
        font-weight: 600;
        line-height: 160%; /* 30.4px */
        letter-spacing: 0.57px;
    }

    .price {
        font-size: 1.9rem;
        font-weight: 400;
        line-height: 160%; /* 30.4px */
        letter-spacing: 0.57px;
    }

    .day_topic {
        font-size: 2rem;
        font-weight: 700;
        line-height: 160%; /* 32px */
        letter-spacing: 0.6px;
    }
    
    .price_topic {
        font-size: 2rem;
        font-weight: 700;
        line-height: 160%; /* 32px */
        letter-spacing: 0.6px;
    }

    .day_small {
        font-size: 1.9rem;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: 0.57px;
    }


}