/*
Theme Name: TUAT KAIKO-KAN
Theme URI: https://example.com/tuat-kaiko-kan
Author: TUAT
Author URI: https://example.com
Description: 西東京国際イノベーション共創拠点 邂逅館（KAIKO-KAN）公式サイト用WordPressテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tuat-kaiko-kan
*/

/* ==========================================================================
   TUAT KAIKO-KAN - Main Stylesheet
   レスポンシブ対応 - %ベースのレイアウト
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Colors */
    --color-primary: #2E3A7C;
    --color-primary-dark: #1E2A5C;
    --color-primary-light: #4A5AA0;
    --color-accent-gold: #C8A951;
    --color-accent-green: #6B8E23;
    --color-accent-teal: #5A9E9E;
    --color-accent-orange: #D4872C;
    --color-bg-white: #FFFFFF;
    --color-bg-light: #F5F5F5;
    --color-bg-cream: #FAF5EB;
    --color-bg-green-light: #E8F5E0;
    --color-bg-blue-light: #E8EEF5;
    --color-bg-pink-light: #F5E8EE;
    --color-bg-office-blue: #D6E4F0;
    --color-bg-kitchen-pink: #F0D6DE;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #555555;
    --color-border: #DDDDDD;
    --color-border-light: #EEEEEE;

    /* Typography */
    --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
    --font-en: 'Montserrat', 'Noto Sans JP', sans-serif;

    /* Sidebar */
    --sidebar-width: 340px;

    /* Transition */
    --transition: 0.3s ease;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-ja);
    color: var(--color-text);
    line-height: 1.8;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity var(--transition);
}

a:hover {
    opacity: 0.7;
}

ul, ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border-light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 102;
    height: 50px;
}

.top-bar__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    gap: 20px;
}

.top-bar__text {
    font-size: 0.75rem;
    color: var(--color-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-bar__contact-btn {
    display: inline-block;
    padding: 4px 16px;
    border: 1px solid var(--color-text);
    border-radius: 3px;
    font-size: 0.75rem;
    color: var(--color-text);
    white-space: nowrap;
    transition: all var(--transition);
}

.top-bar__contact-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Sidebar Navigation
   -------------------------------------------------------------------------- */
.sidebar-nav {
    position: fixed;
    top: 80px;
    left: max(20px, calc((100vw - 1440px) / 2 + 20px));
    width: 300px;
    height: min(720px, calc(100vh - 100px));
    background: linear-gradient(180deg, #323FAA 0%, #1D7D96 100%);
    border-right: none;
    z-index: 90;
    overflow-y: auto;
    padding: 20px 0 15px;
    transition: transform var(--transition);
    border-radius: 40px;
}

.sidebar-nav__inner {
    width: 100%;
    padding: 0 9%;
}

.sidebar-nav__logo {
    margin-bottom: 12px;
    padding-bottom: 6px;
}

.sidebar-nav__logo a {
    display: block;
    color: #fff;
}

.logo-text {
    display: block;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    color: #fff;
}

.logo-icon {
    color: #fff;
    font-size: 1em;
    font-family: var(--font-en);
    line-height: 1;
}

.logo-sub {
    display: block;
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.03em;
}

.logo-dots {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.45rem;
}

.sidebar-nav__menu {
    margin-bottom: 15px;
}

.sidebar-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.sidebar-nav__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.sidebar-nav__item a {
    display: block;
    padding: 8px 0;
    color: #fff;
    transition: opacity var(--transition);
}

.sidebar-nav__item a:hover {
    color: #fff;
    opacity: 0.75;
}

.sidebar-nav__label {
    display: block;
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

.sidebar-nav__sublabel {
    display: block;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin-top: 2px;
}

.sidebar-nav__reserve-btn {
    display: block;
    width: 100%;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 30px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    transition: all var(--transition);
}

.sidebar-nav__reserve-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    opacity: 1;
}

.sidebar-nav__info {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    text-align: center;
}

.sidebar-nav__address {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.85);
}

.sidebar-nav__map-link {
    display: inline-block;
    margin-top: 3px;
    font-size: 0.6rem;
    text-decoration: underline;
    color: #8dd8ff;
}

/* --------------------------------------------------------------------------
   Menu Overlay (Mobile sidebar backdrop)
   -------------------------------------------------------------------------- */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 89;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.menu-overlay.is-active { display: block; }

/* --------------------------------------------------------------------------
   Hamburger Menu (Mobile)
   -------------------------------------------------------------------------- */
.hamburger {
    display: none;
    position: fixed;
    top: 5px;
    left: 10px;
    z-index: 110;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #323FAA 0%, #1D7D96 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(50, 63, 170, 0.35);
    transition: all var(--transition);
}

.hamburger:hover {
    box-shadow: 0 5px 18px rgba(50, 63, 170, 0.55);
    transform: scale(1.05);
}

.hamburger__line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.is-active .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-active .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --------------------------------------------------------------------------
   Site Wrapper
   -------------------------------------------------------------------------- */
.site-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

/* --------------------------------------------------------------------------
   Main Content Area
   -------------------------------------------------------------------------- */
.main-content {
    margin-left: var(--sidebar-width);
    margin-top: 50px;
    min-height: calc(100vh - 50px);
    padding: 15px 15px 0 15px;
}

/* --------------------------------------------------------------------------
   Hero Section (Top Page)
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    width: 95%;
    max-width: 1440px;
    margin: 0 auto;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 58, 124, 0.35) 0%, rgba(46, 58, 124, 0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8%;
    text-align: left;
    color: var(--color-bg-white);
}

.hero__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle-en {
    font-family: var(--font-en);
    font-size: clamp(0.7rem, 1.1vw, 0.9rem);
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero__facility-name {
    font-size: clamp(0.85rem, 1.3vw, 1.05rem);
    font-weight: 500;
    margin-bottom: 3px;
}

.hero__facility-name-en {
    font-family: var(--font-en);
    font-size: clamp(0.65rem, 0.9vw, 0.8rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

/* News Ticker */
.news-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
    z-index: 5;
}

.news-ticker__label {
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    border-right: 1px solid var(--color-border);
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
    z-index: 2;
}

.news-ticker__content {
    display: flex;
    overflow: hidden;
    flex: 1;
    padding: 0;
    position: relative;
}

.news-ticker__track {
    display: flex;
    will-change: transform;
    padding-left: 100%;
}

.news-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 0.8rem;
    color: var(--color-text);
    padding: 0 30px;
    flex-shrink: 0;
}

.news-ticker__date {
    font-family: var(--font-en);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Page Hero (Sub Pages)
   -------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    width: 100%;
    padding: 60px 5% 40px;
    text-align: center;
    overflow: hidden;
}

.page-hero--news {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-bg-white);
}

.page-hero--about {
    background-color: var(--color-bg-light);
    padding: 0;
}

.page-hero--about .page-hero__image {
    width: 100%;
    height: 50vh;
    min-height: 300px;
}

.page-hero--about .page-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero--shop {
    background-color: var(--color-bg-cream);
    margin-top: 15px;
    border-radius: 30px 30px 0 0;
}

/* .page-hero--office と .page-hero--kitchen は Share Office セクションで定義 */

.page-hero--common {
    background-color: var(--color-bg-green-light);
}



.page-hero--projects {
    background: linear-gradient(135deg, #8FAAAA 0%, #B8CCCC 100%);
    color: var(--color-bg-white);
}

.page-hero__title {
    font-family: var(--font-en);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.page-hero__subtitle {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    opacity: 0.8;
}

.page-hero__illust {
    margin-top: 20px;
}

.page-hero__illust img {
    max-width: 80%;
    margin: 0 auto;
}

.page-hero__illust--double {
    display: flex;
    justify-content: center;
    gap: 5%;
}

.page-hero__illust--double img {
    width: 40%;
    max-width: 200px;
}

.page-hero__illust--triple {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3%;
}

.page-hero__illust--triple img {
    width: 30%;
    max-width: 220px;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section {
    padding: 30px 0;
}

.section__inner {
    width: 92%;
    max-width: 1440px;
    margin: 0 auto;
}

.section__title {
    font-family: var(--font-en);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-text);
}

.section__lead {
    font-size: 0.9rem;
    line-height: 2;
    margin-bottom: 30px;
}

.section__note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.section__action {
    text-align: center;
    margin-top: 35px;
}

.section__divider {
    border: none;
    border-top: 2px solid var(--color-border);
    margin: 50px 0;
}

/* Section Box - デザインの角丸ボーダーカード */
.section-box {
    background-color: var(--color-bg-white);
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 45px 5%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.section-box .section__title {
    margin-top: 0;
}

.section--news,
.section--facilities,
.section--access,
.section--contact {
    background-color: transparent;
}
.section--office { background-color: var(--color-bg-blue-light); }
.section--kitchen { background-color: var(--color-bg-pink-light); }
.section--common-space { background-color: var(--color-bg-green-light); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
    padding: 10px 50px;
    font-size: 0.85rem;
    border-radius: 3px;
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    opacity: 1;
}

.btn--outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    border-radius: 30px;
    padding: 10px 35px;
    font-size: 0.85rem;
}

.btn--outline:hover {
    background-color: var(--color-text);
    color: var(--color-bg-white);
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Sub Navigation
   -------------------------------------------------------------------------- */
.sub-nav { margin-bottom: 30px; text-align: center; }
.sub-nav__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 10px; }
.sub-nav__btn { display: inline-block; padding: 10px 20px; border: none; border-radius: 30px; font-size: 0.8rem; font-weight: 600; background-color: var(--color-primary); color: #fff; text-align: center; transition: all var(--transition); min-width: 120px; }
.sub-nav__btn:hover { background-color: var(--color-primary-dark); color: #fff; opacity: 1; }
.sub-nav__btn--primary { background-color: var(--color-primary); color: #fff; border: none; min-width: 180px; font-weight: 600; }
.sub-nav__btn--primary:hover { background-color: var(--color-primary-dark); }
.sub-nav__btn--outline { background-color: var(--color-primary); border: none; color: #fff; font-weight: 600; }
.sub-nav__btn--outline:hover { background-color: var(--color-primary-dark); color: #fff; }
.sr-sub-nav__form-row { margin-top: 4px; padding-top: 4px; }
.sr-sub-nav__form-btn {
    background-color: #6B7EB8 !important;
    border-color: #6B7EB8 !important;
    color: #fff !important;
}
.sr-sub-nav__form-btn:hover {
    background-color: #4E5F9A !important;
    border-color: #4E5F9A !important;
}
.sub-nav__btn--green { background-color: var(--color-accent-green); color: var(--color-bg-white); border-color: var(--color-accent-green); }
.sub-nav__btn--green:hover { background-color: #5A7A1E; }
.sub-nav__btn small { display: block; font-size: 0.65rem; font-weight: 400; margin-top: 2px; }

/* --------------------------------------------------------------------------
   News Grid & Cards
   -------------------------------------------------------------------------- */
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.news-grid--archive { grid-template-columns: repeat(3, 1fr); }
.news-card { background-color: var(--color-bg-white); border-radius: 4px; overflow: hidden; transition: box-shadow var(--transition); }
.news-card:hover { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.news-card__link { display: block; color: var(--color-text); }
.news-card__image { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background-color: #e0e0e0; }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; }
.news-card__placeholder { width: 100%; height: 100%; background-color: #e0e0e0; }
.news-card__body { padding: 10px 2px; }
.news-card__title { font-size: 0.75rem; font-weight: 400; line-height: 1.6; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; color: var(--color-text-light); }
.news-card__meta { display: flex; justify-content: space-between; align-items: center; }
.news-card__date { font-family: var(--font-en); font-size: 0.7rem; color: var(--color-text-muted); }
.news-card__category { display: inline-block; padding: 3px 12px; border-radius: 15px; font-size: 0.6rem; color: var(--color-bg-white); background-color: var(--color-accent-teal); }
.news-card__category--event { background-color: var(--color-primary); }
.news-card__category--news { background-color: var(--color-accent-green); }
.news-card__category--seminar { background-color: var(--color-accent-gold); }
.news-card__category--other { background-color: var(--color-accent-orange); }

/* --------------------------------------------------------------------------
   Category Filter
   -------------------------------------------------------------------------- */
.category-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; }
.category-filter__btn { display: inline-block; padding: 8px 20px; border: 1px solid var(--color-primary); border-radius: 30px; font-size: 0.8rem; color: var(--color-primary); transition: all var(--transition); }
.category-filter__btn:hover, .category-filter__btn--active { background-color: var(--color-primary); color: var(--color-bg-white); opacity: 1; }

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.pagination { text-align: center; margin-top: 40px; }
.pagination .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 3px; border: 1px solid var(--color-border); border-radius: 3px; font-size: 0.85rem; color: var(--color-text); transition: all var(--transition); }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background-color: var(--color-primary); color: var(--color-bg-white); border-color: var(--color-primary); opacity: 1; }

/* --------------------------------------------------------------------------
   Facility Floor (Top Page)
   -------------------------------------------------------------------------- */
.facility-floor { display: flex; gap: 5%; align-items: flex-start; margin-bottom: 40px; }
.facility-floor:last-child { margin-bottom: 0; }
.facility-floor__image { width: 40%; flex-shrink: 0; }
.facility-floor__image img { width: 100%; border-radius: 20px; }
.facility-floor__image--multi { display: flex; flex-direction: column; gap: 10px; }
.facility-floor__image--multi img { width: 100%; border-radius: 14px; }
.facility-floor__placeholder { width: 100%; aspect-ratio: 4 / 3; background-color: #e0e0e0; border-radius: 20px; }
.facility-floor__info { flex: 1; padding-top: 0; }
.facility-floor__title { font-family: var(--font-en); font-size: 1.1rem; font-weight: 700; margin-bottom: 15px; }
.facility-floor__subtitle { display: block; font-family: var(--font-en); font-size: 0.75rem; font-weight: 400; color: var(--color-text-muted); margin-top: 2px; letter-spacing: 0.05em; }
.facility-floor__info p { font-size: 0.8rem; color: var(--color-text-light); margin-bottom: 0; padding: 10px 0; line-height: 1.6; border-bottom: 1px dashed #ccc; }
.facility-floor__list { margin: 0; }
.facility-floor__list dt { font-size: 0.82rem; font-weight: 600; color: var(--color-text); padding-top: 10px; }
.facility-floor__list dd { font-size: 0.75rem; color: var(--color-text-light); line-height: 1.7; margin: 4px 0 0 0; padding-bottom: 10px; border-bottom: 1px dashed #ccc; }

/* --------------------------------------------------------------------------
   Access Section
   -------------------------------------------------------------------------- */
.access-map { width: 100%; margin-bottom: 30px; border-radius: 4px; overflow: hidden; }
.access-map iframe { width: 100%; height: 300px; border: none; }
.access-map__placeholder { width: 100%; height: 280px; background-color: #e8e8e8; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--color-text-muted); border: 2px dashed #bbb; border-radius: 4px; }
.access-info { text-align: center; font-size: 0.85rem; line-height: 2; }
.access-info__name { font-size: 0.85rem; font-weight: 500; line-height: 1.8; }
.access-info__address { font-size: 0.8rem; color: var(--color-text-light); margin-top: 8px; margin-bottom: 20px; }
.access-info__directions { text-align: left; font-size: 0.78rem; line-height: 2; color: var(--color-text-light); margin-bottom: 20px; }
.access-info__parking {
    text-align: left;
    margin: 16px 0 20px;
    padding-top: 16px;
    border-top: 1px dashed #ccc;
}
.access-info__parking-summary {
    font-size: 0.78rem;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 12px;
}
.access-info__parking-detail {
    background: #f8f6f2;
    border-radius: 8px;
    padding: 12px 16px;
}
.access-info__parking-name {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.access-info__parking-fee {
    font-size: 0.78rem;
    color: var(--color-text-light);
    line-height: 1.8;
}
.access-info__parking-note {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-top: 4px;
}
.access-info__parking-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.2s;
}
.access-info__parking-link:hover {
    opacity: 0.7;
}
.access-info__hours { text-align: left; font-size: 0.78rem; line-height: 2; color: var(--color-text-light); }
.access-info__hours h3 { font-size: 0.85rem; font-weight: 600; color: var(--color-text); margin-bottom: 10px; }
.access-info__hours-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.access-info__hours-table th { text-align: left; font-weight: 600; color: var(--color-text); padding: 6px 12px 6px 0; white-space: nowrap; border-bottom: 1px dashed #ccc; width: 1%; }
.access-info__hours-table td { padding: 6px 0; border-bottom: 1px dashed #ccc; color: var(--color-text-light); line-height: 1.7; }

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.contact-form { width: 100%; max-width: 660px; margin: 0 auto; }
.contact-form__row { display: grid; grid-template-columns: 180px 1fr; grid-template-rows: auto auto; align-items: start; margin-bottom: 22px; column-gap: 20px; }
.contact-form__label { grid-column: 1; grid-row: 1; font-size: 0.85rem; font-weight: 500; padding-top: 11px; line-height: 1.5; }
.contact-form__input, .contact-form__textarea { grid-column: 2; grid-row: 1; width: 100%; padding: 10px 14px; border: 1px solid #bbb; border-radius: 4px; font-family: var(--font-ja); font-size: 0.9rem; transition: border-color var(--transition); background-color: var(--color-bg-white); box-sizing: border-box; }
.contact-form__input:focus, .contact-form__textarea:focus { outline: none; border-color: var(--color-primary); }
.contact-form__textarea { resize: vertical; min-height: 140px; }
.contact-form__action { text-align: center; margin-top: 30px; }
.contact-message { text-align: center; padding: 15px; margin-bottom: 30px; border-radius: 5px; }
.contact-message--success { background-color: #e8f5e9; color: #2e7d32; }
.contact-message--error { background-color: #fce4ec; color: #c62828; }

/* ---- Contact Form 拡張スタイル ---- */

/* 必須・任意バッジ */
.contact-form__required,
.contact-form__optional {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
    line-height: 1;
    white-space: nowrap;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0;
}
.contact-form__required {
    background: #c62828;
    color: #fff;
}
.contact-form__optional {
    background: #888;
    color: #fff;
}

/* セレクトボックス */
.contact-form__select-wrap {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    width: 100%;
}
.contact-form__select {
    width: 100%;
    padding: 8px 36px 8px 12px;
    border: 1px solid #bbb;
    border-radius: 3px;
    font-family: var(--font-ja);
    font-size: 0.85rem;
    background-color: var(--color-bg-white);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color var(--transition);
    color: var(--color-text);
}
.contact-form__select:focus {
    outline: none;
    border-color: var(--color-primary);
}
/* デフォルト選択（placeholder）はグレー */
.contact-form__select option[value=""] { color: #999; }
.contact-form__select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #888;
    pointer-events: none;
}

/* バリデーション状態 */
.contact-form__input.is-invalid,
.contact-form__select.is-invalid,
.contact-form__textarea.is-invalid {
    border-color: #c62828;
    background-color: #fff8f8;
}
.contact-form__input.is-valid,
.contact-form__select.is-valid,
.contact-form__textarea.is-valid {
    border-color: #2e7d32;
}
.contact-form__error {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.75rem;
    color: #c62828;
    margin-top: 4px;
    min-height: 1.2em;
}

/* 文字数カウンター */
.contact-form__char-count {
    grid-column: 2;
    grid-row: 2;
    text-align: right;
    font-size: 0.72rem;
    color: #999;
    margin-top: 3px;
    width: 100%;
}

/* 送信ボタン */
.contact-form__submit {
    min-width: 200px;
    padding: 14px 40px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
}
.contact-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* プライバシーポリシー同意 */
.contact-form__privacy {
    margin: 28px 0 20px;
    text-align: center;
}
.contact-form__privacy-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}
.contact-form__privacy-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    cursor: pointer;
    flex-shrink: 0;
}
.contact-form__privacy-label input[type="checkbox"].is-invalid {
    outline: 2px solid #c62828;
}
.contact-form__privacy-text a {
    color: var(--color-primary);
    text-decoration: underline;
}
.contact-form__privacy .contact-form__error {
    text-align: center;
    padding-left: 0;
    grid-column: unset;
    grid-row: unset;
}

/* 確認画面 */
.contact-confirm { padding: 10px 0; }
.contact-confirm__lead {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--color-primary);
}
.contact-confirm__list { width: 100%; max-width: 660px; margin: 0 auto 32px; }
.contact-confirm__row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0 20px;
    border-bottom: 1px solid #e8e8e8;
    padding: 14px 0;
}
.contact-confirm__row:first-child { border-top: 1px solid #e8e8e8; }
.contact-confirm__row dt {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    padding-top: 2px;
}
.contact-confirm__row dd {
    font-size: 0.9rem;
    white-space: pre-wrap;
    word-break: break-word;
}
.contact-confirm__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-confirm__back {
    min-width: 160px;
    padding: 12px 32px;
    font-size: 0.9rem;
}
.contact-confirm__send {
    min-width: 200px;
    padding: 14px 40px;
    font-size: 1rem;
    cursor: pointer;
}
.contact-confirm__send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* 送信完了モーダル */
.contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.contact-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.contact-modal__box {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.contact-modal__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 2rem;
    line-height: 64px;
    margin: 0 auto 20px;
}
.contact-modal__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary);
}
.contact-modal__text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
}
.contact-modal__redirect {
    font-size: 0.8rem;
    color: #999;
}

/* --------------------------------------------------------------------------
   Article (Single Post)
   -------------------------------------------------------------------------- */
.article { padding-bottom: 60px; }
.article__hero { width: 100%; aspect-ratio: 16 / 9; background-color: var(--color-bg-light); overflow: hidden; }
.article__hero-img { width: 100%; height: 100%; object-fit: cover; }
.article__hero-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--color-text-muted); background-color: var(--color-bg-light); }
.article__inner { width: 92%; max-width: 1440px; margin: 0 auto; padding-top: 40px; }
.article__title { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; line-height: 1.6; margin-bottom: 15px; }
.article__meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid var(--color-border); }
.article__date { font-family: var(--font-en); font-size: 0.85rem; color: var(--color-text-muted); }
.article__category { display: inline-block; padding: 3px 12px; border-radius: 15px; font-size: 0.75rem; color: var(--color-bg-white); background-color: var(--color-accent-teal); }
.article__content { font-size: 0.95rem; line-height: 2; }
.article__content h2 { font-size: 1.4rem; font-weight: 700; margin: 40px 0 15px; padding-bottom: 10px; border-bottom: 1px solid var(--color-border); }
.article__content h3 { font-size: 1.1rem; font-weight: 600; margin: 30px 0 10px; }
.article__content p { margin-bottom: 15px; }
.article__content img { margin: 20px 0; border-radius: 5px; }
.article__content blockquote { border-left: 4px solid var(--color-primary); padding: 15px 20px; margin: 20px 0; background-color: var(--color-bg-light); border-radius: 0 5px 5px 0; }

/* Gallery */
.article__gallery { position: relative; margin: 30px 0; overflow: hidden; border-radius: 5px; }
.article__gallery-track { display: flex; transition: transform 0.5s ease; }
.article__gallery-item { min-width: 100%; }
.article__gallery-item img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article__gallery-prev, .article__gallery-next { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(255, 255, 255, 0.8); border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background-color var(--transition); }
.article__gallery-prev:hover, .article__gallery-next:hover { background-color: rgba(255, 255, 255, 1); }
.article__gallery-prev { left: 10px; }
.article__gallery-next { right: 10px; }

/* --------------------------------------------------------------------------
   About Page - KV（キービジュアル）= about-1.png 全面表示
   -------------------------------------------------------------------------- */
.about-kv {
    width: 92%;
    max-width: 1440px;
    margin: 20px auto 0;
    border-radius: 18px;
    overflow: hidden;
    line-height: 0;
}

.about-kv img {
    width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   About Page - MISSION テキストブロック（KVの下）
   -------------------------------------------------------------------------- */
.section--about-mission {
    padding: 50px 0 40px;
}

.about-mission__heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0px 60px 20px;
}

.about-mission__label {
    font-family: var(--font-en);
    font-size: clamp(2em, 1.1vw, 1rem);
    font-weight: 700;
    color: #323FAA;
    letter-spacing: 0.1em;
    flex-shrink: 0;
    padding-top: 0.5em;
}

.about-mission__title {
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 700;
    line-height: 1.7;
    color: var(--color-text);
    text-align: center;
    flex: 1;
}

/* about-2.png MISSIONヘッダー右端イラスト */
.about-mission__illust {
    flex-shrink: 0;
    width: clamp(140px, 16vw, 200px);
    align-self: center;
}

.about-mission__illust img {
    width: 100%;
    height: auto;
}

.about-mission__desc {
    font-size: clamp(0.75rem, 0.95vw, 0.88rem);
    line-height: 2;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 25px;
}

/* テキスト内の青アクセント */
.about-accent--blue {
    color: #1D7D96;
    font-weight: 700;
}
/* テキスト内の緑アクセント */
.about-accent--green {
    color: var(--color-accent-green);
    font-weight: 700;
}

.about-mission__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.about-mission__btn {
    display: inline-block;
    padding: 10px 44px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 30px;
    font-size: clamp(0.65rem, 0.85vw, 0.78rem);
    color: #fff;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition);
    line-height: 1.5;
}

.about-mission__btn:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
    opacity: 1;
}

/* --------------------------------------------------------------------------
   About Page - 共通セクションタイトル
   -------------------------------------------------------------------------- */
.about-section-title {
    font-family: var(--font-ja);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid #bbb;
}

/* About 共通テキスト */
.about-text {
    font-size: 0.82rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-text a {
    color: #1D7D96;
    text-decoration: none;
}

.about-text__link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-all;
}

/* --------------------------------------------------------------------------
   About Page - 邂逅館の由来
   about-3.png = テキスト途中に看板ロゴ中央配置
   -------------------------------------------------------------------------- */
.section--about-naming {
    padding: 60px 0 50px;
}

/* about-3.png ロゴ看板 (1122x268 ≒ 4.2:1) 中央配置 */
.about-naming-logo {
    text-align: center;
    margin: 25px 0 30px;
}

.about-naming-logo img {
    max-width: 500px;
    width: 60%;
    height: auto;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   About Page - J-PEAKS
   about-4.png = テキスト下にバナー全幅配置
   -------------------------------------------------------------------------- */
.section--about-jpeaks {
    padding: 60px 0 50px;
}

/* about-4.png J-PEAKSバナー (1586x586 ≒ 2.7:1) */
.about-jpeaks-banner {
    width: 100%;
    margin-top: 15px;
}

.about-jpeaks-banner img {
    width: 100%;
    height: auto;
}

.about-jpeaks-link {
    margin-top: 20px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   About Page - 共創拠点の体制・役割
   about-5.png = テキスト下にイラスト全幅配置
   -------------------------------------------------------------------------- */
.section--about-cocreation {
    padding: 60px 0 50px;
}

/* about-5.png 体制イラスト (1608x1074 ≒ 3:2) */
.about-cocreation-illust {
    width: 100%;
    margin-top: 15px;
}

.about-cocreation-illust img {
    width: 60%;
    height: auto;
    margin: auto;
}

/* Legacy Mission Block (kept for compatibility) */
.mission-block { margin-bottom: 50px; }
.mission-block__subtitle { font-family: var(--font-en); font-size: 1.4rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
.mission-block__concept-title { font-size: 1.2rem; font-weight: 600; text-align: center; margin-bottom: 20px; }
.mission-block__lead { font-size: 0.9rem; line-height: 2; text-align: center; margin-bottom: 25px; }
.mission-block__text { font-size: 0.9rem; line-height: 2; margin-bottom: 20px; }
.mission-block__image { width: 100%; margin: 20px 0; }
.mission-block__placeholder { width: 100%; aspect-ratio: 16 / 9; background-color: var(--color-bg-light); border-radius: 5px; }

/* Vision Cards */
.vision-cards { display: flex; gap: 3%; margin-bottom: 30px; }
.vision-card { flex: 1; padding: 20px; border-radius: 8px; color: var(--color-bg-white); text-align: center; font-size: 0.85rem; line-height: 1.6; }
.vision-card--red { background-color: #C23B3B; }
.vision-card--yellow { background-color: var(--color-accent-gold); }
.vision-card--blue { background-color: var(--color-primary); }

/* Vision List */
.vision-list { margin-bottom: 30px; }
.vision-list li { display: flex; align-items: center; gap: 15px; padding: 12px 0; border-bottom: 1px solid var(--color-border-light); font-size: 0.9rem; }
.vision-list__num { font-family: var(--font-en); font-size: 1.3rem; font-weight: 700; color: var(--color-primary); min-width: 30px; }

/* Concept Images */
.concept-images { display: flex; gap: 4%; margin-top: 20px; }
.concept-images__item { flex: 1; }
.concept-images__placeholder { width: 100%; aspect-ratio: 4 / 3; background-color: var(--color-bg-light); border-radius: 5px; }
.features-image { margin-top: 20px; }
.features-image__placeholder { width: 100%; aspect-ratio: 16 / 7; background-color: var(--color-bg-light); border-radius: 5px; }

/* --------------------------------------------------------------------------
   Shop Page — 全体背景・トンマナ
   -------------------------------------------------------------------------- */
.section--shop-content {
    background-color: #F5F0E8;
    padding-bottom: 15px;
    margin-bottom: 60px;
    border-radius: 0 0 30px 30px;
}

/* 3列ナビ：各ボタン均等幅・高さ揃え */
.sub-nav--3col .sub-nav__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: stretch;
}

.sub-nav--3col .sub-nav__btn {
    width: 100%;
    min-width: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Shop専用 sub-nav: ベージュ塗り（デザイン準拠） */
.section--shop-content .sub-nav__btn,
.section--shop-content .sub-nav__btn--primary,
.section--shop-content .sub-nav__btn--outline {
    background-color: #A89880;
    border: none;
    color: #fff;
    font-weight: 600;
}
.section--shop-content .sub-nav__btn:hover,
.section--shop-content .sub-nav__btn--primary:hover,
.section--shop-content .sub-nav__btn--outline:hover {
    background-color: #8A7A68;
    color: #fff;
}
/* Shop サブメニュー（outline）は薄いベージュ */
.section--shop-content .sub-nav__btn--outline {
    background-color: #C8B8A2;
}
.section--shop-content .sub-nav__btn--outline:hover {
    background-color: #A89880;
}

/* --------------------------------------------------------------------------
   Shop Block
   -------------------------------------------------------------------------- */
.shop-block { margin-bottom: 70px; padding-top: 10px; }
.shop-block__title { font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 700; text-align: center; margin-bottom: 10px; }
.shop-block__catchcopy { font-size: 1rem; text-align: center; margin-bottom: 20px; color: var(--color-text-light); }
.shop-block__subtitle { text-align: center; font-size: 0.9rem; margin-bottom: 20px; }
.shop-block__image { margin: 20px 0; }
.shop-block__image--large { margin: 30px 0; }
.shop-block__image--large .shop-block__img {
    width: 80%;
    height: clamp(300px, 45vw, 360px);
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
}
.shop-block__placeholder { width: 100%; aspect-ratio: 16 / 9; background-color: var(--color-bg-light); border-radius: 5px; }
.shop-block__text { font-size: 0.9rem; line-height: 2; margin-bottom: 20px; }
.shop-block__section { margin-bottom: 40px; }
.shop-block__section-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.shop-block__section p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 15px; }

/* Menu レイアウト: 左テキスト / 右画像グリッド */
.shop-block__menu-layout { display: flex; gap: 5%; align-items: flex-start; margin-top: 16px; }
.shop-block__menu-text { flex: 0 0 28%; font-size: 0.85rem; line-height: 1.9; }
.shop-block__menu-text h4 { font-size: 0.95rem; font-weight: 700; margin: 20px 0 6px; }
.shop-block__menu-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.shop-block__menu-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    cursor: zoom-in;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.shop-block__menu-grid img:hover { opacity: 0.85; transform: scale(1.02); }

.shop-block__menu-images { display: flex; gap: 4%; margin-bottom: 20px; }
.shop-block__menu-images .shop-block__placeholder { flex: 1; aspect-ratio: 3 / 2; }
.shop-block__menu-images img { flex: 1; width: 48%; height: auto; border-radius: 8px; object-fit: contain; }
.shop-block__drink-image { margin: 10px auto 20px; text-align: center; }
.shop-block__drink-image img { max-width: 420px; width: 100%; height: auto; border-radius: 8px; }
.shop-block__menu-note { font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: 15px; }

/* ケータリング */
.shop-block__catering { display: flex; gap: 5%; align-items: flex-start; margin-top: 15px; }
.shop-block__catering-image { flex: 0 0 40%; }
.shop-block__catering-image img { width: 100%; height: auto; border-radius: 8px; cursor: zoom-in; transition: opacity 0.2s ease, transform 0.2s ease; }
.shop-block__catering-image img:hover { opacity: 0.85; transform: scale(1.02); }
.shop-block__catering-text { flex: 1; font-size: 0.9rem; line-height: 2; }
.shop-block__catering-text h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.shop-block__catering-tel { margin-top: 12px; font-size: 0.9rem; }

/* info-box: 農食・無印ともベージュ系 */
.shop-block__info-box {
    background-color: #C8BEA8;
    color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}
.shop-block__info-box--muji { background-color: #B5AFA0; }
.shop-block__info-title { font-weight: 600; margin-bottom: 5px; }
.shop-block__social { margin: 15px 0; }
.shop-block__social a { color: #1a1a1a; display: inline-block; }
.shop-block__operator { font-size: 0.85rem; margin-top: 10px; }
.shop-block__operator-link { font-size: 0.85rem; margin-top: 8px; }
.shop-block__operator-link a { color: #1a1a1a; text-decoration: underline; text-underline-offset: 3px; }
.shop-block__operator-link a:hover { opacity: 0.7; }
.shop-block__detail { margin-bottom: 30px; }
.shop-block__img { width: 100%; height: auto; border-radius: 8px; }

/* --------------------------------------------------------------------------
   Lightbox（メニュー画像クリック拡大）
   -------------------------------------------------------------------------- */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 20px;
}
.lightbox-overlay.is-open {
    display: flex;
}
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
    pointer-events: none;
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    font-weight: 300;
    user-select: none;
}

/* --------------------------------------------------------------------------
   無印良品セクション
   -------------------------------------------------------------------------- */
.muji-info {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--color-bg-light);
    border-radius: 10px;
}

.muji-info__hours {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.muji-info__note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.muji-info__link {
    font-size: 0.8rem;
}

.muji-info__link a {
    color: var(--color-primary);
    text-decoration: underline;
}

.muji-section {
    margin-bottom: 48px;
}

.muji-section__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding: 4px 0 4px 14px;
    border-left: 4px solid #B5AFA0;
    line-height: 1.5;
}

.muji-section__content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}

.muji-section__text {
    flex: 1 1 0;
    min-width: 0;
    font-size: 0.88rem;
    line-height: 2;
    color: var(--color-text);
}

.muji-section__text p {
    margin-bottom: 12px;
}

.muji-section__text p:last-child {
    margin-bottom: 0;
}

.muji-section__image {
    flex: 0 0 42%;
    width: 42%;
}

.muji-section__img {
    width: 100%;
    height: clamp(260px, 30vw, 320px);
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* --------------------------------------------------------------------------
   Office Block
   -------------------------------------------------------------------------- */
.office-block { margin-bottom: 40px; }
.office-block__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.office-block p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 15px; }
.office-block__note { color: var(--color-accent-orange); font-weight: 500; }
.office-block__image { margin: 20px 0; }
.office-block__image--large { margin: 30px 0; }
.office-block__placeholder { width: 100%; aspect-ratio: 16 / 9; background-color: rgba(255, 255, 255, 0.6); border-radius: 5px; }
.office-block__placeholder--small { aspect-ratio: 1 / 1; }
.office-block__gallery { display: flex; gap: 3%; margin-top: 15px; }
.office-block__gallery .office-block__placeholder--small { flex: 1; }

/* --------------------------------------------------------------------------
   Kitchen Block
   -------------------------------------------------------------------------- */
.kitchen-block { margin-bottom: 40px; }
.kitchen-block__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.kitchen-block p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 15px; }
.kitchen-block__image { margin: 20px 0; }
.kitchen-block__placeholder { width: 100%; aspect-ratio: 16 / 9; background-color: rgba(255, 255, 255, 0.6); border-radius: 5px; }
.kitchen-block__highlight { background-color: rgba(255, 255, 255, 0.7); padding: 20px; border-radius: 8px; text-align: center; margin: 20px 0; }
.kitchen-block__images { display: flex; gap: 4%; margin-top: 15px; }
.kitchen-block__images .kitchen-block__placeholder { flex: 1; aspect-ratio: 3 / 2; }

/* --------------------------------------------------------------------------
   Share Office — カードフレーム（shop-restaurant と同パターン）
   -------------------------------------------------------------------------- */
.page-hero--office {
    background: linear-gradient(135deg, #B8D0E8 0%, #D6E4F0 100%);
    margin-top: 15px;
    border-radius: 30px 30px 0 0;
}

/* Share Office: office-1.png パノラマイラスト → テキスト下に幅いっぱい */
.page-hero__illust--panorama img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin-top: 16px;
}

.section--office-content {
    background-color: #D6E4F0;
    padding-bottom: 15px;
    margin-bottom: 60px;
    border-radius: 0 0 30px 30px;
}

/* Share Office専用 sub-nav */
.so-sub-nav .sub-nav__btn--outline {
    border: none;
    color: #fff;
    background-color: #7AADD0;
    font-weight: 600;
}
.so-sub-nav .sub-nav__btn--outline:hover {
    background-color: #4d8ab5;
    color: #fff;
}

/* --------------------------------------------------------------------------
   Share Office - New Styles
   -------------------------------------------------------------------------- */
.so-hero-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.so-hero-image img {
    width: 100%;
    height: clamp(240px, 40vw, 600px);
    object-fit: cover;
    display: block;
}

.so-block {
    margin-bottom: 40px;
}

.so-block__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #7AADD0;
}

.so-block__image {
    margin: 15px 0;
}

.so-block__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.so-block__text {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 15px;
}

.so-block__text--adjusting {
    font-size: 1rem;
    font-weight: 700;
    color: #5580a0;
    text-align: center;
    padding: 20px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 8px;
}

.so-block__note {
    font-size: 0.85rem;
    color: var(--color-accent-orange);
    font-weight: 600;
}

/* シェアオフィス写真ギャラリー 4列 */
.so-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.so-gallery--wide {
    grid-template-columns: repeat(2, 1fr);
}

.so-gallery__item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.so-gallery__item img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* 6列ギャラリー */
.so-gallery--6col {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
}

/* Share Office フォトスライダー（PC: 非表示） */
.so-photo-slider { display: none; }

@media screen and (max-width: 768px) {
    .so-gallery--6col { display: none; }
    .so-photo-slider {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }
    .so-photo-slider__track {
        display: flex;
        transition: transform 0.5s ease;
    }
    .so-photo-slider__slide {
        min-width: 100%;
        flex-shrink: 0;
    }
    .so-photo-slider__slide img {
        width: 100%;
        height: clamp(200px, 55vw, 340px);
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }
    .so-photo-slider__prev,
    .so-photo-slider__next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.35);
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }
    .so-photo-slider__prev { left: 8px; }
    .so-photo-slider__next { right: 8px; }
    .so-photo-slider__dots {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
    }
    .so-photo-slider__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        border: none;
        cursor: pointer;
        padding: 0;
    }
    .so-photo-slider__dot.is-active { background: #fff; }
}

/* シェアオフィス 見出し（h2レベル） */
.so-block__heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
}

/* so-block subtitle */
.so-block__subtitle {
    font-size: 1rem;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--color-text);
}

/* ここでできること — シンプルリスト */
.so-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.so-feature-list__item {
    background: #fff;
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* 料金テーブル */
.so-price-table {
    margin-bottom: 24px;
}

.so-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin-bottom: 8px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    border-radius: 8px;
    overflow: hidden;
}

.so-table th {
    background: var(--color-primary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
}

.so-table td {
    padding: 11px 16px;
    border-bottom: 1px solid #eee;
    line-height: 1.7;
    color: var(--color-text);
}

.so-table tbody tr:last-child td {
    border-bottom: none;
}

.so-table tbody tr:nth-child(even) td {
    background: #f8f8fb;
}

.so-table__note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 6px;
    padding-left: 2px;
}

/* 書類・申請リスト */
.so-doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    background: #fff;
    border-left: 4px solid var(--color-primary);
    border-radius: 0 10px 10px 0;
    margin-bottom: 12px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.07);
}

.so-doc-item__text {
    flex: 1;
}

.so-doc-item__label {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text);
}

.so-doc-item__desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.so-doc-item__btn {
    flex-shrink: 0;
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.so-doc-item__btn--filled {
    background: var(--color-primary);
    color: #fff;
}

.so-doc-item__btn--outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.so-doc-item__btn:hover {
    opacity: 0.75;
}

/* --------------------------------------------------------------------------
   Share Office Q&A ページ
   -------------------------------------------------------------------------- */
.so-qa-back {
    margin-bottom: 30px;
}

.so-qa-back__link {
    font-size: 0.9rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.so-qa-back__link:hover { text-decoration: underline; }

.so-qa-list {
    margin-bottom: 60px;
}

.so-qa-category {
    margin-bottom: 48px;
}

.so-qa-category__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background-color: var(--color-primary);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}

.so-qa-item {
    border-bottom: 1px solid rgba(46, 58, 124, 0.15);
}

.so-qa-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 4px;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    gap: 12px;
    line-height: 1.6;
}

.so-qa-item__question:hover { color: var(--color-primary); }

.so-qa-item__icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-primary);
    flex-shrink: 0;
    line-height: 1;
}

.so-qa-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 4px;
}

.so-qa-item__answer p {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--color-text);
    padding-bottom: 18px;
}

.so-qa-item__answer a {
    color: var(--color-primary);
    text-decoration: underline;
}

.so-qa-cta {
    margin-top: 50px;
    padding: 36px 40px;
    background: var(--color-primary);
    border-radius: 16px;
    text-align: center;
}

.so-qa-cta__text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 22px;
}

.so-qa-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.so-qa-cta__btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.so-qa-cta__btn--filled {
    background: #fff;
    color: var(--color-primary);
}

.so-qa-cta__btn--outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.so-qa-cta__btn:hover { opacity: 0.8; }

/* シェアオフィス CTAボタン */
.so-cta {
    text-align: center;
    margin: 40px 0 20px;
}

.so-cta--inline {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.so-cta__lead {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.so-cta__btn {
    display: inline-block;
    padding: 14px 48px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.so-cta__btn:hover {
    background-color: #1a2a5e;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Test Kitchen — カードフレーム（shop-restaurant と同パターン）
   -------------------------------------------------------------------------- */
.page-hero--kitchen {
    background: linear-gradient(135deg, #E8B8C8 0%, #F0D6DE 100%);
    margin-top: 15px;
    border-radius: 30px 30px 0 0;
}

/* Test Kitchen: テキスト左 / office-2.png イラスト右 横並びレイアウト */
.page-hero--kitchen-layout .page-hero__inner-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4%;
}

.page-hero--kitchen-layout .page-hero__content {
    flex: 1;
}

/* office-2.png は office-1.png の高さに揃える */
.page-hero__illust--side {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
}

.page-hero__illust--side img {
    width: auto;
    height: clamp(120px, 18vw, 220px);
    object-fit: contain;
    display: block;
}

.section--kitchen-content {
    background-color: #F0D6DE;
    padding-bottom: 15px;
    margin-bottom: 60px;
    border-radius: 0 0 30px 30px;
}

/* Test Kitchen専用 sub-nav */
.tk-sub-nav .sub-nav__btn--outline {
    border: none;
    color: #fff;
    background-color: #C07090;
    font-weight: 600;
}
.tk-sub-nav .sub-nav__btn--outline:hover {
    background-color: #a05070;
    color: #fff;
}

/* --------------------------------------------------------------------------
   Test Kitchen - New Styles
   -------------------------------------------------------------------------- */
.tk-hero-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.tk-hero-image img {
    width: 100%;
    height: clamp(240px, 40vw, 600px);
    object-fit: cover;
    display: block;
}

.tk-block {
    margin-bottom: 50px;
}

.tk-block__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #C07090;
}

.tk-block__text {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 15px;
}

.tk-block__adjusting {
    font-size: 1rem;
    font-weight: 700;
    color: #a04060;
    text-align: center;
    padding: 20px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 8px;
    margin-top: 10px;
}

/* テストキッチン設備ギャラリー 3列 */
.tk-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.tk-gallery__item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.tk-gallery__caption {
    font-size: 0.78rem;
    text-align: center;
    color: var(--color-text-muted);
    margin-top: 6px;
}

/* --------------------------------------------------------------------------
   Test Kitchen — 厨房機器グリッド（ホバー詳細表示）
   -------------------------------------------------------------------------- */
.tk-equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.tk-equipment-item {
    text-align: center;
}

.tk-equipment-item__image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.tk-equipment-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tk-equipment-item__image--no-img {
    background: linear-gradient(135deg, #f0c0d0 0%, #e8a0b8 100%);
}

.tk-equipment-item__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(80, 20, 40, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.tk-equipment-item__image:hover img {
    transform: scale(1.05);
    opacity: 0.6;
}

.tk-equipment-item__image:hover .tk-equipment-item__overlay {
    opacity: 1;
}

.tk-equipment-item__desc {
    font-size: 0.72rem;
    line-height: 1.6;
    color: #fff;
    text-align: left;
}

.tk-equipment-item__name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 8px;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Test Kitchen — 利用案内 Info Box
   -------------------------------------------------------------------------- */
.tk-info-box {
    background-color: rgba(255, 255, 255, 0.7);
    border-left: 4px solid #C07090;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-top: 15px;
}

.tk-info-box__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5c1a2c;
    margin: 0;
}

.tk-info-box--note {
    border-left-color: var(--color-primary);
}

.tk-info-box--note .tk-info-box__text {
    color: var(--color-primary);
}

.tk-info-box__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.8;
}

.tk-info-box__list li::before {
    content: '・';
    color: #C07090;
}

/* --------------------------------------------------------------------------
   Test Kitchen — Coming Soon（利用規約）
   -------------------------------------------------------------------------- */
.tk-coming-soon {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    margin-top: 10px;
}

.tk-coming-soon__text {
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 800;
    color: #C07090;
    margin-bottom: 8px;
}

.tk-coming-soon__sub {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Test Kitchen — Q&A ボタン
   -------------------------------------------------------------------------- */
.tk-qa-btn-wrap {
    text-align: center;
    margin-top: 20px;
}

.tk-qa-btn {
    display: inline-block;
    padding: 14px 48px;
    background-color: #C07090;
    color: #fff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.tk-qa-btn:hover {
    background-color: #a05070;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Test Kitchen — お問い合わせ CTA
   -------------------------------------------------------------------------- */
.tk-contact {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.tk-contact__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.tk-contact__text {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.tk-contact__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tk-contact__btn {
    display: inline-block;
    padding: 13px 36px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.tk-contact__btn--outline {
    border: 2px solid #C07090;
    color: #C07090;
    background-color: transparent;
}

.tk-contact__btn--outline:hover {
    background-color: #C07090;
    color: #fff;
    transform: translateY(-2px);
}

.tk-contact__btn--filled {
    background-color: #C07090;
    color: #fff;
    border: 2px solid #C07090;
}

.tk-contact__btn--filled:hover {
    background-color: #a05070;
    border-color: #a05070;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Test Kitchen Q&A ページ
   -------------------------------------------------------------------------- */
.tk-qa-back {
    margin-bottom: 30px;
}

.tk-qa-back__link {
    font-size: 0.9rem;
    color: #C07090;
    text-decoration: none;
    font-weight: 500;
}

.tk-qa-back__link:hover {
    text-decoration: underline;
}

.tk-qa-list {
    margin-bottom: 60px;
}

.tk-qa-category {
    margin-bottom: 50px;
}

.tk-qa-category__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #5c1a2c;
    margin-bottom: 20px;
    padding: 12px 20px;
    background-color: rgba(192, 112, 144, 0.15);
    border-left: 4px solid #C07090;
    border-radius: 0 8px 8px 0;
}

.tk-qa-item {
    border-bottom: 1px solid rgba(192, 112, 144, 0.3);
}

.tk-qa-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 4px;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    gap: 12px;
    line-height: 1.6;
}

.tk-qa-item__question:hover {
    color: #C07090;
}

.tk-qa-item__icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: #C07090;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.tk-qa-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 4px;
}

.tk-qa-item__answer p {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--color-text-muted);
    padding-bottom: 18px;
}

.tk-qa-item__answer a {
    color: #C07090;
    text-decoration: underline;
}

/* ==========================================================================
   Common Space Page
   共有スペース（1・2F）— グリーン テーマ
   ========================================================================== */

/* Hero 2段構成 ------------------------------------------------------------ */

/* ラッパー全体 */
.cs-hero-wrap {
    margin-top: 15px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

/* 上段: 濃いグリーン / タイトル中央 */
.cs-hero-top {
    background: linear-gradient(135deg, #4A9A4A 0%, #6BBF5A 100%);
    padding: 36px 6% 32px;
    text-align: center;
}

.cs-hero-top__title {
    font-family: var(--font-en);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.cs-hero-top__subtitle {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.08em;
}

/* 下段: 薄いグリーン / 2カラムペアグリッド */
.cs-hero-bottom {
    background-color: #D6F0BB;
    padding: 44px 8% 44px;
}

/* 2カラムグリッド */
.cs-hero-bottom__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 6%;
}

/* 各ペア: イラスト→ボタンの縦積み */
.cs-hero-bottom__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* イラスト領域: 下端揃えで高さを統一 */
.cs-hero-bottom__illust-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: clamp(130px, 18vw, 220px);
}

.cs-hero-bottom__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

.cs-hero-nav-btn {
    display: inline-block;
    padding: 13px 36px;
    border: 2.5px solid #2C6030;
    border-radius: 50px;
    background-color: #2C6030;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background-color 0.22s, color 0.22s;
    min-width: 200px;
    text-align: center;
}

.cs-hero-nav-btn:hover {
    background-color: #1a3d1f;
    border-color: #1a3d1f;
    color: #fff;
    opacity: 1;
}

/* Section wrap ------------------------------------------------------------ */
.section--common-content {
    background-color: #D6EAD8;
    border-radius: 0 0 30px 30px;
    padding-bottom: 15px;
    margin-bottom: 60px;
}

/* Common Space sub-nav */
.section--common-content .sub-nav__btn--outline {
    background-color: #3d7a42;
    border-color: #3d7a42;
    color: #fff;
    font-weight: 600;
}
.section--common-content .sub-nav__btn--outline:hover {
    background-color: #2C6030;
    border-color: #2C6030;
    color: #fff;
}

/* Projects & Connection sub-nav */
.pc-page-wrap .sub-nav__btn--outline {
    background-color: #6A9595;
    border-color: #6A9595;
    color: #fff;
    font-weight: 600;
}
.pc-page-wrap .sub-nav__btn--outline:hover {
    background-color: #4d7878;
    border-color: #4d7878;
    color: #fff;
}

/* page-hero--common: Q&Aページ等で単体使用 */
.page-hero--common {
    background: linear-gradient(135deg, #4A9A4A 0%, #6BBF5A 100%);
    margin-top: 15px;
    border-radius: 30px 30px 0 0;
    padding: 50px 6% 40px;
    text-align: center;
}
.page-hero--common .page-hero__title { color: #fff; }
.page-hero--common .page-hero__subtitle { color: rgba(255,255,255,0.88); }

/* リード文 ----------------------------------------------------------------- */
.cs-lead {
    font-size: 0.92rem;
    line-height: 2;
    color: var(--color-text);
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: left;
    padding: 0 10px;
}

/* セクション区切り --------------------------------------------------------- */
.cs-section-divider {
    border: none;
    border-top: 2px dashed rgba(62, 124, 76, 0.3);
    margin: 60px 0;
}

/* ブロック ----------------------------------------------------------------- */
.cs-block { margin-bottom: 10px; }

.cs-block__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.cs-block__floor-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #3E7C4C;
    color: #fff;
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.cs-block__floor-badge--2f {
    background-color: #2E6B5A;
}

.cs-block__title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #2C5E36;
    letter-spacing: 0.04em;
}

/* KVフォトグリッド --------------------------------------------------------- */
.cs-photo-hero {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 10px;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.cs-photo-hero__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cs-photo-hero__sub {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs-photo-hero__sub img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    display: block;
    min-height: 0;
}

.cs-photo-hero,
.cs-photo-hero__main,
.cs-photo-hero__sub img {
    border-radius: 0;
}

/* 概要テキスト ------------------------------------------------------------- */
.cs-block__intro {
    background-color: rgba(255,255,255,0.7);
    border-left: 4px solid #5A9E60;
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 36px;
}

.cs-block__intro p {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--color-text);
}

/* フロアマップ ------------------------------------------------------------- */
.cs-floormap {
    margin-bottom: 40px;
}

.cs-floormap__title {
    font-size: 1rem;
    font-weight: 700;
    color: #3E7C4C;
    margin-bottom: 12px;
}

.cs-floormap__image img {
    width: 100%;
    max-width: 700px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.1);
}

/* 詳細ブロック ------------------------------------------------------------- */
.cs-detail {
    display: flex;
    gap: 5%;
    align-items: flex-start;
    margin-bottom: 40px;
}

.cs-detail--reverse {
    flex-direction: row-reverse;
}

.cs-detail__text {
    flex: 1;
}

.cs-detail__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C5E36;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(90,158,96,0.35);
}

.cs-detail__text p {
    font-size: 0.88rem;
    line-height: 1.95;
    color: var(--color-text);
    margin-bottom: 16px;
}

.cs-detail__specs {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 0.82rem;
    line-height: 1.7;
}

.cs-detail__specs li {
    display: flex;
    gap: 10px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(62, 124, 76, 0.15);
}

.cs-detail__spec-label {
    font-weight: 700;
    color: #3E7C4C;
    min-width: 80px;
    flex-shrink: 0;
}

.cs-detail__image {
    width: 42%;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.cs-detail__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cs-detail__image:hover img {
    transform: scale(1.03);
}

/* ボタン ------------------------------------------------------------------- */
.cs-btn {
    display: inline-block;
    padding: 11px 30px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.cs-btn--filled {
    background-color: #3E7C4C;
    color: #fff;
    border: 2px solid #3E7C4C;
}

.cs-btn--filled:hover {
    background-color: #2C5E36;
    border-color: #2C5E36;
    opacity: 1;
}

.cs-btn--white {
    background-color: #fff;
    color: #3E7C4C;
    border: 2px solid #fff;
}

.cs-btn--white:hover {
    background-color: transparent;
    color: #fff;
    opacity: 1;
}

.cs-detail__cta { margin-top: 6px; }

/* ハイライトボックス ------------------------------------------------------- */
.cs-highlight {
    margin: 40px 0 20px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #3E7C4C 0%, #5A9E60 100%);
    box-shadow: 0 6px 24px rgba(62,124,76,0.25);
}

.cs-highlight__inner {
    padding: 36px 40px;
    color: #fff;
}

.cs-highlight__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
}

.cs-highlight__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
    margin-bottom: 26px;
}

.cs-highlight__item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cs-highlight__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
}

.cs-highlight__value {
    font-size: 0.88rem;
    font-weight: 500;
}

.cs-highlight__actions {
    text-align: center;
}

/* 三大学バッジ ------------------------------------------------------------- */
.cs-univ-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 36px;
    padding: 22px 30px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 14px;
    flex-wrap: wrap;
}

.cs-univ-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cs-univ-badge__abbr {
    font-family: var(--font-en);
    font-size: 1.1rem;
    font-weight: 800;
    color: #2C5E36;
    letter-spacing: 0.1em;
}

.cs-univ-badge__name {
    font-size: 0.72rem;
    color: var(--color-text);
    font-weight: 600;
}

.cs-univ-badge__connector {
    font-size: 1.4rem;
    font-weight: 700;
    color: #5A9E60;
    margin-top: -4px;
}

/* ==========================================================================
   Common Space Q&A Page
   ========================================================================== */

/* 戻るリンク */
.cs-qa-back {
    margin-bottom: 32px;
}
.cs-qa-back__link {
    font-size: 0.85rem;
    color: #3E7C4C;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}
.cs-qa-back__link:hover { opacity: 0.7; }

/* カテゴリ */
.cs-qa-category {
    margin-bottom: 48px;
}

.cs-qa-category__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    background-color: #3E7C4C;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

/* アコーディオンアイテム */
.cs-qa-item {
    border-bottom: 1px solid rgba(62, 124, 76, 0.2);
}

.cs-qa-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    padding: 18px 8px;
    text-align: left;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1.6;
}

.cs-qa-item__question:hover {
    color: #3E7C4C;
}

.cs-qa-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #3E7C4C;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background-color 0.2s;
}

.cs-qa-item__question[aria-expanded="true"] .cs-qa-item__icon {
    background-color: #2C5E36;
}

.cs-qa-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.cs-qa-item__answer p {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--color-text-muted);
    padding: 4px 8px 20px;
}

/* CTA */
.cs-qa-cta {
    margin-top: 50px;
    padding: 36px 40px;
    background: linear-gradient(135deg, #3E7C4C 0%, #5A9E60 100%);
    border-radius: 16px;
    text-align: center;
}

.cs-qa-cta__text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 22px;
}

.cs-qa-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cs-btn--outline-green {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cs-btn--outline-green:hover {
    background-color: #fff;
    color: #3E7C4C;
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Space Block (旧テンプレート互換用・残置)
   -------------------------------------------------------------------------- */
.space-block { margin-bottom: 40px; }
.space-block__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.space-block__content { display: flex; gap: 5%; align-items: flex-start; }
.space-block__text { flex: 1; font-size: 0.85rem; line-height: 1.8; }
.space-block__text p { margin-bottom: 5px; }
.space-block__image { width: 40%; flex-shrink: 0; }
.space-block__image--full { width: 100%; }
.space-block__placeholder { width: 100%; aspect-ratio: 16 / 9; background-color: var(--color-bg-light); border-radius: 5px; }
.space-block__placeholder--small { aspect-ratio: 4 / 3; }
.space-block__gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3%; margin-top: 15px; }

/* --------------------------------------------------------------------------
   Reservation CTA (旧テンプレート互換用・残置)
   -------------------------------------------------------------------------- */
.reservation-cta { margin-top: 50px; }
.reservation-cta__box { width: 70%; max-width: 500px; margin: 0 auto 15px; padding: 25px; text-align: center; border-radius: 8px; font-size: 0.9rem; }
.reservation-cta__box--filled { background-color: var(--color-primary); color: var(--color-bg-white); }
.reservation-cta__box--outline { border: 2px solid var(--color-primary); color: var(--color-primary); }

/* ==========================================================================
   Space & Reservation Page
   ========================================================================== */

/* ---- ページヒーロー：ネイビー単色 ---- */
.page-hero--reservation {
    background-color: #E0E0E0;
    margin-top: 15px;
    border-radius: 30px 30px 0 0;
}

/* ---- page-hero--reservation: space-1.png は横長なので幅を広げる ---- */
.page-hero--reservation .page-hero__illust img {
    max-width: 65%;
}

/* ---- メインセクション ---- */
.section--reservation-content {
    background-color: #F8F6F2;
    border-radius: 0 0 30px 30px;
    padding-bottom: 15px;
    margin-bottom: 60px;
}

/* ---- sub-nav（reservation固有色） ---- */
.section--reservation-content .sub-nav__btn--primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.section--reservation-content .sub-nav__btn--primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}
.section--reservation-content .sub-nav__btn--outline {
    border-color: var(--color-primary);
    color: #fff;
    background-color: var(--color-primary);
    font-weight: 600;
}
.section--reservation-content .sub-nav__btn--outline:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
    opacity: 1;
}

/* ---- リード文・注意書き ---- */
.sr-lead {
    font-size: clamp(0.82rem,1.3vw,0.95rem);
    line-height: 2;
    margin-bottom: 14px;
}
.sr-notice {
    font-size: 0.82rem;
    color: #c0392b;
    margin-bottom: 44px;
}

/* ---- スペースブロック（shopの shop-block に相当） ---- */
.sr-block {
    margin-bottom: 52px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--color-border);
}
.sr-block:last-of-type { border-bottom: none; }
.sr-block__title {
    font-size: clamp(1.1rem,2vw,1.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}
.sr-block__sub-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 20px 0 10px;
}

/* テキスト＋画像横並びレイアウト */
.sr-block__layout {
    display: flex;
    gap: 5%;
    align-items: flex-start;
    margin-bottom: 20px;
}
.sr-block__text {
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.9;
}
.sr-block__text p { margin-bottom: 10px; }
.sr-block__image {
    width: 42%;
    flex-shrink: 0;
}
.sr-block__img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* 設備リスト（シンプルなテキストリスト） */
.sr-equip__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin-top: 8px;
}
.sr-equip__item {
    font-size: 0.82rem;
    color: var(--color-text);
    padding-left: 1em;
    position: relative;
}
.sr-equip__item::before {
    content: "・";
    position: absolute;
    left: 0;
}

/* サブギャラリー（3枚グリッド） */
.sr-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
}
.sr-gallery__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

/* フロアマップ */
.sr-floormap__img {
    width: 100%;
    max-width: 680px;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    display: block;
    margin-top: 8px;
}

/* ---- 料金 ---- */
.sr-pricing__table-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    display: block;
    margin: 20px 0;
}
.sr-pricing__pdf-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}
.sr-pricing__guide-row {
    text-align: center;
    margin-top: 8px;
}

/* ---- Googleカレンダー ---- */
.sr-calendar__embed-wrap {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #fff;
}
.sr-calendar__iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* ---- 予約の流れ ---- */
.sr-flow__note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}
.sr-flow__note strong { color: #c0392b; }
.sr-flow__steps { display: flex; flex-direction: column; }
.sr-flow__step {
    display: flex;
    gap: 18px;
    background: var(--color-bg-white);
    border-radius: 8px;
    padding: 20px 24px;
    border: 1px solid var(--color-border);
}
.sr-flow__step-num {
    font-family: var(--font-en);
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    background: var(--color-primary);
    opacity: 1;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 4px;
    min-width: 72px;
    text-align: center;
    line-height: 1.6;
    flex-shrink: 0;
    align-self: flex-start;
}
.sr-flow__step-body { flex: 1; font-size: 0.85rem; line-height: 1.9; }
.sr-flow__step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.sr-flow__apply-img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    margin: 12px 0;
    display: block;
}
.sr-flow__form-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.sr-flow__arrow {
    text-align: center;
    font-size: 1rem;
    color: var(--color-primary);
    opacity: 0.35;
    padding: 4px 0;
}

/* ---- Q&A ---- */
.sr-qa__list { display: flex; flex-direction: column; gap: 2px; }
.sr-qa__item {
    background: var(--color-bg-white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}
.sr-qa__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
    gap: 12px;
    line-height: 1.5;
    font-family: var(--font-ja);
}
.sr-qa__question:hover { background: var(--color-bg-light); }
.sr-qa__icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--color-primary);
}
.sr-qa__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--color-text-light);
    padding: 0 18px;
}
.sr-qa__answer[hidden] { display: block; }
.sr-qa__answer p { padding: 0 0 14px; }

/* ---- CTA ---- */
.reservation-cta { margin-top: 52px; }
.reservation-cta__box {
    width: 80%;
    max-width: 820px;
    margin: 0 auto 16px;
    padding: 28px 32px;
    text-align: center;
    border-radius: 8px;
}
.reservation-cta__box--filled {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}
.reservation-cta__box--outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}
.reservation-cta__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.reservation-cta__desc {
    font-size: 0.82rem;
    opacity: 0.8;
    margin-bottom: 16px;
}
.reservation-cta__btn {
    display: inline-block;
    padding: 10px 32px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: opacity var(--transition);
}
.reservation-cta__btn:hover { opacity: 0.8; }
.reservation-cta__btn--white { background: #fff; color: var(--color-primary); }
.reservation-cta__btn--primary { background: var(--color-primary); color: #fff; }
.reservation-cta__btn--outline-dark { border: 2px solid var(--color-primary); color: var(--color-primary); background: transparent; }
.reservation-cta__btn--outline-dark:hover { background: var(--color-primary); color: #fff; opacity: 1; }

/* --------------------------------------------------------------------------
   Projects Block
   -------------------------------------------------------------------------- */
.projects-block { margin-bottom: 50px; }
.projects-block__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; }
.projects-block__image { margin: 20px 0; }
.projects-block__placeholder { width: 100%; aspect-ratio: 16 / 9; background-color: var(--color-bg-light); border-radius: 5px; }
.projects-block__placeholder--small { aspect-ratio: 4 / 3; }
.projects-block__gallery { display: flex; gap: 3%; margin-top: 15px; }
.projects-block__gallery .projects-block__placeholder--small { flex: 1; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 30px; }
.project-card { background-color: var(--color-bg-white); border-radius: 5px; overflow: hidden; }
.project-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.project-card__image { margin-bottom: 10px; }
.project-card__placeholder { width: 100%; aspect-ratio: 16 / 10; background-color: var(--color-bg-light); border-radius: 5px; }
.project-card__text { font-size: 0.85rem; line-height: 1.8; }

/* --------------------------------------------------------------------------
   Projects & Connection Page
   -------------------------------------------------------------------------- */
.pc-page-wrap {
    background: linear-gradient(180deg, #B8CCCC 0%, #D6E2E2 15%, #E8EDED 40%, var(--color-bg-light) 100%);
    border-radius: 20px;
    overflow: hidden;
}

.pc-page-wrap .page-hero--projects {
    background: linear-gradient(135deg, #8FAAAA 0%, #B8CCCC 100%);
}

.pc-page-wrap .section--projects {
    background: transparent;
}

.pc-block {
    margin-bottom: 60px;
}

.pc-block__title {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid #bbb;
}

/* コンセプト */
.pc-concept__text {
    font-size: 0.85rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 20px;
}

.pc-concept__image {
    margin: 30px auto;
    text-align: center;
}

.pc-concept__image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
}

.pc-concept__links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.pc-concept__link-btn {
    display: inline-block;
    padding: 10px 36px;
    background-color: #8FAAAA;
    color: var(--color-bg-white);
    border-radius: 30px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: opacity var(--transition);
}

.pc-concept__link-btn:hover {
    opacity: 0.8;
}

/* プロジェクトカード（ロゴ＋テキスト横並び） */
.pc-project-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.pc-project-card:last-child {
    border-bottom: none;
}

.pc-project-card__logo {
    flex-shrink: 0;
    width: 140px;
}

.pc-project-card__logo img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.pc-project-card__body {
    flex: 1;
}

.pc-project-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text);
}

.pc-project-card__period {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.pc-project-card__desc {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 10px;
}

.pc-project-card__link {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-decoration: underline;
    word-break: break-all;
}

/* 共創コミュニティ */
.pc-community {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.pc-community__logo {
    flex-shrink: 0;
    width: 100px;
}

.pc-community__logo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.pc-community__body {
    flex: 1;
    font-size: 0.85rem;
    line-height: 2;
    color: var(--color-text);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background-color: #1a1a2e; color: var(--color-bg-white); padding: 40px 0 20px; margin-left: 0; }
.site-footer__inner { width: 92%; max-width: 1440px; margin: 0 auto; text-align: center; }
.site-footer .logo-text { font-size: 1rem; color: var(--color-bg-white); }
.site-footer .logo-sub { font-size: 1rem; font-weight: 700; color: rgba(255, 255, 255, 1); }
.site-footer__info { margin: 15px 0; font-size: 0.8rem; opacity: 0.8; line-height: 1.8; }
.site-footer__social { display: flex; justify-content: center; gap: 15px; margin: 15px 0; }
.site-footer__social a { color: var(--color-bg-white); opacity: 0.7; transition: opacity var(--transition); }
.site-footer__social a:hover { opacity: 1; }
.site-footer__copyright { font-size: 0.7rem; opacity: 0.5; margin-top: 20px; }

/* --------------------------------------------------------------------------
   No Posts
   -------------------------------------------------------------------------- */
.no-posts { text-align: center; font-size: 1rem; color: var(--color-text-muted); padding: 60px 0; }

/* ==========================================================================
   RESPONSIVE - Tablet (max-width: 1024px)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    :root { --sidebar-width: 270px; }
    .sidebar-nav { width: 250px; left: 10px; border-radius: 28px; }
    .sidebar-nav__label { font-size: 0.7rem; }
    .sidebar-nav__sublabel { font-size: 0.48rem; }
    .news-grid { grid-template-columns: repeat(3, 1fr); }
    .facility-floor__image { width: 38%; }
    .contact-form { width: 95%; }
    .page-hero--shop { border-radius: 20px 20px 0 0; margin-top: 10px; }
    .section--shop-content { border-radius: 0 0 20px 20px; }
    .page-hero--office { border-radius: 20px 20px 0 0; margin-top: 10px; }
    .section--office-content { border-radius: 0 0 20px 20px; }
    .page-hero--kitchen { border-radius: 20px 20px 0 0; margin-top: 10px; }
    .section--kitchen-content { border-radius: 0 0 20px 20px; }
    .tk-equipment-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .cs-hero-wrap { border-radius: 20px 20px 0 0; margin-top: 10px; }
    .page-hero--common { border-radius: 20px 20px 0 0; margin-top: 10px; }
    .section--common-content { border-radius: 0 0 20px 20px; }
    .page-hero--reservation { border-radius: 20px 20px 0 0; margin-top: 10px; }
    .section--reservation-content { border-radius: 0 0 20px 20px; }
    .sr-block__layout { gap: 4%; }
    .sr-block__image { width: 44%; }
    .sr-gallery { grid-template-columns: repeat(3,1fr); gap:8px; }
    .sr-calendar__iframe { height: 500px; }
    .cs-highlight__grid { grid-template-columns: repeat(2, 1fr); }
    .pc-page-wrap { border-radius: 14px; }
    .page-hero--projects { border-radius: 14px 14px 0 0; }
}

/* ==========================================================================
   RESPONSIVE - Mobile Large (max-width: 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
    :root { --sidebar-width: 0px; }
    .top-bar { height: 70px; }
    .top-bar__text { font-size: 0.62rem; max-width: 65%; }
    .top-bar__contact-btn { font-size: 0.7rem; padding: 6px 14px; }
    .sidebar-nav { transform: translateX(calc(-100% - 20px)); width: 260px; top: 70px; left: 0; height: calc(100vh - 70px); overflow-y: auto; box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18); border-radius: 0 0 20px 0; padding-top: 20px; }
    .sidebar-nav.is-open { transform: translateX(0); }
    .hamburger { display: flex; top: 17px; left: 12px; }
    .top-bar__inner { padding-left: 62px; }
    .main-content { margin-left: 0; margin-top: 70px; padding: 10px 10px 0; }
    .site-footer { margin-left: 0; }
    .hero { height: 60vh; min-height: 300px; }
    .hero__title { font-size: 1.4rem; }
    .news-grid, .news-grid--archive { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .section { padding: 40px 0; }
    .section__inner { width: 92%; }
    .section-box { padding: 25px 4%; border-radius: 12px; }
    .section__title { font-size: 1.4rem; margin-bottom: 25px; }
    .facility-floor { flex-direction: column; }
    .facility-floor__image { width: 100%; }
    .common-detail { flex-direction: column; }
    .common-detail__image { width: 100%; }
    .space-block__content { flex-direction: column; }
    .space-block__image { width: 100%; }
    .space-block__gallery { grid-template-columns: repeat(2, 1fr); }
    .vision-cards { flex-direction: column; gap: 10px; }
    .concept-images { flex-direction: column; gap: 15px; }
    .about-kv { width: 95%; border-radius: 10px; }
    .about-mission__heading { flex-direction: column; align-items: center; gap: 10px; margin: 0 0 20px; }
    .about-mission__label { font-size: 2.2rem; padding-top: 0; }
    .about-mission__title { font-size: 1.6rem; line-height: 1.6; text-align: center; flex: none; width: 100%; }
    .about-mission__illust { width: 180px; align-self: center; }
    .about-mission__desc { text-align: left; font-size: 0.75rem; }
    .about-mission__nav { flex-direction: column; align-items: center; gap: 6px; }
    .about-mission__btn { width: 85%; font-size: 0.65rem; padding: 8px 20px; }
    .about-cocreation-illust img { width: 95%; }
    .contact-form { width: 100%; }
    .contact-form__row { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
    .contact-form__label { grid-column: 1; grid-row: 1; padding-top: 0; margin-bottom: 10px; }
    .contact-form__input, .contact-form__textarea { grid-column: 1; grid-row: 2; width: 100%; }
    .contact-form__select-wrap { grid-column: 1; grid-row: 2; width: 100%; }
    .contact-form__select { width: 100%; }
    .contact-form__error { grid-column: 1; grid-row: 3; }
    .contact-form__char-count { grid-column: 1; grid-row: 3; }
    .contact-confirm__row { grid-template-columns: 130px 1fr; gap: 0 12px; }
    .contact-confirm__actions { gap: 12px; }
    .contact-modal__box { padding: 36px 24px 32px; }
    .project-grid { grid-template-columns: 1fr; }
    .article__inner { width: 92%; }
    .page-hero--shop { border-radius: 14px 14px 0 0; margin-top: 8px; }
    .page-hero--shop .page-hero__illust img { max-width: 100%; }
    .section--shop-content { border-radius: 0 0 14px 14px; }
    .page-hero--reservation { border-radius: 14px 14px 0 0; margin-top: 8px; }
    .section--reservation-content { border-radius: 0 0 14px 14px; }
    .page-hero--reservation .page-hero__illust img { max-width: 100%; }
    .sr-block__layout { flex-direction: column; gap: 16px; }
    .sr-block__image { width: 100%; }
    .sr-gallery { grid-template-columns: repeat(2,1fr); }
    .sr-flow__step { flex-direction: column; gap: 8px; }
    .sr-flow__step-num { font-size: 1.4rem; width: auto; }
    .sr-calendar__iframe { height: 450px; }
    .reservation-cta__box { width: 95%; }
    .reservation-cta__desc { font-size: 0.74rem; }
    .sr-qa__link-wrap { text-align: center; }
    .sub-nav__btn { font-size: 0.7rem; padding: 8px 12px; min-width: auto; }
    .sub-nav__btn--primary { min-width: auto; }
    .sub-nav--3col .sub-nav__row { grid-template-columns: repeat(2, 1fr); }
    .shop-block__image--large .shop-block__img { width: 95%; height: clamp(200px, 50vw, 320px); }
    .shop-block__menu-layout { flex-direction: column; gap: 20px; }
    .shop-block__menu-text { flex: none; width: 100%; }
    .shop-block__menu-grid { grid-template-columns: 1fr; gap: 16px; }
    .shop-block__menu-images { flex-direction: column; gap: 15px; }
    .shop-block__menu-images img { width: 100%; }
    .shop-block__catering { flex-direction: column; gap: 20px; }
    .shop-block__catering-image { flex: none; width: 100%; }
    .muji-section__content { flex-direction: column; gap: 20px; }
    .muji-section__image { flex: none; width: 100%; }
    .muji-section__img { height: clamp(220px, 45vw, 300px); object-fit: cover; border-radius: 8px; }
    .office-block__gallery { flex-direction: column; gap: 15px; }
    .kitchen-block__images { flex-direction: column; gap: 15px; }
    .so-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .so-gallery--wide { grid-template-columns: 1fr; }
    .so-gallery--6col { grid-template-columns: repeat(2, 1fr); }
    .so-feature-list { grid-template-columns: repeat(2, 1fr); }
    .so-doc-item { flex-direction: column; align-items: flex-start; gap: 12px; }
    .so-qa-cta { padding: 28px 20px; }
    .tk-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .tk-equipment-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .page-hero--office { border-radius: 14px 14px 0 0; margin-top: 8px; }
    .section--office-content { border-radius: 0 0 14px 14px; }
    .page-hero--kitchen { border-radius: 14px 14px 0 0; margin-top: 8px; }
    .section--kitchen-content { border-radius: 0 0 14px 14px; }
    /* キッチンヒーロー: モバイルでは縦積みに */
    .page-hero--kitchen-layout .page-hero__inner-flex { flex-direction: column; align-items: center; gap: 12px; }
    .page-hero--kitchen-layout .page-hero__content { text-align: center; }
    /* Common Space */
    .cs-hero-wrap { border-radius: 14px 14px 0 0; margin-top: 8px; }
    .page-hero--common { border-radius: 14px 14px 0 0; margin-top: 8px; }
    .section--common-content { border-radius: 0 0 14px 14px; }
    .cs-hero-bottom__grid { gap: 0 4%; }
    .cs-hero-nav-btn { min-width: 140px; padding: 11px 20px; font-size: 0.88rem; }
    .cs-detail { flex-direction: column; gap: 20px; }
    .cs-detail--reverse { flex-direction: column; }
    .cs-detail__image { width: 100%; }
    .cs-photo-hero { grid-template-columns: 1fr; }
    .cs-photo-hero__sub { flex-direction: row; }
    .cs-highlight__grid { grid-template-columns: 1fr; gap: 10px; }
    .cs-highlight__inner { padding: 26px 24px; }
    .cs-floormap__image img { max-width: 100%; }
    .cs-univ-badges { gap: 12px; padding: 18px 16px; }
    .page-hero__illust--side img { height: clamp(100px, 40vw, 180px); }
    .tk-contact { padding: 30px 20px; }
    .tk-contact__buttons { flex-direction: column; align-items: center; }
    .tk-contact__btn { width: 90%; text-align: center; }
    .cs-qa-cta { padding: 28px 20px; }
    .cs-qa-cta__buttons { flex-direction: column; align-items: center; }
    .cs-qa-cta__buttons .cs-btn { width: 80%; text-align: center; }
    .reservation-cta__box { width: 95%; }
    .projects-block__gallery { flex-direction: column; gap: 15px; }
    .page-hero { padding: 40px 5% 30px; }
    .page-hero__title { font-size: 1.8rem; }
    .page-hero__illust--double { flex-direction: row; }
    .page-hero__illust--triple { flex-wrap: wrap; }
    .page-hero__illust--triple img { width: 30%; min-width: 100px; }
    .pc-project-card { flex-direction: column; gap: 15px; }
    .pc-project-card__logo { width: 100px; }
    .pc-community { flex-direction: column; gap: 15px; }
    .pc-community__logo { width: 80px; }
    .pc-concept__links { flex-direction: column; align-items: center; gap: 8px; }
    .pc-concept__link-btn { width: 70%; text-align: center; padding: 10px 20px; }
    .pc-page-wrap { border-radius: 10px; }
    .page-hero--projects { border-radius: 10px 10px 0 0; margin-top: 8px; }
}

/* ==========================================================================
   RESPONSIVE - Mobile Small (max-width: 480px)
   ========================================================================== */
@media screen and (max-width: 480px) {
    .news-grid, .news-grid--archive { grid-template-columns: 1fr; }
    .hero { height: 50vh; min-height: 250px; }
    .hero__title { font-size: 1.2rem; }
    .hero__subtitle-en { font-size: 0.7rem; }
    .page-hero__title { font-size: 1.4rem; }
    .section__title { font-size: 1.2rem; }
    .mission-block__subtitle { font-size: 1.1rem; }
    .page-hero--shop { border-radius: 10px 10px 0 0; margin-top: 6px; }
    .section--shop-content { border-radius: 0 0 10px 10px; }
    .page-hero--office { border-radius: 10px 10px 0 0; margin-top: 6px; }
    .section--office-content { border-radius: 0 0 10px 10px; }
    .page-hero--kitchen { border-radius: 10px 10px 0 0; margin-top: 6px; }
    .section--kitchen-content { border-radius: 0 0 10px 10px; }
    .cs-hero-wrap { border-radius: 10px 10px 0 0; margin-top: 6px; }
    .page-hero--common { border-radius: 10px 10px 0 0; margin-top: 6px; }
    .section--common-content { border-radius: 0 0 10px 10px; }
    .page-hero--reservation { border-radius: 10px 10px 0 0; margin-top: 6px; }
    .section--reservation-content { border-radius: 0 0 10px 10px; }
    .sr-gallery { grid-template-columns: 1fr; }
    .sr-flow__form-btns { flex-direction: column; }
    .sr-pricing__pdf-row { flex-direction: column; align-items: center; }
    .sr-calendar__iframe { height: 380px; }
    .cs-hero-bottom { padding: 28px 5% 32px; }
    .cs-hero-bottom__grid { grid-template-columns: 1fr; gap: 32px 0; }
    .cs-hero-bottom__illust-wrap { height: clamp(100px, 40vw, 180px); }
    .cs-hero-nav-btn { width: 80%; min-width: unset; }
    .cs-univ-badge__abbr { font-size: 0.9rem; }
    .cs-photo-hero__sub { flex-direction: column; }
    .cs-highlight__inner { padding: 20px 16px; }
    .tk-equipment-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .so-gallery--6col { grid-template-columns: 1fr; }
    .so-feature-list { grid-template-columns: 1fr; }
    .so-table { font-size: 0.78rem; }
    .so-table th, .so-table td { padding: 8px 10px; }
    .so-qa-cta__buttons { flex-direction: column; align-items: center; }

    .tk-equipment-item__desc { font-size: 0.65rem; }
    .sub-nav__row { flex-direction: column; align-items: center; }
    .sub-nav--3col .sub-nav__row { grid-template-columns: 1fr; }
    .sub-nav__btn { width: 80%; }
    .space-block__gallery { grid-template-columns: 1fr; }
    .category-filter { flex-direction: column; align-items: center; }
    .category-filter__btn { width: 80%; }
    .access-map iframe, .access-map__placeholder { height: 250px; }
    .pc-page-wrap { border-radius: 8px; }
    .page-hero--projects { border-radius: 8px 8px 0 0; margin-top: 6px; }
    .about-mission__label { font-size: 2rem; }
    .about-mission__title { font-size: 1.4rem; }
    .about-mission__illust { width: 180px; align-self: center; }
    .about-mission__desc { font-size: 0.82rem; }
    .muji-section__img { height: clamp(180px, 55vw, 260px); object-fit: cover; }
    .muji-info__note { font-size: 0.75rem; }
}

/* ==========================================================================
   Common Space — リニューアル
   ========================================================================== */

/* リード文エリア（後日テキスト追記用の余白） */
.cs-lead-area {
    min-height: 8px;
    margin-bottom: 8px;
}

/* 写真2枚 横並び */
.cs-photo-row {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.cs-photo-row__item {
    flex: 1;
    min-width: 0;
}

.cs-photo-row__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* ここでできること */
.cs-can-do {
    margin-bottom: 8px;
}

.cs-can-do__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.cs-can-do__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cs-can-do__list > li {
    padding-left: 1.2em;
    position: relative;
    font-size: 0.88rem;
    line-height: 1.8;
}

.cs-can-do__list > li::before {
    content: '・';
    position: absolute;
    left: 0;
}

/* ※注記（赤色） */
.cs-can-do__note {
    display: block;
    font-size: 0.78rem;
    color: #c0392b;
    margin-top: 2px;
}

/* ご利用にあたって */
.cs-block--usage {
    background: var(--color-bg-light);
    border-radius: 12px;
    padding: 28px 32px;
}

.cs-usage__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cs-usage__list > li {
    display: flex;
    gap: 16px;
    align-items: baseline;
    font-size: 0.88rem;
    line-height: 1.8;
}

.cs-usage__label {
    flex: 0 0 120px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-primary);
}

.cs-usage__value {
    flex: 1;
}

.cs-usage__note {
    display: block;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Space & Reservation — リニューアル
   ========================================================================== */

/* 主な利用用途 */
.sr-usage {
    margin-bottom: 16px;
}

.sr-usage__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    border-left: 3px solid var(--color-primary);
    padding-left: 10px;
    margin-bottom: 10px;
}

.sr-usage__list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sr-usage__list li {
    border-radius: 20px;
    padding: 5px 16px;
    font-size: 0.85rem;
}

.sr-usage__note {
    font-size: 0.8rem;
    color: #c0392b;
    margin-top: 8px;
}

/* フロアマップ 横並び2枚 */
.sr-floormap-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 24px 0 48px;
}

.sr-floormap-row__item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.sr-floormap-row__label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.sr-floormap-row__item img {
    width: 100%;
    display: block;
    border-radius: 8px;
    border: none;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    object-position: center;
    background: #f8f6f2;
}

/* 利用料金テーブル */
.sr-pricing__note {
    text-align: right;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.sr-ptable-wrap {
    overflow-x: auto;
    margin-bottom: 28px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.sr-ptable {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    background: #fff;
    min-width: 640px;
}

.sr-ptable th,
.sr-ptable td {
    border: 1px solid #e0d8cc;
    padding: 12px 14px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5;
}

/* 左端ラベル列 */
.sr-ptable__head-label {
    background: #f5efe6;
    font-weight: 700;
    font-size: 1rem;
    border-left: 4px solid #c8a96e;
    text-align: left;
    padding-left: 16px;
}

.sr-ptable__row-label {
    background: #faf6f0;
    font-weight: 600;
    text-align: left;
    padding-left: 16px;
    border-left: 4px solid #e0d8cc;
    white-space: nowrap;
}

/* 1階ヘッダー（フル版） */
.sr-ptable__head-1f {
    background: #f5efe6;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #c8a96e;
    border-radius: 20px;
}

/* 1階ヘッダー（画像＋ボタン行のみ版） */
.sr-ptable__head-1f-plain {
    background: #faf6f0;
    font-weight: 600;
    font-size: 0.88rem;
}

/* 画像直下のテーブルは上端を画像に密着させる */
.sr-pricing__table-img + .sr-ptable-wrap {
    margin-top: 0;
    border-radius: 0 0 10px 10px;
}
.sr-pricing__table-img + .sr-ptable-wrap .sr-ptable {
    border-top: none;
}
.sr-pricing__table-img {
    display: block;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

/* 3階ヘッダー */
.sr-ptable__head-3f {
    background: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #4CAF50;
    color: #2e7d32;
}

/* サブヘッダー行 */
.sr-ptable__sub {
    background: #faf6f0;
    font-weight: 600;
    font-size: 0.82rem;
}

.sr-ptable__sub-note,
.sr-ptable__note {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.sr-ptable__tax {
    font-size: 0.75rem;
    font-weight: 400;
}

/* 利用規約行 */
.sr-ptable__terms-row td {
    background: #fff;
}

.sr-ptable__terms-btn {
    display: block;
    background: transparent;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    border: 2px solid var(--color-primary);
    text-decoration: none;
    margin: 3px auto;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    width: fit-content;
}

.sr-ptable__terms-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* 予約行 */
.sr-ptable__reserve-row td {
    background: #fff;
}

.sr-ptable__reserve-btn {
    display: inline-block;
    background: #4CAF50;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.sr-ptable__reserve-btn:hover {
    background: #388e3c;
    color: #fff;
}

/* 申込区分テーブル（STEP2） */
.sr-apply-table-wrap {
    overflow-x: auto;
    margin: 16px 0 20px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.sr-apply-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    background: #fff;
    min-width: 560px;
}

.sr-apply-table th,
.sr-apply-table td {
    border: 1px solid #e0d8cc;
    padding: 12px 14px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.6;
}

.sr-apply-table__head-label {
    background: #f5efe6;
    font-weight: 700;
    font-size: 1rem;
    border-left: 4px solid #c8a96e;
    text-align: left;
    padding-left: 16px;
}

.sr-apply-table__head-col {
    background: #f5efe6;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text);
}

.sr-apply-table__row-label {
    background: #faf6f0;
    font-weight: 700;
    text-align: left;
    padding-left: 16px;
    border-left: 4px solid #e0d8cc;
    white-space: nowrap;
}

.sr-apply-table__colspan {
    text-align: center;
}

.sr-apply-table__note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* 利用規約行：行ラベルのみ備考と同じ背景、ボタンtdは白 */
.sr-apply-table__terms-row td {
    background: #fff;
}
.sr-apply-table__terms-row .sr-apply-table__row-label {
    background: #faf6f0;
}

/* 申込フォーム行：行ラベルのみ備考と同じ背景、ボタンtdは白 */
.sr-apply-table__form-row td {
    background: #fff;
}
.sr-apply-table__form-row .sr-apply-table__row-label {
    background: #faf6f0;
}

.sr-apply-table__form-btn {
    display: inline-block;
    border: 2px solid var(--color-primary);
    color: #fff;
    background: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.sr-apply-table__form-btn:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

.sr-apply-table__form-btn--primary {
    background: var(--color-primary);
    color: #fff;
}

.sr-apply-table__form-btn--primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

/* 貸出備品リストボタン群 */
.sr-block--equipment {
    background: var(--color-bg-light);
    border-radius: 12px;
    padding: 28px 32px;
}

.sr-equip-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 20px;
    justify-content: center;
}

.sr-equip-btns .sub-nav__btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* 予約ブロック内テキスト */
.sr-reservation__info {
    font-size: 0.87rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

/* STEPナンバー（文字列対応） — 定義は上部 .sr-flow__step-num に統合済み */

/* PDF注記リンク */
.sr-flow__pdf-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.sr-flow__pdf-note a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Q&Aリンクブロック */
.sr-qa__link-wrap {
    margin-top: 16px;
}

/* ==========================================================================
   Equipment List Page — 備品リストページ
   ========================================================================== */

.section--equipment-content {
    padding: 40px 0 80px;
}

.eq-lead {
    font-size: 0.87rem;
    line-height: 1.9;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.eq-block {
    margin-bottom: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}

.eq-block:last-of-type {
    border-bottom: none;
}

.eq-block__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
    padding-left: 14px;
    margin-bottom: 12px;
}

.eq-block__note {
    font-size: 0.82rem;
    color: #c0392b;
    margin-bottom: 8px;
}

.eq-sub-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--color-text);
}

.eq-sub-title--mt {
    margin-top: 36px;
}

/* テーブル */
.eq-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.eq-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.87rem;
}

.eq-table th {
    background: var(--color-primary);
    color: #fff;
    text-align: left;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 0.82rem;
}

.eq-table td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.6;
}

.eq-table tr:last-child td {
    border-bottom: none;
}

.eq-table tr:nth-child(even) td {
    background: #fafaf9;
}

.eq-table__num {
    width: 72px;
}

.eq-table__qty {
    width: 64px;
    text-align: center;
}

/* 消耗品リスト */
.eq-consumables {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    font-size: 0.87rem;
}

.eq-consumables__row {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
}

.eq-consumables__row:last-child {
    border-bottom: none;
}

.eq-consumables__label {
    flex: 0 0 120px;
    background: var(--color-bg-light);
    padding: 12px 14px;
    font-weight: 600;
    font-size: 0.82rem;
    line-height: 1.6;
}

.eq-consumables__text {
    flex: 1;
    padding: 12px 14px;
    line-height: 1.8;
}

/* 注意事項 */
.eq-notes {
    margin-top: 24px;
    background: var(--color-bg-light);
    border-radius: 8px;
    padding: 20px 24px;
}

.eq-notes__title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.eq-notes__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eq-notes__list li {
    padding-left: 1.4em;
    position: relative;
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.eq-notes__list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

/* 戻るボタン */
.eq-back {
    text-align: center;
    margin-top: 48px;
}

/* ==========================================================================
   Responsive — Common Space / Space & Reservation / Equipment List
   ========================================================================== */

@media (max-width: 1024px) {
    .sr-equip-btns { gap: 16px; }
    .sr-equip-btns .sub-nav__btn { min-width: 160px; }
}

@media (max-width: 768px) {
    .cs-photo-row { gap: 8px; }
    .cs-block--usage { padding: 20px 16px; }
    .cs-usage__list > li { flex-direction: column; gap: 2px; }
    .cs-usage__label { flex: none; }
    .sr-gallery--large { grid-template-columns: repeat(2, 1fr); }
    .sr-equip-btns { flex-direction: column; gap: 10px; align-items: stretch; }
    .sr-equip-btns .sub-nav__btn { width: 100%; min-width: unset; }
    .sr-floormap-row { flex-direction: column; gap: 16px; margin: 24px 0 48px; }
    .eq-table__num { width: 52px; }
    .eq-consumables__label { flex: 0 0 90px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
    .cs-photo-row { flex-direction: column; }
    .sr-gallery--large { grid-template-columns: 1fr; }
    .eq-table { font-size: 0.8rem; }
    .eq-table th, .eq-table td { padding: 8px 10px; }
    .eq-consumables__row { flex-direction: column; }
    .eq-consumables__label { flex: none; width: 100%; }
}

/* ==========================================================================
   Image Modal
   ========================================================================== */
#img-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
#img-modal.is-open {
    display: flex;
}
#img-modal__img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
#img-modal__close {
    position: fixed;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 10px;
    opacity: 0.8;
    transition: opacity 0.15s;
}
#img-modal__close:hover { opacity: 1; }

/* ==========================================================================
   Common Space — ここでできること ボーダー色上書き（緑）
   ========================================================================== */
#cafeteria .so-feature-list,
#sanuniv .so-feature-list {
    grid-template-columns: repeat(2, 1fr);
}
#cafeteria .so-feature-list__item,
#sanuniv .so-feature-list__item {
    border-left-color: #4CAF50;
}
#cafeteria .so-block__title,
#sanuniv .so-block__title {
    border-bottom-color: #4CAF50;
}

@media screen and (max-width: 768px) {
    #cafeteria .so-feature-list,
    #sanuniv .so-feature-list {
        display: block;
    }
    #cafeteria .so-feature-list__item,
    #sanuniv .so-feature-list__item {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
}

/* ==========================================================================
   Common Space Slider
   ========================================================================== */
.cs-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 32px;
    background: #000;
}
.cs-slider__track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}
.cs-slider__slide {
    flex: 0 0 100%;
    width: 100%;
}
.cs-slider__slide img {
    display: block;
    width: 100%;
    height: clamp(240px, 40vw, 480px);
    object-fit: cover;
    object-position: center;
}
.cs-slider__prev,
.cs-slider__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    padding: 12px 16px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    z-index: 2;
    line-height: 1;
}
.cs-slider__prev { left: 10px; }
.cs-slider__next { right: 10px; }
.cs-slider__prev:hover,
.cs-slider__next:hover { background: rgba(0, 0, 0, 0.7); }
.cs-slider__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.cs-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}
.cs-slider__dot.is-active { background: #fff; }

@media (max-width: 768px) {
    .cs-slider__slide img {
        height: clamp(180px, 50vw, 320px);
    }
    .cs-slider__prev,
    .cs-slider__next {
        padding: 8px 12px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   Space Reservation — スライダー（SP専用）
   ========================================================================== */
/* PC: sr-sliderは非表示、sr-galleryを表示 */
.sr-slider { display: none; }

/* SP: sr-galleryを非表示、sr-sliderを表示 */
@media screen and (max-width: 768px) {
    .sr-gallery { display: none; }
    .sr-slider {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        margin: 16px 0;
    }
    .sr-slider__track {
        display: flex;
        transition: transform 0.5s ease;
    }
    .sr-slider__slide {
        min-width: 100%;
        flex-shrink: 0;
    }
    .sr-slider__slide img {
        width: 100%;
        height: clamp(200px, 55vw, 340px);
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }
    .sr-slider__prev,
    .sr-slider__next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.35);
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }
    .sr-slider__prev { left: 8px; }
    .sr-slider__next { right: 8px; }
    .sr-slider__dots {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
    }
    .sr-slider__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        border: none;
        cursor: pointer;
        padding: 0;
    }
    .sr-slider__dot.is-active { background: #fff; }
}

/* ==========================================================================
   Space Reservation — 申込テーブル SP縦長レイアウト
   ========================================================================== */
@media screen and (max-width: 768px) {
    .sr-apply-table-wrap {
        overflow-x: visible;
    }
    .sr-apply-table {
        min-width: 0;
        width: 100%;
    }
    /* theadを非表示にして区分名をdata属性で表示 */
    .sr-apply-table thead { display: none; }
    .sr-apply-table tbody,
    .sr-apply-table tr,
    .sr-apply-table td {
        display: block;
        width: 100%;
    }
    /* 行ラベルをブロック見出しに */
    .sr-apply-table__row-label {
        background: #f5efe6;
        border-left: 4px solid #c8a96e;
        font-size: 0.85rem;
        padding: 8px 12px;
        white-space: normal;
        border-bottom: none;
    }
    /* データセルはラベル付きで縦並び */
    .sr-apply-table td:not(.sr-apply-table__row-label):not(.sr-apply-table__colspan) {
        border-top: none;
        border-bottom: 1px solid #e0d8cc;
        border-right: 1px solid #e0d8cc;
        border-left: 1px solid #e0d8cc;
        padding: 8px 12px;
        font-size: 0.85rem;
        background: #fff;
    }
    .sr-apply-table td:not(.sr-apply-table__row-label):not(.sr-apply-table__colspan)::before {
        display: block;
        font-weight: 700;
        font-size: 0.75rem;
        color: var(--color-text-muted);
        margin-bottom: 4px;
    }
    /* 一般・会員・本学関係者のラベルをbefore擬似要素で */
    .sr-apply-table tr td:nth-child(2):not(.sr-apply-table__row-label)::before { content: "一般の方"; }
    .sr-apply-table tr td:nth-child(3):not(.sr-apply-table__row-label)::before { content: "会員"; }
    .sr-apply-table tr td:nth-child(4):not(.sr-apply-table__row-label)::before { content: "本学関係者"; }
    .sr-apply-table__colspan {
        border-left: 1px solid #e0d8cc;
        border-bottom: 1px solid #e0d8cc;
        border-right: 1px solid #e0d8cc;
        background: #fff;
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    /* 行間の区切り */
    .sr-apply-table tr {
        border-bottom: none;
        margin-bottom: 8px;
    }
    .sr-apply-table__form-btn,
    .sr-ptable__terms-btn {
        width: 100%;
        text-align: center;
        display: block;
        margin: 4px 0;
    }
}

/* ==========================================================================
   Print
   ========================================================================== */
@media print {
    .sidebar-nav, .top-bar, .hamburger, .news-ticker { display: none; }
    .main-content { margin-left: 0; margin-top: 0; }
    .site-footer { margin-left: 0; }
}
