@charset "UTF-8";
/* ======================
Article header
====================== */

.page__header {
    background-image: url(../images/about_header.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding:  32% 26%;
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.page__title {
    color: #FFF;
    font-family: "Helvetica Neue";
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 1.3);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}
.page__title::after{
    content: "";
    display: block;
    margin: 10px auto;
    width: 18px;
    height: 18px;
    background-image: url(../images/star_icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.page__title--ja {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.2em;
}

/* article header pc */
@media screen and (min-width : 769px) {
    .page__header {
        padding: 18% 26%;
    }
    .page__title{
        font-size: 3rem;
    }
    .page__title--ja {
        font-size: 1.7rem;
    }
}

/* ======================
About
====================== */

.section__about {
    margin: 0 5.3%;
}

.about__img img {
    margin-top: 100px;
    height: 500px;
    object-fit: cover;
    object-position: -62px;
    border-radius: 10px;
    position: relative;
}

.about__img__container {
    position: relative;
}

.img__txt {
    color: #FFF;
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.14em;
    position: absolute;
    bottom: 10%;
    left: 15%;
}

.about__txt {
    background: #EFEFEF;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.15em;
    padding: 100px 10% ;
    margin-top: 100px;
}

.about__txt p {
    margin-top: 20px;
}

/* about pc */
@media screen and (min-width : 769px) {
    .about__img img {
        height: auto;
        object-position: center;
        margin-top: 200px;
    }

    .about__img {
        position: relative;
    }

    .img__txt {
        font-size: 2.4rem;
        line-height: 2.8;
        letter-spacing: 0.18em;
        position: absolute;
        bottom: 30%;
        left: 50%;
    }
    .about__txt {
        top: 75%;
        width: 90%;
        transform: translateY(-170px);
    }

    .about__txt p {
        margin-top: 40px;
        font-size: 1.5rem;
    }
}

/* ======================
Facility
====================== */
.section__facility {
    margin: 0 5.3%;
}

.topic__facility {
    margin-top: 80px;
}

.facility__list {
    display: flex;
}

.facility__item {
    margin-top: 60px;
}

.facility__item img {
    border-radius: 10px;
}

.facility__name {
    margin: 30px 0;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.facility__txt {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.14em;
}

.facility__slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-prev,
.facility-next {
    position: absolute;
    top: 42%;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
}

.facility-prev {
    left: 10px;
}

.facility-next {
    right: -3px;
}

.facility-prev::before,
.facility-next::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.facility-prev::before {
    background-image: url("../images/arrow_circle_icon.svg");
}

.facility-next::before {
    background-image: url("../images/arrow_circle_icon.svg");
    transform: rotateY(180deg);
}

/* facility pc */
@media screen and (min-width : 769px) {
    .topic__facility {
        margin-top: 30px;
    }

    .facility__txt {
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.75;
        letter-spacing: 0.15em;
        text-align: center;
    }

    .facility__list {
        display: flex;
        gap: 10%;
    }

    .facility__name::before {
        display: none;
    }

    .facility__name::after {
        display: none;
    }

    .footer__container {
        margin-top: 300px;
    }

    .about__txt__container {
        display: flex;
        justify-content: center;
    }
}

/* ======================
slick
====================== */
.slick-slider {
    overflow: hidden;
}

/* slick-slider pc */
@media screen and (min-width : 769px) {
    .facility__item {
        margin: 50px 20px;
    }
    .facility-prev {
        left: -50px;
    }
    .facility-next {
        right: -50px;
    }
}
