@charset "utf-8";
/* Fadein*/
/* 初期値 */
.fadeInItem{
    opacity: 0;
}
/* イベント実行時） */
.fadein{
    opacity: 1;
    /* all 現れる速度(.5s 5sなど) 現れ方*/
    transition : all 5s ease-out;
}
/* 共通 */
body{
    font-family: 'Shippori Antique B1', sans-serif;
    color: #f3f3f3;
    margin: 0;
    padding: 0;
}
#page_top{
    position: fixed;
    bottom: 30px;
    right: 20px;
}
#page_top i{
    color: #e6b422;
    background-color: #1f3134;
    opacity: .7;
    font-size: 24px;
    padding: 10px;
    border-radius: 10px;
}
#page_top i:hover{
    cursor: pointer;
}
header{
    width: 100%;
    height: 60px;
    margin: 0;
    background-color: #1f3134;
    padding: 5px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h1{
    margin: 0;
    color: #e6b422;
}
.phone{
    margin: 0;
}
h2{
    font-size: 28px;
}

/* メニュー */
.menubar{
    display: none;
}
.first_tier{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.ddmenu{
    margin-right: 20px;
}
.ddmenu:hover .menu_a{
    color: #e6b422;
    border-bottom: #e6b422 solid 1px;
}
.main_menu a{
    text-decoration: none;
    color: #f3f3f3;
    padding: 5px;
}
.submenu a:hover{
    color: #e6b422;
    border-bottom: #e6b422 solid 1px;
}
.second_tier{
    display: none;
    position: absolute;
    margin: 0;
    padding: 20px;
    background-color: #1f3134;
}
.ddmenu:hover .second_tier{
    display: block;
    z-index: 100;
}
.submenu{
    position: relative;
    padding-bottom: 10px;
    list-style: none;
}
#pages h2{
    margin: 0;
    padding: 10px 0;
}
#pages .text{
    width: 90%;
    margin: 20px auto;
    font-size: 18px;
}
/* フッター */
footer{
    width: 100%;
    background-color: #1f3134;
    font-size: 14px;
    line-height: 35px;
    margin: 0;
    text-align: center;
}
footer p{
    margin: 0;
}
span{
    color: #e6b422;
    font-weight: bold;
}
/* 各ページ */
/* Home */
main{
    color: #1f3134;
    background-color: #f3f3f3;
    text-align: center;
}
.photo{
    width: 1000px;
    height: 750px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    font-family: 'Yuji Syuku', serif;
}
.photo div{
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    display: none;
    background-repeat: no-repeat;
    background-size: cover;
}
.img1{
    background-image: url(images/roten.jpg);
}
.img2{
    background-image: url(images/roten2.jpg);
}
.img3{
    background-image: url(images/uchiburo.jpg);
}
.img4{
    background-image: url(images/rotenaki.jpg);
}
.photo h3{
    padding: 20px 30px 0 0;
    margin: 0;
    font-size: 38px;
    writing-mode: vertical-rl;
    float: right;
}
.photo h3:last-child{
    padding: 80px 10px 0 0;
}
.photo h2{
    font-size: 40px;
    padding-top: 50px;
    color: #f3f3f3;
    writing-mode: vertical-rl;
    float: right;
}
.plan{
    width: 1000px;
    margin: 100px auto;
}
.plan article{
    display: flex;
    justify-content: space-between;
}
.plan img{
    width: 300px;
    height: auto;
}
.sp_oshirase a{
    text-decoration: none;
    color: #1f3134;
    font-size: 18px;
}
.sp_oshirase a:hover{
    color: #e6b422;
    border-bottom: #e6b422 solid 1px;
}
.oshirase{
    width: 450px;
    margin: 0 auto;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    align-items: normal;
}
.oshirase div{
    display: flex;
}
.oshirase summary{
    text-align: right;
    padding-right: 20px;
}
.oshirase P{
    margin: 5px 0;
}
.date{
    padding-right: 20px;
}
.oshirase a{
    text-decoration: none;
    color: #1f3134;
}
.oshirase a:hover{
    color: #e6b422;
    border-bottom: #e6b422 solid 1px;
}
.info{
    width: 60%;
    margin: 0 auto;
    padding: 100px 0 20px 0;
}
.info p{
    margin: 2px 0;
}
.info ul{
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.info li{
    margin: 10px 0;
    padding: 0 10px;
    text-align: center;
}
.info a{
    color: #1f3134;
}
.info a:hover{
    color: #e6b422;
}
.icon i{
    font-size: 24px;
}
.company li{
    font-size: 14px;
    border-right: 1px solid;
}
.company li:last-child{
    border: none;
}


/* お部屋 */
.room{
    width: 80%;
    margin: 20px auto;
    padding: 5px 0 30px 0;
    /* background-color: #1f3134; */
    /* color: #f3f3f3; */
}
.room h3{
    font-size: 24px;
    /* background-color: #e6b422; */
    /* border-bottom: 5px solid #e6b422; */
    /* color: #e6b422; */
}
.roomimg{
    display: flex;
    justify-content: space-evenly;
}
.roomimg img{
    width: 45%;
    height: auto;
}
.roomimg2{
    width: 50%;
    margin: 0 auto;
}
.roomimg2 img{
    width: 90%;
    height: auto;
}
.roomdetails{
    width: 50%;
    margin: 0 auto;
    text-align: left;
    padding-top: 20px;
}
.roomdetails >ul{
    list-style: none;
}

.roomdetails a{
    color: #e6b422;
}
.note{
    width: 80%;
    margin: 0 auto;
    padding-bottom: 10px;
    font-size: 14px;
}
/* お料理 */
.roomimg3{
    width: 40%;
    margin: 0 auto;
}
.roomimg3 img{
    width: 100%;
    height: auto;
}
/* 温泉 */
#onsen, #higaeri{
    padding: 40px 0;
}
.senshitsu{
    width: 80%;
    margin: 50px auto;
}
.senshitsu h3{
    margin: 30px 0;
}
.senshitsu img{
    width: 100%;
    max-width: 1000px;
    height: auto;
}

#higaeri article{
    padding: 20px 0;
}
#higaeri table{
    width: 40%;
    margin: 10px auto;
    border-bottom: solid 1px #e6b422;
    border-top: solid 1px #e6b422;
}
th{
    width: 33%;
}
#higaeri p{
    margin: 0;
    padding: 20px 0;
}

/* タブレット */
@media screen and (max-width:1024px){
    .photo{
        width: 800px;
        height: 600px;
    }
    .plan{
        width: 800px;
    }
    .plan p{
        width: 30%;
    }
    .plan img{
        width: 100%;
        height: auto;
    }
    .roomimg2{
        width: 70%;
    }
    .roomdetails{
        width: 70%;
    }
    .roomimg3{
        width: 50%;
    }
    #higaeri table {
        width: 60%;
        font-size: 15px;
    }
}
@media screen and (max-width:800px){
    .main_menu li {
        margin-right: 10px;
    }
    .photo{
        width: 600px;
        height: 450px;
    }
    .plan{
        width: 600px;
    }
    .photo h3, .photo h2{
        font-size: 24px;
    }
    .photo h3:last-child{
        padding-top: 50px;
    }
    .roomimg2{
        width: 80%;
    }
    .roomdetails{
        width: 80%;
    }
    .roomimg3{
        width: 60%;
    }
    #higaeri table{
        width: 70%;
    }

}
@media screen and (max-width:640px){
    h1{
        font-size: 28px;
    }

}
@media screen and (max-width:614px){
    .photo h2, .photo h3{
        display: none;
    }
    footer{
        font-size: 14px;
    }
    /* ハンバーガーメニュー */
    .main_menu{
        display: none;
    }
    .menubar{
        display: block;
        position: relative;
    }
    .nav_toggle {
        display: block;
        position: relative;
        width: 60px;
        height: 60px;
        right: 0;
        top: 0;
        z-index: 100;
        }
    .nav_toggle i {
        display: block;
        width: 50%;
        height: 2.5px;
        background-color:#f3f3f3;
        position: absolute;
        transition: transform .5s, opacity .5s;
        }
    .nav_toggle i:nth-child(1) {
        top: 28%;
        left: 25%;
    }
    .nav_toggle i:nth-child(2) {
        top: 0;
        bottom: 0;
        left: 25%;
        margin: auto;
    }
    .nav_toggle i:nth-child(3) {
        left: 25%;
        bottom: 25%;
    }
    .menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s, visibility .5s;
        z-index: 50;
        width: 70%;
        height: 100vh;
        background-color: #1f3134;
    }
    .pc_f_tier{
        list-style-type: none;
        opacity: .8;
        padding-left: 20px;
        width: 80%;
        margin: 100px auto;
    }
    .pc_f_tier >li{
        font-size: 20px;
        padding-bottom: 20px;
    }
    .pc_s_tier{
        padding-left: 20px;
        list-style: none;
    }
    .pc_s_tier >li{
        padding-bottom: 10px;
    }
    .menu a{
        font-size: 20px;
        text-decoration: none;
        color:#f3f3f3;
    }
    .menu a:active{
        font-size: 18px;
    }
        /* クリック後 真ん中を決して上下の棒をXに変形*/
        .nav_toggle.show i:nth-child(1) {
            transform: translateY(13px) rotate(-41deg);
        }
        .nav_toggle.show i:nth-child(2) {
            opacity: 0;
        }
        .nav_toggle.show i:nth-child(3) {
            transform: translateY(-13px) rotate(41deg);
        }
        .menu.show {
            opacity: 1;
            visibility: visible;
        }
        html.fixed, html.fixed body{
            height: 100%;
            overflow: hidden;
        }
    
    /* お部屋ページ */
    .room{
        width: 90%;
    }
    .roomimg{
        flex-direction: column;
    }
    .roomimg img {
        width: 90%;
        margin: 0 auto;
        padding-bottom: 5px;
    }
    .roomdetails{
        width: 90%;
    }
    .roomimg2{
        width: 100%;
    }
    .roomdetails >ul{
        padding: 0;
    }
    .roomimg3{
        width: 70%;
    }
}
@media screen and (max-width:599px){
    .photo{
        width: 500px;
        height: 375px;
    }
    .plan{
        width: 100%;
    }
    .plan article{
        flex-direction: column;
    }
    .plan p{
        width: 80%;
        margin: 0 auto;
    }
}
@media screen and (max-width:499px){
    .photo{
        width: 400px;
        height: 300px;
    }
    .oshirase{
        width: 90%;

    }
}
@media screen and (max-width:399px){
    .photo{
        width: 300px;
        height: 225px;
    }
    footer {
        font-size: 12px;
    }
    #higaeri table {
        width: 90%;
        font-size: 15px;
    }
}
@media screen and (max-width:299px){
    .photo{
        width: 280px;
        height: 210px;
    }
    h1{
        font-size: 24px;
    }
    .senshitsu{
        width: 90%;
    }
}
