@charset "UTF-8";

/*変数定義-------------------------------------------------*/


:root{
    /*カラー*/
    --color-primary: #FFED61;
    --color-accent: #E8383D;
    --color-first: #1B67B2;
    --color-second: #009F4C;
    --color-third: #7B6649;
    --color-white: #f5f2ec;
    --color-black: #000;
    /*レイアウト*/
    --width-mid: 1200px;
    --width-narrow: 770px;
    --space-unit: 15px;
    --space-section: 45px;
    --header-height: 80px;
    /*その他*/
    --gap: 30px;
    --duration: 0.7s;
}

/*ベース-------------------------------------------------*/


html{
    font-size: 100%;
    overflow-x: clip;
}
body{
    font-family: "Yu Gothic","游ゴシック Medium",Yu Gothic,"游ゴシック体","ヒラギノ角ゴ Pro W3",sans-serif;
    overflow-x: clip;
    padding-top: var(--header-height);
    background: var(--color-body);
    color: var(--color-text);
}
img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

p{
    line-height:1.7;
}

/*レイアウト-------------------------------------------------*/


.wrapper{
    width: 100%;
    padding: 0 var(--space-unit);
    box-sizing: border-box;
}
.wrapper-mid{
    max-width: var(--width-mid);
    margin: 0 auto;
    padding: 0 var(--space-unit);
    box-sizing: border-box;
}
.wrapper-narrow{
    max-width: var(--width-narrow);
    margin: 0 auto;
    padding: 0 var(--space-unit);
    box-sizing: border-box;
}


/*ユーティリティ-flex-------------------------------------------------*/
.flex{display: flex;}
.flex-wrap{flex-wrap: wrap;}
.justify-between{justify-content: space-between;}
.align-center{align-items: center;}
.align-start{align-items: flex-start;}
.gap{gap:var(--gap);}


/*ユーティリティ-grid-------------------------------------------------*/
.grid{display: grid;}
.grid-3col{grid-template-columns: repeat(3,1fr);}
.grid-2col{grid-template-columns: repeat(2,1fr);}



/*共通コンポーネント-------------------------------------------------*/


.sec-ttl{
   position: relative;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    padding-bottom: var(--space-section);
    margin-bottom: 50px;
}
.sec-ttl::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #F5C84C;
    border-radius: 999px;
}
.lead{
    font-size: 14px;
    line-height: calc(26 / 14);
    text-align: center;
    padding-bottom: var(--space-section);
}
/*ボタン共通*/
.btn{
    display: block;
    text-align: center;
    font-weight: bold;
    transition: all var(--duration);
    margin: 0 auto;
}
/*プライマリーボタン*/
.btn-primary{
    width: 200px;
    height: 55px;
    line-height: 54px;
    background: var(--color-third);
    color: var(--color-white);
    border-radius: 5px;
    border: 1px solid var(--color-third);
    transition: background 0.3s,color 0.3s;
}
/*セカンダリーボタン*/
.btn-secondary{
    width: 150px;
    height: 45px;
    line-height: 44px;
    border-radius: 5px;
    font-size: 15px;
    color: var(--color-first);
    border: 1px solid var(--color-first);
    transition: background 0.3s,color 0.3s;
    margin: 30px auto;
}
/*ページトップボタン*/
.pagetop{
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background-color: var(--color-first);
    border-radius: 50%;
    border: 1px solid var(--color-first);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: background 0.3s,color 0.3s,border-color 0.3s, opacity 0.5s, visibility 0.5s;
}
/*表示状態*/
.pagetop.is-visible{
    opacity: 1;
    visibility: visible;
}
.pagetop:before{
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-top: 3px solid var(--color-white);
    border-right: 3px solid var(--color-white);
    translate: 0 20%;
    rotate: -45deg;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
}
.pagetop:hover{
    transition: all var(--duration);
}
/*カード画像ズーム用*/
.sec03-img figure{
    overflow: hidden;
}
.sec03-img figure img{
    transition: transform 0.4s ease;
}

/*ホバー制御(PCのみ)*/
@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover{
        background: transparent;
        color: var(--color-third);
    }
    .btn-primary:hover{
        background: transparent;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        color: var(--color-third);
        border-color: rgba(123, 102, 73, 0.6);
    }
    .btn-secondary:hover{
        background: var(--color-first);
        color: var(--color-white);
    }
    .btn-secondary:hover{
        background: var(--color-first);
        color: var(--color-primary);
    }
    .sec03-img figure img:hover{
        transform: scale(1.08);
    }
    .pagetop:hover{
        background: var(--color-white);
    }
    .pagetop:hover::before{
        border-color: var(--color-primary);
    }
}

/*
header
----------------------------------------------------------- */
.mv{
    position: relative;
}
.catch-copy{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.4;

    text-align: center;
    z-index: 10;

    text-shadow:
        0 3px 10px rgba(0,0,0,.5);
}
video{
    display: block;
    width: 100%;
    height: auto;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 9999;
}
.header::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--color-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.header .wrapper{
    height: 100%;
    padding-top: 10px;
    padding-bottom:10px;
    box-sizing: border-box;
    padding-right: 140px; /* 予約ボタン分のスペース */
    
}

/*ロゴ*/
.logo img{
    margin: 0;
}

/*グローバルナビ(PC)*/
.nav-link{
    display: block;
    padding: 0 16px;
    height: calc(var(--header-height) - 20px);
    line-height: calc(var(--header-height) - 20px);
    font-size: 15px;
    font-weight: bold;
    color: var(--color-first);
    position: relative;
}
/* 下線：通常時は幅0で非表示 */
.nav-link::after{
    content: "";
    padding: 0 16px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-first);
    transition: width 0.3s ease;
}
/*予約ボタン*/
.reservation-btn{
    position: absolute;  
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    text-decoration: none;
    line-height: 1.4;
    border-radius: 100%;
    padding-top: 80px;
    padding-right: 40px;
    transition: transform 0.5s ease;
}
.reservation-btn:hover{
    transform: scale(1.1);
}


/* ホバー時：中央から両端に向かって伸びる */
@media(hover: hover) and (pointer: fine) {
    .nav-link:hover::after{
        width: 100%;
    }
}

/*ハンバーガーメニューボタン(PCでは非表示)*/
.menu{
    display: none;
    position: absolute;
    top: calc(50% - 12px);
    right: var(--space-unit);
    width: 32px;
    height: 24px;
    z-index: 10000;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.menu span{
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-first);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.menu span:nth-child(1){ top: 0; }
.menu span:nth-child(2){ top: 10px; }
.menu span:nth-child(3){ top: 20px; }

/*開いている時：×印に変形*/
body.open .menu span:nth-child(1){
    top: 10px;
    transform: rotate(45deg);
}
body.open .menu span:nth-child(2){
    opacity: 0;
}
body.open .menu span:nth-child(3){
    top: 10px;
    transform: rotate(-45deg);
}

/*ナビ展開中の背景オーバーレイ*/
.nav-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
body.open .nav-overlay{
    opacity: 1;
    visibility: visible;
}

/*スマホ・タブレット表示(ハンバーガーメニュー化)*/
@media (max-width: 768px){
    /*予約ボタン分の余白をリセット*/
    .header .wrapper{
        padding-right: var(--space-unit);
    }

    /*ハンバーガーボタンを表示*/
    .menu{
        display: block;
    }

    /*ナビをドロワー化*/
    .nav{
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100%;
        height: 100dvh;
        background: var(--color-primary);
        z-index: 9999;
        overflow-y: auto;
        padding: calc(var(--header-height) + 20px) 0 140px;
        box-sizing: border-box;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }
    body.open .nav{
        transform: translateX(0);
    }

    /*ナビの中身を縦積みブロックに*/
    .nav-list{
        flex-direction: column;
    }
    .nav-list li{
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,.1);
    }
    .nav-link{
        height: auto;
        line-height: 1.6;
        padding: 18px var(--space-unit);
    }
    .nav-link::after{
        display: none; /*PC用の下線ホバー演出は非表示*/
    }

    /*予約ボタンを画面下部の大きな四角に変更*/
    .reservation-btn{
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 90px;
        border-radius: 0;
        padding: 0;
        z-index: 9999;
        transform: translateY(100%);
        transition: transform 0.4s ease;
    }
    .reservation-btn a{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    body.open .reservation-btn{
        transform: translateY(0);
    }
}

/*section1 news&topics*/
.sec-01{
    position: relative;
    padding: var(--space-section) 0;
    text-align: center;
}

.sec-01::before{
    content:"";
    position:absolute;
    left:0;
    top:-40px;
    width:100%;
    height:40px;
    background:url(../img/wave_01.svg) repeat-x;
    background-size:auto 40px;
    z-index: 9998;
}

.sec-01 .swiper{
    position: relative;
    padding-bottom: 60px; /* ページネーション用の余白 */
    max-width: var(--width-mid);
    margin: 0 auto;
}

.news-item{
    display: flex;
    width: auto;
    height: auto;
    margin-top: var(--space-section);
}


/*矢印(ナビゲーション)*/
.sec-01 .swiper-button-prev,
.sec-01 .swiper-button-next{
    color: var(--color-first);
    top: calc(50% - 30px); /* ページネーション分だけ少し上に */
}
.sec-01 .swiper-button-prev::after,
.sec-01 .swiper-button-next::after{
    font-size: 24px;
}

/*ページネーション*/
.sec-01 .swiper-pagination-bullet-active{
    background: var(--color-first);
}

.news-item figure{
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 30px;
    margin: auto 15px 30px 15px;
}

.news-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item time{
    font-size: 16px;
    color: #1B67B2;
}
.news-item a{
    display: block;
}

/*section2*/
.sec-02{
    position: relative;
    padding: var(--space-section) 0;
    text-align: left;
    margin-bottom: 100px;
}

.about-contents{
    display: flex;
    gap: 5rem;
    padding-right: var(--space-unit); /* 右端(テキスト側)にだけ余白 */
    box-sizing: border-box;
}
.about-img{
    width: 55%;
}
.about-text{
    width: 45%;
    margin: auto 0;
}

.about-text p{
    margin-bottom: 30px;
}

.about-ttl{
    font-size: 24px;
    font-weight: bolder;
    margin-bottom: 20px;
}

/*section3*/

.sec-03{
    position: relative;
    padding: var(--space-section) 0;
    text-align: left;
    background-color: #FFED61;
}
.sec-03::before{
    content:"";
    position:absolute;
    left:0;
    top:-40px;
    width:100%;
    height:40px;
    background:url(../img/wave_02.svg) repeat-x;
    background-size:auto 40px;
    z-index: 9998;
}
.sec03-item{
    display: flex;
    margin-bottom: 100px;
    align-items: center;
    max-width: 1210px;
    width: 100%;
    margin: 0 auto 100px;
    padding: 0 30px;
    box-sizing: border-box;
}

.sec03-text-left{
    width: 50%;
    margin-right: 50px;
}

.sec03-text-left p,
.sec03-text-left h3,
.sec03-text-left a{
    color: var(--color-second);
}
.sec03-text-left a{
    border: 1px solid var(--color-second);
    color: var(--color-second);
}

.sec03-text-left a:hover{
    background: var(--color-second);
    border: 1px solid var(--color-second);
}

.sec03-text-right{
    width: 50%;
    margin-left: 50px;
}

.sec03-text-right p,
.sec03-text-right h3,
.sec03-text-right a{
    color: var(--color-accent);
}

.sec03-text-right a{
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

.sec03-text-right a:hover{
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
}


.sec03-ttl{
    font-size: 24px;
    font-weight: bolder;
    margin-bottom: 30px;
}
.number{
    font-size: 64px;
    font-weight: bolder;
    margin-right: 1rem;
}

.sec03-text-left p{
    margin-bottom: 30px;
}

.sec03-img01{
    width: 100%;
    max-width: 555px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.single-img{
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.single-img img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sec03-img02{
    position: relative;
    width: 100%;
    max-width: 555px;
}

.gourmet-img01{
    width: 70%;
    margin-bottom: 10px;
}

.gourmet-img02{
    width: 70%;
    margin-left: auto;   /* 右寄せ */
}

/*information*/
.sec04{
        position: relative;
    padding: var(--space-section) 0;
    text-align: center;
}
.sec04::before{
    content:"";
    position:absolute;
    left:0;
    top:-40px;
    width:100%;
    height:40px;
    background:url(../img/wave_01.svg) repeat-x;
    background-size:auto 40px;
    z-index: 9998;
}
.info-list{
    display: grid;
    grid-template-columns: 180px 180px 180px 180px;
    gap: 30px;
    justify-content: center;
}


.info-item{
    width: 180px;
    height: 180px;
    background-color: var(--color-second);
    border-radius: 100%;
    color: var(--color-white);
    transition: transform 0.5s ease;
}
.info-link{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.fa-solid{
    font-size:40px;
    margin-bottom: 0.5rem;
}

.info-item:hover{
    transform: scale(1.1);
}

/*Acsess*/
.sec05{
    position: relative;
    padding: var(--space-section) 0;
    text-align: center;
}

.location-info{
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.info{
    margin: 0 auto;
    border-collapse: collapse;
}
.info th,
.info td{
    padding: 6px 24px; 
    text-align: left;
}

.location-map{
    margin-top: 50px;
}

/*
loop-slide-area
----------------------------------------------------------- */
.loop-slider{
    width: 100%;
}

.loop-slider .swiper-wrapper{
    transition-timing-function: linear;
}

.loop-slide-area{
    overflow: hidden;
    position: relative;
}

.loop-slide-area::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:40px;
    background:url(../img/wave_04.svg) repeat-x;
    background-size:auto 40px;
    z-index: 9998;
}
.loop-slider .swiper-slide{
    width: 720px;
    height: 450px;
    flex-shrink: 0;
}
.loop-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.footer{
    background: var(--color-first);
    color: var(--color-white);
    padding: 60px 0 30px;
}
.footer{
    color: var(--color-white);
    min-width: 0;
        position: relative;
    overflow: visible;
}

.footer-logo{
    text-align: center;
    margin-bottom: 50px;
}

.footer .footer-box{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer::before{
    content:"";
    position:absolute;
    left:0;
    top:-40px;
    width:100%;
    height:40px;
    background:url(../img/wave_03.svg) repeat-x;
    background-size:auto 40px;
    z-index: 9999;
}
.footer-left{
    width: 250px;
    flex-shrink: 0;
}
.footer-left p{
    font-size: 12px;
}
.footer-ttl{
    font-size: 24px;
    margin-bottom: 30px;
}
.footer-address{
    font-style: normal;
    line-height: 2;
    margin-bottom: 30px;
}
.footer-right{
    display: grid;
    gap: 20px;
    grid-template-columns:repeat(6,1fr);
}
.footer-menu{
    min-width:100px;
}
.footer-menu-title{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 25px;
}
.footer-menu-list{
    display: flex;
    flex-direction: column;
    gap:18px;
    font-size: 14px;
}
.footer-sns{
    display: flex;
    gap: 15px;
}
.footer-sns a{
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.copyright{
    margin-top: 70px;
    text-align: center;
    font-size: 14px;
}


/*レスポンシブ mobile
----------------------------------------------------------- */
@media screen and (max-width: 767px){
    :root{
        --header-height:60px;
    }
       .pagetop{
        bottom: 20px;
        right: 10px;
    }
    .catch-copy{
        font-size: 16px;
        width: 90%;
    }
    .sec-01 .swiper-button-prev,
    .sec-01 .swiper-button-next{
        display: none;
    }
    .sec-01 .swiper{
        padding-bottom: 40px;
    }
    .about-contents{
        flex-direction: column;
        gap: 30px;
        padding-right: 0; 
    }
    .about-img,
    .about-text{
        width: 100%;
    }
    .about-text{
        margin: 0;
        padding: 0 var(--space-unit); 
        box-sizing: border-box;
    }
    .sec-02{
        margin-bottom: 60px;
    }
    .about-ttl{
        font-size: 20px;
    }
    /*section3*/
       .sec03-item{
        flex-direction: column;
        padding: 0 20px;
    }
    .sec03-text-left,
    .sec03-text-right{
        width: 100%;
        margin: 0 0 30px;
    }
    .sec03-img{
        width: 100%;
    }
    .sec03-img01,
    .sec03-img02{
        max-width: 100%;
    }
  
    .sec03-text-right{
        order: -1;
    }
    .sec03-ttl{
        font-size: 20px;
    }
    .number{
        font-size: 48px;
    }
    .gourmet-img01,
    .gourmet-img02{
        width: 85%;
    }
    /*section4*/
    .sec04{
        padding: 0 20px;
    }
    .info-list{
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 0 auto;
        gap: 20px;
    }
    .info-item{
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .fa-solid{
        font-size: 28px;
    }
    .info-link{
        font-size: 14px;
    }
  /*section5*/
    .info th,
    .info td{
        padding: 4px 10px;
        font-size: 14px;
    }
    .location-map{
        margin-top: 30px;
    }
    .location-map iframe{
        width: 100%;
        height: 250px;
    }
    
    .loop-slider .swiper-slide{
        width: 320px;
        height: 220px;
    }
    /*footer*/
    .footer{
        padding: 40px 0 20px;
    }
    .footer-box{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-left{
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .footer-sns{
        justify-content: center;
    }
    .footer-right{
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        text-align: left;
        padding: 0 20px;
        box-sizing: border-box;
        gap: 30px 20px;
    }
    .copyright{
        margin-top: 40px;
    }
}

/*
scroll fade-up (f-up)
----------------------------------------------------------- */
.f-up{
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.f-up.fadeup{
    opacity: 1;
    transform: translateY(0);
}

.f-up.delay-1{ transition-delay: 0.15s; }
.f-up.delay-2{ transition-delay: 0.3s; }
.f-up.delay-3{ transition-delay: 0.45s; }