/* ===========================
   Base
=========================== */
:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f5f7fa;
    --color-main: #2d3e50;       /* 濃いめのブルーグレー */
    --color-main-dark: #1f2c3a;
    --color-main-light: #4a5d72;
    --color-text: #2d3e50;
    --color-text-sub: #6b7884;
    --color-line: #d8dee5;
    --font-en: 'Cormorant Garamond', serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --max-width: 1100px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-jp);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* ===========================
   Layout
=========================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--color-bg-alt);
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-sub {
    font-family: var(--font-en);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--color-main-light);
    margin-bottom: 8px;
}

.section-sub.light {
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-main-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--color-main);
}

/* ===========================
   Header
=========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-line);
    z-index: 100;
}

.header-inner {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 44px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
}

.nav-list {
    display: flex;
    gap: 36px;
}

.nav-list a {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    color: var(--color-main-dark);
    position: relative;
    padding: 4px 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                color 0.3s ease;
}

.nav-list a:hover {
    transform: translateY(-3px);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-main);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    opacity: 1;
}

.nav-list a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-main-dark);
}

/* ===========================
   Hero
=========================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background-color: #e6ecf3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(45, 62, 80, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 62, 80, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 800px;
}

.hero-logo {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0 auto 32px;
    display: block;
    mix-blend-mode: multiply;
    background-color: #e6ecf3;
}

.hero-title {
    font-family: var(--font-en);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: var(--color-main-dark);
    margin-bottom: 32px;
}

.hero-lead {
    font-size: 1rem;
    line-height: 2;
    color: var(--color-text-sub);
    margin-bottom: 48px;
}

.hero-btn {
    display: inline-block;
    padding: 18px 56px;
    background-color: var(--color-main);
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    border: 1px solid var(--color-main);
    box-shadow: 0 4px 12px rgba(45, 62, 80, 0.15);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                background-color 0.4s ease,
                color 0.4s ease;
}

.hero-btn:hover {
    background-color: transparent;
    color: var(--color-main);
    transform: translateY(-8px);
    box-shadow: 0 18px 32px rgba(45, 62, 80, 0.18);
    opacity: 1;
}

/* ===========================
   Concept
=========================== */
.concept-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.concept-lead {
    font-family: var(--font-en);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--color-main-dark);
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.concept-text {
    font-size: 1rem;
    line-height: 2.2;
    color: var(--color-text-sub);
}

/* ===========================
   Menu
=========================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.menu-card {
    background-color: #fff;
    padding: 32px 28px;
    border: 1px solid var(--color-line);
    box-shadow: 0 2px 8px rgba(45, 62, 80, 0.04);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s ease;
    will-change: transform;
}

.menu-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(45, 62, 80, 0.15);
    border-color: transparent;
}

.menu-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #e2e8f0 0%, #c8d3df 100%);
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-card:hover .menu-card-img {
    transform: scale(1.03);
}

.menu-card-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-main-dark);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.menu-card-text {
    font-size: 0.9rem;
    color: var(--color-text-sub);
    line-height: 1.8;
    margin-bottom: 16px;
}

.menu-card-price {
    font-family: var(--font-en);
    font-size: 1.2rem;
    color: var(--color-main);
    letter-spacing: 0.05em;
    border-top: 1px solid var(--color-line);
    padding-top: 16px;
}

/* ===========================
   Bijiris
=========================== */
.bijiris {
    background-color: #fff;
}

.bijiris-hero {
    max-width: 960px;
    margin: 0 auto 60px;
    background-color: var(--color-bg-alt);
    padding: 32px;
    border: 1px solid var(--color-line);
}

.bijiris-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.bijiris-content {
    max-width: 920px;
    margin: 0 auto;
}

.bijiris-text {
    text-align: center;
    margin-bottom: 60px;
}

.bijiris-lead {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 500;
    color: var(--color-main-dark);
    line-height: 1.8;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.bijiris-desc {
    font-size: 1rem;
    color: var(--color-text-sub);
    line-height: 2.2;
}

.bijiris-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.feature-block {
    background-color: var(--color-bg-alt);
    padding: 36px 32px;
    border-left: 3px solid var(--color-main);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--color-main-dark);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
}

.feature-tag {
    display: inline-block;
    background-color: var(--color-main);
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 12px;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.bijiris-info {
    background-color: var(--color-bg-alt);
    padding: 32px 40px;
    margin-bottom: 48px;
}

.bijiris-info dl {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-line);
}

.bijiris-info dl:last-child {
    border-bottom: none;
}

.bijiris-info dt {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-main);
    letter-spacing: 0.1em;
}

.bijiris-info dd {
    font-size: 0.95rem;
    color: var(--color-text);
}

.bijiris-info a {
    color: var(--color-main);
    border-bottom: 1px solid var(--color-main);
}

.bijiris-cta {
    text-align: center;
}

.bijiris-btn {
    display: inline-block;
    padding: 18px 56px;
    background-color: var(--color-main);
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    border: 1px solid var(--color-main);
    box-shadow: 0 4px 12px rgba(45, 62, 80, 0.15);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                background-color 0.4s ease,
                color 0.4s ease;
}

.bijiris-btn:hover {
    background-color: transparent;
    color: var(--color-main);
    transform: translateY(-8px);
    box-shadow: 0 18px 32px rgba(45, 62, 80, 0.18);
    opacity: 1;
}

/* ===========================
   Shop Info
=========================== */
.shop-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

.shop-gallery-item {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

.shop-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.shop-gallery-item--main img {
    filter: brightness(1.18) contrast(1.02) saturate(1.05);
}

.shop-gallery-item:hover img {
    transform: scale(1.04);
}

.shop-gallery-item figcaption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: rgba(45, 62, 80, 0.85);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    padding: 6px 16px;
}

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

.shop-info-table dl {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-line);
}

.shop-info-table dl:first-child {
    border-top: 1px solid var(--color-line);
}

.shop-info-table dt {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-main);
    letter-spacing: 0.1em;
}

.shop-info-table dd {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.8;
}

.shop-info-table a {
    color: var(--color-main);
    border-bottom: 1px solid var(--color-main);
    padding-bottom: 1px;
}

.shop-info-map {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-line);
    overflow: hidden;
}

.shop-info-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* 営業予定日 */
.schedule-wrap {
    margin-top: 80px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.schedule-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-main-dark);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.schedule-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 1px;
    background-color: var(--color-main);
}

.schedule-note {
    font-size: 0.95rem;
    color: var(--color-main);
    margin-bottom: 28px;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border: 1px solid var(--color-line);
}

.schedule-table th,
.schedule-table td {
    padding: 14px 24px;
    text-align: center;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-line);
}

.schedule-table thead th {
    background-color: var(--color-main);
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
}

.schedule-table tbody td:first-child {
    font-weight: 500;
    color: var(--color-main-dark);
    background-color: var(--color-bg-alt);
    width: 40%;
    letter-spacing: 0.08em;
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.schedule-table .tbd {
    color: var(--color-text-sub);
    font-style: italic;
    letter-spacing: 0.05em;
}

/* ===========================
   Reservation
=========================== */
.reservation {
    background-color: var(--color-main);
    color: #fff;
    text-align: center;
}

.reservation-inner {
    max-width: 720px;
}

.reservation-title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin: 8px 0 24px;
}

.reservation-text {
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.reservation-text strong {
    color: #fff;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
}

.reservation-info {
    max-width: 480px;
    margin: 0 auto 48px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 24px 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: left;
}

.reservation-info dl {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.reservation-info dl:last-child {
    border-bottom: none;
}

.reservation-info dt {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
}

.reservation-info dd {
    font-size: 0.95rem;
    color: #fff;
}

.reservation-info dd strong {
    color: #fff;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.12);
    padding: 2px 8px;
    margin: 0 2px;
    letter-spacing: 0.05em;
}

/* 営業時間外お申し込みコールアウト */
.reservation-callout {
    max-width: 480px;
    margin: 24px auto 40px;
    padding: 24px 28px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    text-align: center;
}

.callout-title {
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    font-weight: 500;
}

.callout-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
}

.callout-tel {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.1em;
    margin-top: 8px;
    padding: 4px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: opacity 0.3s ease;
}

.callout-tel:hover {
    opacity: 0.75;
}

/* 定休日メモ(営業予定日テーブル内) */
.closed-note {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.78rem;
    color: var(--color-text-sub);
    letter-spacing: 0.05em;
}

/* 定休日メモ(予約スロット内) */
.slots-closed {
    margin-top: 8px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
    padding-top: 6px;
    border-top: 1px dashed rgba(255, 255, 255, 0.18);
}

.reservation-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 24px;
    letter-spacing: 0.05em;
}

/* 予約枠 */
.slots-wrap {
    margin: 0 auto 48px;
    max-width: 880px;
    text-align: center;
}

.slots-title {
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.slots-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
}

.slots-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.slots-day {
    background-color: rgba(255, 255, 255, 0.06);
    padding: 16px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slots-day-name {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 4px;
}

.slots-hours {
    font-family: var(--font-en);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.slots-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    padding: 0;
}

.slots-list li {
    background-color: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.slots-list li a {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.92);
    padding: 6px 4px;
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
}

.slots-list li:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.slots-list li:hover a {
    color: var(--color-main);
    opacity: 1;
}

.slots-tbd {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
    padding: 16px 0;
}

/* Googleカレンダー埋め込み */
.calendar-wrap {
    max-width: 1000px;
    margin: 0 auto 48px;
    text-align: center;
}

.calendar-title {
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.calendar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
}

.calendar-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.calendar-embed {
    background-color: #fff;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
    height: 612px;
}

.calendar-embed iframe {
    display: block;
    width: 100%;
    height: 680px;
    border: 0;
}

/* 念のため右上の「+」ボタン位置も白マスクで覆う */
.calendar-embed::before {
    content: '';
    position: absolute;
    right: 12px;
    top: 12px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    pointer-events: none;
    z-index: 2;
}

.reservation-btn {
    display: inline-block;
    padding: 18px 72px;
    background-color: #fff;
    color: var(--color-main);
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    border: 1px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                background-color 0.4s ease,
                color 0.4s ease;
}

.reservation-btn:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.25);
    opacity: 1;
}

/* ===========================
   Footer
=========================== */
.footer {
    background-color: var(--color-main-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    margin: 0 auto 16px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-text {
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.copyright {
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 960px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .shop-info-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bijiris-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shop-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 540px;
    }

    .hero-lead {
        font-size: 0.9rem;
    }

    .section-title,
    .reservation-title {
        font-size: 1.6rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shop-info-table dl {
        grid-template-columns: 100px 1fr;
        gap: 12px;
        padding: 16px 0;
    }

    .hero-btn,
    .reservation-btn,
    .bijiris-btn {
        padding: 16px 40px;
        font-size: 0.9rem;
    }

    .hero-logo {
        max-width: 260px;
    }

    .logo-img {
        height: 36px;
    }

    .bijiris-hero {
        padding: 16px;
        margin-bottom: 40px;
    }

    .bijiris-info {
        padding: 24px 20px;
    }

    .bijiris-info dl,
    .reservation-info dl {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .feature-block {
        padding: 28px 22px;
    }

    .schedule-wrap {
        margin-top: 60px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px;
    }

    .slots-day-name {
        font-size: 1rem;
    }

    .slots-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }

    .slots-list li {
        font-size: 0.78rem;
        padding: 6px 2px;
    }
}

@media (max-width: 768px) {
    .calendar-embed {
        height: 492px;
    }

    .calendar-embed iframe {
        height: 560px;
    }

    .calendar-embed::before {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: 1fr;
    }

    .slots-list {
        grid-template-columns: repeat(5, 1fr);
    }

    .calendar-embed {
        height: 432px;
    }

    .calendar-embed iframe {
        height: 500px;
    }

    .calendar-embed::before {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0 16px;
    }

    .container {
        padding: 0 16px;
    }

    .logo-main {
        font-size: 1.5rem;
    }

    .logo-sub {
        font-size: 0.8rem;
    }

    .shop-info-table dl {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
