@charset "UTF-8";

/* ==========================================================================
   area.php（地域で選ぶ）専用スタイル
   各会館カード：写真+情報テーブル + 特徴3点 + 利用可能プラン + お客様の声
   body.area 配下にスコープ
   ========================================================================== */

/* === 外枠（白） === */
.area .area_card_wrap {
    background-color: #fff;
    padding: 30px 35px;
    border-radius: 8px;
    margin-top: 50px;
}
.area .area_card_wrap:first-child {
    margin-top: 0;
}

/* === 同一建物に複数フロアがある場合（例：セルカホール甚目寺 1F/2F） ===
   1つの白枠に複数の会館ユニットを入れ、間に薄い区切り線を引く */
.area .area_card_divider {
    border-top: 1px solid #D9D9D9;
    margin: 40px 0;
}

/* === 上段：白カード（左に写真／右に情報テーブル） === */
.area .area_card {
    background-color: #fff;
    border-radius: 6px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.area .area_card_img {
    flex: 0 0 45%;
    position: relative;
}
.area .area_card_img > img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
}
/* === メイン写真 Swiper スライダー（現在未使用・将来再挑戦用に保持） === */
.area .area_img_swiper {
    width: 100%;
    height: 320px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.area .area_img_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Swiper ページネーション（ドット）下中央 */
.area .area_img_swiper .swiper-pagination {
    bottom: 8px;
}
.area .area_img_swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
    width: 8px;
    height: 8px;
}
.area .area_img_swiper .swiper-pagination-bullet-active {
    background: #68C3C5;
    opacity: 1;
}
/* Swiper 左右矢印 */
.area .area_img_swiper .swiper-button-prev,
.area .area_img_swiper .swiper-button-next {
    color: #fff;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    transition: background 0.2s;
}
.area .area_img_swiper .swiper-button-prev:hover,
.area .area_img_swiper .swiper-button-next:hover {
    background: rgba(0,0,0,0.5);
}
.area .area_img_swiper .swiper-button-prev::after,
.area .area_img_swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

/* === 右側：タイトル＋情報テーブル === */
.area .area_card_info {
    flex: 1;
}
.area .area_card_title {
    font-size: 26px;
    font-weight: 500;
    color: #222;
    margin: 0 0 18px;
    letter-spacing: 0.05em;
}
.area .area_card_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.6;
}
.area .area_card_table tr {
    border-bottom: 1px solid #fff;
}
.area .area_card_table tr:nth-child(odd) {
    background-color: #E0ECE2;       /* やや濃い薄緑 */
}
.area .area_card_table tr:nth-child(even) {
    background-color: #EEF5EF;       /* 淡い薄緑 */
}
.area .area_card_table th {
    width: 30%;
    padding: 10px 14px;
    text-align: left;
    font-weight: 500;
    color: #222;
    vertical-align: top;
}
.area .area_card_table td {
    padding: 10px 14px;
    color: #222;
    vertical-align: top;
}

/* === 特徴3点（薄ベージュ） === */
.area .area_features {
    background-color: #F2EFE5;
    border-radius: 6px;
    padding: 18px 24px;
    margin: 20px 0 0;
    list-style: none;
}
.area .area_features li {
    position: relative;
    padding-left: 22px;
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #222;
}
.area .area_features li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #68C3C5;
    position: absolute;
    left: 6px;
    top: 10px;
}

/* === ご利用可能なプラン === */
.area .area_plans {
    margin-top: 20px;
}
.area .area_section_title {
    font-size: 16px;
    color: #222;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    margin: 0 0 12px;
    letter-spacing: 0.05em;
    padding-left: 4px;
}
.area .area_plans_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.area .area_plans_list li {
    margin: 0;
}
.area .area_plans_list a {
    display: flex;
    align-items: center;
    border: 1.5px solid #68C3C5;
    border-radius: 8px;
    background-color: #fff;
    padding: 8px 14px 8px 8px;
    text-decoration: none;
    transition: background-color 0.2s;
    gap: 10px;
}
.area .area_plans_list a:hover {
    background-color: #F0F9F9;
}
.area .area_plans_list a .plan_img {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
}
.area .area_plans_list a .plan_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.area .area_plans_list a .plan_name {
    flex: 1;
    color: #68C3C5;
    font-size: 14px;
    font-weight: 500;
}
.area .area_plans_list a .plan_arrow {
    color: #68C3C5;
    font-size: 10px;
    flex: 0 0 auto;
}

/* === この会館を利用した方の声 === */
.area .area_voices {
    margin-top: 20px;
}
.area .area_voice_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.area .area_voice_item {
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-left: 3px solid #68C3C5;
    padding: 14px 18px;
    border-radius: 0 4px 4px 0;
}
.area .area_voice_item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: #222;
}

/* === SP === */
@media (max-width: 768px) {
    .area .area_card_wrap {
        padding: 20px 16px;
        margin-top: 30px;
    }
    .area .area_card {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    .area .area_card_img {
        flex: 1 1 auto;
        width: 100%;
    }
    .area .area_card_title {
        font-size: 22px;
    }
    .area .area_card_table {
        font-size: 13px;
    }
    .area .area_card_table th {
        width: 30%;
        padding: 8px 10px;
    }
    .area .area_card_table td {
        padding: 8px 10px;
    }
    .area .area_features {
        padding: 14px 18px;
    }
    .area .area_features li {
        font-size: 13px;
    }
    .area .area_plans_list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .area .area_voice_list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .area .area_plans_list a .plan_img {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }
    .area .area_plans_list a .plan_name {
        font-size: 13px;
    }
}
