@charset "UTF-8";

main {
    margin-bottom: 230px;
}

.bg {
    overflow: hidden;
}

.bg {
    background: url(/img/room/bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
}

.hero {
    text-align: center;
    margin-bottom: 200px;
    position: relative;
}

.hero::after {
    content: '';
    width: 14px;
    height: 114px;
    background: url(/img/room/icon-arrow_hero.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 50%;
    bottom: -30%;
    transform: translateX(50%);
}

.feather {
    position: absolute;
    mix-blend-mode: screen;
}

.feather.no1 {
    top: -59%;
    left: 15%;
}

.feather.no2 {
    left: -5%;
    top: -12%;
}

.bird {
    position: absolute;
    top: -40%;
    right: -7%;
}

.room_ttl {
    font-size: 50px;
    margin-bottom: 70px;
}

.room_ttl.small {
    font-size: 15px;
    margin-bottom: 0;
}

.room_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-bottom: 50px;
}


/* room_body */

.room_body {
    margin-bottom: 50px;
}

.room_intro {
    width: 100%;
    max-width: 685px;
    margin: 0 auto 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

.room_note {
    padding: 20px;
    border: solid 1px #CBCBCB;
    margin-bottom: 45px;
    width: 100%;
    max-width: 685px;
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
}

.room_txt {
    font-size: 23px;
}


/* room_contact */

.room_contact_cnt {
    background: #fff;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
}

.room_contact_ttl {
    font-size: 23px;
}



.room_contact_ttl span {
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
}

.room_contact_cnt .tel {
    max-width: 750px;
    margin: 0 auto 20px;
    background: #F6F8F7;
    padding: 30px;
}

.room_contact_cnt .tel .number {
    font-size: 35px;
    font-family: 'Marcellus', sans-serif;
}

.room_contact_cnt .note {
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 20px;
}

.comment {
    text-align: center;
    font-size: 23px;
}


@media screen and (max-width:767px) {

    main {
        margin-bottom: 50px;
    }

    .bg {
        background: url(/img/room/bg_sp.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .hero {
        margin-bottom: 150px;
    }

    .hero::after {
        bottom: -20%;
    }

    .feather {
        width: 40%;
    }

    .feather.no1 {
        top: -24%;
        left: 0%;
    }

    .feather.no2 {
        left: -11%;
        top: 4%;
    }

    .bird {
        width: 60%;
        top: -24%;
        right: -23%;
    }

    .room_ttl {
        font-size: 33px;
        margin-bottom: 50px;
    }

    .room_list {
        flex-flow: column;
        gap: 10px;
    }

    .room_txt {
        font-size: 16px;
    }

    .room_body {
        padding: 0 24px;
    }

    .room_contact_cnt {
        padding: 25px 20px;
    }

    .room_contact_cnt .tel {
        padding: 20px 15px;
    }

    .room_contact_cnt .tel .number {
        font-size: 30px;
    }

    .room_contact_ttl {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .comment {
        font-size: 18px;
    }
}