/* =========================================================
    Component: Stay Dog Facility
    File: assets/css/3_components/stay-dog-facility.css
   ========================================================= */

.p-stayDogFacility {
    padding: var(--wan-s-6) 0;
}

.p-stayDogFacility__block {
    margin-bottom: var(--wan-s-8);
}

.p-stayDogFacility__subTitle {
    font-size: var(--wan-f-size-md);
    font-weight: var(--wan-f-weight-bold);
    margin-bottom: var(--wan-s-5);
    color: var(--wan-color-text);
}

/* --- アイコンリストのグリッド設定 --- */
.p-stayDogFeatureList {
    display: grid;
    /* スマホ：3カラム（またはauto-fill） */
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wan-s-6) var(--wan-s-2);
}

.p-stayDogFeatureList__item {
    display: flex;
    flex-direction: column; /* 垂直並び */
    align-items: center;    /* 中央寄せ */
    text-align: center;
}

/* アイコン：添付画像に合わせて大きく */
.p-stayDogFeatureList__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--wan-color-text);
	margin-bottom: var(--wan-s-2);
}

/* ラベル：補助テキスト */
.p-stayDogFeatureList__label {
    font-size: var(--wan-f-size-sm);
    font-weight: var(--wan-f-weight-medium);
    line-height: 1.4;
    color: var(--wan-color-text);
}

/* --- 補足テキスト --- */
.p-stayDogFacility__noteList {
    background-color: var(--wan-color-bg-sub);
    padding: var(--wan-s-4);
    border-radius: var(--wan-r-md);
}

.p-stayDogFacility__noteItem {
    color: var(--wan-color-text-muted);
    position: relative;
    padding-left: 1.2em;
    margin-bottom: var(--wan-s-1);
}

.p-stayDogFacility__noteItem::before {
    content: "※";
    position: absolute;
    left: 0;
}

/* --- PC版（769px以上） --- */
@media screen and (min-width: 769px) {
    .p-stayDogFeatureList {
        /* PC：6カラムでゆったり並べる */
        grid-template-columns: repeat(6, 1fr);
        gap: var(--wan-s-8) var(--wan-s-4);
    }

    .p-stayDogFeatureList__icon {
        width: 56px;
        height: 56px;
    }

    .p-stayDogFeatureList__icon svg {
        width: 40px;
    }
}