@charset "utf-8";

/*!
Theme Name: Funny Tips 2026
Description: アサイー＆フレンチトーストがメインの、お洒落で健全なステージ付きカフェ＆バー
Version: 1.0.0
Text Domain: funnytips2026
*/

/* =========================================
   1. 基本リセット & 共通変数 (Base & Variables)
   ========================================= */
*, *::before, *::after { box-sizing: border-box; }

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; text-rendering: optimizeSpeed; line-height: 1.8; color: var(--text-cafe); background-color: var(--bg-cafe); }
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }
img, picture { max-width: 100%; display: block; height: auto; }
input, button, textarea, select { font: inherit; }


:root {
    --bg-cafe: #FAF8F5;       
    --text-cafe: #4A3E3A;     
    --text-sub: #8A7E7A;      
    --accent-pink: #E8D3CD;   
    --accent-green: #BACDB0;  
    --card-white: #ffffff;
}

html {
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    background-color: var(--bg-cafe);
}


.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto !important;
    padding: 0 25px;
}


.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-cafe);
}
.section-title .subtitle {
    display: block;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--accent-green);
    text-transform: uppercase;
    margin-top: 10px;
}


/* =========================================
   2. ヘッダーナビゲーション (PC & モバイル / 透明エフェクト)
   ========================================= */
.main-navigation li,
.header-nav li,
.nav-menu li {
    list-style: none !important;
    list-style-type: none !important; 
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.site-header {
    position: fixed !important;
    top: 0; left: 0; width: 100%;
    z-index: 9999;
    background-color: transparent !important;
    border-bottom: 1px solid transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 22px 0 !important;
    transition: all 0.4s ease !important;
}

.site-header.header-scrolled {
    padding: 14px 0 !important;
    background-color: rgba(250, 248, 245, 0.96) !important;
    border-bottom: 1px solid rgba(74, 62, 58, 0.05) !important;
    box-shadow: 0 4px 20px rgba(74, 62, 58, 0.04) !important;
    backdrop-filter: blur(8px) !important;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.site-branding {
    padding: 10px 0;
}
.ft-header-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    transition: opacity 0.3s ease;
}
.ft-header-logo-link:hover {
    opacity: 0.85;
}
.ft-header-logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 50%;
}
.ft-header-logo-text {
    font-family: 'Times New Roman', serif;
    font-size: 26px;
    font-weight: bold;
    color: var(--text-cafe) !important;
    letter-spacing: 0.03em;
    line-height: 1;
}

/* ナビゲーションメニュー配置 */
.main-navigation {
    display: flex !important;
    align-items: center !important;
}
.ft-menu-container ul {
    display: flex !important;
    align-items: center !important;
    gap: 40px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.main-navigation ul li a {
    font-family: "Hiragino Kaku Gothic ProN", sans-serif !important;
    font-size: 13px !important; 
    font-weight: 400 !important;
    letter-spacing: 0.15em !important; 
    color: var(--text-cafe) !important;
    position: relative !important;
    padding: 6px 0 !important;
    opacity: 1 !important;
    transition: color 0.3s ease !important;
    display: block !important;
}

/* ホバー時の美しい下線エフェクト */
.main-navigation ul li a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0; left: 0;
    width: 100% !important;
    height: 1px !important;
    background-color: #e6caa4 !important; 
    transform: scaleX(0) !important;
    transition: transform 0.3s ease !important;
}
.main-navigation ul li a:hover { color: #e6caa4 !important; }
.main-navigation ul li a:hover::after { transform: scaleX(1) !important; }


.theme-default-burger, .menu-toggle, button.menu-toggle {
    display: none !important; visibility: hidden !important; width: 0 !important; height: 0 !important; margin: 0 !important; padding: 0 !important;
}

/* ＝ 新設ハンバーガーボタン（スマホ専用） ＝ */
.ft-burger-btn {
    display: none !important;
    background: none !important;
    border: none !important;
    width: 30px !important;
    height: 24px !important;
    position: relative !important;
    cursor: pointer !important;
    z-index: 10001 !important;
    padding: 0 !important;
}
.ft-burger-btn span {
    display: block !important; width: 100% !important; height: 2px !important; background-color: #4A3E3A !important; position: absolute !important; left: 0 !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.ft-burger-btn span:nth-child(1) { top: 0 !important; }
.ft-burger-btn span:nth-child(2) { top: 11px !important; }
.ft-burger-btn span:nth-child(3) { top: 22px !important; }

/* 開閉タップ時：「×」に変形 */
.ft-burger-btn.is-active span:nth-child(1) { transform: translateY(11px) rotate(45deg) !important; }
.ft-burger-btn.is-active span:nth-child(2) { opacity: 0 !important; }
.ft-burger-btn.is-active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg) !important; }


/* =========================================
   3. トップページ専用：メインビジュアル (Hero)
   ========================================= */
.hero-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-cafe);
    padding-top: 80px;
}
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.hero-text-area {
    flex: 1;
    max-width: 480px;
}
.hero-sub-title {
    font-size: 13px;
    letter-spacing: 0.25em;
    color: var(--text-sub);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-copy {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-cafe);
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}
.hero-lead {
    font-size: 15px;
    color: var(--text-sub);
    line-height: 1.8;
}
.hero-image-area {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* 🧙‍♂️ メインスライダー：枠の高さを500pxに強制統一してガタつきを完全粉砕 */
.ft-hero-swiper {
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px !important;
}
.ft-hero-swiper .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    border-radius: 20px !important;
}
.ft-hero-swiper .swiper-slide img {
    width: 100% !important;
    height: 500px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
}


/* =========================================
   4. トップページ専用：メニューグリッド概要
   ========================================= */
.menu-section {
    padding: 80px 0;
    background-color: var(--bg-cafe);
}
.menu-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}
.menu-card {
    flex: 1;
    background-color: var(--card-white);
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(74, 62, 58, 0.03);
    text-align: center;
}
.menu-card-img {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-card h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-cafe);
}
.menu-card p {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.6;
}


/* =========================================
   5. トップページ専用：ステージ概要セクション (16:9 救出版)
   ========================================= */
.stage-section {
    padding: 100px 0;
    background-color: var(--card-white);
    border-radius: 50px 50px 0 0;
}
.stage-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* 💡【超変化】箱の縦横比を写真(16:9)と完全シンクロさせ、左右の見切れを100%防止 */
.ft-stage-swiper {
    flex: 1;
    width: 100%;
    height: auto !important;
    aspect-ratio: 16 / 9; 
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.ft-stage-swiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.stage-text-box {
    flex: 1;
}
.stage-text-box h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-cafe);
}
.stage-text-box p {
    font-size: 15px;
    color: var(--text-sub);
    line-height: 1.8;
    margin-bottom: 30px;
}


/* =========================================
   6. トップページ専用：Newsセクション＆タブ切り替え
   ========================================= */
.ft-top-news-section {
    background-color: var(--bg-cafe);
    padding: 80px 0;
}
.ft-top-news-title {
    text-align: center;
    font-family: 'Times New Roman', serif;
    font-size: 32px;
    color: var(--text-cafe);
    margin-bottom: 10px;
    font-weight: bold;
}
.ft-top-news-subtitle {
    text-align: center;
    font-size: 11px;
    color: var(--text-sub);
    margin-bottom: 50px;
    letter-spacing: 0.2em;
}

/* タブ切り替えエリア */
.ft-news-tabs {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(74, 62, 58, 0.1);
    padding-bottom: 15px;
}
.ft-tab-btn {
    background: none;
    border: none;
    font-size: 15px;
    color: var(--text-sub);
    cursor: pointer;
    padding: 10px 20px;
    position: relative;
    letter-spacing: 0.05em;
    font-family: inherit;
    transition: color 0.3s ease;
}
.ft-tab-btn:hover {
    color: var(--text-cafe);
}
.ft-tab-btn.is-active {
    color: var(--text-cafe);
    font-weight: bold;
}
.ft-tab-btn::after {
    content: ''; position: absolute; bottom: -16px; left: 0; width: 100%; height: 2px;
    background-color: var(--text-cafe); transform: scaleX(0); transition: transform 0.3s ease;
}
.ft-tab-btn.is-active::after {
    transform: scaleX(1);
}

/* 💡 表示・非表示を100% CSS側のクラスだけで完全制御するシステム */
.ft-news-panel {
    display: none;
}
.ft-news-panel.is-active {
    display: block;
}

/* 各ニュース記事 */
.ft-news-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(74, 62, 58, 0.08);
}
.ft-news-item .news-date {
    font-size: 14px;
    color: var(--text-sub);
    width: 120px;
    font-family: 'Montserrat', sans-serif;
}
.ft-news-item .news-link {
    font-size: 15px;
    color: var(--text-cafe);
    text-decoration: none;
    flex: 1;
    transition: color 0.3s ease;
}
.ft-news-item:hover .news-link {
    color: var(--text-sub);
}
.ft-news-empty {
    text-align: center;
    color: var(--text-sub);
    padding: 20px 0;
    font-size: 14px;
}


/* =========================================
   7. トップページ専用：アクセス情報エリア
   ========================================= */
.ft-site-top-access {
    background-color: var(--card-white);
    padding: 80px 0;
}
.access-info-block {
    text-align: center;
    color: var(--text-cafe);
    line-height: 2;
    margin-bottom: 40px;
}
.access-company-name {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}
.access-address-text {
    font-size: 16px;
}
.access-station-guide {
    font-size: 14px;
    color: var(--text-sub);
    margin-top: 10px;
}
.access-map {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74, 62, 58, 0.05);
    margin-bottom: 80px;
}
.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}
.access-map iframe:hover {
    filter: grayscale(0%);
}


/* =========================================
   8. 共通フッターエリア (Footer)
   ========================================= */
.ft-site-footer {
    background-color: #3a302a;
    color: #f4ede4;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
    padding: 70px 0 30px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.06em;
}
.ft-footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}
.ft-footer-row {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.ft-footer-col { flex: 1; }

.ft-info-col h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
.ft-address {
    margin-bottom: 20px;
    font-size: 13px;
    color: #ded4c7;
}
.ft-tel a {
    font-size: 16px;
    font-weight: bold;
    color: #e6caa4;
    text-decoration: none;
}
.ft-hours-box {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 13px;
}
.ft-hours-box p { margin: 0 0 5px; }
.ft-hours-box p:last-child { margin-bottom: 0; }
.ft-notice { font-size: 11px; color: #bfaea0; line-height: 1.6; }
.ft-notice a { color: #e6caa4; text-decoration: underline; }

.ft-links-col h4, .ft-action-col h4 {
    font-size: 13px;
    font-weight: bold;
    color: #e6caa4;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}
.ft-footer-nav { list-style: none; padding: 0; margin: 0; }
.ft-footer-nav li { margin-bottom: 12px; }
.ft-footer-nav a {
    color: #f4ede4;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}
.ft-footer-nav a:hover {
    color: #e6caa4;
    transform: translateX(3px);
}

.ft-action-text { font-size: 13px; color: #ded4c7; margin-bottom: 25px; }

/* お問い合わせ遷移ボタン（共通） */
.ft-btn-contact {
    position: relative !important;
    top: 0 !important;
    display: inline-block !important; 
    border: 1px solid #e6caa4 !important;
    color: #e6caa4 !important;
    padding: 12px 30px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 13px !important;
    letter-spacing: 0.1em !important;
    text-align: center !important;
    transition: all 0.3s ease-in-out !important; 
}
.ft-btn-contact:hover {
    background-color: #e6caa4 !important;
    color: #3a302a !important;
    top: -5px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
}
.ft-copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
    color: #8c7f74;
}


/* =========================================
   9. 固定ページ専用：Menu ページ
   ========================================= */
.ft-menu-page {
    max-width: 1000px !important;
    margin: 80px auto 120px !important;
    padding: 0 20px !important;
    color: #4A3E3A !important;
}
.ft-menu-header {
    text-align: center !important;
    margin-bottom: 80px !important;
}
.ft-menu-title {
    font-size: 32px !important;
    letter-spacing: 0.15em !important;
    font-weight: bold !important;
    margin-bottom: 20px !important;
}
.ft-menu-lead {
    font-size: 14px !important;
    line-height: 2 !important;
    color: #665b55 !important;
}
.ft-menu-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 80px !important; 
}
.ft-menu-item {
    display: flex !important;
    align-items: center !important;
    gap: 50px !important;
}
.ft-menu-item.reverse {
    flex-direction: row-reverse !important;
}
.ft-menu-image {
    flex: 1 !important;
    width: 50% !important;
}
.ft-menu-image img {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important; 
    border-radius: 20px !important; 
    box-shadow: 0 15px 40px rgba(74, 62, 58, 0.1) !important;
    transition: transform 0.4s ease !important;
}
.ft-menu-image img:hover {
    transform: scale(1.02) !important; 
}
.ft-menu-text {
    flex: 1 !important;
    width: 50% !important;
    padding: 20px !important;
}
.ft-menu-text h3 {
    font-size: 28px !important;
    letter-spacing: 0.05em !important;
    color: #3a302a !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid #e6caa4 !important;
    padding-bottom: 15px !important;
}
.ft-menu-text h3 span {
    display: block !important;
    font-size: 14px !important;
    color: #8c7f74 !important;
    margin-top: 8px !important;
    font-weight: normal !important;
    letter-spacing: 0.1em !important;
}
.ft-menu-desc {
    font-size: 14px !important;
    line-height: 2 !important;
    color: #665b55 !important;
    margin-bottom: 25px !important;
}
.ft-menu-price {
    font-size: 24px !important;
    font-weight: bold !important;
    color: #e6caa4 !important; 
    letter-spacing: 0.05em !important;
}
.ft-menu-price small {
    font-size: 12px !important;
    color: #bfaea0 !important;
    font-weight: normal !important;
}
/* Menuページ専用のヘッダースペース */
.ft-menu-spacer {
    height: 100px;
}

/* =========================================
   10. 固定ページ専用：Rentalspace (Stage) ページ & プラン料金表
   ========================================= */
.ft-stage-page {
    max-width: 1000px !important;
    margin: 80px auto 120px !important;
    padding: 0 20px !important;
    color: #4A3E3A !important;
}
.ft-stage-header { text-align: center !important; margin-bottom: 50px !important; }
.ft-stage-title { font-size: 28px !important; letter-spacing: 0.15em !important; font-weight: bold !important; margin-bottom: 20px !important; }
.ft-stage-lead { font-size: 14px !important; line-height: 2 !important; color: #665b55 !important; }

/* ギャラリー待機枠 */
.ft-gallery-section { margin-bottom: 80px !important; background: #faf8f5 !important; padding: 40px 30px !important; border-radius: 16px !important; }
.ft-gallery-intro { max-width: 800px !important; margin: 0 auto 30px !important; font-size: 13px !important; line-height: 1.8 !important; color: #665b55 !important; text-align: center !important; }
.ft-gallery-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; gap: 20px !important; }
.ft-img-placeholder {
    width: 100% !important; height: 200px !important; background-color: #fff !important; border: 1px dashed #dcd5ce !important; border-radius: 8px !important;
    display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; color: #bfaea0 !important; font-size: 14px !important; letter-spacing: 0.1em !important;
}
.ft-img-placeholder span { font-size: 11px !important; color: #8c7f74 !important; margin-top: 5px !important; }

/* プラン・料金構造グリッド（Flexbox完全中央調停版） */
.ft-plan-section {
    width: 100% !important; max-width: 1100px !important; margin: 0 auto 80px !important; padding: 0 25px !important; box-sizing: border-box !important;
}
.ft-plan-grid {
    display: flex !important; flex-direction: row !important; flex-wrap: wrap !important; justify-content: center !important; gap: 30px !important; width: 100% !important; margin: 0 auto !important;
}
.ft-plan-card {
    flex: 1 !important; min-width: 310px !important; max-width: 460px !important; margin: 0 !important;
}

/* 共通規約・仕様エリア */
.ft-rules-section { display: flex !important; flex-wrap: wrap !important; gap: 30px !important; margin-bottom: 80px !important; }
.ft-rules-box { flex: 1 !important; min-width: 320px !important; background: #faf8f5 !important; padding: 30px !important; border-radius: 12px !important; }
.ft-rules-box h4 { font-size: 15px !important; margin-bottom: 15px !important; color: #3a302a !important; font-weight: bold !important; }
.ft-rules-box ul { padding-left: 18px !important; margin: 0 !important; }
.ft-rules-box ul li { font-size: 13px !important; line-height: 1.8 !important; margin-bottom: 12px !important; color: #665b55 !important; }

/* 機材リスト（2列クリーン構造） */
.ft-equipment-section { margin-bottom: 80px !important; }
.ft-equipment-title { text-align: center !important; font-size: 18px !important; letter-spacing: 0.15em !important; margin-bottom: 40px !important; border-bottom: 1px solid #e6caa4 !important; padding-bottom: 15px !important; }
.ft-equipment-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important; gap: 40px !important; }
.ft-eq-box { background-color: #fff !important; padding: 30px !important; border-radius: 12px !important; box-shadow: 0 5px 20px rgba(74, 62, 58, 0.05) !important; }
.ft-eq-box h4 { font-size: 16px !important; margin-bottom: 20px !important; color: #3a302a !important; }
.ft-eq-box ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.ft-eq-box ul li { font-size: 14px !important; margin-bottom: 12px !important; padding-left: 20px !important; position: relative !important; color: #665b55 !important; }
.ft-eq-box ul li::before { content: '' !important; position: absolute !important; left: 0 !important; top: 8px !important; width: 6px !important; height: 6px !important; background-color: #e6caa4 !important; border-radius: 50% !important; }

/* 大型CTA外部リンクボタン */
.ft-stage-cta { text-align: center !important; border-top: 1px solid #f0ebe6 !important; padding-top: 50px !important; }
.ft-stage-cta p { font-size: 13px !important; color: #8c7f74 !important; margin-bottom: 20px !important; }
.ft-btn-stage-external {
    display: inline-block !important; background-color: #3a302a !important; color: #e6caa4 !important; padding: 22px 50px !important; border-radius: 40px !important;
    font-weight: bold !important; letter-spacing: 0.1em !important; text-decoration: none !important; transition: all 0.3s ease !important; box-shadow: 0 8px 25px rgba(74, 62, 58, 0.15) !important; font-size: 15px !important;
}
.ft-btn-stage-external:hover { background-color: #e6caa4 !important; color: #3a302a !important; transform: translateY(-3px) !important; box-shadow: 0 12px 30px rgba(230, 202, 164, 0.3) !important; }


/* =========================================
   11. お問い合わせページ専用デザイン
   ========================================= */
.page-header-spacer {
    height: 120px;
}

.breadcrumbs {
    background-color: transparent;
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-sub);
}
.breadcrumbs a {
    color: var(--text-sub);
    text-decoration: none;
}
.breadcrumbs .current-page {
    color: var(--text-cafe);
}

.contact-page-content {
    background-color: var(--bg-cafe);
    padding-bottom: 100px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* お問い合わせページのタイトル変調 */
.contact-page-content .page-title {
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Times New Roman', serif;
    font-size: 36px;
    font-weight: bold;
    color: var(--text-cafe);
    letter-spacing: 0.05em;
}

.contact-page-content .page-subtitle {
    text-align: center;
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

/* 案内文ボックス */
.contact-lead {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.8;
    color: var(--text-cafe);
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(74, 62, 58, 0.05);
}

.contact-lead-sub {
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-sub);
}
.contact-lead-sub a {
    color: var(--text-cafe);
    font-weight: bold;
    text-decoration: underline;
}

/* フォームを包む白いボックス */
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(74, 62, 58, 0.05);
}


@media screen and (max-width: 768px) {
    .page-header-spacer {
        height: 90px; /* スマホ時は余白を少し詰める */
    }
    .contact-container {
        padding: 20px 15px;
    }
    .contact-lead, 
    .contact-form-wrapper {
        padding: 25px 20px; /* スマホの画面幅に合わせて箱の中の余白を最適化 */
    }
}

/* =========================================
   11-2. お問い合わせフォーム内部（入力欄・ボタン）のデザイン
   ========================================= */
.ft-contact-form {
    width: 100%;
}
.ft-contact-form p {
    margin-bottom: 30px;
}
.ft-contact-form label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-cafe);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

/* 必須・任意バッジ */
.ft-req, .ft-any {
    display: inline-block;
    font-size: 11px;
    padding: 3px 10px;
    margin-left: 12px;
    border-radius: 4px;
    vertical-align: middle;
    letter-spacing: 0.1em;
    font-weight: normal;
}
.ft-req {
    background-color: #bfaea0;
    color: #fff;
}
.ft-any {
    background-color: #f0ebe6;
    color: #8c7f74;
}

/* 入力欄のデザイン */
.ft-contact-form input[type="text"],
.ft-contact-form input[type="email"],
.ft-contact-form input[type="tel"],
.ft-contact-form select,
.ft-contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #dcd5ce;
    border-radius: 6px;
    background-color: #fff;
    font-size: 15px;
    color: var(--text-cafe);
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.ft-contact-form textarea {
    min-height: 220px;
    resize: vertical;
}
.ft-contact-form input:focus,
.ft-contact-form select:focus,
.ft-contact-form textarea:focus {
    border-color: #e6caa4;
    outline: none;
    box-shadow: 0 0 10px rgba(230, 202, 164, 0.3);
}

/* 送信ボタン */
.ft-submit-wrap {
    text-align: center;
    margin-top: 50px;
}
.ft-contact-form input[type="submit"] {
    background-color: var(--text-cafe);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.2em;
    padding: 20px 80px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(74, 62, 58, 0.15);
}
.ft-contact-form input[type="submit"]:hover {
    background-color: #e6caa4;
    color: var(--text-cafe);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(74, 62, 58, 0.25);
}

/* =========================================
   12. テンプレート専用：404 エラーページ
   ========================================= */
.error-spacer { height: 100px; }
.ft-error-container { max-width: 800px; margin: 0 auto; padding: 100px 20px; text-align: center; }
.ft-error-title { font-size: 60px; font-family: 'Times New Roman', serif; font-weight: bold; color: var(--accent-pink); margin-bottom: 10px; }
.ft-error-subtitle { font-size: 22px; font-weight: 500; margin-bottom: 30px; color: var(--text-cafe); letter-spacing: 0.1em; }
.ft-error-text { margin-bottom: 40px; color: var(--text-sub); line-height: 2; font-size: 14px; }
.ft-error-actions { margin-top: 20px; }


/* =========================================
   13. テンプレート専用：汎用アーカイブ＆一覧ページ
   ========================================= */
.archive-spacer { height: 120px; }
.ft-archive-wrapper { background-color: var(--bg-cafe); padding-bottom: 100px; }
.ft-archive-wrapper .page-header { text-align: center; margin-bottom: 60px; }
.ft-archive-wrapper .page-header .page-title { font-size: 28px; font-weight: 500; color: var(--text-cafe); letter-spacing: 0.1em; margin-bottom: 15px; }
.ft-archive-wrapper .archive-description { font-size: 14px; color: var(--text-sub); line-height: 1.8; }
.ft-pagination-wrap { text-align: center; margin-top: 50px; color: var(--text-cafe); }


/* =========================================
   14. テンプレート専用：News/Event アーカイブ（完全分離版）
   ========================================= */
.archive-news-spacer { height: 120px; }
.ft-breadcrumbs { background-color: transparent; padding: 10px 0; font-size: 13px; color: var(--text-sub); }
.ft-breadcrumbs a { color: var(--text-sub); text-decoration: none; }
.ft-breadcrumbs .current { color: var(--text-cafe); }
.ft-news-archive-section { background-color: var(--bg-cafe); padding-bottom: 100px; }
.ft-news-archive-container { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.ft-news-archive-container .page-title { text-align: center; margin-bottom: 10px; font-family: 'Times New Roman', serif; font-size: 36px; font-weight: bold; color: var(--text-cafe); letter-spacing: 0.05em; }
.ft-news-archive-container .page-subtitle { text-align: center; font-size: 13px; color: var(--text-sub); margin-bottom: 50px; letter-spacing: 0.1em; }

/* 分離用カテゴリタブ */
.ft-news-filter-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; margin: 0 0 40px; }
.ft-filter-btn {
    display: inline-block; padding: 8px 24px; font-size: 14px; color: var(--text-sub); border: 1px solid var(--accent-pink); background-color: #fff; border-radius: 20px; cursor: pointer; transition: all 0.3s ease; letter-spacing: 0.05em; font-family: inherit;
}
.ft-filter-btn:hover { background-color: var(--accent-pink); color: var(--text-cafe); }
.ft-filter-btn.is-active { background-color: var(--text-cafe); color: #fff; border-color: var(--text-cafe); font-weight: bold; }

.ft-news-container { border-top: 1px solid var(--text-cafe); }


.ft-news-container.show-news .type-event { display: none !important; }
.ft-news-container.show-event .type-news { display: none !important; }

/* お知らせ一覧リスト */
.ft-archive-item { display: flex; align-items: center; padding: 24px 15px; border-bottom: 1px solid rgba(232, 211, 205, 0.5); text-decoration: none; color: var(--text-cafe); transition: background-color 0.3s ease; }
.ft-archive-item:hover { background-color: rgba(232, 211, 205, 0.15); }
.ft-archive-item .news-meta { display: flex; align-items: center; min-width: 220px; gap: 20px; }
.ft-archive-item .news-date { color: var(--text-sub); font-size: 14px; font-family: 'Montserrat', sans-serif; }
.ft-archive-item .ft-cat-label { background-color: var(--accent-pink); color: var(--text-cafe); font-size: 11px; padding: 4px 12px; border-radius: 12px; font-weight: 500; }
.ft-archive-item .news-title { flex: 1; font-size: 15px; font-weight: normal; line-height: 1.6; color: var(--text-cafe); }

/* 一覧丸型ページネーション */
.ft-pagination-wrap .page-numbers {
    display: inline-block; width: 36px; height: 36px; line-height: 36px; margin: 0 5px; text-decoration: none; color: var(--text-sub); border-radius: 50px; transition: all 0.3s;
}
.ft-pagination-wrap .page-numbers.current { background-color: var(--text-cafe); color: #fff; font-weight: bold; }
.ft-pagination-wrap .page-numbers:hover:not(.current) { background-color: var(--accent-pink); color: var(--text-cafe); }


/* =========================================
   15. スクロール監視・アニメーション (GSAP/Observer用)
   ========================================= */
.js-fade, .js-fade-left, .js-fade-right, .js-zoom-in {
    opacity: 0; will-change: opacity, transform;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.js-fade { transform: translateY(50px); }
.js-fade-left { transform: translateX(-60px); }
.js-fade-right { transform: translateX(60px); }
.js-zoom-in { transform: scale(0.92); }

.js-fade.is-active, .js-fade-left.is-active, .js-fade-right.is-active { opacity: 1; transform: translate(0, 0); }
.js-zoom-in.is-active { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }


/* =========================================
   16. 📱 モバイル完全最適化（レスポンシブ・全幅調停エリア）
   ========================================= */
@media screen and (max-width: 768px) {
    /* 共通レイアウト */
    .container { padding-right: 20px; padding-left: 20px; }
    .main-navigation { display: flex !important; }
    .ft-burger-btn { display: block !important; }
    
    .ft-menu-container {
        position: absolute !important; top: 100% !important; left: 0 !important; width: 100% !important; background-color: #faf8f5 !important; 
        border-bottom: 1px solid rgba(74, 62, 58, 0.08) !important; box-shadow: 0 15px 30px rgba(74, 62, 58, 0.04) !important;
        max-height: 0 !important; opacity: 0 !important; overflow: hidden !important; visibility: hidden !important;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important; z-index: 9998 !important;
    }
    .ft-menu-container.is-active { max-height: 400px !important; opacity: 1 !important; visibility: visible !important; }
    .ft-menu-container ul { flex-direction: column !important; align-items: center !important; gap: 0 !important; width: 100% !important; padding: 0 !important; }
    .ft-menu-container ul li { width: 100% !important; border-bottom: 1px solid rgba(74, 62, 58, 0.06) !important; text-align: center !important; }
    .ft-menu-container ul li:last-child { border-bottom: none !important; }
    .ft-menu-container ul li a { font-size: 15px !important; padding: 18px 0 !important; width: 100% !important; }
    .ft-menu-container ul li a::after { display: none !important; }
    

    .ft-header-logo-img { width: 45px; height: 45px; }
    .ft-header-logo-text { font-size: 22px; }


    .hero-section { padding-top: 0 !important; }
    .hero-container { flex-direction: column-reverse; text-align: center; gap: 30px; }
    

    .image-frame { 
        width: 90%; 
        max-width: 320px; 
        height: auto !important; 
        aspect-ratio: 4 / 3; 
        margin: 0 auto; 
        border-radius: 24px; 
    }
    .ft-hero-swiper,
    .ft-hero-swiper .swiper-slide,
    .ft-hero-swiper .swiper-slide img {
        height: 100% !important;
    }


    .hero-copy { 
        font-size: 21px; 
        word-break: keep-all; 
    }

    .hero-lead { 
        font-size: 13px; 
        text-align: left;
        padding: 0 10px;
        line-height: 2;
    }

    .section-title h2 {
        font-size: 24px;
        letter-spacing: 0.1em;
    }


    .menu-grid { flex-direction: column; gap: 25px; }
    .menu-card { text-align: left; padding: 20px; } 
    .menu-card h3 { font-size: 19px; margin-bottom: 10px; }
    .menu-card p { font-size: 13.5px; line-height: 1.9; }
    .menu-card-img { height: 200px; margin-bottom: 15px; }
    
    .stage-wrapper, .stage-wrapper.reverse { flex-direction: column; gap: 15px; text-align: left; } 
    .ft-stage-swiper { aspect-ratio: 16 / 9; margin-bottom: 0; }
    .stage-text-box h3 { font-size: 19px; line-height: 1.4; margin-bottom: 12px; }
    .stage-text-box p { font-size: 13.5px; line-height: 2; }
    
    .ft-news-tabs { gap: 30px; }
    .ft-news-item { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px 0; }
    .ft-news-item .news-date { width: auto; }


    .ft-site-footer { padding: 50px 0 20px; }
    .ft-footer-row { flex-direction: column; text-align: center; gap: 45px; }
    .ft-links-col h4, .ft-action-col h4 { margin-bottom: 15px; }
    .ft-btn-contact { display: block; max-width: 280px; margin: 0 auto; }
    

    .ft-menu-item, .ft-menu-item.reverse { flex-direction: column !important; gap: 30px !important; }
    .ft-menu-image, .ft-menu-text { width: 100% !important; }
    .ft-menu-image img { height: 300px !important; }
    
    .ft-plan-grid { flex-direction: column !important; align-items: center !important; }
    .ft-plan-card { width: 100% !important; max-width: 100% !important; }
    
    .ft-error-container { padding: 60px 20px; }
    .ft-error-title { font-size: 48px; }
    .ft-error-subtitle { font-size: 18px; margin-bottom: 20px; }
    .ft-error-text { font-size: 13px; line-height: 1.8; }
    
    .archive-spacer { height: 90px; }
    .ft-archive-wrapper { padding-bottom: 60px; }
    .ft-archive-wrapper .page-header { margin-bottom: 40px; }
    .ft-archive-wrapper .page-header .page-title { font-size: 22px; }
    
    .ft-archive-item { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 10px; }
    .ft-archive-item .news-meta { min-width: auto; }

    .access-map { margin-bottom: 40px; }
}

/* =========================================
   17. 新設：BAR TIME セクション（PC版）
   ========================================= */
.ft-bar-section {
    padding: 100px 0;
    background-color: #362B28;
    color: #FAF8F5;
}
.ft-bar-section .section-title h2 {
    color: #FAF8F5 !important;
}
.ft-bar-section .section-title .subtitle {
    color: #e6caa4 !important;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
}

.bar-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}
.bar-image-area {
    flex: 1;
}
.bar-image-area img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.bar-text-box {
    flex: 1;
}
.bar-sub {
    display: block;
    font-size: 13px;
    color: #e6caa4; 
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
}
.bar-text-box h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.bar-text-box p {
    font-size: 15px;
    color: #ded4c7;
    line-height: 1.8;
}

/* =========================================
   📱 BAR TIME モバイル完全最適化（スマホ版）
   ========================================= */
@media screen and (max-width: 768px) {
    .ft-bar-section {
        padding: 60px 0;
    }

    .ft-bar-section .section-title {
        margin-bottom: 35px; 
    }

    .bar-wrapper {
        flex-direction: column; 
        gap: 25px;
        text-align: left; 
    }
    

    .bar-image-area, .bar-text-box {
        width: 100%;
    }

    .bar-image-area img {
        width: 100%;
        height: auto !important;
        aspect-ratio: 4 / 3; 
        border-radius: 24px !important; 
    }   
    .bar-text-box h3 {
        font-size: 18px; 
        line-height: 1.5;
        margin-bottom: 12px;
        word-break: normal; 
        overflow-wrap: break-word;
    }
    .bar-text-box p {
        font-size: 13px;
        line-height: 1.9;
    }
}

/* =========================================
   18. 📅 Googleカレンダー 完全レスポンシブ化
   ========================================= */
.ft-calendar-section {
    padding: 100px 0;
    background-color: var(--bg-cafe);
}

.ft-calendar-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px; 
    margin: 0 auto;
    height: 0;
    padding-bottom: 75%; 
    overflow: hidden;
    border-radius: 16px; 
    box-shadow: 0 15px 40px rgba(74, 62, 58, 0.08); 
    background-color: #ffffff;
}


.ft-calendar-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}


@media screen and (max-width: 768px) {
    .ft-calendar-section {
        padding: 60px 0;
    }
    .ft-calendar-wrapper {
        padding-bottom: 120%; 
        border-radius: 12px;
    }
}

/* =========================================
   19. 汎用固定ページ (page.php) 専用デザイン
   ========================================= */
.default-page-content {
    background-color: var(--bg-cafe);
    padding-bottom: 100px;
}
.page-container {
    max-width: 900px; 
    margin: 0 auto;
    padding: 40px 20px;
}
.default-page-content .page-title {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Times New Roman', serif;
    font-size: 36px;
    font-weight: bold;
    color: var(--text-cafe);
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(74, 62, 58, 0.1);
    padding-bottom: 20px;
}
.page-body {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(74, 62, 58, 0.05);
    color: var(--text-cafe);
    line-height: 1.9;
    font-size: 15px;
}


.page-body h2 {
    font-size: 22px;
    margin: 40px 0 20px;
    padding-left: 15px;
    border-left: 4px solid var(--accent-pink); 
}
.page-body h3 {
    font-size: 18px;
    margin: 30px 0 15px;
}
.page-body p {
    margin-bottom: 20px;
}


@media screen and (max-width: 768px) {
    .page-container {
        padding: 20px 15px;
    }
    .default-page-content .page-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-body {
        padding: 30px 20px; 
        font-size: 14px;
    }
}

/* =========================================
   20. WordPress標準の画像配置＆ センター寄せ
   ========================================= */

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; 
}


.aligncenter,
div.aligncenter,
figure.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.aligncenter img {
    display: inline-block;
    margin: 0 auto;
}


.alignleft {
    float: left;
    margin: 0.5em 1em 0.5em 0;
}
.alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em;
}
.alignnone {
    margin: 0.5em 0;
}

/* =========================================
   21. ニュース詳細ページ (single-news.php)
   ========================================= */
.news-header {
    border-bottom: 1px solid rgba(74, 62, 58, 0.1);
    padding-bottom: 25px;
    margin-bottom: 40px;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.news-date {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-sub);
    font-size: 14px;
}
.news-label {
    background-color: var(--accent-pink);
    color: var(--text-cafe);
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 500;
}
.news-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-cafe);
    line-height: 1.5;
}

/* 記事本文のデザイン */
.news-content {
    font-size: 15px;
    line-height: 2;
    color: var(--text-cafe);
    margin-bottom: 60px;
}
.news-content h2 {
    font-size: 22px;
    margin: 40px 0 20px;
    padding-left: 15px;
    border-left: 4px solid var(--accent-pink);
}

/* 前後の記事へのリンク */
.news-navigation {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(74, 62, 58, 0.1);
    padding-top: 30px;
    margin-bottom: 50px;
    font-size: 14px;
}
.news-navigation a {
    color: var(--text-cafe);
    text-decoration: none;
    transition: opacity 0.3s;
}
.news-navigation a:hover {
    opacity: 0.6;
}

/* 一覧へ戻るボタン */
.news-footer-btn {
    text-align: center;
}
.btn-back {
    display: inline-block;
    border: 1px solid var(--text-cafe);
    color: var(--text-cafe);
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}
.btn-back:hover {
    background-color: var(--text-cafe);
    color: #fff;
}

/* =========================================
   22. 汎用詳細ページ・記事ナビゲーション (single.php)
   ========================================= */
.post-navigation { 
    margin-top: 60px; 
    padding-top: 40px; 
    border-top: 1px solid rgba(74, 62, 58, 0.1); 
}
.post-navigation .nav-links { 
    display: flex; 
    justify-content: space-between; 
    gap: 30px; 
}
.post-navigation .nav-previous, 
.post-navigation .nav-next { 
    flex: 1; 
}
.post-navigation .nav-next { 
    text-align: right; 
}
.post-navigation .nav-subtitle { 
    display: block; 
    font-size: 11px; 
    text-transform: uppercase; 
    color: var(--text-sub); 
    letter-spacing: 0.15em; 
    margin-bottom: 8px; 
}
.post-navigation .nav-title { 
    font-size: 14px; 
    color: var(--text-cafe); 
    font-weight: 500; 
    transition: color 0.3s ease; 
    line-height: 1.5; 
}
.post-navigation a { 
    text-decoration: none; 
    display: block; 
}
.post-navigation a:hover .nav-title { 
    color: var(--text-sub); 
}


@media (max-width: 600px) {
    .post-navigation .nav-links { 
        flex-direction: column; 
        gap: 35px; 
    }
    .post-navigation .nav-next { 
        text-align: left; 
    }
}