.elementor-1609 .elementor-element.elementor-element-41456e5{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1609 .elementor-element.elementor-element-cab8699{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:100px;--padding-bottom:100px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-eb2faee *//* --- 設備紹介カード一覧 (Grid) --- */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 0px 0;
}

/* カード本体 */
.facility-card {
    background: #f4f4f4; /* デザイン案の薄いグレー */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.facility-card:hover {
    transform: translateY(-5px);
}

/* カード画像 */
.facility-card .card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* カード内テキストエリア */
.facility-card .card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.facility-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.4;
    color: #333;
}

/* カード内スペック表 */
.spec-table {
    margin-bottom: 20px;
}

.spec-row {
    display: flex;
    margin-bottom: 8px;
    align-items: center;
}

.spec-label {
    background: #333;
    color: #fff;
    width: 70px;
    text-align: center;
    padding: 3px 0;
    font-size: 0.8rem;
    margin-right: 12px;
    border-radius: 3px;
    font-weight: bold;
    flex-shrink: 0;
}

.spec-value {
    font-size: 0.95rem;
    color: #333;
}

/* READ MOREボタン */
.popup-trigger {
    display: block;
    background: #3b82f6; /* 鮮やかな青 */
    color: #fff !important;
    text-align: center;
    padding: 14px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    margin-top: auto; /* カードの下部に固定 */
    transition: background 0.3s;
}

.popup-trigger:hover {
    background: #2563eb;
    text-decoration: none;
}

/* --- ポップアップ内部のデザイン --- */
.facility-popup-inner {
    color: #333;
    line-height: 1.6;
    padding: 10px;
}

.popup-header-flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.popup-img-wrap {
    flex: 1;
    min-width: 300px;
}

.popup-img-wrap img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.popup-main-info {
    flex: 1.2;
    min-width: 300px;
}

.popup-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #3b82f6;
}

/* ポップアップ内スペック */
.popup-spec-row {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
}

.p-label {
    background: #333;
    color: #fff;
    width: 85px;
    text-align: center;
    padding: 5px 0;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 15px;
    flex-shrink: 0;
}

.p-value {
    font-size: 1.05rem;
}

/* 設備概要 (field1) */
.popup-summary {
    background: #f4f4f4;
    padding: 25px 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 1rem;
    color: #444;
}

/* 主な特徴セクション */
.features-section {
    margin-top: 20px;
}

.features-title {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.features-title::before {
    content: "";
    width: 18px;
    height: 18px;
    background: #3b82f6;
    display: inline-block;
    margin-right: 12px;
}

.feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.f-ttl {
    background: #f0f0f0;
    padding: 12px;
    border-radius: 6px;
    min-width: 180px;
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
    color: #333;
    flex-shrink: 0;
}

.f-txt {
    font-size: 0.95rem;
    color: #555;
    padding-top: 8px;
}

/* モバイル対応 */
@media (max-width: 767px) {
    .popup-header-flex {
        gap: 20px;
    }
    .feature-item {
        flex-direction: column;
        gap: 10px;
    }
    .f-ttl {
        width: 100%;
        text-align: left;
    }
}
/* 特徴セクションの各行 */
.feature-item {
    display: flex;
    gap: 25px;
    align-items: stretch; /* ラベルとテキストの高さを揃える */
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 0;
}

/* 左側のグレーラベル */
.f-ttl {
    background: #f0f0f0;
    padding: 0 15px; /* 上下パディングを0にして、flexの高さに任せる */
    border-radius: 6px;
    min-width: 180px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center; /* ラベル内の文字を垂直中央に */
    justify-content: center;
    flex-shrink: 0;
}

/* 右側の説明テキスト */
.f-txt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    padding: 10px 0; /* ラベルの高さとバランスを取るための余白 */
    flex: 1;
    display: flex;
    align-items: center; /* テキストが1行の場合もラベルと中央で揃う */
}

/* 特徴リスト全体の最後の線は消す */
.features-list .feature-item:last-child {
    border-bottom: none;
}
/* 特徴セクションの各行 */
.feature-item {
    display: flex;
    gap: 25px;
    align-items: stretch; /* ラベルとテキストの高さを揃える */
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

/* 左側のグレーラベル（ここを修正） */
.f-ttl {
    background: #f0f0f0;
    /* 長さを統一するための設定 */
    width: 240px; 
    flex-basis: 240px; 
    flex-shrink: 0;
    
    padding: 0 15px; 
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center; 
    justify-content: center;
    text-align: center;
}

/* 右側の説明テキスト */
.f-txt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    padding: 10px 0; /* ラベルとの垂直位置を微調整 */
    flex: 1;
    display: flex;
    align-items: center; 
}

/* モバイル表示では長さを解除して縦並びに */
@media (max-width: 767px) {
    .feature-item {
        flex-direction: column;
        gap: 10px;
    }
    .f-ttl {
        width: 100%;
        flex-basis: auto;
        padding: 10px;
    }
}
/* ポップアップ（モーダル）の表示速度を上げる */
.dialog-widget-content {
    animation-duration: 200ms !important; /* 0.2秒でパッと出す */
}
.facility-popup-inner {
    transition: all 0.2s ease-out;
}/* End custom CSS */