@charset "UTF-8";

body.noscroll {
    overflow: hidden;
}

.fade {
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {

    /*animetion-nameで設定した値を書く*/
    0% {
        opacity: 0;
    }

    /*アニメーション開始時は不透明度0%*/
    100% {
        opacity: 1;
    }

    /*アニメーション終了時は不透明度100%*/
}

@keyframes fadeIn {

    /*animetion-nameで設定した値を書く*/
    0% {
        opacity: 0;
    }

    /*アニメーション開始時は不透明度0%*/
    100% {
        opacity: 1;
    }

    /*アニメーション終了時は不透明度100%*/
}

.header-inner {
    position: fixed;
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    z-index: 5;
    color: #fff;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 10px;
    }
}

.header-logo {
    font-size: 2.8rem;
    margin-right: 120px;
}

@media (max-width: 768px) {
    .header-logo {
        margin-right: 0;
    }
}

.header-logo a::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../img/icon01.png) top left/cover no-repeat;
    margin-right: 10px;
}

.header-logo-img {
    margin-right: 15px;
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #191919;
        color: #fff;
    }
}

.header-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 768px) {
    .header-nav-list {
        height: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.header-nav-item {
    font-size: 1.6rem;
    margin-right: 30px;
    color: #fff
}

@media (max-width: 768px) {
    .header-nav-item {
        font-size: 2.5rem;
        padding: 10px;
    }
}

.header-btn {
    font-size: 1.6rem;
    margin-left: auto;
    background-color: #e71f19;
    padding: 19px 37px;
    margin-right: 40px;
    color: #333;
}

@media (max-width: 768px) {
    .header-btn {
        margin-right: 90px;
        padding: 10px 10px;
    }
}

.header-btn .calender-img {
    margin-right: 10px;
}

.header .burger-btn {
    display: none;
}

@media (max-width: 768px) {
    .header .burger-btn {
        display: block;
        position: absolute;
        right: 8vw;
    }
}

.header .bar {
    display: block;
    height: 3px;
    width: 30px;
    background-color: #191919;
}

.header .bar_top,
.header .bar_middle {
    margin-bottom: 8px;
    -webkit-transition: .3s;
    transition: .3s;
}

.header .burger-btn.cross .bar_top {
    -webkit-transform: rotate(45deg) translate(8px, 8px);
    transform: rotate(45deg) translate(8px, 8px);
    -webkit-transition: .3s;
    transition: .3s;
    background-color: #fff;
}

.header .burger-btn.cross .bar_middle {
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
}

.header .burger-btn.cross .bar_bottom {
    -webkit-transform: rotate(-45deg) translate(8px, -8px);
    transform: rotate(-45deg) translate(8px, -8px);
    -webkit-transition: .3s;
    transition: .3s;
    background-color: #fff;
}

.header.change {
    position: fixed;
    width: 100%;
    height: 80px;
    background: #191919;
    z-index: 5;
}

.header.change .header-nav-item {
    color: #fff;
}

.header.change .header-logo {
    color: #fff;
}

.header.change .header-logo a::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../img/icon01.png) top left/cover no-repeat;
    margin-right: 10px;
}

.header.change .bar {
    background-color: #000;
}

.fv {
    width: 100%;
    height: calc(100vh - 60px);
    background-image: url(../img/room/room_top01.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    -o-object-fit: cover;
    object-fit: cover;
}

.fv-txt {
    font-size: 3.4rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 45%;
}

.breadcrumb {
    padding: 30px 0;
    margin: 0 auto;
    max-width: 1180px;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 20px;
    }
}

.breadcrumb ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.breadcrumb ul li:not(:first-of-type)::before {
    content: ">";
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
}

.intro {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 78px;
}

@media (max-width: 768px) {
    .intro {
        text-align: left;
        padding: 20px;
    }
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.section .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 451px;
    margin-bottom: 84px;
}

@media (max-width: 768px) {
    .section .content-wrapper {
        display: block;
    }
}

.section .content-wrapper .content-img {
    z-index: 1;
    width: 44.5%;
    height: calc(1180px * 0.445 * 0.57);
}

@media (max-width: 768px) {
    .section .content-wrapper .content-img {
        width: 100%;
    }
}

.section .content-wrapper .content-img img {
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.section .content-wrapper .content-txt {
    width: 40%;
    position: absolute;
    background-image: url(../img/bg/haikei01.jpg);
    height: 321px;
    right: 0;
    top: 70px;
    padding: 60px 10% 0px 20%;
}

@media (max-width: 768px) {
    .section .content-wrapper .content-txt {
        z-index: -1;
        top: 250px;
        width: 90%;
        padding: 70px 25px 40px;
        height: 120px;
    }
}

.section .content-wrapper .content-txt .content-ttl {
    font-size: 2.6rem;
}

.section .content-wrapper .content-txt p {
    font-size: 1.6rem;
    margin: 50px 0;
}

@media (max-width: 768px) {
    .section .content-wrapper .content-txt p {
        margin: 10px 0;
    }
}

.section .content-wrapper .content-txt li {
    font-size: 1.6rem;
}

.section .content-wrapper-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    height: 451px;
    margin-bottom: 84px;
}

@media (max-width: 768px) {
    .section .content-wrapper-reverse {
        display: block;
    }
}

.section .content-wrapper-reverse .content-img {
    z-index: 1;
    width: 44.5%;
    height: calc(1180px * 0.445 * 0.57);
}

@media (max-width: 768px) {
    .section .content-wrapper-reverse .content-img {
        width: 100%;
        padding: 0 20px;
    }
}

.section .content-wrapper-reverse .content-img img {
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.section .content-wrapper-reverse .content-txt {
    width: 40%;
    position: absolute;
    background-image: url(../img/bg/haikei01.jpg);
    height: 321px;
    left: 0;
    top: 70px;
    padding: 60px 20% 0px 10%;
}

@media (max-width: 768px) {
    .section .content-wrapper-reverse .content-txt {
        z-index: -1;
        top: 250px;
        width: 90%;
        padding: 70px 25px 40px;
        height: 120px;
    }
}

.section .content-wrapper-reverse .content-txt .content-ttl {
    font-size: 2.6rem;
}

.section .content-wrapper-reverse .content-txt p {
    font-size: 1.6rem;
    margin: 50px 0;
}

@media (max-width: 768px) {
    .section .content-wrapper-reverse .content-txt p {
        margin: 10px 0;
    }
}

.section .content-wrapper-reverse .content-txt li {
    font-size: 1.6rem;
}

.footer {
    background-image: url(../img/bg/haikei03.jpg);
    text-align: center;
    padding-top: 64px;
    padding-bottom: 59px;
}

.footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-bottom: 96px;
}

.footer li {
    font-size: 1.8rem;
    margin: 0 17px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.footer h2 {
    margin-top: 26px;
    margin-bottom: 72px;
    font-size: 3.2rem;
}

.footer p {
    font-size: 1.6rem;
    margin-bottom: 23px;
}

copy {
    background-color: #000;
    color: #fff;
    display: block;
    padding: 23px;
    text-align: center;
    font-size: 1.2rem;
}

/*# sourceMappingURL=room.css.map */