/* 変数定義：色の管理 */
:root {
    --bg-color: #FdfcFae; /* オフホワイト */
    --bg-light: #F4F3F0; /* 薄いグレーベージュ */
    --text-main: #5e5b52; /* 濃いグレー（黒ではない） */
    --text-light: #8c8a80; /* 薄いグレー */
    --accent: #8E8070; /* アクセントのブラウン */
    --font-serif: "Shippori Mincho", serif;
    --font-sans: "Noto Sans JP", sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-weight: 300; /* 細めの文字 */
    font-size: 15px; /* 少し小さめ */
    line-height: 2.0; /* 行間を広めに */
    letter-spacing: 0.08em; /* 文字間を広めに */
    margin: 0;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.6;
}

/* レイアウト共通 */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-container {
    max-width: 600px; /* 文章中心の箇所は幅を狭く */
}

.text-center { text-align: center; }

/* ヘッダー */
.site-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}
/* ロゴの下のキャッチコピー */
.logo-caption {
    font-size: 0.7rem;       /* 文字を小さく */
    color: var(--text-light);/* 薄いグレーで控えめに */
    margin: 5px 0 0 0;       /* 上に少し隙間、他は0 */
    letter-spacing: 0.05em;  /* 文字間隔を少し調整 */
    font-family: var(--font-sans); /* ゴシック体で読みやすく */
    line-height: 1.2;
}

/* スマホで見た時に文字が大きすぎないよう調整（任意） */
@media (max-width: 768px) {
    .logo-caption {
        font-size: 0.6rem;
    }
}

.site-header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

/* --- ヒーローエリア（スライドショー）のスタイルここから --- */

.hero {
    position: relative; /* 子要素の基準位置にする */
    height: 60vh;       /* 高さはそのまま */
    width: 100%;
    overflow: hidden;   /* はみ出した部分を隠す */
    background-color: #333; /* 読み込み前の背景色 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* スライド内のリンクをブロック要素にし、親要素いっぱいに広げる */
.slide a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer; /* クリックできることを示す指カーソル */
}

/* リンクホバー時に少し画像を拡大する演出（お好みで） */
.slide a:hover img {
    transform: scale(1.05);
    transition: transform 5s ease; /* ゆっくり拡大 */
}
/* --- ヒーローエリア（スライドショー）のスタイルここまで --- */

/* スライダー全体の枠 */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* 一番奥 */
}

/* 各スライド（画像・動画） */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;           /* 通常は非表示 */
    transition: opacity 2s ease-in-out; 
    
    /* ★以下を追加：隠れている時はクリックを無効にする */
    pointer-events: none;
}

.slide.active {
    opacity: 1;           /* activeクラスがついたら表示 */

    /* ★以下を追加：表示されている時だけクリック有効にする */
    pointer-events: auto; 
    z-index: 1; /*念のため手前に表示*/
}

/* 画像と動画のサイズ調整 */
.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* 画面いっぱいにトリミングして表示 */
}

/* 文字を見やすくするための薄い黒フィルター */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* 黒の20%透明 */
    z-index: 2;
pointer-events: none; /* クリックを通過させる */
}

/* 中央のテキスト */
.hero-text {
    position: relative;
    z-index: 10;          /* 画像より手前に表示 */
    color: #fff;          /* 背景が写真になるので白文字に変更 */
    text-shadow: 0 2px 5px rgba(0,0,0,0.5); /* 読みやすく影をつける */
pointer-events: none; /* クリックを通過させる */
}

.hero-text .en {
    color: rgba(255, 255, 255, 0.9); /* 英語部分も白っぽく */
}

/* セクション */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--accent);
}

.bg-light {
    background-color: var(--bg-light);
}

/* カードグリッド（ワークショップ一覧） */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card-image {
    height: 200px;
    background-color: #ddd; /* 画像がない場合のプレースホルダー */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.price {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.desc {
    font-size: 0.85rem;
}

/* 予約ボタン */
.btn-reserve {
    display: inline-block;
    border: 1px solid var(--text-main);
    padding: 12px 40px;
    margin-top: 30px;
    font-size: 0.9rem;
    border-radius: 2px;
}

.btn-reserve:hover {
    background-color: var(--text-main);
    color: #fff;
    opacity: 1;
}

/* --- フッターエリア（濃いグレーに変更） --- */
.site-footer {
    background-color: #3e3e3c; /* 濃いウォームグレー */
    color: #dcdcd0; /* 文字はオフホワイト */
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.site-footer a {
    color: #dcdcd0;
}

/* 3カラムレイアウト */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3等分 */
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

/* 左：ロゴとコンセプト */
.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.footer-concept {
    font-size: 0.85rem;
    line-height: 2.2;
    opacity: 0.8;
}

/* 見出し共通 */
.footer-section h3 {
    font-family: var(--font-sans); /* 情報は見やすくゴシック体 */
    font-size: 1rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #666; /* 下線で区切り */
    padding-bottom: 10px;
    display: inline-block;
    min-width: 100px;
}

/* 中：店舗情報リスト */
.info-list {
    margin: 0;
    line-height: 1.8;
}

.info-list dt {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 15px;
}

.info-list dt:first-child {
    margin-top: 0;
}

.info-list dd {
    margin-left: 0;
    margin-bottom: 5px;
}

/* 右：マップ */
.map-frame iframe {
    width: 100%;
    height: 180px;
    filter: grayscale(100%); /* 地図をモノクロにして世界観を統一 */
    border-radius: 4px;
    transition: filter 0.3s;
}

.map-frame iframe:hover {
    filter: grayscale(0%); /* ホバー時にカラーに戻す */
}

/* 下部：リンクと著作権 */
.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.5;
    margin: 0;
}

/* スマホ対応（縦積みに変更） */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1カラムにする */
        gap: 50px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* カレンダーナビゲーション */
.calendar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    font-family: var(--font-serif);
}

#current-month-label {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    min-width: 120px;
    text-align: center;
}

.nav-btn {
    background: none;
    border: 1px solid var(--text-light);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3px; /* 記号の位置微調整 */
}

.nav-btn:hover {
    background-color: var(--text-main);
    color: #fff;
    border-color: var(--text-main);
}

/* --- ここから追記 --- */

/* スケジュール表のデザイン */
.schedule-list {
    border-top: 1px solid #ddd;
    margin-bottom: 60px;
}

.schedule-row {
    display: flex; /* これがないと横並びになりません */
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.95rem;
}

/* 日付 */
.schedule-row .date {
    font-family: var(--font-serif);
    font-weight: 500;
    width: 15%;
}
.schedule-row .day {
    font-size: 0.8rem;
}

/* 時間とメニュー */
.schedule-row .time {
    width: 20%;
    font-size: 0.9rem;
    color: var(--text-light);
}

.schedule-row .menu {
    width: 40%;
    font-weight: 500;
}

/* 空き状況（ステータス） */
.schedule-row .status {
    width: 20%;
    text-align: right;
    font-size: 0.8rem;
    font-weight: bold;
}

/* ステータスの色分け */
.status-open {
    color: var(--accent);
}

.status-few {
    color: #d4a373;
}

.status-full {
    color: #ccc;
    text-decoration: line-through;
}

/* お問い合わせエリア */
.contact-area .note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .schedule-row {
        flex-wrap: wrap;
    }
    .schedule-row .date { width: 100%; margin-bottom: 5px; }
    .schedule-row .time { width: 100%; margin-bottom: 5px; }
    .schedule-row .menu { width: 70%; }
    .schedule-row .status { width: 30%; }
}

/* --- Craftsmanページ専用スタイル --- */
.profile-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}
.profile-img { flex: 1; min-width: 300px; }
.img-placeholder {
    width: 100%; height: 400px; background-color: #dcdcd0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font-serif);
}
.profile-text { flex: 1; }
.craftsman-name { font-family: var(--font-serif); margin-bottom: 10px; line-height: 1.2; }
.craftsman-name .en { display: block; font-size: 1.2rem; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 5px; }
.craftsman-name .ja { font-size: 1.8rem; }
.titles { font-size: 0.85rem; color: var(--text-light); border-bottom: 1px solid #ddd; padding-bottom: 20px; margin-bottom: 20px; display: inline-block; }
.interview-content h3 { font-size: 1.3rem; margin-bottom: 30px; text-align: center; color: var(--text-main); }
.history-list { border-top: 1px solid #ddd; }
.history-row { display: flex; padding: 15px 0; border-bottom: 1px solid #ddd; font-size: 0.95rem; }
.history-row dt { width: 20%; font-family: var(--font-serif); font-weight: 500; color: var(--accent); }
.history-row dd { width: 80%; margin: 0; }
@media (max-width: 768px) {
    .profile-wrap { flex-direction: column; gap: 30px; }
    .profile-img { width: 100%; min-width: auto; }
    .img-placeholder { height: 300px; }
    .history-row { flex-direction: column; }
    .history-row dt { margin-bottom: 5px; }
}

/* --- Craftsmanページ専用スタイル（更新版） --- */

/* インデックス（目次）エリア */
.craftsman-index {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.index-card {
    text-align: center;
    width: 150px;
    display: block;
    transition: transform 0.3s opacity 0.3s;
}

.index-card:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.index-img {
    width: 100px;
    height: 100px;
    background-color: #dcdcd0; /* 写真が入るまでグレー */
    border-radius: 50%; /* 丸く切り抜き */
    margin: 0 auto 15px;
    /* 写真を入れる時は background-image: url(...); を設定 */
}

.index-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 5px;
}

.index-cat {
    font-size: 0.75rem;
    color: var(--text-light);
}


/* 詳細エリア：デザイン調整 */
.craftsman-detail {
    padding-top: 60px; /* 目次からのジャンプ位置調整 */
    padding-bottom: 60px;
}

.profile-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
}

.profile-img { flex: 1; min-width: 300px; }
.img-placeholder {
    width: 100%; height: 400px; background-color: #dcdcd0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font-serif);
}
.profile-text { flex: 1; }
.craftsman-name { font-family: var(--font-serif); margin-bottom: 10px; line-height: 1.2; }
.craftsman-name .en { display: block; font-size: 1.2rem; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 5px; }
.craftsman-name .ja { font-size: 1.8rem; }
.titles { font-size: 0.85rem; color: var(--text-light); border-bottom: 1px solid #ddd; padding-bottom: 20px; margin-bottom: 20px; display: inline-block; }
.desc-text { line-height: 1.8; text-align: justify; }

/* 詳細コンテンツの背景 */
.detail-content {
    padding: 60px 40px;
    border-radius: 4px;
}

.interview-content h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--text-main); }
.interview-content { margin-bottom: 40px; }
.history-area h4 { font-family: var(--font-serif); font-size: 1.1rem; border-bottom: 1px solid #ccc; padding-bottom: 10px; margin-bottom: 20px; }

.history-row { display: flex; padding: 10px 0; border-bottom: 1px solid #e0e0e0; font-size: 0.9rem; }
.history-row dt { width: 15%; font-weight: bold; color: var(--accent); }
.history-row dd { width: 85%; margin: 0; }

/* 工芸士ごとの区切り線 */
.craftsman-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 0 auto;
    width: 80%;
    max-width: 900px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .profile-wrap { flex-direction: column; gap: 30px; }
    .profile-img { width: 100%; min-width: auto; }
    .img-placeholder { height: 300px; }
    .history-row { flex-direction: column; }
    .history-row dt { margin-bottom: 5px; }
    .detail-content { padding: 40px 20px; }
}

/* --- 外部フォーム埋め込み（iframe）用のスタイル --- */

.form-title {
    text-align: center;
    font-size: 1.2rem;
    margin: 40px 0 20px;
    font-family: var(--font-serif);
}

.iframe-wrapper {
    width: 100%;
    max-width: 1200px; /* フォームの最大幅はお好みで調整 */
    margin: 0 auto;
    background-color: #fff;
    /* 枠線や影をつけたい場合は以下を有効化 */
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
    /* border-radius: 4px; */
    /* overflow: hidden; */
}

.booking-frame {
    width: 100%;
    height: 1200px; /* ★重要：フォームの長さに合わせて調整してください */
    border: none;
    display: block;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .booking-frame {
        height: 1400px; /* スマホだと縦に伸びることが多いため長めに設定 */
    }
}

/* --- 特定商取引法ページ用スタイル --- */

.legal-list {
    border-top: 1px solid #ddd;
    margin-top: 20px;
    font-size: 0.95rem;
}

.legal-row {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
    line-height: 1.8;
}

/* 項目名（左側） */
.legal-row dt {
    width: 30%;
    font-weight: 500;
    color: var(--text-main);
    padding-right: 20px;
    box-sizing: border-box;
    font-family: var(--font-serif); /* 項目名は明朝体で上品に */
}

/* 内容（右側） */
.legal-row dd {
    width: 70%;
    margin: 0;
    color: var(--text-main);
}

/* 英語表記（小さく薄く） */
.en-sub {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: #999;
    font-weight: normal;
    margin-top: 3px;
    line-height: 1.4;
}

/* 注釈など */
.notice {
    font-size: 0.85rem;
    color: #8E8070; /* アクセントカラーを使用 */
}

/* スマホ対応 */
@media (max-width: 600px) {
    .legal-row {
        flex-direction: column; /* 縦積みに */
        padding: 20px 0;
    }
    
    .legal-row dt {
        width: 100%;
        margin-bottom: 10px;
        padding-right: 0;
        border-bottom: 1px dotted #eee; /* スマホ時は項目下に点線 */
        padding-bottom: 5px;
    }

    .legal-row dd {
        width: 100%;
    }
}

/* --- 特商法ページの注意事項リスト --- */
.legal-notes-list {
    margin: 0;
    padding: 0 0 0 1em; /* 左側に少しインデント */
    list-style: none; /* デフォルトの黒丸を一旦消す */
}

.legal-notes-list li {
    position: relative;
    margin-bottom: 8px; /* 行間を少し空ける */
    line-height: 1.6;
}

/* 独自の小さな点（・）をつける */
.legal-notes-list li::before {
    content: "・"; /* 点の形（中黒） */
    position: absolute;
    left: -1em; /* 本文の左側に配置 */
    color: #999; /* 少し薄いグレーにして上品に */
}

/* --- ヘッダーメニューの2段表示用スタイル --- */

/* リストアイテムの配置調整 */
.site-header nav ul {
    list-style: none;
    display: flex;
    gap: 30px; /* メニュー同士の間隔 */
    margin: 0;
    padding: 0;
    align-items: center;
}

/* リンク全体の設定 */
.site-header nav a {
    display: flex;
    flex-direction: column; /* 上下に積む */
    align-items: center;    /* 中央揃え */
    text-decoration: none;
    color: var(--text-main);
    line-height: 1.2;       /* 行間を狭く */
    transition: opacity 0.3s;
}

.site-header nav a:hover {
    opacity: 0.6;
}

/* 上段：英語 */
.site-header nav .en {
    font-size: 0.95rem;
    font-family: var(--font-serif); /* 明朝体で上品に */
    letter-spacing: 0.05em;
}

/* 下段：日本語 */
.site-header nav .ja {
    font-size: 0.65rem;     /* 小さく */
    font-family: var(--font-sans); /* 読みやすいゴシック体 */
    margin-top: 3px;        /* 英語との隙間 */
    opacity: 0.7;           /* 少し色を薄くして主張を抑える */
    font-weight: normal;
}

/* スマホ対応（画面が狭い時） */
@media (max-width: 768px) {
    .site-header nav ul {
        gap: 15px; /* 間隔を詰める */
    }
    .site-header nav .en { font-size: 0.8rem; }
    .site-header nav .ja { font-size: 0.55rem; }
}

/* --- バイリンガル表記用スタイル --- */

/* 本文中の英語（日本語の下にブロックで表示） */
.text-en {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.8em;
    line-height: 1.6;
    font-family: var(--font-sans);
    font-weight: normal;
}

/* ヒーローエリアの英語 */
.hero-text .en {
    display: block;
    font-size: 1rem;
    margin-top: 15px;
    color: var(--text-main);
    opacity: 0.7;
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
}

/* フッター情報の英語 */
.info-list .en-addr {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 5px;
    line-height: 1.4;
}

/* カード内の英語（説明文） */
.card-content .desc .en {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #999;
}

/* --- クラフトマン名横のアイコン調整 --- */
.kita-icon {
    height: 0.8em;       /* 文字の高さに対して8割くらいのサイズ */
    width: auto;         /* 横幅は自動 */
    vertical-align: middle; /* 文字の垂直位置の中央に合わせる */
    margin-left: 0.4em;  /* 名前との間に少し隙間を空ける */
    margin-bottom: 0.2em; /* 位置の微調整 */
    opacity: 0.8;        /* 少し透明にして馴染ませる（お好みで調整） */
}

/* --- プロフィール画像下の認定マーク調整 --- */
.kita-mark-area {
    text-align: right; /* 右寄せにする（左寄せなら left, 中央なら center） */
    margin-top: 10px;  /* 写真との隙間 */
}

.kita-mark-img {
    width: 40px;      /* マークの幅（小さめに設定） */
    height: auto;
    opacity: 0.9;
}

/* スマホで見た時の調整 */
@media (max-width: 768px) {
    .kita-mark-area {
        text-align: center; /* スマホでは中央寄せが見やすい */
    }
}

/* --- プロフィールヘッダー（名前とマークの横並び） --- */
.profile-header {
    display: flex;
    justify-content: space-between; /* 左右に配置 */
    align-items: flex-start;        /* 上揃え */
    border-bottom: 1px solid #ddd;  /* 下に区切り線 */
    padding-bottom: 10px;           /* 線との余白 */
    margin-bottom: 20px;
}

/* 左側のエリア（名前と職種） */
.header-left {
    flex: 1; /* 余ったスペースを使う */
    padding-right: 20px;
}

/* 既存のボーダーを消すためのクラス */
.titles.no-border {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 5px;
}

/* --- 認定マーク（画像＋文字）のデザイン --- */
.kita-mark-area {
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: center;    /* 中央揃え */
    width: 80px;            /* 幅を固定してレイアウト崩れ防止 */
    flex-shrink: 0;         /* 縮まないようにする */
}

.kita-mark-img {
    width: 50px;            /* 画像サイズ調整 */
    height: auto;
    margin-bottom: 5px;
}

.kita-mark-text {
    font-size: 0.55rem;     /* 文字を極小に */
    font-family: var(--font-sans);
    color: var(--text-main);
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;    /* 改行させない */
}

/* スマホ対応 */
@media (max-width: 600px) {
    .profile-header {
        /* スマホでも横並びを維持する場合 */
        align-items: center;
    }
    .kita-mark-img {
        width: 40px;
    }
}

/* --- ロゴ画像の調整 --- */
.logo-img {
    height: 50px;       /* ロゴの高さを指定（お好みで40px〜60px等に調整してください） */
    width: auto;        /* 横幅は自動調整 */
    vertical-align: bottom; /* 下のキャッチコピーとの間隔調整 */
    margin-bottom: 5px; /* 画像の下に少し余白 */
}

/* スマホで見た時のサイズ調整 */
@media (max-width: 768px) {
    .logo-img {
        height: 40px; /* スマホでは少し小さめに */
    }
}

/* --- スマホ時のヘッダー重なり防止修正 --- */
@media (max-width: 768px) {
    /* ヘッダー全体を縦並びに変更 */
    .site-header {
        flex-direction: column; /* 縦積み */
        gap: 20px;              /* ロゴとメニューの間隔 */
        padding: 20px 15px;     /* 全体の余白調整 */
    }

    /* ロゴエリアを中央揃え */
    .site-branding {
        width: 100%;
        text-align: center;
    }

    /* メニューを中央揃えにし、幅が足りない場合は折り返す */
    .site-header nav ul {
        justify-content: center;
        flex-wrap: wrap;        /* メニューが多くても2行になるように */
        gap: 15px 20px;         /* 縦・横の間隔 */
        width: 100%;
    }
}

/* --- ワークショップ画像の調整 --- */
.card-image {
    padding: 0;           /* 余白をなくす */
    background-color: transparent; /* 背景色を透明に */
    overflow: hidden;     /* はみ出した部分を隠す */
    border-radius: 4px 4px 0 0; /* 角を少し丸く */
}

.workshop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* 枠に合わせてトリミングして埋める */
    transition: transform 0.5s ease; /* ホバー時の動き用 */
}

/* ホバー時に少し画像を拡大する演出（お好みで） */
.card:hover .workshop-img {
    transform: scale(1.1);
}

/* --- ワークショップ詳細ページ用 --- */

.workshop-detail-section {
    padding: 60px 0;
}

/* 画像とテキストの横並びレイアウト */
.detail-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* 偶数番目の項目を左右反転させるクラス */
.detail-layout.reverse {
    flex-direction: row-reverse;
}

.detail-img {
    flex: 1;
}

.img-fluid {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.detail-info {
    flex: 1;
}

.detail-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent);
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.en-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

/* スペック表 */
.spec-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.spec-table th,
.spec-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.spec-table th {
    width: 30%;
    color: var(--accent);
    font-weight: 500;
}

.en-th {
    display: block;
    font-size: 0.7rem;
    color: #999;
    font-weight: normal;
}

.en-td {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: 3px;
}

.tax {
    font-size: 0.8rem;
    color: #888;
}

/* 小さめの予約ボタン */
.btn-reserve.btn-sm {
    padding: 10px 30px;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* 戻るリンク */
.back-link {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 40px;
    transition: all 0.3s;
}

.back-link:hover {
    background-color: var(--text-main);
    color: #fff;
    border-color: var(--text-main);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .detail-layout,
    .detail-layout.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .spec-table th {
        width: 35%;
    }
}

/* --- 詳細ページ：画像2枚（縦並び）の設定 --- */

.detail-img.double-img-vertical {
    display: flex;
    flex-direction: column; /* 縦方向に並べる */
    gap: 20px;              /* 画像同士の隙間 */
}

.detail-img.double-img-vertical .img-fluid {
    width: 100%;            /* 横幅いっぱいに広げる */
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* （微調整）縦に長くなりすぎるのを防ぎたい場合 */
/* 画像の高さ制限をかけたい場合は以下を有効化してください */
/* .detail-img.double-img-vertical .img-fluid {
    max-height: 300px;
    object-fit: cover;
} 

/* スマホ対応：スマホでも横並びを維持するか、縦にするか */
@media (max-width: 600px) {
    .detail-img.double-img {
        flex-direction: column; /* スマホでは縦並びにして大きく見せる */
    }
    .detail-img.double-img .img-fluid {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* --- フッターSNSリンクのデザイン --- */

.footer-sns {
    margin-top: 20px;       /* 地図との隙間 */
    display: flex;          /* 横並びにする */
    gap: 20px;              /* リンク同士の間隔 */
    align-items: center;    /* 高さ揃え */
}

.sns-link {
    color: #dcdcd0;         /* 文字色（フッターの文字色に合わせる） */
    font-size: 0.9rem;      /* 少し小さめに */
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid transparent; /* ホバー時の下線準備 */
    transition: all 0.3s;
    opacity: 0.8;
}

.sns-link:hover {
    opacity: 1;
    border-bottom: 1px solid #dcdcd0; /* ホバー時に下線を引く */
}

/* スマホ対応 */
@media (max-width: 768px) {
    .footer-sns {
        justify-content: center; /* スマホでは中央寄せ */
    }
}

/* --- ここから追加 --- */

/* フッター全体をFlexboxコンテナにする */
footer {
  display: flex;
  flex-direction: column; /* 中身を縦方向に並べる */
  align-items: center;    /* 中身を横方向の中央に揃える */
  padding: 50px 0 20px;   /* 上下の余白 */
}

/* ロゴとナビゲーションの下に間隔を空ける */
.logo_footer,
.nav_footer {
  margin-bottom: 30px; /* 間隔はお好みで調整してください */
}

/* --- ここまで追加 --- */

/* スライド画像をリンクにした場合のスタイル調整 */
.slide a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer; /* マウスカーソルを指マークに */
}

/* リンク付き画像のホバー効果（お好みで） */
.slide a:hover img {
    opacity: 0.9;
    transition: opacity 0.3s;
}

/* --- Aboutセクションのレイアウト調整（Instagram横並び用） --- */

.about-flex {
    display: flex;
    align-items: center;    /* 垂直方向中央揃え */
    justify-content: center;
    gap: 40px;              /* テキストとInstagramの間隔 */
}

/* テキストエリア */
.about-text-area {
    flex: 1;                /* 幅を均等に割り振る */
    min-width: 300px;       /* 極端に狭くならないように */
}

/* Instagramエリア */
.about-insta-area {
    flex: 1;
    min-width: 300px;
    max-width: 500px;       /* 埋め込みが広がりすぎないように制限 */
    /* ▼▼ ここから追加・変更 ▼▼ */
    height: 600px;       /* ★ここで高さを指定（半分くらいなら350px〜450pxが目安） */
    overflow-y: auto;    /* ★枠からはみ出た部分をスクロール表示にする */
    display: block;      /* FlexからBlockに変更してスクロール挙動を安定させる */
    border: 1px solid #eee; /* お好みで枠線を追加 */
    border-radius: 4px;     /* 角を少し丸く */
    /* ▲▲ ここまで ▲▲ */
}
/* スマホ対応：画面が狭い時は縦並びにする */
@media (max-width: 768px) {
    .about-flex {
        flex-direction: column; /* 縦並び */
    }
    
    .about-text-area, 
    .about-insta-area {
        width: 100%;        /* 横幅いっぱい */
        max-width: 100%;
    }
    
    .about-text-area {
        margin-bottom: 30px; /* 縦並び時のテキスト下の余白 */
    }
}