@charset "UTF-8";
/*!
 * Author: (Passion-Creator)
 * License: MIT License
*/
/* ==============================================
   基本設定
   サイト全体の基本的なデザインルール（土台）を決めます。
============================================== */
body {
    /* フォントを指定。左側が優先され、PCになければ右側のフォントが使われます。 */
    font-family: 'Zen Maru Gothic', 'BIZ UDPGothic', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    margin: 0;                          /* ブラウザが自動でつける余白をなくす */
    color: #5d4037;                     /* 基本の文字色を濃い茶色に */
    background-color: #fdfaf6;          /* 基本の背景色をクリーム色に */
    line-height: 1.8;                   /* 行の高さを少し広めにして文章を読みやすくします */
}

/* .containerは、コンテンツの幅を固定し、中央に配置するための便利クラスです */
.container {
    max-width: 1100px;                  /* コンテンツの最大幅を1100pxに */
    margin: 0 auto;                     /* 上下は0、左右は自動調整。結果として中央に配置されます */
    padding: 0 20px;                    /* 左右に余白を作り、文字が画面の端にくっつかないようにします */
}

/* h2は各セクションのタイトル文字です */
h2 {
    font-family: 'Mochiy Pop One', sans-serif; /* タイトル専用のポップなフォント */
    text-align: center;                 /* 文字を中央揃えに */
    font-size: 2.5rem;                  /* 文字の大きさを指定 */
    color: #e57373;                     /* ソフトな赤色 */
    margin-bottom: 40px;                /* タイトルの下に余白をとる */
}

/* sectionは各コンテンツのかたまりです */
section {
    padding: 60px 0;                    /* 各セクションの上下に余白を持たせる */
}


/* ==============================================
   ヘッダー
   ページ上部に表示されるロゴやメニューバーのデザインです。
============================================== */
header {
    background-color: #fff;             /* 背景色を白に */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* 薄い影をつけて立体感を出す */
    padding: 10px 0;                    /* 上下の余白 */
    position: sticky;                   /* スクロールしても画面上部にくっついてくる */
    top: 0;                             /* 上端に配置 */
    z-index: 100;                       /* 他の要素より手前に表示させる */
}

header .container {
    display: flex;                      /* 子要素（ロゴとナビ）を横並びにする */
    justify-content: space-between;     /* 両端に配置する */
    align-items: center;                /* 垂直方向の中央に揃える */
}

/* ロゴの文字スタイル */
.logo {
    font-family: 'Mochiy Pop One', sans-serif;
    color: #e57373;
    margin: 0;
}

/* ロゴのリンク設定（下線を消すため） */
.logo-link {
    text-decoration: none;
}

/* ナビゲーションメニューのリスト */
header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;                   /* リストの黒点を消す */
    display: flex;                      /* メニュー項目を横並びにする */
}

header nav ul li {
    margin-left: 25px;                  /* 各メニュー項目の左側に間隔をあける */
}

header nav a {
    text-decoration: none;              /* リンクの下線を消す */
    color: #5d4037;
    font-weight: bold;
    transition: color 0.3s;             /* 0.3秒かけて色が滑らかに変わるアニメーション */
}

header nav a:hover {
    color: #e57373;                     /* マウスが乗ったら色を変える */
}


/* ==============================================
   フッター
   ページの一番下に表示される部分のデザインです。
============================================== */
footer {
    background-color: #5d4037;          /* 濃い茶色 */
    color: #fff;                        /* 白文字 */
    text-align: center;
    padding: 20px 0;
}


/* ==============================================
   トップページ（index.html）専用スタイル
============================================== */
/* --- ヒーローセクション（一番上の大きな画像） --- */
.hero {
    background-image: url('../images/sample1.jpg'); /* 背景画像を指定 */
    background-size: cover;             /* 画像が常に要素全体を覆うように調整 */
    background-position: center;        /* 画像の中央を表示 */
    color: white;
    text-align: center;
    padding: 100px 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* 文字に影をつけて読みやすくする */
    min-height: 400px;                  /* 画像がしっかり見えるように最低限の高さを確保 */
    display: flex;                      /* 中の文字を中央寄せにするための設定 */
    align-items: center;                /* 垂直方向の中央寄せ */
    justify-content: center;            /* 水平方向の中央寄せ */
}

.hero h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
}

/* --- メニュー紹介セクション --- */
.menu-grid {
    display: grid;                      /* グリッドレイアウト（格子状の配置）を使う */
    /* 画面幅に応じて列数を自動調整。各列の最小幅は280px。 */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;                          /* 要素間の隙間 */
}

.menu-item {
    background-color: #fff;
    border-radius: 8px;                 /* 角を8px丸くする */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);        /* マウスが乗ったら少し上に動かす */
}

.menu-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.menu-item h3 {
    margin: 10px 0;
    color: #d32f2f;                     /* 少し濃い赤色 */
}

.menu-item span {
    font-weight: bold;
    font-size: 1.2rem;
    color: #5d4037;
}

/* --- お店についてセクション --- */
.about-section {
    background-color: #fff8e1;          /* 薄い黄色 */
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content img {
    max-width: 40%;
    border-radius: 8px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #e57373;
}

/* --- アクセスセクション --- */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;     /* 左右に1:1の比率で2つの列を作る */
    gap: 40px;
    align-items: center;
}

.access-info p {
    line-height: 1.8;
}


/* ==============================================
   下層ページ（メニュー・お問い合わせ）共通スタイル
============================================== */
/* --- ページタイトルエリア --- */
.page-title {
    background-color: #fff8e1;
    text-align: center;
    padding: 40px 20px;
}
.page-title h2 {
    margin-bottom: 10px;
}
.page-title p {
    margin: 0;
    font-size: 1.1rem;
}


/* ==============================================
   メニューページ（menu.html）専用スタイル
============================================== */
.menu-category {
    padding-top: 50px;
    padding-bottom: 30px;
}

.category-title {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 1.8rem;
    color: #5d4037;
    text-align: center;
    border-bottom: 3px solid #e57373; /* タイトルの下に線を引く */
    padding-bottom: 10px;
    margin-bottom: 40px;
}

/* --- ご予約ボタンエリア --- */
.cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #fff8e1;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    background-color: #e57373;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s;
    margin-top: 15px;
    font-family: 'Mochiy Pop One', sans-serif;
}

.cta-button:hover {
    background-color: #d32f2f;
}


/* ==============================================
   お問い合わせページ（contact.html）専用スタイル
============================================== */
/* --- フォーム全体 --- */
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-item {
    margin-bottom: 25px;
}

.form-item label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

/* 「必須」マークのスタイル */
.form-item .required {
    background-color: #e57373;
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

/* 入力欄（テキストボックス、セレクトボックスなど）の共通スタイル */
.form-item input[type="text"],
.form-item input[type="email"],
.form-item input[type="tel"],
.form-item select,
.form-item textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    box-sizing: border-box; /* paddingを含めて幅100%にするための設定 */
}

/* --- 送信ボタン --- */
.form-submit {
    text-align: center;
}

.form-submit button {
    background-color: #e57373;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer; /* マウスカーソルを指マークに */
    transition: background-color 0.3s;
    font-family: 'Mochiy Pop One', sans-serif;
}

.form-submit button:hover {
    background-color: #d32f2f;
}

/* --- 電話でのお問い合わせ --- */
#other-info {
    text-align: center;
    background-color: #fdfaf6;
    padding-top: 40px;
}

#other-info .phone-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #5d4037;
    margin: 10px 0;
}


/* ==============================================
   スマートフォン対応 (レスポンシブデザイン)
   画面幅が狭いときのデザインを調整します。
============================================== */
@media (max-width: 768px) {
    /* 画面幅が768px以下のときに、ここのスタイルが適用されます */
    h2 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    /* 2列のレイアウトを縦1列に変更 */
    .about-content, .access-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .about-content img {
        max-width: 100%;
    }

    /* ヘッダーのロゴとナビを縦に並べる */
    header .container {
        flex-direction: column;
    }

    header nav ul {
        margin-top: 10px;
    }
}

/* ▼▼▼▼▼ 姉妹サイト誘導CTAセクションのスタイル(不要な場合はそのまま削除してOKです。) ▼▼▼▼▼ */

.sister-cta-section {
    background-color: #f8f9fa; /* 薄い背景色 */
    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です。)  ▲▲▲▲▲ */