@charset "UTF-8";
/*
Theme Name: おおだ山荘
Description:おおだ山荘's theme
*/


html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Noto Serif JP", Arial, serif;
    font-style: normal;
    color: #1B1B1B;
    background-color: #fff;
    line-height: 1.9;
}

img {
    max-width: 100%;
    height: auto;
}

/*==========================
fadeIn.animated 表示
==========================*/
.fadeIn {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s ease;
}

.fadeIn.animated {
    transform: translateY(0);
    opacity: 1;
}

/* header */
.header {
    padding: 10px 15px;
    width: 100vw;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(58, 58, 58, 0.85);
    position: fixed;
    z-index: 10000000;
}

.header__logo:hover {
    opacity: 0.6;    
}

.header__logo img {
    display: block;
}

.header__logo img {
    width: 100px;
}

.header__btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;

}

.header__btn_icon {
    width: 42px;
    height: auto;
    display: block;
    margin-bottom: -4px;
    transform: translateY(-3px);
    }

.header__btn_label {
    transform: translateY(-5px);
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.8px;
}

/* nav初期設定 */
.nav {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000000;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav.active {
    transform: translateX(0);
}

.nav__header {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    width: 100px;
}

.nav__btn {
    width: 35px;
    height: auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-5px, 2px);
}

.nav__btn_icon {
    width: 28px;
    height: auto;
    display: block;
    margin-bottom: -4px;
    transform: translateY(-3px);
    }

.nav__btn_label {
    transform: translateY(2px);
    color: #1B1B1B;
    text-align: center;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.7px;
}

.nav__wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 24px;
    padding: 0 8%;
}

.nav__en {
    text-align: center;
    font-family: "Playfair Display";
    font-size: 2rem;
    font-weight: 700;
    line-height: 150%; /* 30px */
    letter-spacing: 1px;
    display: block;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl; 
}

.nav__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.nav__item {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 150%; /* 31.5px */
    letter-spacing: 1.05px;
    border-bottom: 1px solid #5E7E68;
    display: block;
    width: 100%;
}

.btn-wrap {
    width: 84%;
    padding: 10px;
    border-radius: 5px;
    background: #5E7E68;
    border: 1px solid #3D5146;
    margin: 50px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn--reservation {
    color: #FFF;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 160%; /* 28.8px */
    letter-spacing: 0.54px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}


/* 予約ボタンhover */
.btn--reservation--wrap:hover {
    opacity: 0.7;
}

.btn--reservation--wrap:active {
    opacity: 0.7;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2980b9;
}


.header--reservation {
    display: none;
}

/* 予約ボタンhover */
.header--reservation:hover {
    background-color: #C3D2CB;
}

.header--reservation:active {
    background-color: #C3D2CB;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2980b9;
}

/* header PC */
@media screen and (min-width:1080px) {
    .header {
        max-width: 100%;
        height: 90px;
        padding: 0 2.1%;
    }

    .nav {
        background: transparent;
        transform: translateX(0);
        position: static;
        width: auto;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .header__logo img {
        width: 130px;
    }

    .nav__wrap {
        margin-top: 0;
        padding: 0;
    }
    
    .nav__list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }

    .nav__item {
        color: #FFF;
        text-align: center;
        font-family: "Noto Serif JP";
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 160%;
        letter-spacing: 0.6px;
        border-bottom: none;
        display: inline-block;
        width: auto;
        white-space: nowrap;
        text-decoration: none;
        position: relative;
        transition: 0.5s;
    }


    /* nav__item hover時の下線 */
    .nav__item::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 1px;
        background-color: #FFF;
        transform: scaleX(0);
        transform-origin: left;
        transition: 0.5s;
    }

    .nav__item:hover::after {
        transform: scaleX(1);
    }

    .nav__header,
    .btn--wrap--nav,
    .header__btn,
    .nav__en {
        display: none;
    }

    .nav__block {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    /* header PC 予約ボタン */
    .header--reservation {
        display: block;
        width: 170px;
        height: 50px;
        background-color: #FFF;
        border-radius: 5px;
        border: 1px solid #BDBCBC;
        display: flex;
        justify-content: center;
        align-items: center;
        /* ご予約文字 */
        color: #2F2F2F;
        font-size: 1.7rem;
        font-weight: 700;
        line-height: 160%; /* 27.2px */
        letter-spacing: 0.51px;
    }

    .header--reservation img {
        width: 21px;
        height: 21px;
        margin-right: 5px;
    }
}
/* header PC end */


/* Scrool bar 線が流れる動き　SP*/
.hero {
    position: relative;
}

/* footer */
.footer {
    padding: 80px 8% 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-image:url(assets/images/back_footer.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer__group {
    display: flex;
    flex-direction: column;
}

.footer__tb {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer_nav__wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 40px;
    width: 100%;
    max-width: 315px;
}

.footer_nav__en {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl; 
    color: #FFF;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.9px;
    margin-top: 15px;
}

.footer_nav__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* gap: 15px; */
    width: 100%;

}

.footer_nav__item {
    color: #FFF;
    font-family: "Noto Serif JP";
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.9px;
    padding: 15px 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.6); */
    width: 100%;
    display: block;
}

.footer_nav__item:hover {
    opacity: 0.7;
}

.footer__logo__group {
    margin: 0 auto;
    display: block;
}

.footer__logo__group:hover {
    opacity: 0.7;
}

.footer__logo {
    display: block;
    margin: 0 auto;
    width: 150px;
}

.footer__logo__txt {
    color: #ffffff;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 150%; /* 21px */
}

.footer__infomation {
    text-align: center;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    margin-left: 37.5px;
}

.footer__address {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 170%; /* 24px */
    letter-spacing: 0.45px;
    margin-top: 8px;
    text-align: left;
}

.footer__googleMap {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 170%; /* 24px */
    letter-spacing: 0.45px;
    margin-top: 10px;
    padding: 1px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    margin-top: 24px;
    display: inline;
    width: auto;
}

.footer__googleMap:hover {
    opacity: 0.6;
}

.google_arrow {
    width: 25px;
}

.footer__time {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
}

.footer__checkin,
.footer__checkout {
    width: 202px;
    text-align: left;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 160%; /* 24px */
    letter-spacing: 0.45px;
    white-space: nowrap;
}

.btn--contact {
    display: inline-block;
    color: #ffffff;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 160%; /* 24px */
    letter-spacing: 0.45px;
    padding: 1px 0;
    border-bottom: solid #ffffff 1px;
    margin-top: 24px;
}

.btn--contact:hover {
    opacity: 0.6;
}

.copy {
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 160%; /* 19.2px */
    letter-spacing: 0.36px;
    margin-top: 80px;
}

/* footer TB */
@media screen and (min-width:768px) {
    .footer {
        padding: 80px 10% 20px;
    }

    .footer__group {
        display: flex;
        flex-direction: column;
    }

    .footer__logo {
        width: 180px;
    }

    .footer__logo__txt {
        font-size: 1.5rem;
    }

    .footer__tb {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        margin-top: 60px;
    }

    .footer_nav__wrap {
        margin: 0;
    }

    .footer__infomation {
        margin: 0;
    }

}


/* footer PC */
@media screen and (min-width:1080px) {
    .footer {
        padding: 100px 12.5% 20px;
    }

    .footer__group {
        display: flex;
        flex-direction: row;
        gap: 10%;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        max-width: 1080px;
        margin: 0 auto;
    }

    .footer__tb {
        margin-top: 0;
        display: contents;
    }

    /* footer navi PC */
    .footer_nav__wrap {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 15px;
        width: 280px;
    }

    .footer_nav__en {
        writing-mode: vertical-rl;
        -webkit-writing-mode: vertical-rl; 
        color: #FFF;
        text-align: center;
        font-family: "Playfair Display";
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0.9px;
    }

    .footer_nav__list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .footer_nav__item {
        color: #FFF;
        font-family: "Noto Serif JP";
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0.9px;
    }

    .footer__logo__group {
        text-align: center;
        margin: 0;
        margin-right: 50px;
    }

    .footer__infomation {
        margin: 0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        width: 280px;
    }

    .footer__address {
        text-align: left;
        margin: 0;
        font-size: 1.8rem;
        line-height: 160%; /* 25.6px */
        letter-spacing: 0.58px;
        margin-top: 15px;
    }

    .footer__googleMap {
        text-align: left;
        margin-top: 15px;
        font-size: 1.8rem;
        letter-spacing: 0.58px;
    }

    .footer__time {
        text-align: left;
        margin-top: 30px;
    }

    .footer__checkin,
    .footer__checkout {
        font-size: 1.8rem;
        letter-spacing: 0.58px;
        white-space: nowrap;
    }

    .icon__mail {
        width: 24px;
        margin-right: 8px;
    }

    .mail__address {
        margin-top: 40px;
    }

    .mail {
        font-size: 1.5rem;
    }

    .copy {
    font-size: 1.5rem;
    margin-top: 60px;
}
}

/*==========================
scrollTop
==========================*/
.topBtn {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 5px;
    border-radius: 50%;
    background-color: #5E7E68;
    box-shadow: 2px 2px 4px 2px rgba(29, 101, 101, 0.2);
    position: fixed;
    bottom: 1.4%;
    right: 2%;
    z-index: 9;
    opacity: 1;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top_arrow,
.top_top {
    display: inline-block;
    transform: translateY(20%);
}

.top_top {
    color: #FFF;
    font-size: 0.9rem;
    line-height: 1.9;
    margin-left: 2px;
}

.topBtn:hover {
    opacity: 0.6;
}

@media screen and (min-width:769px) {
    .topBtn {
        width: 70px;
        height: 70px;
        padding: 8px;
        bottom: 1.4%;
        right: 2%;
    } 

    .top_arrow {
        width: 26px;
        height: 13px;
    }

    .top_top {
        font-size: 1.2rem;
    }
}


/* 予約 */
.reservation {
    padding: 80px 8%;
}

.reservation__title {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl; 
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    line-height: 130%; /* 26px */
    letter-spacing: 3px;
    margin: 0 auto;
}

.subtitle__en {
    text-align: center;
    font-family: "Playfair Display";
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 150%; /* 19.5px */
    letter-spacing: 0.6px;
}

.reservation__text_block {
    text-align: center;
    margin-top: 50px;
}

.reservation_text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 160%; /* 24px */
    letter-spacing: 0.45px;
    text-align: left;
    margin-top: 8px;
}

.btn--reservation--wrap {
    margin: 24px auto 0;
    width: 100%;
    max-width: 380px;
}

/* 予約　PC */
@media screen and (min-width:768px) {
    .reservation {
        padding: 80px 13% 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 80px;
    }

    .reservation__title {
        font-size: 3.8rem;
        letter-spacing: 5px;
        margin: 0;
    }

    .reservation__text_block {
        margin-top: 80px;
    }

    .reservation_text {
        font-size: 1.8rem;
        letter-spacing: 0.9px;
        margin-top: 8px;
    }

    .btn--reservation--wrap {
        margin-top: 40px;
    }
}

/*news*/

.infoarea{
    max-width:700px;
    margin:0 auto;
    padding:150px 20px 100px 20px;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}

.infoarea h2{
    font-size: 2rem;
    margin-bottom: 2em;
}

.info-wrapper a{
    text-decoration: underline;
}

.info-wrapper figure{
    margin-bottom: 2em;
}
@media screen and (min-width:768px) {
    .infoarea{
        font-size: 1.5rem;
    }
    .infoarea h2{
        font-size: 2.5rem;
    }
}

.prenextlink{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin:80px 0;
    padding-top:30px ;
    border-top: 1px solid #ccc;;
}

.prenextlink a{
   padding:10px;
   display: inline-block;
}