/* ========================================
   リセット & ベーススタイル - 明るいバージョン
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット - 明るくゴージャスに */
    --primary-bg: #ffffff;
    --secondary-bg: #fefaf5;
    --accent-gold: #c9a961;
    --accent-gold-dark: #b8952e;
    --accent-gold-light: #e8d4a0;
    --text-primary: #2c2416;
    --text-secondary: #5a4d3a;
    --text-muted: #8c7d6b;
    --border-color: rgba(201, 169, 97, 0.3);
    
    /* フォント */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    
    /* スペーシング */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* トランジション */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

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

body {
    font-family: var(--font-jp);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

/* ========================================
   ローディング画面
======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.logo-animation img {
    width: 200px;
    opacity: 0;
    animation: logoFadeIn 1.5s ease forwards;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   ヘッダー
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(201, 169, 97, 0.2);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    transition: var(--transition-fast);
}

.logo img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 30px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fefaf5 0%, #ffffff 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(254, 250, 245, 0.3) 0%,
        rgba(255, 255, 255, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-primary);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: titleSlideUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.5s;
}

.title-line:nth-child(3) {
    animation-delay: 0.7s;
}

.title-line.accent {
    color: var(--accent-gold);
    font-style: italic;
}

@keyframes titleSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    margin: 30px auto;
    opacity: 0;
    animation: dividerExpand 0.6s ease forwards 0.9s;
}

@keyframes dividerExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--accent-gold-dark);
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1.1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* スクロールインジケーター */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1.5s;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--accent-gold);
    animation: scrollAnimation 2s ease infinite;
}

@keyframes scrollAnimation {
    0%, 100% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
}

/* ========================================
   共通セクションスタイル
======================================== */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.title-decoration {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, 
        transparent, 
        var(--accent-gold), 
        transparent);
    margin: 0 auto 60px;
}

/* フェードインアニメーション */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   ゲストプレビューセクション
======================================== */
.guest-preview {
    padding: var(--section-padding) 0;
    background: var(--secondary-bg);
}

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

.guest-card {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.2);
    transition: var(--transition-smooth);
}

.guest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.3);
}

.guest-image {
    position: relative;
    overflow: hidden;
}

.guest-image img {
    width: 100%;
    transition: transform 0.6s ease;
}

.guest-card:hover .guest-image img {
    transform: scale(1.05);
}

.guest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, 
        rgba(44, 36, 22, 0.85) 0%,
        transparent 100%);
}

.guest-names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.guest-name {
    font-family: var(--font-jp);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 500;
    color: #ffffff;
}

.guest-separator {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--accent-gold-light);
}

/* ========================================
   イベント詳細セクション - テーブル形式
======================================== */
.event-details {
    padding: var(--section-padding) 0;
    background: var(--primary-bg);
}

.details-content {
    text-align: center;
}

.details-table {
    max-width: 900px;
    margin: 60px auto 0;
}

.event-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.1);
}

.event-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

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

.event-table tbody tr:hover {
    background: rgba(201, 169, 97, 0.05);
}

.event-table th {
    width: 180px;
    padding: 30px 40px;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    background: rgba(201, 169, 97, 0.08);
    border-right: 1px solid var(--border-color);
    vertical-align: top;
}

.event-table th .th-jp {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 5px;
    text-transform: none;
}

.event-table td {
    padding: 30px 40px;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.venue-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-top: 5px;
}

.time-row {
    margin: 5px 0;
}

.time-row:first-child {
    margin-top: 0;
}

.time-row:last-child {
    margin-bottom: 0;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-top: 8px;
}

.contact-link {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-gold-dark);
    border-bottom-color: var(--accent-gold-dark);
}

/* CTAセクション */
.cta-section {
    margin-top: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.5);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

/* ========================================
   コンセプトセクション
======================================== */
.concept-section {
    padding: var(--section-padding) 0;
    background: var(--secondary-bg);
    position: relative;
}

.concept-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        var(--accent-gold), 
        transparent);
}

.concept-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.concept-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.concept-description {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.concept-note {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: rgba(201, 169, 97, 0.05);
}

.concept-note p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========================================
   フッター
======================================== */
.footer {
    padding: 60px 0 40px;
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    text-align: center;
}

.footer-logo img {
    height: 60px;
    margin: 0 auto 30px;
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 30px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* テーブルをレスポンシブ対応 */
    .event-table {
        display: block;
    }
    
    .event-table tbody,
    .event-table tr,
    .event-table th,
    .event-table td {
        display: block;
        width: 100%;
    }
    
    .event-table tr {
        margin-bottom: 25px;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        overflow: hidden;
    }
    
    .event-table tr:last-child {
        margin-bottom: 0;
    }
    
    .event-table th {
        width: 100%;
        padding: 15px 20px;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .event-table td {
        padding: 20px;
        text-align: center;
        font-size: 1rem;
    }
    
    .guest-names {
        flex-direction: column;
        gap: 15px;
    }
    
    .guest-separator {
        transform: rotate(90deg);
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .event-table th,
    .event-table td {
        padding: 15px;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

/* ========================================
   ユーティリティクラス
======================================== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--accent-gold);
}

.mb-small {
    margin-bottom: 20px;
}

.mb-medium {
    margin-bottom: 40px;
}

.mb-large {
    margin-bottom: 60px;
}
/* ========================================
   ページヒーロー（共通）
======================================== */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        var(--accent-gold), 
        transparent);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ========================================
   CHEFページ
======================================== */
.chef-section {
    padding: var(--section-padding) 0;
    background: var(--primary-bg);
}

.chef-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    margin-bottom: 80px;
    padding: 40px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.1);
}

.chef-profile:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.2);
}

.chef-profile:last-child {
    margin-bottom: 0;
}

.chef-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.chef-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.chef-profile:hover .chef-image img {
    transform: scale(1.05);
}

.chef-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chef-name {
    font-family: var(--font-jp);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.chef-name-en {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.chef-works {
    margin-bottom: 30px;
}

.works-title {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.works-list {
    list-style: none;
}

.works-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.works-list li:last-child {
    border-bottom: none;
}

.work-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.work-role {
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-align: right;
}

.chef-sns {
    display: flex;
    gap: 15px;
}

.sns-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.sns-link:hover {
    background: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
}

/* ========================================
   NOTESページ
======================================== */
.notes-section {
    padding: var(--section-padding) 0;
    background: var(--primary-bg);
}

.notes-content {
    max-width: 900px;
    margin: 0 auto;
}

.notes-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.notes-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.note-item {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.08);
}

.note-item:hover {
    border-color: var(--accent-gold);
    transform: translateX(10px);
    box-shadow: 0 6px 30px rgba(201, 169, 97, 0.15);
}

.note-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
}

.note-content {
    flex: 1;
}

.note-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.note-content ul {
    list-style: none;
    padding-left: 0;
}

.note-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.note-content ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.note-content ul li:last-child {
    margin-bottom: 0;
}

.notes-footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ========================================
   RÉSERVATIONページ
======================================== */
.reservation-section {
    padding: var(--section-padding) 0;
    background: var(--primary-bg);
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 準備中メッセージ */
.preparing-message {
    text-align: center;
    padding: 60px 40px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.1);
}

.preparing-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.preparing-message h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.preparing-message .message {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* レスポンシブ対応 - CHEFページ */
@media (max-width: 968px) {
    .chef-profile {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .chef-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .note-item {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .note-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .preparing-message {
        padding: 40px 30px;
    }
    
    .preparing-message h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .chef-profile {
        padding: 20px;
    }
    
    .chef-name {
        font-size: 1.5rem;
    }
    
    .note-item {
        padding: 20px 15px;
    }
    
    .preparing-message {
        padding: 30px 20px;
    }
}

/* NOTESページ - 追加スタイル */
.note-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin: 25px 0 15px;
}

.note-subtitle:first-of-type {
    margin-top: 0;
}

.note-emphasis {
    font-weight: 600;
    color: var(--text-primary);
    margin: 15px 0 10px;
}

.note-warning {
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(201, 169, 97, 0.1);
    border-left: 3px solid var(--accent-gold);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.inline-link {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.inline-link:hover {
    color: var(--accent-gold-dark);
}

.note-content p {
    margin: 15px 0;
    color: var(--text-secondary);
    line-height: 1.8;
}
