/* ------------------------------
   ベース設定
------------------------------ */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: "Noto Serif JP", "Shippori Mincho", serif;
    line-height: 1.8;
}

a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #c40000;
}

/* ★ ヒーロー以外のセクションにだけ余白を付ける */
section:not(.hero-content):not(.greeting-section) {
    padding: 80px 5%;
}

.section-title {
    font-size: 28px;
    margin-bottom: 40px;
    border-left: 4px solid #c40000;
    padding-left: 12px;
}

/* ------------------------------
   Vegas.js 背景（body に描画）
------------------------------ */

.hero-content,
.header,
.news,
.intro,
.menu-links,
.access,
.footer,
.greeting-section {
    position: relative;
    z-index: 10;
}

/* ------------------------------
   ヘッダー
------------------------------ */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    z-index: 1000;
    border-bottom: 1px solid #c40000;
}

.logo {
    
}
.logo img{
	width: 100%;
	
}

.pc-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 20px;
    padding: 0;
}

.pc-nav a {
    position: relative;
}

.pc-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #c40000;
    transition: 0.3s;
}

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

.sp-menu-btn {
    display: none;
}

/* ------------------------------
   キャッチコピー
------------------------------ */

.hero-content {
	width: 600px;
	margin-top: 200px;
    margin-left: auto;
	margin-right: auto;
	margin-bottom: 100px;
}

.hero-content img {
    width: 100%;
	
		
}



/* ------------------------------
   新着情報
------------------------------ */

.news-list {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    background: #111;
    flex: 1;
    border: 1px solid #222;
    transition: 0.3s;
}

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

.news-info {
    padding: 15px;
}

.news-info .date {
    color: #c40000;
    font-size: 14px;
}

.news-info .title {
    display: block;
    margin-top: 8px;
}

.news-item:hover {
    border-color: #c40000;
}

.more-btn {
    margin-top: 30px;
    text-align: right;
}

.more-btn a {
    padding: 8px 20px;
    border: 1px solid #c40000;
}

/* ------------------------------
   ご案内
------------------------------ */

.intro {
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-img img {
    width: 50%;
    max-width: 350px;
    border-left: 4px solid #c40000;
    display: block;
}

.intro-text {
    max-width: 500px;
}

/* ------------------------------
   メニューカード
------------------------------ */

.menu-links {
    display: flex;
    gap: 30px;
    width: 100%;
}

.menu-card {
    position: relative;
    flex: 1 1 0;
    overflow: hidden;
    cursor: pointer;
}

.menu-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

.menu-card:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

.menu-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 22px;
    text-shadow: 0 0 10px #000;
}

/* ------------------------------
   アクセス
------------------------------ */

.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

.access-info p {
    margin: 8px 0;
}

/* ------------------------------
   フッター
------------------------------ */

.footer {
    background: #000;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #c40000;
}

/* ============================
   Greeting Section（最終版）
============================ */

.greeting-section {
    position: relative;
    z-index: 10;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    padding: 50px 8%;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.greeting-inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.greeting-text {
    flex: 1;
}

/* ------------------------------
   greeting-images（1枚専用）
------------------------------ */
.greeting-images {
    flex: 1;
    position: relative;
    display: block;
    min-height: 420px;
    overflow: visible;

    /* 中央寄せのための余白（必要に応じて調整） */
    padding-top: 40px;
    padding-bottom: 40px;
}

/* 画像1枚だけの中央寄せ */
.greeting-images img {
    display: block;
    width: 80%;
    margin: 0 auto; /* ← 中央寄せの決定打 */
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);

    /* 初期状態（アニメ前） */
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease-out;
}

/* ------------------------------
   fade-right（1枚用に最適化）
------------------------------ */
.fade-right {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease-out;
}

.fade-right.show {
    opacity: 1;
    transform: translateY(0);
}

/* 子画像のアニメーション */
.fade-right.show img {
    opacity: 1;
    transform: translateY(0);
}





/* ============================
   fade-left（完全復旧版）
============================ */

.fade-left {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: 1s ease-out !important;
}

.fade-left.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
#news {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    padding: 80px 8%;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 60px 0; /* ← これだけ追加 */
}
#menu-links {
    background: rgba(0, 0, 0, 0.55); /* 半透明の黒 */
    backdrop-filter: blur(4px);      /* 背景ぼかしで高級感 */
    padding: 60px 8%;
    margin: 60px 0;                 /* news と揃える */
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
#intro {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    padding: 80px 8%;
    margin: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}


.intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


.intro-text {
    flex: 1;
}

.intro-images {
    flex: 1;
    display: flex;
    gap: 20px;
}

.intro-images img {
    width: 33%;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease-out;
}

.intro-images.show img {
    opacity: 1;
    transform: translateY(0);
}

.intro-images.show .img2 {
    transition-delay: 0.2s;
}

.intro-images.show .img3 {
    transition-delay: 0.4s;
}
#access {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    padding: 80px 8%;
    margin: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.access {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.access-text,
.access-map,
.access-calendar {
    flex: 1;
}
.access-map iframe,
.access-calendar iframe {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease-out;
    transition-delay: 0.3s; /* ← これで遅れて出る */
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
.pc-nav { display: block; }
.sp-menu-btn { display: none; }
.sp-nav { display: none; }

.menu-list {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    background: #111;
    flex: 1;
    border: 1px solid #222;
    transition: 0.3s;
}

.menu-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.menu-info {
    padding: 15px;
}

.menu-info .date {
    color: #c40000;
    font-size: 14px;
}

.menu-info .title {
    display: block;
    margin-top: 8px;
}

.menu-item:hover {
    border-color: #c40000;
}
/* ▼ 下層ページの背景（黒透過） */
.store-gallery {
    margin: 200px 0;
    background: rgba(0, 0, 0, 0.6); /* ← トップと同じ黒透過 */
    padding: 80px 5%;
    backdrop-filter: blur(4px); /* ← 高級感UP */
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* ▼ 交互レイアウト */
.store-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.store-row.reverse {
    flex-direction: row-reverse;
}

/* ▼ 画像 */
.store-img img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* ▼ テキスト */
.store-text {
    flex: 1;
    color: #ddd;
}

.store-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    border-left: 4px solid #c40000; /* トップと同じ赤ライン */
    padding-left: 12px;
}

.page-title {
    font-size: 42px;
    letter-spacing: 4px;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: block; /* ← これが重要 */
    width: 100%;    /* ← これで中央固定 */
    padding-bottom: 14px;
}

/* 下に細い赤ライン（トップの section-title と統一） */
.page-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #c40000;
    border-radius: 2px;
}
/* ▼ セクション全体（黒透過） */
.course-list {
    background: rgba(0,0,0,0.6);
    padding: 80px 5%;
    margin-top: 200px;
    backdrop-filter: blur(4px);
}



/* ▼ コースカード */
.course-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* ▼ コース名 */
.course-name {
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
    border-left: 4px solid #c40000;
    padding-left: 12px;
}

/* ▼ 価格 */
.course-price {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ▼ 説明文 */
.course-desc {
    color: #ccc;
    line-height: 1.8;
}

/* ▼ 要予約 */
.reserve {
    font-size: 18px;
    color: #c40000;
}

/* ▼ セクション背景（黒透過） */


/* ▼ リード文 */
.food-lead {
    color: #ddd;
    line-height: 1.9;
    
    
}

/* ▼ グリッド（3列） */
.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ▼ 各料理カード */
.food-item {
    background: #111;
    border: 1px solid #222;
    padding: 20px;
    border-radius: 6px;
    text-align: left;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* ▼ 画像 */
.food-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* ▼ タイトル */
.food-item h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    border-left: 4px solid #c40000;
    padding-left: 10px;
}

/* ▼ 説明文 */
.food-item p {
    color: #ccc;
    line-height: 1.7;
}

.food-recommend {
    background: rgba(0,0,0,0.6);
    padding: 80px 5%;
    margin-top: 200px;
    backdrop-filter: blur(4px);
}

/* ▼ カテゴリ見出し */
.menu-category {
    font-size: 28px;
    color: #fff;
    margin: 60px 0 20px;
    border-left: 4px solid #c40000;
    padding-left: 12px;
}

/* ▼ メニューリスト */
/* ▼ 親：横並び＋折り返し */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-wrap: wrap; /* ← 自動で折り返す */
    gap: 24px 40px;  /* ← 行間・列間の余白 */
}

/* ▼ li：カード化して幅を固定 */
.menu-list li {
    width: 260px; /* ← ここを変えれば列数が変わる（PCで3〜4列） */
    display: flex;
    flex-direction: column; /* ← メニュー名 → 改行 → 価格 */
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
}

/* ▼ メニュー名 */
.menu-name {
    color: #ddd;
    font-size: 18px;
}

/* ▼ 価格（改行扱い） */
.menu-price {
    margin-top: 6px; /* ← 改行っぽい余白 */
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.lunch-dark {
    padding: 40px 20px;
    background: #000;
}

/* ▼ カード本体（画像対応版） */
.course-card {
    background: #111;
    border: 1px solid #222;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    text-align: left;
}

/* ▼ 画像（黒背景に馴染むように調整） */
.course-card .course-img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

/* ▼ コース名 */
.course-name {
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
    border-left: 4px solid #c40000;
    padding-left: 12px;
}

/* ▼ 価格 */
.course-price {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ▼ 説明文 */
.course-desc {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
}

.course-desc .note {
    color: #aaa;
    font-size: 14px;
}

/* ▼ おすすめ・要予約 */
.reserve {
    font-size: 18px;
    color: #c40000;
}
/* ============================
   弁当カード（横並び）
============================ */
.bento-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(0,0,0,0.6);
    padding: 40px 5%;
    border-radius: 8px;
    border: 1px solid #222;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    margin-bottom: 60px;
    backdrop-filter: blur(4px);
    width: 100%;
    overflow: hidden;
}

/* 左側テキスト */
.bento-text {
    flex: 1;
    min-width: 0;
}

.bento-name {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
    border-left: 4px solid #c40000;
    padding-left: 12px;
}

.bento-price {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.bento-desc {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
}

/* ============================
   右側画像（ゴールド縁）
============================ */
.bento-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bento-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 8px;
    border: 2px solid #d4af37;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    display: block;
}
.note-box {
    background: rgba(196, 0, 0, 0.85); /* 朱色の背景 */
    color: #fff;                      /* 白抜き文字 */
    border-left: 6px solid #ffb36b;   /* 和風の金朱ライン */
    padding: 14px 18px;
    margin: 30px 0;
    font-size: 16px;
    line-height: 1.8;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

/* ============================
   スマホ対応（完全版）
============================ */
@media (max-width: 768px) {

    .bento-card {
        flex-direction: column;
        
        
        
    }

    .bento-image {
        
        
        
    }

    .bento-image img {
        width: 100%;        /* ← 50% をやめる。これが飛び出しの原因 */
        max-width: 60%;   /* ← スマホでちょうどいい幅 */
        margin-left: auto;    /* ← 中央寄せの決定打 */
        margin-right: auto;
    }
}
.footer {
    background: #000;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

/* SNS アイコン */
.footer-sns {
    display: flex;
    gap: 20px;
}

.sns-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #d4af37; /* 金色 */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    transition: 0.3s ease;
    background: rgba(255,255,255,0.05);
}

.sns-icon:hover {
    background: #c40000; /* 赤く光る */
    border-color: #ffdf9e;
    transform: translateY(-4px);
    box-shadow: 0 0 12px rgba(255,0,0,0.6);
}

.copy {
    color: #aaa;
    font-size: 14px;
}
.sns-icon i {
    color: #fff; /* ← これが無いと見えない */
    font-size: 22px;
}
/* スマホ対応 */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }
}
.map-link-wrap {
    text-align: center;
    margin: 30px 0 10px;
}

.map-button {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 999px;
    border: 1px solid #c40000;
    color: #fff;
    background: transparent;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: 0.3s ease;
}

.map-button:hover {
    background: #c40000;
    color: #fff;
    box-shadow: 0 0 10px rgba(196,0,0,0.6);
}
/* PCでは非表示 */
/* PCでは非表示 */
.sp-call {
    display: none;
}

/* スマホだけ表示 */
@media (max-width: 768px) {
    .sp-call {
        display: block;
        margin-top: 14px;
    }
    .sp-call a {
        display: block;
        padding: 14px 20px;
        background: #c40000;
        color: #fff;
        text-align: center;
        border-radius: 999px; /* ← 長丸 */
        text-decoration: none;
        font-size: 16px;
        letter-spacing: 0.05em;
        transition: 0.3s ease;
    }
    .sp-call a:hover {
        background: #e00000;
        box-shadow: 0 0 10px rgba(255,0,0,0.5);
    }
}
.access {
    display: flex;
    gap: 20px;
}

.access-text {
    width: 25%;
}

.access-map {
    width: 45%;
}

.calendar-wrapper {
    width: 30%;
}

/* ================================
   和モダン黒カレンダー（最終版）
   ================================ */

.front-calendar {
    background: #000;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
}

/* 月ナビゲーション */
.front-calendar .month-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.front-calendar .month-btn {
    background: #222;
    color: #fff;
    border: 1px solid #444;
    padding: 4px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.front-calendar .month-btn:hover {
    background: #444;
}

/* テーブル */
.front-calendar table {
    width: 100%;
    border-collapse: collapse;
}

.front-calendar th {
    background: #222;
    color: #fff;
    padding: 6px 0;
}

.front-calendar td {
    border: 1px solid #333;
    padding: 4px 0;
    text-align: center;
    vertical-align: top;
    height: 60px;
    position: relative;
    color: #fff;
}

/* 今日（金枠） */
.front-calendar td.today {
    outline: 2px solid #d4af37;
    outline-offset: -2px;
}


/* 定休日（濃い赤） */
.front-calendar .holiday {
    background: #550000;
}

/* イベント（濃い金） */
.front-calendar .event {
    background: #7a5f00;
}

/* お知らせ（濃い紫） */
.front-calendar .notice {
    background: #4b0066;
}

/* ラベル（自動挿入） */
.front-calendar .label {
    display: inline-block;
    font-size: 10px;
    margin-top: 2px;
    white-space: nowrap;
    opacity: 0.9;
}
/* ===== ポップアップデザイン最終版 ===== */

#popup-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#popup-bg.show {
    display: flex;
}

.popup-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    animation: popupFade 0.25s ease-out;
    color: #000; /* ← 文字を黒に固定 */
}

/* タイトル（大きく・上品に） */
.popup-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 6px;
}

/* 本文 */
.popup-body {
    font-size: 15px;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* 閉じるボタン（グラフィカル） */
.popup-close-btn {
    width: 100px;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    
    background: #d4af37;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: 0.2s;
}

.popup-close-btn:hover {
    background: #b8962f;
}

/* アニメーション */
@keyframes popupFade {
    from { transform: translateY(10px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.access-map iframe {
    filter: grayscale(100%);
}
/* 全体 */
.news-block {
    margin-top: 40px;
}

/* タイトル */
.news-title {
    font-size: 24px;
    color: #d4af37;
    border-left: 5px solid #d4af37;
    padding-left: 12px;
    margin-bottom: 20px;
}

/* カード3等分 */
.news-cards {
    display: flex;
    gap: 20px;
}

.news-card {
    width: 33.33%;
    background: #111;
    border: 1px solid #d4af37;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
}

/* ホバーで赤アクセント */
.news-card:hover {
    border-color: #b30000;
    box-shadow: 0 0 10px rgba(179,0,0,0.4);
}

/* サムネイル */
.news-thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #222;
}

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

.news-thumb.noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* テキスト部分 */
.news-info {
    padding: 12px;
}

.news-date {
    color: #d4af37;
    font-size: 14px;
    margin-bottom: 6px;
}

.news-item-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
}

.news-caption {
    font-size: 14px;
    color: #ccc;
}
/* タブレット：2カード */
@media (max-width: 1024px) {
    .news-card {
        width: 48%;
    }
    .news-cards {
        flex-wrap: wrap;
    }
}

/* スマホ：1カード */
@media (max-width: 768px) {
    .news-card {
        width: 100%;
    }
}

.news-list-title {
    font-size: 28px;
    color: #d4af37;
    border-left: 6px solid #d4af37;
    padding-left: 14px;
    margin-bottom: 30px;
}

/* カード一覧（トップと同じ） */
.news-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news-card {
    width: 32%;
    background: #111;
    border: 1px solid #d4af37;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
}

.news-card:hover {
    border-color: #b30000;
    box-shadow: 0 0 10px rgba(179,0,0,0.4);
}

.news-thumb {
    width: 100%;
    height: 180px;
    background: #222;
    overflow: hidden;
}

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

.noimg {
    width: 100%;
    height: 100%;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-info {
    padding: 12px;
}

.news-date {
    color: #d4af37;
    font-size: 14px;
    margin-bottom: 6px;
}

.news-item-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
}

.news-caption {
    font-size: 14px;
    color: #ccc;
}

/* ページネーション */
.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
}

.pagination a.active {
    background: #d4af37;
    color: #111;
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .news-card { width: 48%; }
}

@media (max-width: 768px) {
    .news-card { width: 100%; }
}
.news-list-page {
    width: 100%;                     /* 画面いっぱい */
    background: rgba(0,0,0,0.6);     /* store.html と同じ黒透過 */
    padding: 40px 20px;              /* 内側余白 */
    margin-top: 20px;                /* ← ヘッダーとの隙間を作る */
    margin-bottom: 60px;             /* 下の余白 */
    border-radius: 0;                /* store.html は角丸なし */
}
.breadcrumb {
    width: 100%;
    background: rgba(0,0,0,0.6);
    padding: 12px 20px;
    margin-top: 200px; /* ← ヘッダーとの隙間 */
    margin-bottom: 20px;
    color: #d4af37;
    font-size: 14px;
}

.breadcrumb a {
    color: #d4af37;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}
.news-detail-page {
    width: 100%;
    background: rgba(0,0,0,0.6);
    padding: 40px 20px;
    margin-top: 20px;
    margin-bottom: 60px;
    color: #fff;
}

.news-detail-title {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 20px;
}

.news-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37; /* 金色 */
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212,175,55,0.4); /* 金の下線 */
    letter-spacing: 1px;
    line-height: 1.4;
}

.news-detail-date {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 30px;
    padding-left: 4px;
    border-left: 3px solid #d4af37; /* 金の縦ライン */
}

.back-to-list {
    margin-bottom: 20px;
}

.back-to-list a {
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
}

.back-to-list a:hover {
    text-decoration: underline;
}
/* PC（768px以上）では70% */
.news-detail-body img {
    width: 70%;
    max-width: 900px; /* 大きすぎ防止（任意） */
    height: auto;
    display: block;
    margin: 50px auto;
    border-radius: 6px;
}

/* スマホ（768px以下）では50% */
@media (max-width: 768px) {
    .news-detail-body img {
        width: 90%;
        max-width: 100%;
        margin: 50px auto;
    }
}
