@charset "UTF-8";
/*
----------------------------------------
page-facility.css
施設基準ページ調整用CSS
作成日：2025年7月5日
担当：岩村
既存style.cssを直接編集せずに追加するスタイル
----------------------------------------
*/

#h_image>img {
    width: 100%;
}

.facility {
    padding: 0 20px 80px;
    width: min(600px, 100%);
    margin: 0 auto;
}

.facility-title {
    font-weight: bold;
}

.facility-text {
    margin-top: 20px;
}

.facility-text.f-bold {
    font-weight: bold;
}

.facility-text>.f-red {
    color: #c1272d;
}

.facility-list {
    margin-top: 30px;
}

.facility-list .list-item {
    width: 100%;
    margin: 0 auto;
}

.facility-list .list-item:not(:first-child) {
    margin-top: 20px;
}

.facility-list .list-item>a {
    background-color: #47a86d;
    color: #fff;
    text-align: center;
    display: block;
    padding: 1em 0;
    line-height: 1;
    position: relative;
    font-weight: 600;
    letter-spacing: .05em;
    transition: .3s ease;
}

.facility-list .list-item>a:hover {
    opacity: .7;
}

.facility-list .list-item>a:after {
    content: '';
    display: block;
    background-color: #fff;
    width: 1em;
    height: 1em;
    position: absolute;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    top: 50%;
    right: 30px;
    transform: translate(0, -50%);
}