@charset "UTF-8";

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Instrument Serif", serif;
    color: #f8d7d7;
    background-color: #9b9b9b;
    position: relative;
    min-height: 100vh;
}

img {
    width: 100%;
    object-fit: cover;
    justify-content: space-between;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Hero */
/* heroの土台（高さがないとsliderのheight:100%が効かない） */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* 背景スライダー */
#slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* 背景 */
}

#slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

#slider .slide.active {
    opacity: 1;
}

/* 黒ベール（←ここ、inset:0 の後ろに ; 必須） */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* ← セミコロン必須 */
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* 文字やnavはベールより上に */
.hero-text,
.hero-catch,
.hero-nav,
.openbtn,
.footer {
    position: relative;
    z-index: 2;
}

.hero-text,
.hero-nav {
    position: relative;
    z-index: 2;
}

/* Text */
.hero-text {
    position: absolute;
    top: 3%;
    left: 5%;
    z-index: 2;
    text-shadow: 0 5px 2px #9b9b9b;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0.05em;
}

.hero-catch {
    position: absolute;
    left: 56%;
    bottom: 32%;
    z-index: 2;
    text-shadow: 0 5px 2px #9b9b9b;
}

.hero-catch p {
    font-size: 2.5rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #f3dcdc;
    font-family: "Noto Sans JP", sans-serif;
}

/* Navigation */
.home .hero-nav {
    position: absolute;
    right: 5%;
    bottom: 5%;
    z-index: 2;

}

.home .hero-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    transition: 0.4s;
}

/* 下線の準備 */
.home .hero-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #f8d7d7;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* hoverで左→右に伸びる */
.hero-nav a:hover::after {
    transform: scaleX(1);
}

.hero-nav a {
    color: #f8d7d7;
    text-decoration: none;
    font-size: 28px;
    letter-spacing: 0.08em;
    position: relative;
    display: inline-block;
    text-shadow: 0 5px 2px #7e7b7b;
}

.hero-nav a:hover::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 1px;
    background-color: #f8d7d7;
    transition: all .5s;
}


/* topとreturn */
.hero-nav {
    position: absolute;
    right: 5%;
    bottom: 5%;
    z-index: 2;

}

.hero-nav .top {
    color: #333333;
    text-shadow: 0 5px 2px #7e7b7b;
}

.hero-nav .return {
    color: #333333;
    text-shadow: 0 5px 2px #7e7b7b;
}

.hero-nav .top::before {
    display: flex;
    /* position: absolute; */
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 1px;
    background-color: #333333;
    transition: all .5s;
}

.hero-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #333333;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}


/* menu.html */

.menu-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("../img/cafe-4141012_1280.jpg") center / cover no-repeat;
}

/* 暗くするレイヤー */
.menu-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* ===== タイトル ===== */
.menu-heading {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    letter-spacing: 0.05em;
    z-index: 2;
    text-shadow: 0 5px 2px #7e7b7b;
}

/* 共通カード */
.menu-card {
    position: absolute;
    width: 260px;
    height: 180px;
    background: rgba(160, 160, 160, 0.5);
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.menu-card:hover {
    background: rgba(160, 160, 160, 0.7);
}

.menu-grid a {
    color: #f8d7d7;
    text-decoration: none;
    text-shadow: 0 5px 2px #7e7b7b;
    ;
}

.menu-en {
    font-size: 22px;
}

.menu-jp {
    font-size: 14px;
    margin-top: 6px;
}

/* ===== 個別配置（Figma準拠） ===== */
.card-drink {
    top: 28%;
    left: 22%;
}

.card-food {
    top: 28%;
    right: 22%;
}

.card-dessert {
    bottom: 22%;
    left: 22%;
}

/* ===== top ===== */
.menu-top {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 2;
    text-decoration: none;
    color: #f3dede;
}

/* =====================
コンテンツ全体
===================== */
.menu-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease;
    transition-delay: 0.6s;
}

.menu-hero.is-show .menu-content {
    opacity: 1;
    transform: translateY(0);

}

/* =====================
タイトル
===================== */
.menu-title {
    font-size: 48px;
    margin-bottom: 60px;
}

/* =====================
メニューカード
===================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 260px);
    gap: 20px;
    text-decoration: none;
}

.menu-card {
    background: rgba(51, 50, 50, 0.5);
    padding: 50px;
    text-align: center;
    text-decoration: none;
    color: #f8d7d7;

    opacity: 1;
    transform: translateY(40px);
    transition: all 1s ease;
}

.menu-hero .is-row .menu-card {
    opacity: 1;
    transform: translateY(0);
}

.menu-card:nth-child(1) {
    transition-delay: 0.25s;
    top: 8%;
    left: 18%;
}

.menu-card:nth-child(2) {
    transition-delay: 0.25s;
    top: 8%;
    right: 18%;
}

.menu-card:nth-child(3) {
    transition-delay: 0.25s;
    left: 32%;

}

.menu-card span {
    display: block;
    font-size: 28px;
}

.menu-card small {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.menu-section {
    width: 100%;
    min-height: 100vh;
    padding: 120px 100px;
    box-sizing: border-box;
}

/* ===== category title ===== */
.menu-category {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 80px;
    color: #e6d6cf;
}

.menu-category span {
    font-size: 56px;
}

/* ===== item ===== */
.menu-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.menu-item.reverse {
    flex-direction: row-reverse;
}

/* ===== image ===== */
.menu-item img {
    width: 240px;
    height: 240px;
    object-fit: cover;
}

/* ===== text ===== */
.menu-text h3 {
    font-size: 22px;
    margin: 0 0 8px;
}

.price {
    font-size: 24px;
    margin: 0 0 8px;
}

.desc {
    max-width: 240px;
}

/* menu.html アニメーション */

.menu-card:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-card:nth-child(2) {
    transition-delay: 0.3s;
}

.menu-card:nth-child(3) {
    transition-delay: 0.5s;
}

.fadeup {
    opacity: 1;
    transform: translateY(40px);
}

.fadeup.active {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------
Loading
------------------------------ */
#loading {
    position: fixed;
    inset: 0;
    background: #9b9b9b;
    /* ローディング背景 */
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: opacity 0.8s ease, visibility 1.0s ease;
}

#loading.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-inner {
    text-align: center;
}

.loading-logo {
    margin: 0 0 16px;
    font-size: clamp(28px, 6vw, 56px);
    letter-spacing: 0.06em;
    color: #f2d6d6;
    /* ピンクっぽい文字 */
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.loading-line {
    display: block;
    height: 2px;
    width: 160px;
    margin: 0 auto;
    background: rgba(242, 214, 214, 0.25);
    position: relative;
    overflow: hidden;
}

.loading-line::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: rgba(242, 214, 214, 0.9);
    animation: loading-bar 1.2s ease-in-out infinite;
}

@keyframes loading-bar {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ------------------------------
  Hero fade-in (ページ表示演出)
------------------------------ */
/* 初期は非表示 → JSで .is-ready を付けたら表示 */
.hero .hero-text,
.hero .hero-catch,
.hero .hero-nav,
.hero .footer {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1.0s ease, transform 1.0s ease;
}

body.is-ready .hero .hero-text,
body.is-ready .hero .hero-catch,
body.is-ready .hero .hero-nav,
body.is-ready .hero .footer {
    opacity: 1;
    transform: translateY(0);
}

/* ちょい時間差（おしゃれ） */
body.is-ready .hero .hero-catch {
    transition-delay: 0.12s;
}

body.is-ready .hero .hero-nav {
    transition-delay: 0.22s;
}

body.is-ready .hero .footer {
    transition-delay: 0.28s;
}

/* ------------------------------
  Slider zoom (ゆっくりズーム)
------------------------------ */
#slider .slide {
    transform: scale(1.06);
    transition: opacity 1.5s ease-in-out, transform 6s ease;
}

#slider .slide.active {
    transform: scale(1.0);
}

/* drink.html */

.drinks-section {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-inline: auto;
    justify-content: center;
}

.drinks-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    /* padding-top: 48px; */
}


.drinks-title {
    font-size: 64px;
    line-height: 1.2;
    text-shadow: 0 4px 4px #7e7b7b;
    display: block;
    padding: 1rem;
}

.drinks-title span {
    display: block;
    margin-left: 32px;
}

.drinks-text {
    max-width: 240px;
    color: #846b4d;
    line-height: 1.8;
    text-shadow: 0 10px 10px#7e7b7b;
}

/* * グリッド本体 */
.drinks-grid {
    flex: 1;
}

.drinks-item {
    display: flex;
    gap: 50px;
}

.drinks-item img {
    width: 220px;
    height: 220px;
    object-fit: cover;
}

.drinks-text h3 {
    font-size: 36px;
    padding-bottom: 40px;
}

.drinks-text p {
    white-space: normal;
}

.angiro p {
    margin-left: 70px;
    text-align: right;
}

.angiro .price {
    padding-left: 85px;
}

/* 2行目右 */
.angiro {
    text-align: right;
    flex-direction: row-reverse;
}

/* drink アニメーション */

/* 共通：線画っぽい色 */

/* ローディングアイコン領域 */
.loading-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    position: relative;
}

/* ローディング色をページで変えるなら（例） */
.drinks-section {
    --ink: rgba(242, 214, 214, 0.95);
    /* 線をピンクにしたいなら */
    --coffee: rgba(60, 41, 28, 0.85);
}

.drinks-section .loading-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 40px;
    height: 24px;
    transform: translateX(-50%);
    border: 2px solid var(--ink);
    border-radius: 0 0 10px 10px;
}

/* 取っ手 */
.drinks-section .loading-icon::after {
    content: "";
    position: absolute;
    left: calc(50% + 18px);
    bottom: 16px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--ink);
    border-left: none;
    border-radius: 0 10px 10px 0;
}

/* ===== drinks：cup fill animation（液体が満ちる） ===== */
/* 液体（カップの中で上下する） */
.drinks-section .loading-cup .fill {
    position: absolute;
    left: 50%;
    bottom: 12px;
    /* カップ内の底 */
    width: 36px;
    /* 枠より少し小さく */
    height: 22px;
    /* 最大まで満ちた高さ */
    transform: translateX(-50%) scaleY(0);
    transform-origin: bottom;
    background: var(--coffee);
    /* シックに単色 */
    border-radius: 0 0 8px 8px;
    opacity: 0.85;
    animation: cup-fill 1.6s ease-in-out infinite;
}

/* 注がれるコーヒー */
.drinks-section .loading-cup .pour {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 0;
    background: #3b2a1f;
    transform: translateX(-50%);
    animation: pour-coffee 1.6s ease-in-out infinite;
}

/* カップの中 */
.drinks-section .loading-cup .fill {
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 38px;
    height: 22px;
    background: #3b2a1f;
    transform: translateX(-50%) scaleY(0);
    transform-origin: bottom;
    border-radius: 0 0 8px 8px;
    animation: fill-cup 1.6s ease-in-out infinite;
}

/* 注ぐ */

@keyframes pour-coffee {
    0% {
        height: 0;
        opacity: 0;
    }

    20% {
        height: 0;
        opacity: 1;
    }

    50% {
        height: 40px;
    }

    80% {
        height: 40px;
        opacity: 1;
    }

    100% {
        height: 40px;
        opacity: 0;
    }
}


.loading-logo {

    margin: 0 0 16px;

    font-size: clamp(28px, 6vw, 56px);

    letter-spacing: 0.06em;

    color: #f2d6d6;

    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);

}


.loading-line::after {

    content: "";

    position: absolute;

    inset: 0;

    transform: translateX(-100%);

    background: rgba(242, 214, 214, 0.9);

    animation: loading-bar 1.2s ease-in-out infinite;

}



@keyframes loading-bar {

    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }

}



/* =============================================

DRINKS：COFFEE POURING (コーヒーが注がれる)

============================================= */


/* アニメーション定義 */

@keyframes pour-coffee {

    0% {
        height: 0;
    }

    20%,
    60% {
        height: 38px;
    }

    80%,
    100% {
        height: 38px;
        opacity: 0;
    }

}



@keyframes fill-cup {

    0%,
    20% {
        transform: translateX(-50%) scaleY(0);
    }

    80%,
    100% {
        transform: translateX(-50%) scaleY(1);
    }

}

/* 満ちる */
@keyframes fill-cup {
    0% {
        transform: translateX(-50%) scaleY(0);
    }

    50% {
        transform: translateX(-50%) scaleY(1);
    }

    100% {
        transform: translateX(-50%) scaleY(0);
    }
}

/* 満ちる→少し戻る→満ちる */
@keyframes cup-fill {
    0% {
        transform: translateX(-50%) scaleY(0.08);
        opacity: 0.35;
    }

    45% {
        transform: translateX(-50%) scaleY(1);
        opacity: 0.85;
    }

    70% {
        transform: translateX(-50%) scaleY(0.55);
        opacity: 0.65;
    }

    100% {
        transform: translateX(-50%) scaleY(0.08);
        opacity: 0.35;
    }
}

/* ここまでがアニメーション */


/* foods.html */

.foods-section {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    margin-inline: auto;
    justify-content: center;
    min-height: 100vh;
}

.foods-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.foods-title {
    font-size: 64px;
    line-height: 1.2;
    text-shadow: 0 4px 4px #7e7b7b;
    display: block;
    padding: 1rem;
}

.foods-title span {
    display: block;
    margin-left: -48px;
}

.foods-text {
    color: #846b4d;
    line-height: 1.8;
    text-shadow: 0 10px 10px#7e7b7b;

}

.foods-grid {
    flex: 1;
}

.foods-item {
    display: flex;
    gap: 50px;
}

.foods-item img {
    width: 220px;
    height: 220px;
    object-fit: cover;
}

.foods-text h3 {
    font-size: 36px;
    padding-bottom: 40px;
}

.foods-text p {
    white-space: normal;
}

/* 2行目 */
.pasta {
    flex-direction: row-reverse;
}

.pasta p {
    margin-left: 142px;
}

.pasta .price {
    padding-left: 85px;
    font-size: 24px;
}

/* アニメーション */
.loading-fork .fork {
    width: 22px;
    height: 62px;
    margin: 0 auto;
    position: relative;
    animation: forkflip 1.4s ease-in-out infinite;
    transform-origin: center;
}

/* 持ち手 */
.loading-fork .fork-handle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 40px;
    background: #333333;
    border-radius: 999px;
}

/* フォーク先端 */
.loading-fork .fork-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
    z-index: 2px;
}

/* 爪 */
.loading-fork .fork-head span {
    width: 2px;
    height: 16px;
    background: #333333;
    border-radius: 999px;
}

/* フォークの根元（追加） */
.loading-fork .fork::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background: #333333;
    border-radius: 0 0 10px 10px;
}

.loading-fork .fork-head span:nth-child(2),
.loading-fork .fork-head span:nth-child(3) {
    height: 18px;
}

.loading-fork .fork-head span:first-child {
    transform: rotate(-3deg);
}

.loading-fork .fork-head span:last-child {
    transform: rotate(3deg);
}


@keyframes forkflip {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}



/* ここまで */

/* deserts.html */
.desserts-section {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    margin-inline: auto;
    justify-content: center;
    min-height: 100vh;
}

.desserts-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.desserts-title {
    font-size: 64px;
    line-height: 1.2;
    text-shadow: 0 4px 4px #7e7b7b;
    display: block;
    padding: 1rem;
}

.desserts-title span {
    display: block;
    margin-left: -4px;
}

.desserts-grid {
    flex: 1;
}

.desserts-item {
    display: flex;
    gap: 50px;
}

.desserts-item img {
    width: 220px;
    height: 220px;
    object-fit: cover;
}

.desserts-text h3 {
    color: #846b4d;
    font-size: 36px;
    padding-bottom: 40px;
    text-shadow: 0 10px 10px #7e7b7b;
}

.desserts-text p {
    color: #846b4d;
    white-space: normal;
    text-shadow: 0 10px 10px #7e7b7b;
}

/* tarte */
/* .tarte br {
    display: none;
} */

/* 2行目 */
.opera {
    flex-direction: row-reverse;
}

.opera-title {
    margin-left: 160px;
}

.opera .desc {
    padding-left: 18px;
    margin-left: 50px;
}

.opera .price {
    padding-left: 208px;
    font-size: 24px;
}

/* ----------------------------- */

/* page-link */
.page-links {
    margin-top: 160px;
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    color: #333333;
    text-decoration: none;
}

.page-links a {
    text-decoration: none;
    color: #333333;
    font-size: 20px;
    transition: 0.3s;
}

.page-links a:hover {
    opacity: 0.6;
}

/* アニメーション */
/* =========================
desserts loader / spoon
========================= */

.spoon {
    position: relative;
    margin: 0 auto;

}

.loading-spoon .spoon {
    display: flex;
    justify-content: center;
    object-fit: cover;
    width: 20px;
    height: 64px;
    position: relative;
    animation: spoonflip 1.4s ease-in-out infinite;
    transform-origin: center;
    transform: translateY(-12px);
}

/* スプーンの持ち手 */
.loading-spoon .spoon-handle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 64px;
    background: #222;
    border-radius: 10px;
}

/* スプーンの先 */
.loading-spoon .spoon-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 28px;
    background: #222;
    border-radius: 50% 50% 45% 45%;
}

@keyframes spoonflip {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* ここまで */

/* informations.html */

.info-bg {
    min-height: 100vh;
    background: url("../img/cup-6878196_640.jpg") center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    box-sizing: border-box;
}

.info-wrapper {
    margin: 0 auto;
}

/* 上部画像 */
.info-image {
    text-align: center;
    margin-bottom: 0;
}

.info-image img {
    width: 760px;
    height: 400px;
    object-fit: cover;
    margin-left: 150px;
}


.info-content {
    margin: 0 auto;
    display: grid;
}

/* 左タイトル */
.info-title {
    font-size: 32px;
    font-weight: normal;
    text-align: center;

}

/* 右テキスト */
.info-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-left: 32px;
}

.info-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    margin-block: 8px;
}

.label {
    font-size: 24px;
}

.info-row p {
    margin: 0;
    line-height: 1.8;
    font-size: 15px;
}

/* 下線 */
.back-top::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #f8d7d7;

    /* アニメーション用 */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-row,
.sns-row {
    align-items: flex-start;
}

.contact-content,
.sns-content {
    width: 100%;
    max-width: 520px;
}

.contact-lead {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-content input,
.contact-content textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #b7b0ad;
    background: rgba(255, 255, 255, 0.35);
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-content textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-content button {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #7f7672;
    background: transparent;
    color: #f8d7d7;
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s;
}

.contact-content button:hover {
    background: #7f7672;
    color: #fff;
}

.info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-left,
.info-right {
    width: 100%;
}

.info-left .info-row,
.info-right .info-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 34px;
}

.contact-content,
.sns-content {
    width: 100%;
}

.contact-lead {
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 14px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-content input,
.contact-content textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #b6aeaa;
    background: rgba(255, 255, 255, 0.35);
    box-sizing: border-box;
    font-family: inherit;
    font-size: 15px;
}

.contact-content textarea {
    min-height: 120px;
    resize: vertical;
}

.sns-content a {
    color: #f8d7d7;
    text-decoration: none;
    line-height: 1.9;
}

.sns-content a:hover {
    opacity: 0.7;
}

.sns-row {
    margin-top: 40px;
}

.info-layout {
    gap: 40px;
}

.info-left .info-row,
.info-right .info-row {
    margin-bottom: 24px;
}

.contact-content textarea {
    min-height: 90px;
}

.info-panel {
    width: min(980px, 100%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 60px;
    box-sizing: border-box;
}

.info-title {
    color: #f3dede;
    text-align: center;
    font-size: 3rem;
}

.info-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
    align-items: start;
}

.info-left .info-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    margin-bottom: 30px;
    align-items: start;
}

.info-right {
    max-width: 360px;
    margin-left: -10px;
}

.info-right .info-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 14px;
    align-items: start;
}

.label {
    color: #f3dede;
    font-size: 1.15rem;
    line-height: 1.4;
}

.info-left p,
.info-right p,
.sns-content a,
.contact-lead {
    color: #f3dede;
}

.contact-lead {
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: 0.98rem;
}

.wpcf7-form p {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-content input,
.contact-content textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(243, 222, 222, 0.55);
    background: rgba(255, 255, 255, 0.08);
    color: #f3dede;
    font-size: 0.95rem;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-content input::placeholder,
.contact-content textarea::placeholder {
    color: rgba(243, 222, 222, 0.75);
}

.contact-content textarea {
    min-height: 120px;
    resize: none;
}

.contact-content button {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(243, 222, 222, 0.55);
    background: rgba(255, 255, 255, 0.04);
    color: #f3dede;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s;
}

.contact-content button:hover {
    background: rgba(243, 222, 222, 0.18);
}

.sns-content a {
    text-decoration: none;
    line-height: 1.9;
}


/* =========================
footer
========================= */
footer {
    margin-top: 12px;
    text-align: center;
}

footer p {
    color: rgba(243, 222, 222, 0.9);
}

/* footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    left: 48%;
}

@media (max-width: 970px) {

    /* index.html */
    .slide {
        background-size: cover;
        background-repeat: no-repeat;
    }

    #slider .slide:nth-child(1) {
        background-position: left center;
    }

    #slider .slide:nth-child(2) {
        background-position: 30% center;
    }

    .hero-catch {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        max-width: 90%;
    }

    .hero-catch p {
        line-height: 1.2;
        white-space: nowrap;
        text-align: left;
        margin-left: -200px;

    }

    /* menu.html */
    .menu-hero {
        position: initial;
        width: 100%;
        /* ← これが重要 */
        max-width: none;
        /* ← これが重要（max-width解除） */
        min-height: 100vh;
        overflow: hidden;
    }

    /* la carte */

    .menu-hero {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .menu-heading {
        position: initial;
        transform: initial;
        font-size: 40px;
        white-space: nowrap;
        text-align: center;
    }

    .menu-hero::before {
        content: "";
        position: initial;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
    }

    .menu-card {
        background: none;
        padding: 0;
    }

    /* .menu-card span {
        font-size: 32px;
    } */

    .menu-grid {
        position: initial;
        left: 50%;
        top: 30%;
        /* ←ここを上下調整（50〜65%でOK） */
        transform: initial;
        /* margin-top: 42px; */
        width: 100%;
        background: rgba(0, 0, 0, 0.45);
        /* padding: 40px 20px; */
        z-index: 5;
        transition: background 0.25s ease;
        grid-template-columns: repeat(1, 1fr);
    }

    .menu-grid a {
        width: 100%;
        height: 100%;
        display: inline-block;
    }


    .menu-card:nth-child(1) {
        /* left: 25%;
                top: -8%; */
        position: initial;
        width: 100%;

    }


    .menu-card:nth-child(2) {
        /* top: 24%;
                left: 26%; */
        position: initial;
        width: 100%;
    }

    .menu-card:nth-child(3) {
        /* left: 25%;
                        top: 58%; */
        position: initial;
        width: 100%;
    }

    /* もし(menu)をspanで囲ってるなら効く */
    .menu-heading span {
        display: inline-block;
    }

    /* drinks.html */
    .drinks-section {
        /* height: 100vh; */
        margin: 0 auto;
        min-height: 1024px;
        /* figmaの高さに寄せたいなら */
        position: relative;
        /* return/top を右下に置く基準 */
        padding: 28px 24px 60px;
        display: block;
        /* PCのflex/gridを無効化したい */
    }

    /* 500幅のキャンバスにする */
    .drinks-wrapper {
        width: 100%;
        display: block !important;
        margin: 0 auto;
        /* padding: 0 140px; */
        position: relative;
    }

    .drinks-wrapper,
    .drinks-title,
    .drinks-grid,
    .drink-item {
        position: initial;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 0;
    }

    /* タイトル：上中央 */
    .drinks-title {
        text-align: center;
        font-size: 44px;
        /* 好みで調整 */
        line-height: 1.05;
        margin: 40px 0 40px;
        white-space: nowrap;
        padding-left: 24px;
    }

    .drinks-title span {
        display: inline;
        margin-left: initial;
    }

    .drinks-title br {
        display: none;
    }

    .drinks-grid {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .drink-item {
        display: grid;

    }

    .desserts-title span {
        display: inline;
        margin-left: initial;
    }

    .drinks-title br {
        display: none;
    }

    .drinks-grid {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .drinks-text h3 {
        margin: 0 0 6px;
        font-size: 32px;
    }

    .drinks-text .price {
        margin: 0 0 6px;
        font-size: 24px;
    }

    .drinks-text .desc {
        margin: 0;
        font-size: 24px;
        line-height: 1.6;
        text-align: left;
    }

    /* 画像サイズ固定 */
    .drinks-item img {
        width: 190px;
        height: 190px;
        object-fit: cover;
        flex: 0 0 120px;
        margin-bottom: 80px;
    }

    .angiro {
        flex-direction: row;
        text-align: left;
    }

    .angiro .price {
        padding-left: initial;
        text-align: left;
    }

    /* return top 調整 */
    .drinks-section .hero-nav .return {
        font-size: 20px;
    }

    .drinks-section .hero-nav .top {
        font-size: 20px;
    }


    /* foods.html */
    .foods-section {
        /* height: 100vh; */
        margin: 0 auto;
        min-height: 1024px;
        position: relative;
        /* return/top を右下に置く基準 */
        padding: 28px 24px;
        display: block;
        box-sizing: border-box;
    }

    .foods-wrapper,
    .foods-title,
    .foods-grid,
    .foods-item {
        position: static;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 0;
    }

    /* 500幅のキャンバスにする */
    .foods-wrapper {
        width: 100%;
        display: block !important;
        margin: 0 auto;
        position: relative;
    }

    /* タイトル：上中央 */
    .foods-title {
        text-align: center;
        font-size: 44px;
        /* 好みで調整 */
        line-height: 1.05;
        margin: 32px 0 62px;
        white-space: nowrap;
        padding-left: 24px;
    }

    .foods-grid {
        display: flex;
        flex-direction: column;
        gap: 64px;
    }

    /* (food) を横並びにしたいなら span を inline にする */
    .foods-title span {
        display: inline;
        margin-left: initial;
    }

    .foods-title br {
        display: none;
    }

    /* 文字側 */
    .foods-text {
        flex: 1;
        max-width: 260px;
        white-space: nowrap;
    }

    .foods-text h3 {
        margin: 0 0 6px;
        font-size: 32px;
    }

    .foods-text .price {
        margin: 0 0 6px;
        font-size: 24px;
    }

    .foods-text .desc {
        margin: 0;
        font-size: 24px;
        line-height: 1.6;
    }

    .foods-text p {
        margin: 0;
        font-size: 13px;
    }

    .pasta {
        flex-direction: row;
    }

    .pasta .price {
        padding-left: initial;
    }

    /* return top 調整 */

    .foods-section .hero-nav .return {
        font-size: 20px;
    }

    .foods-section .hero-nav .top {
        font-size: 20px;
    }

    /* desserts.html */


    /* 画面幅500想定で中央に固定したい場合 */
    /* 重要：navをsection内で絶対配置できるように */
    .desserts-section {
        grid-template-columns: 1fr;
        /* height: 100vh; */
        margin: 0 auto;
        min-height: 1024px;
        box-sizing: border-box;

        /* figmaの高さに寄せたいなら */
        position: relative;
        /* return/top を右下に置く基準 */
        padding: 28px 24px 60px;
        display: flex;
        flex-direction: column;
    }

    /* wrapperを縦並びに */
    .desserts-wrapper {
        width: 100%;
        /* ←これでnavを下に押し出せる */
        display: block !important;
        margin: 0 auto;
        /* padding: 0 62px; */
        position: relative;

    }

    .desserts-wrapper,
    .desserts-title,
    .desserts-grid,
    .desserts-item {
        position: static;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
    }

    /* タイトル：上中央・(Desserts)を横に並べる */
    .desserts-title {
        text-align: center;
        font-size: 44px;
        /* 好みで後でOK */
        line-height: 1.05;
        /* margin: 12px 0 32px; */
        /* ←ここで横並び */
        white-space: nowrap;
        padding-bottom: 40px;
        margin-left: -12px;
    }

    .desserts-title br {
        display: none;
    }

    .desserts-grid {
        display: flex;
        flex-direction: column;
        gap: 64px;
    }

    /* 文字側 */
    .desserts-text {
        flex: 1;
        margin: 0 auto;

    }

    .desserts-title span {
        display: inline;
        margin-left: initial;
    }

    .desserts-title br {
        display: none;
    }

    .desserts-text h3 {
        margin: 0 0 6px;
        /* line-height: 1.2; */
        font-size: 32px;
        /* 後で調整OK */
    }

    .desserts-text .price {
        margin: 0 0 6px;
        font-size: 23px;
    }

    .desserts-text .desc {
        margin: 0;
        line-height: 1.6;
        font-size: 18px;
    }

    /* 2行目 */
    .opera {
        flex-direction: row;
    }

    .opera .price {
        padding-left: initial;
    }

    .opera .desc {
        padding-left: 0;
    }

    /* return top 調整*/
    .desserts-section .hero-nav .return {
        font-size: 20px;
    }

    .desserts-section .hero-nav .top {
        font-size: 20px;
    }


    /* return / top を右下あたりに（Figmaの位置に寄せる） */

    .hero-nav .top-link {
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: right;
    }

    .top-link {
        text-align: right;
    }

    .return {
        display: inline-block;
        /* ←Dessertsは黒 */
        text-decoration: none;
        line-height: 1.6;
        font-size: 24px;
    }



    /* informations.html */

    .info-panel {
        width: 100%;
        padding: 28px 18px 24px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .info-bg {
        padding: 16px 10px;
        align-items: flex-start;
        background-position: 75% center;
    }

    .info-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    /* ここで4分割グリッドにする */
    .info-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 8px;
    }

    .info-left,
    .info-right {
        display: contents;
        width: auto;
        max-width: none;
    }

    .info-row {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(243, 222, 222, 0.12);
        padding: 20px 16px;
        min-height: 150px;
        margin-bottom: 0;
    }

    .info-left .info-row,
    .info-right .info-row {
        display: block;
        grid-template-columns: none;
        gap: 0;
    }

    .label {
        display: block;
        margin-bottom: 12px;
        font-size: 1rem;
        line-height: 1.3;
    }

    .info-row p,
    .sns-content a,
    .contact-lead {
        font-size: 18px;
        line-height: 1.7;
    }

    /* reservation は下に全幅 */
    .contact-row {
        margin-top: 8px;
        padding: 22px 18px;
        min-height: auto;
    }

    .contact-content {
        width: 100%;
    }

    .contact-content {
        display: grid;
        gap: 8px;
    }

    .contact-content .full {
        grid-column: 1 / -1;
    }

    .contact-content input,
    .contact-content textarea,
    .contact-content button {
        width: 100%;
        padding: 12px 14px;
        box-sizing: border-box;
    }

    .contact-content textarea {
        min-height: 100px;
    }

    .hero-nav {
        margin-top: 20px;
        text-align: right;
        font-size: 20px;
    }

    /* 画面中央に500pxのキャンバス */
    .info-wrapper {
        margin: 0 auto;
        min-height: 100vh;
        /* 外側が白く見えるのが嫌なら */
        position: relative;
        /* 余計なはみ出しを隠す */
    }

    /* 下のグレー情報ブロック */
    .info-content {
        padding: 26px 28px 78px;
        /* 下は top とフッターが重ならないように */
        display: contents;
    }

    /* タイトル（中央） */
    .info-title {
        margin: 48px 24px;
        text-align: center;
        font-size: 48px;
        line-height: 1.1;
        letter-spacing: 0.02em;
    }

    .label {
        font-size: 28px;
        margin: 0;
        display: block;
    }

    .info-row p {
        font-size: 19px;
    }

    .info-left,
    .info-right {
        width: 100%;
    }

    .info-panel {
        width: 100%;
        padding: 40px 20px 30px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .info-title {
        text-align: center;
        font-size: 42px;
        margin-bottom: 36px;
        white-space: nowrap;
    }


    .info-right .info-row {
        display: grid;
        gap: 18px;
    }

    .info-right {
        max-width: 420px;
        margin-left: 0;
    }

    .sns-row {
        margin-bottom: 30px;
    }

    .contact-row {
        margin-top: 40px;
    }

    .info-layout {
        display: block;
        min-width: auto;
        margin: 0 auto;
    }

    .info-left,
    .info-right {
        width: 100%;
        max-width: 100%;
    }

    .info-right {
        margin-top: 36px;
        margin-left: 0;
    }

    .label {
        display: block;
        margin-bottom: 8px;
    }

    .sns-row {
        margin-bottom: 28px;
    }

    .contact-row {
        margin-top: 10px;
    }

    .wpcf7-form p {
        gap: 10px;
        grid-template-columns: 1fr 1fr;
    }

    /* .info-panel .hero-nav .top {
        margin-bottom: -200px;
    } */

    /* フッター：下中央 */
    footer {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        z-index: 9;
        background: transparent;

    }

    footer p {
        margin: 0;
        text-shadow: 0 5px 2px #9b9b9b;
    }


}

@media(max-width: 600px) {

    /* index.html */
    .slide {
        background-size: cover;
        background-repeat: no-repeat;
    }

    #slider .slide:nth-child(1) {
        background-position: left center;
    }

    #slider .slide:nth-child(2) {
        background-position: 30% center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-catch p {
        font-size: 2rem;
        line-height: 1.2;
        white-space: nowrap;
        text-align: left;
        margin-left: -200px;
    }

    .hero-nav a {
        font-size: 1.25rem;
        bottom: 32px;
    }

    /* menu.html */

    /* la carte */

    .menu-hero {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .menu-heading {
        position: initial;
        /* top: 18%;
        left: 50%;
        right: 0; */
        transform: initial;
        font-size: 24px;
        white-space: nowrap;
        text-align: center;
        padding: 20px;
    }

    .menu-hero::before {
        content: "";
        position: initial;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
    }

    .menu-card {
        background: none;
        padding: 0;
    }

    .menu-grid {
        position: initial;
        left: 50%;
        top: 30%;
        /* ←ここを上下調整（50〜65%でOK） */
        transform: initial;
        padding: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.45);
        z-index: 5;
        transition: background 0.25s ease;
        /* text-align: center; */
        grid-template-columns: repeat(1, 1fr);
        display: flow-root;
    }

    .menu-card span {
        font-size: 20px;
    }

    .menu-grid a {
        font-size: 24px;
        display: inline-block;
    }


    .menu-card:nth-child(1) {
        position: initial;
        width: 100%;

    }


    .menu-card:nth-child(2) {
        position: initial;
        width: 100%;
    }

    .menu-card:nth-child(3) {
        position: initial;
        width: 100%;
    }

    /* もし(menu)をspanで囲ってるなら効く */
    .menu-heading span {
        display: inline-block;
    }


    /* drinks.html */
    .drinks-section {
        /* max-width: 500px; */
        margin: 0 auto;
        min-height: 1024px;
        /* figmaの高さに寄せたいなら */
        position: relative;
        /* return/top を右下に置く基準 */
        padding: 28px 24px;
        display: block;
        /* PCのflex/gridを無効化したい */
    }

    /* 500幅のキャンバスにする */
    .drinks-wrapper {
        width: 100%;
        display: block !important;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
    }

    .drinks-wrapper,
    .drinks-title,
    .drinks-grid,
    .drink-item {
        position: initial;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 0;
    }

    /* タイトル：上中央 */
    .drinks-title {
        text-align: center;
        font-size: 44px;
        /* 好みで調整 */
        line-height: 1.05;
        margin: 8px 0 40px;
        padding-left: 24px;
    }

    .drinks-title span {
        display: inline;
        margin-left: initial;
    }

    .drinks-title br {
        display: none;
    }

    .drinks-grid {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .drink-item {
        display: grid;

    }

    .drinks-text h3 {
        margin: 0 0 6px;
        font-size: 24px;
    }

    .drinks-text .price {
        margin: 0 0 6px;
        font-size: 24px;
    }

    .drinks-text .desc {
        margin: 0;
        font-size: 16px;
        line-height: 1.6;
    }

    /* 画像サイズ固定 */
    .drinks-item img {
        width: 190px;
        height: 190px;
        object-fit: cover;
        flex: 0 0 190px;
        /* margin-bottom: 80px; */
    }

    .angiro {
        flex-direction: row;
    }

    .angiro .price {
        padding-left: initial;
        text-align: left;
    }

    .drinks-section .hero-nav {
        position: static;
        text-align: right;
    }

    .drinks-section .hero-nav .return {
        font-size: 20px;
    }

    .drinks-section .hero-nav .top {
        font-size: 20px;
        margin: 0;
    }

    /* foods.html */
    .foods-section {
        /* max-width: 500px; */
        margin: 0 auto;
        min-height: 1024px;
        position: relative;
        /* return/top を右下に置く基準 */
        padding: 20px 24px;
        display: block;
        /* PCのflex/gridを無効化したい */
    }

    .foods-wrapper,
    .foods-title,
    .foods-grid,
    .foods-item {
        position: static;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 0;
    }

    .foods-grid {
        gap: 40px;
    }


    /* 500幅のキャンバスにする */
    .foods-wrapper {
        width: 100%;
        display: block !important;
        margin: 0 auto;
        padding: 0 12px;
        position: relative;
    }

    /* タイトル：上中央 */
    .foods-title {
        text-align: center;
        font-size: 44px;
        /* 好みで調整 */
        line-height: 1.05;
        margin: 12px 0 32px;
        white-space: nowrap;
        padding-left: 24px;
    }

    /* (food) を横並びにしたいなら span を inline にする */
    .foods-title span {
        display: inline;
        margin-left: initial;
    }

    .foods-title br {
        display: none;
    }

    /* 文字側 */
    .foods-text {
        flex: 1;
        max-width: 260px;
        white-space: nowrap;
    }

    .foods-text h3 {
        margin: 0 0 6px;
        font-size: 1.25rem;
    }

    .foods-text .price {
        margin: 0 0 6px;
        font-size: 16px;
    }

    .foods-text .desc {
        margin: 0;
        font-size: 16px;
        line-height: 1.6;
    }

    .foods-text p {
        margin: 0;
        font-size: 13px;
    }

    /* 画像サイズ固定 */
    .foods-item img {
        width: 190px;
        height: 190px;
        object-fit: cover;
        flex: 0 0 120px;
        margin-bottom: 80px;
    }

    .pasta {
        flex-direction: row;
    }

    .pasta .price {
        padding-left: initial;
    }

    .foods-section .hero-nav {
        position: static;
        margin-top: -60px;
        text-align: right;
        padding-bottom: 16px;
    }

    .foods-section .hero-nav .return {
        font-size: 20px;
    }

    .foods-section .hero-nav .top {
        font-size: 20px;
        margin: 0;
    }

    /* desserts.html */


    /* 画面幅500想定で中央に固定したい場合 */
    /* 重要：navをsection内で絶対配置できるように */
    .desserts-section {
        margin: 0 auto;
        min-height: 1024px;
        /* figmaの高さに寄せたいなら */
        position: relative;
        padding: 28px 24px 60px;
        display: block;
    }

    /* wrapperを縦並びに */
    .desserts-wrapper {
        width: 100%;
        /* ←これでnavを下に押し出せる */
        display: block !important;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
    }

    .desserts-wrapper,
    .desserts-title,
    .desserts-grid,
    .desserts-item {
        position: static;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
    }

    /* タイトル：上中央・(Desserts)を横に並べる */
    .desserts-title {
        text-align: center;
        font-size: 44px;
        /* 好みで後でOK */
        line-height: 1.05;
        /* margin: 12px 0 32px; */
        /* ←ここで横並び */
        white-space: nowrap;
        padding-bottom: 40px;
        margin-left: -12px;
    }

    .desserts-grid {
        gap: 0;
    }


    .desserts-title span {
        display: block;
        /* display: inline;
        margin-left: initial; */
    }

    .desserts-title br {
        display: none;
    }

    /* 文字側 */
    .desserts-text {
        flex: 1;
        margin: 0 auto;
    }

    .desserts-text h3 {
        margin: 0 0 6px;
        font-size: 24px;
    }

    .desserts-text .price {
        margin: 0 0 6px;
        font-size: 23px;
    }

    .desserts-text .desc {
        margin: 0;
        line-height: 1.6;
        font-size: 12px;
    }

    /* 画像サイズ統一（正方形） */
    .desserts-item img {
        width: 190px;
        height: 190px;
        object-fit: cover;
        display: block;
        flex-direction: column;
        margin-bottom: 120px;
    }

    /* 2行目 */
    .opera {
        flex-direction: row;
    }

    .opera .price {
        padding-left: initial;
    }

    .opera .desc {
        padding-left: 0;
    }

    .desserts-item {
        display: flex;
        align-items: flex-start;
        column-gap: 24px;
    }

    .desserts-section .hero-nav {
        position: static;
        margin-top: -120px;
        text-align: right;
    }

    .desserts-section .hero-nav .return {
        font-size: 20px;
    }

    .desserts-section .hero-nav .top {
        font-size: 20px;
        margin: 0;
    }

    /* .return .top */


    /* return / top を右下あたりに（Figmaの位置に寄せる） */
    .hero-nav {
        position: static;
    }

    /* hero-nav */

    .hero-nav .top-link {
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: right;
    }

    .top {
        display: inline-block;
        color: #333;
        /* ← ここをピンクにしたければ色変える */
        text-decoration: none;
        line-height: 1.6;
        margin-right: 24px;
    }

    .top-link {
        text-align: right;
    }

    .return {
        display: inline-block;
        text-decoration: none;
        line-height: 1.6;
        font-size: 24px;
    }


    /* informations.html */


    .info-bg {
        padding: 16px 10px;
        align-items: flex-start;
        background-position: 75% center;
    }

    .info-panel {
        width: 100%;
        padding: 20px 14px 18px;
    }

    .info-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .info-layout {
        display: block;
    }

    .info-left,
    .info-right {
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .info-row {
        padding: 16px 14px;
        margin-bottom: 10px;
        min-height: auto;
    }

    .info-row p,
    .sns-content a,
    .contact-lead {
        font-size: 0.84rem;
        line-height: 1.65;
    }

    .contact-row {
        margin-top: 14px;
    }

    .contact-content input,
    .contact-content textarea,
    .contact-content button {
        width: 100%;
        padding: 11px 12px;
        font-size: 0.88rem;
        box-sizing: border-box;
    }

    .contact-lead {
        box-sizing: 50%;
    }

    .contact-content button {
        height: 50px;
    }


    .contact-content textarea {
        min-height: 90px;
    }

    /* 画面中央に500pxのキャンバス */
    .info-wrapper {
        margin: 0 auto;
        min-height: 100vh;
        /* 外側が白く見えるのが嫌なら */
        position: relative;
        /* 余計なはみ出しを隠す */
    }

    /* 下のグレー情報ブロック */
    .info-content {
        padding: 26px 28px 78px;
        /* 下は top とフッターが重ならないように */
        display: contents;
    }

    /* タイトル（中央） */
    .info-title {
        margin: 48px 24px;
        text-align: center;
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: 0.02em;
    }

    /* 行（address/access/open/closed）を2列グリッドに */
    .info-text {
        display: block;
        grid-template-columns: 90px 1fr;
        /* 左ラベル / 右本文 */
        column-gap: 18px;
        row-gap: 8px;
    }

    .info-row {
        display: contents;
    }


    .info-row p {
        margin: 12px 0 0 24px;
        font-size: 18px;
        line-height: 1.55;
    }

    .info-panel {
        padding: 20px 16px 18px;
    }

    .info-title {
        font-size: 1.9rem;
        margin-bottom: 18px;
        text-align: center;
    }

    .info-row {
        display: block;
        width: 100%;
        min-height: auto;
        padding: 16px 14px;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .info-left .info-row,
    .info-right .info-row {
        display: block;
        margin-bottom: 10px;
    }

    .label {
        display: block;
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .info-row p,
    .sns-content a,
    .contact-lead {
        font-size: 0.84rem;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .contact-content {
        flex-direction: column;
        gap: 8px;
    }

    .contact-content textarea {
        min-height: 88px;
    }

    .foods-section .return,
    .foods-section .top {
        display: inline-block;
        white-space: nowrap;
    }


    /* フッター：下中央 */
    footer {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        z-index: 9;
        background: transparent;

    }

    footer p {
        margin: 0;
        text-shadow: 0 5px 2px #9b9b9b;


    }
}

@media (max-width: 480px) {

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-catch p {
        width: 100%;
        font-size: 1.5rem;
        transform: translateX(-50%);
        text-align: center;
        white-space: normal;
        /* ← 改行OKにする */
        margin-left: 0;
        /* ← 変なズレ消す */
    }

    .foods-section .foods-wrapper,
    .drinks-section .drinks-wrapper,
    .desserts-section .desserts-wrapper {
        width: 100%;
        padding: 0 16px 32px;
        box-sizing: border-box;
    }

    /* img */
    .drinks-item img {
        width: 140px;
        flex: 0 0 140px;
    }

    .foods-section {
        gap: 24px;
    }

    .foods-item img {
        width: 140px;
        height: 140px;
        flex: 0 0 140px;
    }

    .desserts-item img {
        width: 140px;
        height: 140px;
        flex: 0 0 140px;
    }

    .foods-section .foods-title,
    .drinks-section .drinks-title,
    .desserts-section .desserts-title {
        font-size: 2rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 24px;
    }

    .foods-section .hero-nav,
    .drinks-section .hero-nav,
    .desserts-section .hero-nav {
        position: static !important;
        width: 100%;
        margin-top: 20px;
    }

    .foods-section .top-link,
    .drinks-section .top-link,
    .desserts-section .top-link {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .foods-section .return,
    .foods-section .top,
    .drinks-section .return,
    .drinks-section .top,
    .desserts-section .return,
    .desserts-section .top {
        display: inline-block;
        white-space: nowrap;
        font-size: 0.95rem;
    }

    .footer p {
        margin: 0 auto;
    }
}

@media (max-width: 360px) {

    /* drinks */
    .drinks-section {
        min-height: 500px;
    }

    .drinks-item {
        gap: 24px;
    }

    .drinks-text h3 {
        padding: 0;
        font-size: 1.25rem;
    }

    .drinks-text .desc {
        font-size: 12px;
    }

    .drinks-text .price {
        font-size: 16px;
    }

    .drinks-item img {
        width: 108px;
        height: 108px;
        flex: 0 0 108px;
    }


    /* foods */
    .foods-section {
        min-height: 500px;
    }

    .foods-item {
        gap: 24px;
    }

    .foods-text h3 {
        padding: 0;
        font-size: 1.15rem;
    }

    .foods-text .desc {
        font-size: 12px;
    }

    .foods-text .price {
        font-size: 16px;
    }

    .foods-item img {
        width: 108px;
        height: 108px;
        flex: 0 0 108px;
    }

    /* desserts */
    .desserts-section {
        min-height: 500px;
    }


    .desserts-item {
        gap: 24px;
    }

    .desserts-text h3 {
        padding: 0;
        font-size: 1.25rem;

    }

    .desserts-text .price {
        font-size: 16px;
    }

    .desserts-item img {
        width: 108px;
        height: 108px;
        flex: 0 0 108px;
    }

    .foods-section .foods-wrapper,
    .drinks-section .drinks-wrapper,
    .desserts-section .desserts-wrapper {
        padding: 0 12px 28px;
    }

    .foods-section .foods-title,
    .drinks-section .drinks-title,
    .desserts-section .desserts-title {
        font-size: 1.7rem;
        line-height: 1.25;
    }

    .foods-section .top-link,
    .drinks-section .top-link,
    .desserts-section .top-link {
        justify-content: center;
        gap: 10px;
    }

    .foods-section .return,
    .foods-section .top,
    .drinks-section .return,
    .drinks-section .top,
    .desserts-section .return,
    .desserts-section .top {
        font-size: 0.9rem;
    }
}