@charset "UTF-8";

/* ===== hall.php 専用スタイル ===== */

.hall_main {
    background: #F4F6F6;
    color: #333;
    padding: 0 0 80px;
}
.hall_intro {
    background: #fff !important;
    padding: 80px 0 64px !important;
    margin: 0 !important;
}

.hall_main .inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== イントロ（リード文） ===== */
.hall_intro {
    text-align: center;
    margin-bottom: 64px;
}

.hall_intro__lead {
    font-size: 18px;
    line-height: 1.9;
    color: #4a4a4a;
    letter-spacing: 0.02em;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    margin: 0 0 28px;
}

.hall_intro__lead:last-child {
    margin-bottom: 0;
}

/* ============================================ */
/* ===== 会館ブロック =========================== */
/* ============================================ */

.hall_block {
    margin-bottom: 120px;
}
.hall_block:last-child {
    margin-bottom: 0;
}

/* ===== ヒーロー（会館紹介） ===== */
.hall_block__hero {
    position: relative;
    background: #4DA9AB;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* 写真：画面右半分、ヒーローの高さに合わせて伸縮。左側はティールにフェード */
.hall_block__hero-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    margin: 0;
}

.hall_block__hero-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 30%);
    mask-image: linear-gradient(to right, transparent 0%, #000 30%);
}

/* テキスト：通常 flow でヒーロー高さを決める */
.hall_block__hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 40px;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.hall_block__hero-text {
    width: 55%;
    max-width: 600px;
    color: #fff;
}

.hall_block__name {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 24px;
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
    color: #fff;
}

.hall_block__desc {
    font-size: 16px;
    line-height: 1.9;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: 0.02em;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}
.hall_block__desc:last-child {
    margin-bottom: 0;
}

/* ===== 本文（カード/情報/声） ===== */
.hall_block__body {
    max-width: 1080px;
    margin: -40px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ===== カード列＋サイドバーの2カラムグリッド ===== */
.hall_block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 0;
}

.hall_block__halls {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hall_block__side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.hall_card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.hall_card__img {
    margin-bottom: 18px;
}

.hall_card__img img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 2px;
}

.hall_card__title {
    font-size: 17px;
    font-weight: 600;
    color: #1f1f1f;
    letter-spacing: 0.04em;
    margin: 0 0 16px;
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

/* 特徴ブロック（薄ミント背景） */
.hall_card__features {
    list-style: none;
    padding: 16px 20px;
    margin: 0 0 16px;
    background: #EDF5F5;
    border-radius: 2px;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.hall_card__features li {
    position: relative;
    padding-left: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 6px;
}

.hall_card__features li:last-child {
    margin-bottom: 0;
}

.hall_card__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4DA9AB;
}

/* プラン枠 */
.hall_card__plans {
    padding: 16px 20px;
    margin: 0 0 18px;
    background: #EDF5F5;
    border-radius: 2px;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.hall_card__plans-label {
    font-size: 12px;
    color: #4a4a4a;
    margin: 0 0 10px;
    letter-spacing: 0.04em;
}

.hall_card__plans-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.hall_card__plans-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #1f1f1f;
}

.hall_card__plans-list img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
}

/* 詳細ボタン */
.hall_card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-end;
    min-width: 200px;
    padding: 10px 22px;
    font-size: 12.5px;
    letter-spacing: 0.06em;
    border-radius: 999px;
    background: #fff;
    color: #4DA9AB;
    border: 1px solid #4DA9AB;
    text-decoration: none;
    transition: background .2s, color .2s;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    margin-top: auto;
}

.hall_card__btn .arrow {
    font-size: 9px;
    line-height: 1;
}

.hall_card__btn:hover {
    background: #4DA9AB;
    color: #fff;
}

/* ===== 会場情報テーブル ===== */
.hall_info {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    padding: 32px 40px;
}

.hall_info__title {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 18px;
    letter-spacing: 0.04em;
    font-family: "Zen Old Mincho", serif;
}

.hall_info__table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.hall_info__table th,
.hall_info__table td {
    padding: 16px 24px;
    text-align: left;
    font-size: 13px;
    vertical-align: top;
    line-height: 1.7;
}

.hall_info__table th {
    color: #4a4a4a;
    font-weight: 500;
    width: 140px;
    white-space: nowrap;
}

.hall_info__table td {
    color: #333;
}

/* 行ごとに濃淡のくすんだ緑を交互に */
.hall_info__table tr:nth-child(odd) th,
.hall_info__table tr:nth-child(odd) td {
    background: #CDDDDD;
}

.hall_info__table tr:nth-child(even) th,
.hall_info__table tr:nth-child(even) td {
    background: #EDF5F5;
}

/* ===== 利用者の声（白カード枠の中に声2個＋タイトル） ===== */
.hall_voices {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    padding: 28px 32px;
}
.hall_voices__title {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 18px;
    letter-spacing: 0.04em;
    font-family: "Zen Old Mincho", serif;
}
.hall_voice {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-left: 3px solid #4DA9AB;
    border-radius: 2px;
    padding: 16px 20px;
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.9;
    color: #555;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    quotes: none;
}
.hall_voice:last-child {
    margin-bottom: 0;
}

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
    .hall_block__hero {
        padding: 0;
    }
    .hall_block__hero-img {
        width: 60%;
    }
    .hall_block__hero-img img {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 35%);
        mask-image: linear-gradient(to right, transparent 0%, #000 35%);
    }
    .hall_block__hero-inner {
        padding: 40px 24px;
        min-height: 280px;
    }
    .hall_block__hero-text {
        width: 60%;
    }
    .hall_block__body {
        margin-top: -32px;
    }
    .hall_block__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hall_block__halls {
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .hall_main {
        padding: 56px 0 56px;
    }
    .hall_intro {
        margin-bottom: 0;
        padding-bottom: 40px;
    }
    .hall_intro__lead {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    .hall_intro__lead br {
        display: none;
    }

    /* 会館ブロック SP */
    .hall_block {
        margin-bottom: 80px;
    }
    .hall_block__hero {
        padding: 0;
    }
    .hall_block__hero-img {
        width: 70%;
    }
    .hall_block__hero-img img {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 40%);
        mask-image: linear-gradient(to right, transparent 0%, #000 40%);
    }
    .hall_block__hero-inner {
        padding: 32px 20px;
        min-height: 220px;
    }
    .hall_block__body {
        margin-top: -24px;
    }
    .hall_block__hero-text {
        width: 70%;
    }
    .hall_block__name {
        font-size: 20px;
        margin-bottom: 14px;
    }
    .hall_block__desc {
        font-size: 14px;
        line-height: 1.85;
        margin-bottom: 10px;
    }
    .hall_card__features li {
        font-size: 14px;
    }
    .hall_block__desc br {
        display: none;
    }
    .hall_block__body {
        padding: 0 16px;
    }
    .hall_card__btn {
        align-self: stretch;
        width: 100%;
        min-width: 0;
    }
    .hall_info {
        padding: 24px 20px;
    }
    .hall_info__table th,
    .hall_info__table td {
        padding: 12px 14px;
        font-size: 12.5px;
    }
    .hall_info__table th {
        width: 90px;
    }
    .hall_voice {
        padding: 18px 20px;
    }
}
