@charset "UTF-8";
/*
変数定義
----------------------------------------------------------- */
:root {
    /* カラー */
    --color-primary: #ece3bf;
    --color-accent: #A8BE8A;
    --color-text: #5e513d;
    --color-background: #f5f2eb;

    /* レイアウト */
    --width-mid: 1200px;
    --width-narrow: 770px;
    --space-unit: 15px;
    --space-section: 50px;
    --header-height: 80px; /* fixedヘッダーの高さ（body padding-topに使用） */
    /* その他 */
    --gap: 30px;
    --duration: 0.7s;
}

/*
ベース
----------------------------------------------------------- */
html {
    font-size: 100%;
    overflow-x: clip;
}
body {
    font-family: "Noto Serif JP",serif;
    overflow-x: clip;
    padding-top: 0;
    background: var(--color-background);
    color: var(--color-text);
    margin: 0;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* ホバー制御（PCのみ） */
@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        background: transparent;
        color: var(--color-primary);
    } 
    .pagetop:hover {
        background: var(--color-white);
    }
    .pagetop:hover::before {
        border-color: var(--color-primary);
    }
}
/*
header
----------------------------------------------------------- */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--color-accent);
    margin: 0;
}
.logo a{
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: var(--color-text);
}

.logo a span{
    font-size: 36px;
}
.header-right{
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav{
    display: flex;
    align-items: center;
}

.nav-list{
    display: flex;
    list-style: none;
    gap: 40px;
}

.hamburger{
    display: none;
}
.nav-list a{
    position: relative;
    text-decoration: none;
    color: var(--color-text);
    font-weight: bold;
}
.nav-list a::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--color-text);

    transform: translateX(-50%);
    transition: width 0.3s ease;
}
.nav-list a:hover::after{
    width: 100%;
}
.reserve-btn{
    padding: 7px 20px;
    background: var(--color-text);
    color: var(--color-background);
    font-weight: bold;
    text-decoration: none;
   transition: all 0.3s ease;
}
.reserve-btn:hover{
    background: var(--color-primary);
    color: var(--color-text);
}
/*アニメーション*/
.fade-up{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show{
    opacity: 1;
    transform: translateY(0);
}



/*
main visual
----------------------------------------------------------- */
.mv{
    position: relative;
}
.mv video{
    width: 100%;
    display: block;
    height: 800px;
    object-fit: cover;
}
.mv-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 30%;
}
.mv-logo{
    width: 400px;
}
/*
consept
----------------------------------------------------------- */
.mv-copy{
    font-size: 30px;
    color: var(--color-text);
}
.concept{
    color: var(--color-text);
    text-align: center;
    padding: 150px 0;
}
.concept p{
    line-height: 3;
    letter-spacing: .08rem;
}

/*
content
----------------------------------------------------------- */
.content{
    margin: 0 auto;
    max-width: 80%;

}
.content-img{
    margin: 0 auto;
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
}
.content-img img{
    width: 100%;
    display: block;
    transition: .5s;
}
.content-img:hover img{
    transform: scale(1.05);
    filter: brightness(0.7);
}
.content-text{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 150px;
    color: var(--color-background);
    text-align: left;
    z-index: 1;
}
.content-text h2{
    font-size: 40px;
    margin-bottom: 60px;
}
.content-text p{
    line-height: 40px;
    font-size: 20px;
}

/*
access
----------------------------------------------------------- */
.access{
    margin: 150px auto;
    max-width: 80%;
}
.access h2{
    text-align: center;
    font-size: 40px;
    margin-bottom: 2rem;
}
.access-content{
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.access-title h3{
    font-size: 25px;
    margin-bottom: 20px;
}
.access-info{
    margin-bottom: 30px;
}
.access-info p{
    line-height: 2;
    margin-bottom: 15px;
}
.access-info a{
    color: var(--color-text);
    border-bottom: 1px solid var(--color-text);
}
.access-map{
    width: 55%;
}
.access-map img{
    width: 80%;
}
.access-text{
    width: 45%;
}
.access-route p{
    line-height: 2;
}

/*
footer
----------------------------------------------------------- */

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: var(--color-accent);
    padding: 80px 0;
}
.footer-left{
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-left: 50px;
}
.footer-logo{
    width: 200px;
}
.footer-ttl {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-text);
}
.footer-address p{
    line-height: 1.8;
    color: var(--color-text);
}
.footer-address a {
    color: var(--color-text);
    transition: border-color 0.5s, color 0.5s;
}
.footer-address a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* SNSアイコン */
.footer-right {
    display: flex;
    gap: 20px;
    padding: 0;
}
.footer-sns {
    display: flex;
    flex-direction: row;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0  100px 0 0;
}
.footer-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-text);
    border-radius: 50%;
    color: var(--color-text);
    font-size: 18px;
    text-decoration: none;
    transition: border-color 0.5s, color 0.5s;
}
.footer-sns a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.footer-links a:hover {
    color: var(--color-text);
}
.copyright {
    height: 60px;
    line-height: 60px;
    background: var(--color-text);
    color: var(--color-background);
    text-align: center;
    font-size: 12px;
}
small {
    font-size: 100%;
}


/*
下層ページ共通 
-----------------------------------------------------------*/
.page-mv{
    position: relative;
    overflow: hidden;
    padding-top: 45px;
    box-sizing: border-box;
}
.page-mv img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.page-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-text);
    text-align: center;
    font-weight: bold;
    z-index: 2;
}
.page-title{
    font-size: 50px;
    margin-bottom: 20px;
}
.page-lead{
    font-size: 20px;
    line-height: 2;
}
.page-anim {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.page-anim.show {
  opacity: 1;
  transform: scale(1);
}
/*
ROOM page
-----------------------------------------------------------*/
.room{
    max-width: 1000px;
    margin: 0 auto;
}
.room-title{
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 150px;
    position: relative;
    padding-bottom: 20px;
}
.room-title::after{
    content: "";
    display: block;
    width: 60px;
    height: 1.5px;
    background-color: var(--color-text);
    margin: 20px auto 0;
}
.room-text{
    line-height: 2;
    font-size: 18px;
    letter-spacing: 0.05;
}
.room-slider{
    margin: 30px auto;
}
.roomSwiper{
    width: 100%;
}
.roomSwiper img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.swiper-button-next,
.swiper-button-prev{
    color: var(--color-background);
}
.room-info{
    margin-top: 30px;
}
dl{
    display: grid;
    grid-template-columns: 150px 1fr;
    row-gap: 20px;
}
dt{
    font-weight: bold;
}
dd{
    margin: 0;
    line-height: 1.8;
}
.reserve{
    display: block;
    width: 150px;
    margin: 50px auto;
    text-align: center;
    background: var(--color-text);
    color: var(--color-background);
    padding: 12px;
}
/*
ONSEN page
-----------------------------------------------------------*/
.onsen-content{
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
}
.onsen-content img{
    width: 100%;
    display: block;
    margin: 0 auto;
}
.onsen-info{
    margin-bottom: 100px;
}
.onsen-text h2{
    font-size: 40px;
    margin: 20px auto; 
} 
.onsen-text p{
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

/*
MEAL page
-----------------------------------------------------------*/
.meal{
    max-width: 1000px;
    margin: 0 auto;
}
.meal-item{
    margin-bottom: 150px;
    margin-top: 150px;
}
.meal-title{
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}
.meal-title::after{
    content: "";
    display: block;
    width: 60px;
    height: 1.5px;
    background-color: var(--color-text);
    margin: 20px auto 0;
}
.meal-content{
    display: flex;
    align-items: flex-start;
    gap: 50px;
}
.meal-text{
    width: 50%;
}
.meal-text p{
    line-height: 2;
    font-size: 18px;
    letter-spacing: 0.05em;
}
.meal-img{
    width: 50%;
}
.meal-img img{
    width: 100%;
    display: block;
}
.drink{
    max-width: 1000px;
    margin: 0 auto 100px;
}
.drink-list{
    width: fit-content;
    margin: 0 auto;
}
.drink-list li{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 150px;
    align-items: center;
    font-size: 20px;
    line-height: 40px;
}
.price{
    width: 100px;
}
.allergy{
    background: var(--color-primary);
    padding: 50px 0;
    margin-bottom: 100px;
}
.allergy-inner{
    max-width: 1000px;
    margin: 0 auto;
}
.allergy-inner h3{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.allergy ul{}
.allergy li{
    margin-bottom: 15px;
    line-height: 1.8;
}


/*
DOG page
-----------------------------------------------------------*/
.dog-item{
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    row-gap: 100px;
    column-gap: 50px;
    align-items: center;
    margin: 150px auto;
}
.dog-card{
    overflow: hidden;
}
.dog-card img{
    width: 100%;
    object-fit: cover;
}
.dog-card h3{
    margin-top: 10px;
    font-weight: bold;
}
/*
faq page
-----------------------------------------------------------*/
.faq-item{
    max-width: 800px;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 200px;
    margin-top: 200px;
}
.faq-item h2{
    font-size: 40px;
    margin-bottom: 20px;
    text-align: left;
}
.faq-item details{
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: left;
    cursor: pointer;
    border-bottom: solid 1px var(--color-text);
}
.faq-item p{
    text-align: left;
    margin-bottom: 20px;
    padding-left: 40px;
}
.faq-item summary{
    cursor: pointer;
    padding: 1rem 1.5rem;
    text-align: left;
    position: relative;
    padding-right: 40px;
    list-style: none;
}
.faq-item span{
    font-size: 20px;
    font-weight: bold;
}
.faq-item summary,
.faq-item p{
    padding-left: 40px;
}
.faq-item summary::after{
    content: "+";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
}
.faq-item details[open] summary::after{
    content: "−";
}

 /*
 レスポンシブhome
 -----------------------------------------------------*/
 @media screen and (max-width:768px){

    .header{
        padding:15px 20px;
    }

    .logo a{
        font-size: 12px;
    }

    .logo a span{
        font-size: 20px;
    }

    .nav{
        position: fixed;
        top: 0;
        right: 0;
        width:50%;
        height: 100%;
        background: rgba(168, 190, 138, 0.95);
        flex-direction: column;
        gap:30px;
        padding: 30px 0;
        padding-top: 100px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 600;
    }

    .nav.active{
        transform: translateX(0);
    }

    .nav-overlay{
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease, visibility .3s ease;
        z-index: 550;
    }

    .nav-overlay.active{
        opacity: 1;
        visibility: visible;
    }

    .nav-list{
        flex-direction: column;
        text-align:center;
        gap:20px;
    }

    .hamburger{
        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:5px;
        background:none;
        border:none;
        cursor:pointer;
        position: relative;
        z-index: 650;
    }

    .hamburger span{
        width:28px;
        height:3px;
        background:var(--color-text);
        transition: transform .3s ease, opacity .3s ease;
    }

    .hamburger.active span:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2){
        opacity: 0;
    }

    .hamburger.active span:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .mv video{
        height: 60vh;
    }

    .mv-content{
        width: 70%;
    }

    .mv-logo{
        width: 100%;
        max-width: 250px;
    }

    .concept{
        padding: 80px 20px;
    }

    .mv-copy{
        font-size: 24px;
        margin-bottom: 20px;
    }

    .concept-text{
        line-height: 2;
        font-size: 15px;
    }

    .content{
        max-width: 92%;
    }

    .content-text{
        left: 30px;
    }

    .content-text h2{
        font-size: 28px;
        margin-bottom: 20px;
    }

    .content-text p{
        font-size: 15px;
        line-height: 1.8;
    }

    .access{
        max-width: 92%;
        margin: 100px auto;
    }

    .access h2{
        font-size: 30px;
    }

    .access-content{
        flex-direction: column;
        gap: 40px;
    }

    .access-map,
    .access-text{
        width: 100%;
    }

    .access-map img{
        width: 100%;
    }

    .access-title h3{
        font-size: 22px;
    }

    .wrapper{
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 50px 20px;
    }

    .footer-left{
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 0;
        gap: 20px;
    }

    .footer-logo{
        width: 140px;
    }

    .footer-sns{
        margin: 0;
        justify-content: center;
    }

}


/*下層ページ共通*/
@media screen and (max-width:768px){

    .page-mv{
        height: 45vh;
        padding-top: 0;
    }

    .page-mv img{
        height: 100%;
    }

    .page-inner{
        width: 90%;
    }

    .page-title{
        font-size: 32px;
        margin-bottom: 15px;
    }

    .page-lead{
        font-size: 15px;
        line-height: 1.8;
    }

}

/*room*/
@media screen and (max-width:768px){

    .room{
        width: 92%;
    }

    .room-title{
        font-size: 30px;
        margin-top: 80px;
        margin-bottom: 30px;
    }
    
    .room-text{
        font-size: 16px;
        line-height: 2;
    }

    .roomSwiper img{
        height: 250px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        transform: scale(.7);
    }

    dl{
        display:block;
    }

    dt{
        margin-top:20px;
        font-weight:bold;
    }

    dd{
        margin:8px 0 20px;
    }

    .reserve{
        width: 180px;
        padding: 15px;
    }
}

/*onsen*/



/*meal*/
@media screen and (max-width:768px){

    .meal,
    .drink,
    .allergy-inner{
        width: 92%;
    }

    .meal-item{
        margin: 80px 0;
    }

    .meal-content{
        flex-direction: column;
        gap: 25px;
    }

    .meal-text,
    .meal-img{
        width: 100%;
    }

    .meal-title{
        font-size: 30px;
        margin-bottom: 30px;
    }

    .meal-text p{
        font-size: 16px;
        line-height: 2;
    }

    .drink-list li{
        grid-template-columns: 1fr auto;
        gap: 20px;
        font-size: 16px;
        line-height: 2;
    }

    .price{
        width: auto;
        white-space: nowrap;
    }

    .allergy{
        padding: 40px 0;
    }

    .allergy-inner h3{
        font-size: 18px;
    }

    .allergy li{
        font-size: 12px;
        line-height: 2;
    }

}

/*dog*/
@media screen and (max-width:768px){

    .dog-item{
        width:92%;
        grid-template-columns:1fr;
        row-gap:40px;
        margin:80px auto;
    }

    .dog-card h3{
        font-size:20px;
    }

    .dog-card p{
        font-size:15px;
        line-height:1.8;
    }

}

/*faq*/
@media screen and (max-width:768px){

    .faq-item{
        width: 92%;
        margin: 80px auto;
    }

    .faq-item h2{
        font-size: 28px;
        margin-bottom: 20px;
    }

    .faq-item summary{
        font-size: 16px;
        padding: 15px 40px 15px 20px;
    }

    .faq-item p{
        font-size: 15px;
        line-height: 1.8;
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-item span{
        font-size: 22px;
    }

    .faq-item summary::after{
        right: 10px;
        font-size: 28px;
    }

}