/*コンテンツ幅*/

.wrap {
    max-width: calc(1348px + 3rem);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media screen and (max-width: 1024px) {
    .wrap {
        max-width: calc(768px + 1rem);
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .wrap {
        padding: 0 1rem;
        max-width: calc(328px + 1rem);
    }
}


/*見出し*/

h1 {
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-align: center;
}

h1 span {
    color: #C86893;
    font-family: "EB Garamond";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    display: block;
}

h2 {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.125rem;
    color: #C86893;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h1 span {
        font-size: 1.2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}


/*---▼リンクボタン▼---*/

a.btn {
    color: #FFF;
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.05rem;
    display: inline-flex;
    padding: 0.8125rem 3.5rem;
    text-align: center;
    border-radius: 6.25rem;
    background: #F38AB9;
    border: 1px solid #F38AB9;
}

a.btn:hover {
    background: #fff;
    color: #F38AB9;
}


/*---▼共通スタイル▼---*/

.gray_bk {
    background: #F3F3F3;
}

.white_bk {
    background: #fff;
}

.green_bk {
    background: #F2FBD1;
}

.content {
    padding: 6rem 0;
    text-align: center;
    font-size: 1.2rem;
}


/*---▼ファーストビュー▼---*/

.fv {
    margin-top: 6.25rem;
}

.breadcrumbs {
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    color: #fff;
    margin: 0 auto;
    position: absolute;
    width: calc(1315px + 3rem);
    right: 0;
    left: 0;
    bottom: 1rem;
    display: flex;
    gap: 0.3rem;
}

.fv .txt_sec {
    padding-bottom: 2rem;
    border-bottom: 1px solid #f38ab9;
}

@media screen and (max-width: 768px) {
    .breadcrumbs {
        font-size: 0.7rem;
        padding: 0 0.5rem;
        width: auto;
        flex-flow: wrap;
        line-height: 120%;
    }
    .fv {
        margin-top: 7.25rem;
    }
    .fv .txt_sec {
        border-top: 1px solid #f38ab9;
        padding: 2rem;
        border-bottom: 1px solid #f38ab9;
    }
}


/*---▼サイド追従ボタンリンク▼---*/

.side_link {
    position: fixed;
    top: 20rem;
    right: 0;
    z-index: 3;
}

.side_link a {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 1.31rem 0.8rem;
    color: #FFF;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    gap: 0.56rem;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.side_link a:hover {
    opacity: 1;
}

.side_link a .icon_img img {
    width: 3.1875rem;
    height: 2.375rem;
}

.side_link a:first-child {
    border-radius: 0.9375rem 0rem 0rem 0.9375rem;
    background: #F38AB9;
}

.side_link a:first-child:hover {
    background: #e6438c;
}

.side_link a:nth-child(2) {
    border-radius: 0.9375rem 0rem 0rem 0.9375rem;
    background: #BDD06D;
    margin-top: 0.88rem;
}

.side_link a:nth-child(2):hover {
    background: #9cb141;
}

.side_link a:last-child {
    border-radius: 0.9375rem 0rem 0rem 0.9375rem;
    background: #fff;
    margin-top: 0.88rem;
    padding: 1.31rem 0.4rem 1.31rem 0.4rem;
}

.side_link a:last-child .icon_img img {
    width: 4rem;
    height: 4rem;
}

.side_link a:last-child:hover img {
    opacity: 0.5;
}

@media screen and (max-width: 768px) {
    .side_link {
        position: fixed;
        top: auto;
        bottom: 0;
        right: auto;
        display: flex;
        width: 100%;
        height: 60px;
    }
    .side_link a {
        padding: 0.5rem;
        border-radius: 0!important;
        font-size: 0.8rem;
        gap: 0.5rem;
        text-align: center;
        justify-content: center;
        line-height: 120%;
        font-weight: 500;
        flex-direction: row;
        writing-mode: unset;
    }
    .side_link a:last-child {
        border-radius: 0;
        margin-top: 0;
    }
    .side_link a .icon_img img {
        width: 100%;
        height: auto;
    }
    .side_link a .icon_img {
        width: 2.5rem;
        height: 2.5rem;
        display: flex
    }
    .side_link a:first-child {
        width: 40%;
    }
    .side_link a:nth-child(2) {
        margin-top: 0;
        width: 40%;
    }
    .side_link a:last-child {
        width: 20%;
        padding: 0;
    }
    .side_link a:last-child .icon_img {
        width: 66%;
        height: auto;
    }
    .side_link a:last-child .icon_img img {
        width: 100%;
        height: auto;
    }
}
/*---▼施設基準について▼---*/
.facility{
padding: 6rem 0;
}
.facility p{
    margin-top: 1rem;
    margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
.facility-fv.fv .txt_sec {
        padding: 2rem 1rem;
    }
    .facility{
padding: 3rem 0;
}
    
}