@charset "UTF-8";

*{margin:0;padding:0;box-sizing:border-box;}

html{
    scroll-behavior:smooth;
}

body{
font-family:"Noto Sans JP",sans-serif;
color:#1f8ea5;
background:#fff;
line-height:1.9;
font-size:14px
}

.container{
width:90%;
max-width:1400px;
margin:0 auto;
}

.hero{
    position:relative;
}

.hero-right{
    margin-top:clamp(10px, 3vw, 50px);
}

.top-image{
    width:100%;
    display:block;
}

.title-row{
    position:absolute;
    top:-30px;
    left:5vw;
    z-index:100;
}

h1{
font-size: clamp(2.8rem, 5vw, 4.1rem);
font-weight:700;
letter-spacing:.04em;
white-space:nowrap;
display:inline-block;

background:linear-gradient(
90deg,
#f4d35e 0%,
#d3d966 18%,
#8fd07a 45%,
#62c5c8 75%,
#6ccfe5 100%
);

background-clip:text;
-webkit-background-clip:text;
color:transparent;
-webkit-text-fill-color:transparent;
}

.catch-ja{
    display:block;
    margin-top:10px;

    font-size: clamp(0.9rem, 2vw, 1.6rem);
    color:#e3ec5d;

    position:static;
}

.description{
    text-align: center;
    margin:15px 5px;
    font-weight: 300;
}

.shop-info{
    width: fit-content;
    margin-left: auto;   /* 右寄せ */
}

.shop-info p{
    display:flex;
    align-items:flex-start;
}

.shop-info .bullet{
    width:1.8em;         /* ❁位置を固定 */
    flex-shrink:0;
}

.intro{margin:30px 0 45px;}

.intro p{
font-weight:500;
color:#1f8ea5;
}

.view-section{margin-bottom:20px;
    margin-top:30px;}
.view-section img{width:100%;display:block;}

.sticky-nav{
position:sticky;
top:0;
z-index:999;

width:90%;
max-width:1400px;
margin:0 auto 30px;

background:linear-gradient(
90deg,
rgba(255,245,200,.45),
rgba(220,245,210,.40),
rgba(180,235,245,.50),
rgba(170,235,250,.55)
);

backdrop-filter:blur(8px);

display:flex;
justify-content:space-evenly;

padding:18px 28px;

border:none;
border-radius:8px;

box-shadow:0 0 18px rgba(120,210,225,.18);
}

.sns-nav{

    width:90%;
    max-width:1400px;

    margin:80px auto 80px;

    display:flex;

    justify-content:space-evenly;

    align-items:center;

    gap:30px;
}

.sns-nav a{

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;
}

.sns-nav img{

    width:56px;

    height:auto;

    display:block;

    transition:.3s ease;
}

.sns-nav img:hover{

    transform:scale(1.08);
}

.home-button{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align: center;

  min-width:90px;      /* ボタン幅を確保 */
  min-height:90px;     /* ボタン高さを確保 */

  padding:8px 12px;    /* 上下余白を小さめ */
  line-height:1.15;    /* 行間を詰める */

  text-align:center;

  border-radius:999px;
  background:linear-gradient(
    90deg,
    rgba(255,245,200,.55),
    rgba(220,245,210,.55),
    rgba(180,235,245,.55)
  );

  color:#5f827d;
  font-size:1.7rem;
  font-weight:500;
  box-shadow:0 0 12px rgba(120,210,225,.18);
  transition:.3s ease;
}

.home-button:hover{

    color:#f5b446;

    transform:translateY(-2px);
}

.sticky-nav a{
text-decoration:none;
color:#5f827d;
display:flex;
flex-direction:column;
align-items:center;
}

.sticky-nav span{
    font-size:1.3rem;
    font-weight:500;
    letter-spacing:.02em;
    transition:.3s ease;
    border-radius:8px;
}

.sticky-nav a:hover{
    color:#f5b446;
}

.sticky-nav a:hover span{
    text-shadow:
        0 0 6px rgba(245,180,70,.7),
        0 0 14px rgba(245,180,70,.5),
        0 0 24px rgba(255,210,120,.4);
}

.sticky-nav small{font-size:.68rem;}

h2{
    font-size:2rem;
    font-weight:500;

    background:linear-gradient(
        90deg,
        #e5b238 0%,
        #d9e34a 12%,
        #9fd85d 22%,
        #66ced8 40%,
        #52d1e7 70%,
        #72daf0 100%
    );

    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;
}

.menu-section{
    display:grid;

    grid-template-columns:
        380px
        1fr;

    grid-template-areas:
        "title title"
        "image text";

    gap:40px;

    margin-top:85px;
    padding-bottom:10px;

    align-items:start;
}

.menu-title{
    grid-area:title;
    text-align:left;
}

.menu-image{
    width:380px;
    max-width:380px;
}

.menu-image img{
    width:100% !important;
    max-width:100% !important;
    height:auto;
}

.menu-content{
    grid-area:text;
    text-align:left;
}

.logo-area{
    display:flex;
    gap:20px;
    margin-top:20px;
    align-items:center;
}

.logo-area img{
    width:auto;            /* 横長の3連ロゴでも潰れないよう幅は自動 */
    height:48px;           /* 高さ基準で揃える（文字が読めるサイズ） */
    max-width:100%;
    object-fit:contain;   /* サイズ統一（縦横比は維持） */
}

.special-section{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
    padding-top:60px;
    padding-bottom:80px;
    align-items:flex-start;
}

.special-title{
    grid-column:1 / 3;
}

.special-image{
    width:380px;
}

.special-image img{
    width:100%;
    height:auto;
    display:block;
}

.special-content{
    padding-top:10px;
    text-align:left;
}
.calendar-map{
display:grid;
grid-template-columns:minmax(0,1fr) minmax(0,1fr);
gap:50px;
align-items:start;
margin-top:20px;
}

.embed-box{
width:100%;
overflow:hidden;
}

.calendar-note{
margin:20px 0 45;
text-align:left;}


#calendar iframe,
#map iframe{
width:100% !important;
display:block;
border:none;
}

#calendar iframe{
height:420px;
}

#map iframe{
height:420px;
}

.access-note{
margin:20px 0 30;
text-align:left;}

/* 各列を「埋め込み＋説明文」の縦並びブロックにする（説明文が地図/カレンダーの真下に来る） */
.cm-col{
    display:flex;
    flex-direction:column;
}

.concept-section{
    display:grid;            /* 画像と文章を同じセルに重ねる（はみ出し防止） */
    margin-bottom:80px;
}

/* 背景画像 */
.concept-section > picture{
    grid-area:1 / 1;
    display:block;
    height:100%;
}

.concept-bg-image{
    width:100%;
    height:100%;
    object-fit:cover;        /* セル高に追従。文章が伸びても重ならない */
    display:block;
}

/* 背景画像の上に配置（同一セルに重ねる） */
.concept-content{
    grid-area:1 / 1;
    position:relative;
    z-index:2;
    align-self:center;
    padding:clamp(20px, 5%, 60px);
}

/* 見出し */
.concept-content h2{
    margin:0 0 20px;
    font-size:2.2rem;
    font-weight:400;
    color:#c8a94b;
}

/* 画像と文章を横並び */
.concept-inner{
    display:flex;
    align-items:center;
    gap:40px;
}

/* 左側の画像 */
.together{
    width:45%;
    display:block;

    position:relative;
    top:20px;
}

.concept-inner{
    display:flex;
    align-items:center;   /* 上下中央 */
}


/* 右側の文章 */
.concept-inner p{
    flex:1;

    margin:0;

    line-height:2;
    color:#1f8ea5;
}

/* リンク */
.text-link{
    color:#e5b238;
    text-decoration:none;
}

.text-link:hover{
    text-decoration:underline;
}

footer{
padding-bottom:60px;
}

footer img{
width:100%;
display:block;
}


#menu,
#special,
#calendar,
#map,
#concept{
    scroll-margin-top:100px;
}


/* =========================
   Responsive (スマホ)
========================= */

@media screen and (max-width:768px){

/* 全体 */
.container{
    width:100%;
    max-width:500px;
    margin:0 auto;
    padding:0 20px;
}

body{
    font-size:14px;
    line-height:1.8;
}

img{
    width:100%;
    height:auto;
    display:block;
}

/* ---------- Hero ---------- */

.hero-left{
    min-height:60px;
}

.title-row{
    position:absolute;
    top:10px;
    left:20px;
    z-index:100;
}

h1{
    font-size:2rem;
}

.catch-ja{
    margin-top:5px;
    font-size:0.9rem;
}

.top-image{
    width:100%;
}

.description{
    text-align:center;
}

.shop-info{
    margin-top:15px;
    margin-left:auto;
}

.shop-info p{
    font-size:0.8rem;
}

/* ---------- SNS ---------- */

.sns-nav{
    width:100%;
    margin:50px 0;
    gap:20px;
}

.sns-nav img{
    width:50px;
}

.home-button{
    min-width:80px;
    min-height:80px;
    padding:6px;
    font-size:1rem;
    line-height:1.1;
}

/* ---------- ナビ ---------- */

.sticky-nav{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    padding:8px;
}

.sticky-nav span{
    font-size:0.9rem;
}

.sticky-nav small{
    font-size:0.65rem;
}

/* ---------- Menu ---------- */

.menu-section{
    display:flex;
    flex-direction:column;
    gap:20px;
    text-align:center;
    margin-top:50px;
}

.menu-image{
    width:100% !important;
    max-width:none !important;
}

.menu-image img{
    width:100% !important;
    max-width:none !important;
    display:block;
}
.menu-content{
    width:100%;
}

.logo-area{
    justify-content:center;
}

.logo-area img{
    width:auto;
    height:44px;
    max-width:100%;
    object-fit:contain;
}

/* ---------- Special ---------- */

.special-section{
    display:flex;
    flex-direction:column;
    gap:20px;
    text-align:center;
}

.special-image{
    width:100%;
}

.special-content{
    width:100%;
}

/* ---------- Panorama ---------- */

.view-section img{
    width:100%;
}

/* ---------- Map + Calendar ---------- */

.calendar-map{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
}

#calendar,
#map{
    text-align:left;
}

#calendar iframe,
#map iframe{
    width:100%;
    height:350px;
}

/* ---------- Concept ---------- */

.concept-section{
    position:relative;
}

.concept-bg-image{
    width:100%;
}

#concept.concept-section .concept-content{
    align-self:start;       
    padding:40px 20px;      
}

.concept-content h2{
    text-align:center;
    font-size:1.4rem;
    margin:0 0 20px;        
}

#concept .concept-inner{
    display:flex;
    flex-direction:column;
    gap:10px;
}

#concept .together{
    width:70%;
    margin:0 auto;
    position:static;
}

.concept-inner p{
    font-size:12px;
    line-height:1.8;
}

/* ---------- Footer ---------- */

footer img{
    width:100%;
}

/* ---------- 見出し ---------- */

h2{
    font-size:1.6rem;
}

/* ---------- スクロール位置 ---------- */

#menu,
#special,
#calendar,
#map,
#concept{
    scroll-margin-top:90px;
}

}


/* ノートPC・タブレット横 */

@media screen and (max-width:1200px){

.hero{
    align-items:center !important;
}

.hero-left{
    width:90% !important;
    min-height:70px
}


.title-row{
    position:absolute;
    left:15px;
    right:auto;
    top:auto;
    width:auto;
    text-align:left;
    z-index:100;
}

.hero-right{
    position:relative;
    left:0 !important;
    top:0;
    width:100%;
}

.top-image{
    width:100%;
    max-width:100%;
    height:auto;
}

.shop-info{
    width:fit-content;
    margin-left:auto;
    margin-top:20px;
}

.shop-info p{
    font-size: 0.8rem;

}

 .concept-content{
        padding:clamp(20px, 5%, 50px);
    }

    .concept-inner{
        gap:25px;
    }

    .together{
        width:60%;
    }


}

/* =========================
   menu page
========================= */

.sub-hero{

    position:relative;

    width:90%;
    max-width:1400px;

    margin:0 auto;

    padding-top:40px;
}

.sub-title-wrap{

    position:absolute;

    top:30px;

    left:5%;

    z-index:10;
}

.sub-top-image{

    width:100%;

    display:block;
    margin-top:20px;
    margin-bottom:40px;
}

.sub-title-wrap h1{

    font-size:4.1rem;

    font-weight:500;

    letter-spacing:.04em;

    background:linear-gradient(
        90deg,
        #f4d35e 0%,
        #d3d966 18%,
        #8fd07a 45%,
        #62c5c8 75%,
        #6ccfe5 100%
    );

    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;
}

.sub-title-wrap .catch-ja{

    font-size:1.35rem;

    color:#e3ec5d;

    margin-top:10px;
}

.sub-nav{

    position:sticky;
    top:0;

    z-index:999;

    width:90%;
    max-width:1400px;

    margin:0 auto 80px;

    background:linear-gradient(
        90deg,
        rgba(255,245,200,.45),
        rgba(220,245,210,.40),
        rgba(180,235,245,.50),
        rgba(170,235,250,.55)
    );

    backdrop-filter:blur(8px);

    display:flex;

    justify-content:center;

    gap:180px;

    padding:18px 28px;

    border-radius:8px;

    box-shadow:0 0 18px rgba(120,210,225,.18);
}

.sub-nav a{

    text-decoration:none;

    color:#5f827d;

    display:flex;

    flex-direction:column;

    align-items:center;
}

.sub-nav span{

    font-size:2rem;

    font-weight:500;
}

.sub-nav small{

    font-size:1rem;
}


.sub-content-page{

    width:90%;

    max-width:1400px;

    margin:0 auto;
}

.sub-content-bg{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:flex-start;
    gap:40px;
    padding:0 80px;
}

.sub-content-text{
    text-align: left;
}


.sub-content-bg::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        url("images/each_back_ground2.png")
        center center /
        90%
        auto
        no-repeat;

    opacity:.55;

    pointer-events:none;

    mask-image:
radial-gradient(
    ellipse 80% 55% at center,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,.9) 60%,
    rgba(0,0,0,.5) 80%,
    rgba(0,0,0,0) 100%
);

-webkit-mask-image:
radial-gradient(
    ellipse 80% 55% at center,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,.9) 60%,
    rgba(0,0,0,.5) 80%,
    rgba(0,0,0,0) 100%
);
}


.sub-footer{

    width:90%;

    max-width:1400px;

    margin:0 auto;

    padding-bottom:60px;
}

.sub-footer-image{

    width:100%;

    display:block;

    margin-bottom:40px;
}

.footer-logo{

    text-align:center;
}

.footer-logo h1{

    font-size:2.6rem;

    margin-bottom:10px;

    font-weight:500;

    background:linear-gradient(
        90deg,
        #f4d35e 0%,
        #d3d966 18%,
        #8fd07a 45%,
        #62c5c8 75%,
        #6ccfe5 100%
    );

    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;
}

.footer-logo p{

    color:#e3ec5d;

    font-size:1rem;
}


/* =========================
   Responsive
========================= */

@media screen and (max-width:768px){

.sub-hero{

    padding-top:20px;
}

.sub-title-wrap{
    position:absolute;
    top:15px;
    left:20px;
    z-index:10;
    width:auto;
    text-align:left;
}

.sub-title-wrap h1{
    font-size:2.2rem;
    font-weight:700;
}

.sub-title-wrap .catch-ja{
    display:block;
    margin-top:8px;
    font-size:.9rem;
    line-height:1.4;
}

.sub-top-image{

    width:100%;

    display:block;

    margin-bottom:20px;
}

.sub-nav{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:8px 3px;

    padding:3px;

    margin:0 auto 40px;
}

.sub-nav span{

    font-size:.9rem;
}

.sub-nav small{

    font-size:.65rem;
}

.sub-content-bg{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:20px;
    padding:0 20px;
    text-align:center;
}

.sub-content-bg::before{

    display:none;
}



.sub-footer-image{

    margin-bottom:25px;
}

.footer-logo h1{

    font-size:1.8rem;
}

.footer-logo p{

    font-size:.9rem;
}

.sub-content-text{

    position:relative;

    z-index:2;

    color:#1f8ea5;

    font-size:2rem;

    font-weight:400;
    text-align:center;
    margin-top:10px;
}


.menu-main-img{
    width:80%;
    max-width:280px;
    height:auto;
    display:block;
    margin:0 auto 20px;
}

}

/* =========================================================
   ADDED: サブページ ダミーコンテンツ用レイアウト
   （Menu / Special plan / Concept のメンバー紹介で共通使用）
   ヘッダー・フッター・SNSは未変更。コンテンツ部のみ追加。
========================================================= */

.sub-section{
    width:90%;
    max-width:1400px;
    margin:0 auto 90px;
}

.sub-section-head{
    text-align:center;
    margin-bottom:45px;
}

.sub-section-head h2{
    display:inline-block;
}

.sub-section-head p{
    color:#1f8ea5;
    font-weight:300;
    margin-top:10px;
}

/* カードグリッド共通 */
.card-grid{
    display:grid;
    gap:32px;
    align-items:stretch;     /* 高さ揃え */
}

.dish-grid{   grid-template-columns:repeat(3,1fr); }  /* Menu: 7点 */
.plan-grid{   grid-template-columns:repeat(3,1fr); }  /* Special: 3点 */
.member-grid{ grid-template-columns:repeat(2,1fr); }  /* Concept: メンバー紹介 */

.card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 0 18px rgba(120,210,225,.18);
    transition:transform .3s ease, box-shadow .3s ease;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 6px 26px rgba(120,210,225,.30);
}

/* 画像サイズの統一（比率固定＋object-fit） */
.card-photo{
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
    display:block;
    background:linear-gradient(
        135deg,
        rgba(244,211,94,.35),
        rgba(143,208,122,.30),
        rgba(98,197,200,.35)
    );
}

/* 実画像差し込み前のダミー枠 */
.card-photo.is-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#5f827d;
    font-size:.8rem;
    letter-spacing:.12em;
}

.card-body{
    flex:1;
    padding:18px 22px 26px;
    text-align:left;
}

.card-body h3{
    font-size:1.15rem;
    font-weight:500;
    color:#1f8ea5;
    margin-bottom:8px;
}

.card-meta{
    font-size:.78rem;
    color:#c8a94b;
    letter-spacing:.05em;
    margin-bottom:12px;
}

.card-body p{
    font-size:.9rem;
    font-weight:300;
    line-height:1.85;
}

/* ⑤ Menu・Special: 「料理名/プラン名ダミー」見出しを消し、
   1行下の茶色い字（card-meta）を見出しと同じ大きさ・茶色で表示。
   ※HTMLの実テキストは触らずCSSのみで対応。member-grid（Concept）には不適用 */
.dish-grid .card-body h3,
.plan-grid .card-body h3{
    display:none;
}

.dish-grid .card-meta,
.plan-grid .card-meta{
    font-size:1.15rem;     /* 現状の見出し（ダミー）と同じ大きさ */
    color:#c8a94b;         /* 茶色（現状の字色を維持） */
    margin-bottom:8px;
}

/* Concept 上部の紹介ブロック */
.about-lead{
    width:90%;
    max-width:1000px;
    margin:0 auto 70px;
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
    gap:40px;
    align-items:center;
}

.about-lead img{
    width:100%;
    height:auto;
    display:block;
    border-radius:14px;
}

.about-lead .about-text p{
    font-weight:300;
    line-height:2;
    margin-bottom:14px;
}

/* ⑥ Concept上部: 写真2枚を横並び＋その下に説明文を全幅で配置 */
.about-lead--ny{
    display:block;
}

.about-lead--ny .about-photos{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-bottom:30px;
}

.about-lead--ny .about-photos img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:14px;
}

.about-lead--ny .about-text p{
    margin-bottom:0;
}

/* ダミー注記 */
.dummy-note{
    width:90%;
    max-width:1400px;
    margin:0 auto 30px;
    text-align:center;
    font-size:.78rem;
    color:#b9c2bf;
}

/* レスポンシブ */
@media screen and (min-width:769px) and (max-width:1024px){
    .dish-grid,
    .plan-grid{ grid-template-columns:repeat(2,1fr); }
}

@media screen and (max-width:768px){
    .sub-section{ width:100%; padding:0 20px; }
    .dish-grid,
    .plan-grid,
    .member-grid{ grid-template-columns:1fr; }
    .about-lead{
        width:100%;
        padding:0 20px;
        grid-template-columns:1fr;
        gap:24px;
    }
    .about-lead--ny .about-photos{
        grid-template-columns:1fr;
        gap:16px;
    }
}
