﻿@charset "UTF-8";
/*!
 * Author: (Passion-Creator)
 * License: MIT License
*/
/* ==============================================
   基本設定と変数
   Webサイト全体で使う「共通の部品」を定義する場所です。
   ここで色やフォントを決めておくと、後で一括で変更できて便利です。
============================================== */
:root {
    /* `--`で始まるものは「変数」です。サイトのテーマカラーなどを定義します。 */
    --bg-color: #1a1a1a;        /* 全体の背景色 (黒に近いグレー) */
    --text-color: #f0f0f0;      /* 基本の文字色 (白に近いグレー) */
    --accent-color: #dca85b;    /* アクセントカラー (金色) */
    --font-base: 'Noto Serif JP', serif; /* サイト全体の基本フォント (明朝体) */
}


/* ==============================================
   基本スタイル
   サイト全体の基本的なデザインルール（土台）を決めます。
============================================== */
html {
    scroll-behavior: smooth;            /* ページ内リンクをクリックしたときに滑らかにスクロールさせる */
}
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-base);
    margin: 0;                          /* ブラウザ標準の余白をなくす */
}
/* .containerはコンテンツの幅を決め、中央に配置するための便利クラスです。 */
.container {
    max-width: 1200px;                  /* コンテンツの最大幅を1200pxに */
    margin: 0 auto;                     /* 上下は0、左右は自動調整（結果として中央揃えになる） */
    padding: 0 24px;                    /* 内側の左右に24pxの余白を作り、文字が画面端にくっつかないようにする */
}
/* .sectionは各セクション共通のスタイルです。 */
.section {
    padding: 80px 0;                    /* 各セクションの上下に80pxの余白を持たせる */
}
/* .section-titleは各セクションのタイトル文字です。 */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}
/* .bg-darkは背景色を少し変えたい時に使う便利クラスです。 */
.bg-dark {
    background-color: #111;             /* 通常の背景色より少し暗い黒 */
}
/* 汎用ボタン（ヘッダーのご予約ボタンなど） */
.btn {
    background-color: var(--accent-color);
    color: var(--bg-color);             /* 文字色を背景と同じ濃い色に */
    padding: 10px 25px;
    border-radius: 5px;                 /* 角を少し丸くする */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;               /* 全てのプロパティが0.3秒かけて変化 */
}
.btn:hover {
    background-color: #fff;             /* マウスが乗ったら背景を白に */
    transform: scale(1.05);             /* 少しだけ拡大する */
}


/* ==============================================
   ヘッダー
   ページ上部に固定表示されるメニューバーのデザインです。
============================================== */
.header {
    background-color: rgba(26, 26, 26, 0.8); /* 半透明の黒背景 */
    backdrop-filter: blur(10px);        /* すりガラス効果 */
    padding: 20px 0;
    position: fixed;                    /* 画面の特定の位置に固定する */
    width: 100%;
    top: 0;
    z-index: 105;                       /* 他の要素より手前に表示させる */
}
.header-container {
    display: flex;                      /* 子要素（ロゴとナビ）を横並びにする */
    justify-content: space-between;     /* 両端に配置する */
    align-items: center;                /* 垂直方向の中央に揃える */
}
.header-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
}
.header-nav ul {
    margin: 0; padding: 0; list-style: none; display: flex;
}
.header-nav li {
    margin-left: 35px;
}
.header-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}
.header-nav a:hover {
    color: var(--accent-color);
}


/* ==============================================
   フッター
   ページの一番下に表示される部分のデザインです。
============================================== */
.footer {
    text-align: center;
    padding: 30px 0;
    background-color: #111;
    margin-top: 80px;
}


/* ==============================================
   トップページ（index.html）専用スタイル
============================================== */
/* --- ヒーロースライダー --- */
.hero {
    height: 100vh;                      /* 高さを画面いっぱいに */
    position: relative;                 /* 中の文字を配置する基準点にする */
    color: #fff;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;                  /* 画像の比率を保ったまま要素を埋める */
    filter: brightness(0.5);            /* 画像を少し暗くして文字を読みやすくする */
}
.hero-title {
    position: absolute;                 /* heroセクションを基準に配置 */
    top: 50%; left: 50%;                /* 上から50%、左から50%の位置に */
    transform: translate(-50%, -50%);   /* 要素自体の大きさの半分だけ戻して、完全な中央揃えに */
    text-align: center;
    z-index: 10;
}
.hero-title h1 {
    font-size: 3.5rem;
    margin: 0;
    line-height: 1.4;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7); /* 文字に影をつけて読みやすくする */
}

/* --- こだわり --- */
.concept-content {
    display: flex; align-items: center; gap: 60px;
}
.concept-text { flex: 1; }
.concept-image { flex: 1; }
.concept-image img {
    border-radius: 8px; width: 100%;
}

/* --- お知らせ --- */
.news-list { list-style: none; padding-left: 0; max-width: 800px; margin: 0 auto; }
.news-list li {
    display: flex; padding: 20px 0; border-bottom: 1px solid #444;
}
.news-list time { margin-right: 30px; color: #aaa; }

/* --- お品書き（トップページ用） --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3つの列を均等に作る */
    gap: 30px;
    margin-bottom: 50px;
}
.menu-item {
    border: 1px solid var(--accent-color);
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s;
}
.menu-item:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-10px);       /* マウスが乗ったら少し上に動かす */
}
.menu-item h3 { margin-top: 0; }
.center-btn { text-align: center; }

/* --- ギャラリー --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* --- 店舗情報 --- */
.info-flex {
    display: flex; gap: 40px; align-items: center;
}
.info-map, .info-details {
    flex: 1; /* 地図と情報が1:1の幅を持つように */
}


/* ==============================================
   下層ページ（お品書き・ご予約）専用スタイル
   pages.cssに記述されていた内容です。
============================================== */
.page-hero {
    height: 40vh;                       /* トップページよりは少し低めに設定 */
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-align: center;
}
.page-title {
    font-size: 3rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
.page-content {
    padding: 80px 0;
}

/* --- お品書きページ --- */
.menu-category { margin-bottom: 60px; }
.category-title {
    font-size: 2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: left;
}
.menu-list-item {
    display: flex; align-items: center; margin-bottom: 30px;
}
.menu-list-item img {
    width: 120px; height: 120px; object-fit: cover; border-radius: 5px; margin-right: 25px;
}
.menu-text { flex-grow: 1; }
.menu-text h3 { margin: 0 0 8px; font-size: 1.3rem; }
.menu-text .description { margin: 0; color: #aaa; }
.price { font-size: 1.2rem; font-weight: bold; width: 150px; text-align: right; }

/* --- ご予約ページ --- */
.reserve-wrapper { max-width: 700px; margin: 0 auto; }
.reserve-note {
    background-color: #222; padding: 20px; border-radius: 5px;
    text-align: center; line-height: 1.8; margin-bottom: 40px;
}
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: bold; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px; font-size: 1rem;
    background-color: #333; color: var(--text-color);
    border: 1px solid #555; border-radius: 5px;
    box-sizing: border-box; /* paddingを含めて幅を100%にする */
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent-color);
}
.form-submit { text-align: center; margin-top: 40px; }


/* ==============================================
   ハンバーガーメニュー
============================================== */
/* ボタンのスタイル */
.sp-menu-btn {
    display: none; /* PCでは非表示 */
    position: relative;
    z-index: 110; /* ヘッダー(105)より手前に */
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}
.sp-menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    left: 5px;
    transition: transform 0.4s, opacity 0.4s;
}
.sp-menu-btn span:nth-child(1) { top: 10px; }
.sp-menu-btn span:nth-child(2) { top: 19px; }
.sp-menu-btn span:nth-child(3) { bottom: 10px; }

/* ナビゲーションパネルのスタイル */
.sp-nav {
    display: none; /* PCでは非表示 */
    position: fixed;
    top: 0;
    right: -100%; /* 初期状態は画面外 */
    width: 100%;
    max-width: 300px; /* パネルの最大幅 */
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: right 0.5s;
    padding-top: 80px;
}
.sp-nav ul { list-style: none; padding: 0; }
.sp-nav li { text-align: center; margin-bottom: 30px; }
.sp-nav a { color: var(--text-color); text-decoration: none; font-size: 1.2rem; }
.sp-nav .btn { display: inline-block; } /* 予約ボタンの表示調整 */


/* --- メニューオープン時のスタイル --- */
/* JSでbodyに.menu-openクラスが付いた時の変化 */
.menu-open .sp-menu-btn span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}
.menu-open .sp-menu-btn span:nth-child(2) {
    opacity: 0;
}
.menu-open .sp-menu-btn span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}
.menu-open .sp-nav {
    right: 0; /* 画面内にスライドイン */
}


/* ==============================================
   スクロールアニメーション
============================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}
/* JavaScriptによって.visibleクラスが付与されたときのスタイル */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==============================================
   レスポンシブ対応
   画面幅が狭い（スマホなど）のときのデザインを調整します。
============================================== */
@media (max-width: 768px) {
    /* 画面幅が768px以下のときに適用 */
    .section-title { font-size: 1.8rem; }
    #pc-nav, .header-btn { display: none; } /* PC用ナビとボタンを非表示 */
    .sp-menu-btn, .sp-nav { display: block; }  /* SP用ボタンとナビパネルを表示可能に */
    .hero-title h1 { font-size: 2rem; }
    .concept-content, .info-flex { flex-direction: column; } /* 横並びを縦並びに変更 */
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-list-item { flex-direction: column; align-items: flex-start; }
    .menu-list-item img { margin-bottom: 15px; }
    .price { text-align: left; margin-top: 10px; }
}

/* ▼▼▼▼▼ 姉妹サイト誘導CTAセクションのスタイル(不要な場合はそのまま削除してOKです。) ▼▼▼▼▼ */

.sister-cta-section {
    background-color: #696969; /* 薄い背景色 */
    padding: 5rem 2rem;
    margin-top: 4rem; /* フォームとの間隔 */
    border-top: 1px solid #e9ecef;
}

.sister-cta-content {
    display: flex;
    flex-direction: column-reverse; /* スマホではテキストが先 */
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.sister-cta-text {
    flex: 2; /* テキストエリアの幅を広めに */
}

.sister-cta-lead {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color, #e67e22); /* テーマカラー or オレンジ */
    margin: 0 0 0.5rem 0;
}

.sister-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.sister-cta-text p {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 2.5rem;
}

.sister-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(135deg, #f39c12, #e67e22); /* グラデーションボタン */
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3);
}

.sister-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    opacity: 1; /* a:hoverのデフォルトopacityを上書き */
}

.sister-cta-image {
    flex: 1;
    max-width: 250px;
}
.sister-cta-image img {
    width: 100%;
    border-radius: 12px;
}

/* PC表示でのレイアウト調整 */
@media (min-width: 768px) {
    .sister-cta-content {
        flex-direction: row; /* PCでは横並び */
        gap: 4rem;
        text-align: left;
    }
}

/* ▲▲▲▲▲ 姉妹サイト誘導CTAセクションのスタイル(不要な場合はそのまま削除してOKです。)  ▲▲▲▲▲ */