@charset "UTF-8";

/* ========================
Article header
======================== */
.article__header {
    background-image: url(../img/index-header-sp2.webp), url(../img/index-header-sp1.jpg);
    margin-left: 6.4%;
    border-radius: 48px 0 0 48px;
}

.article__txt {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 16px 16px;
    color: var(--primary--darkBlue);
    /* text-shadow: 2px 0px #ffffff,
                -2px 2px 0px #ffffff,
                 2px -2px 0px #ffffff,
                -2px -2px 0px #ffffff,
                 2px  0px 0px #ffffff,
                0px  2px 0px #ffffff,
                -2px  0px 0px #ffffff,
                0px -2px 0px #ffffff; */
    position: absolute;
    top: 50%;
    left: 0%;    
    background-color: rgb(253 253 253 / 80%);
}  

/* article header pc */
@media screen and (min-width: 769px) {
    .article__header {
        background-image: url(../img/index-header-pc2.webp), url(../img/index-header-pc1.jpg);
    }

    /* article__txt pc*/
    .article__txt {
        font-size: 3.2rem;
        top: calc(50% - 40px);
        left: calc(50% - 6.4% - 259.315px);
    }

    .br-pc {
        display: none;
    }
}/* pc 769px */

/* ========================
section about
======================== */
.about--subtitle {
    text-align: center;
    font-size: 2.1rem;
    padding: 8px 0;
    margin: 32px auto 0;
    width: 400px;
    max-width: 100%;
    color: var(--primary--white);
}

.subtitle--blue {
    background-color: var(--primary--blue);
}

.subtitle--pink {
    background-color: var(--primary--pink);
}
  
.about__txt {
    margin-top: 16px;
}

.about__list {
    width: 100%;

}

.about__item {
    width: 100%;
}

.about--img {
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin: 24px auto 0;
}

/* about pc */
@media screen and (min-width: 769px) { 
    .about__txt {
        max-width: 800px;
        width: 100%;
        margin: 32px auto 0;
    }

    .about__list{
        width: 100%;
        max-width: 800px;
        display: flex;
        flex-wrap: nowrap;
        gap: 0 24px;
        margin: 24px auto 0;
    }

    .about__item {
        width: calc(50% - 12px);
    }

    .about--img {
        width: 100%;
        height: auto;
        border-radius: 0;
        margin: 24px auto 0;
    }
}/* pc 769px */

/* ========================
section--dailyRoutine
======================== */
.section--dailyRoutine {
    width: 100%;
    background-image: url(../img/sp-dailyRoutine-bg.webp);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.table__list th, .table__list td {
    border: 1px solid var(--primary--pink);
    background-color: var(--primary--white);
}

@media screen and (min-width: 769px){
    .section--dailyRoutine {
        background-image: url(../img/pc-dailyRoutine-bg.webp);
    }
    .table__list table {
        max-width: 400px;
        width: 100%;
    }

    .dailyRoutine__tableGroup {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 1160px;
        margin: 0 auto;
        gap: 0 64px;
    }

    .table__list{
        width: 50%;
    }
}/* pc 769px */

/* ========================
section--bg
======================== */
.section--bg {
    width: 100%;
    height: 250px;
    background-image: url(../img/sp-visual-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (min-width: 769px) {
    .section--bg {
        height: 450px;
        background-image: url(../img/pc-visual-bg.jpg);
        background-position: 50% 50%;
    }
}/* pc 769px */

/* ========================
section--fee
======================== */
.section--fee th, .section--fee td {
    border: 1px solid var(--primary--black);
    background-color: var(--primary--white);
    width: auto;
}

.fee__txt {
    margin-top: 16px;
}

.section--fee td {
    text-align: right;
}

@media screen and (min-width: 769px) {
    .fee__txt {
        width: 100%;
        max-width: 600px;
        margin: 24px auto 0;
    }

    .section--fee table {
        width: 100%;
        max-width: 600px;
    }
}

/* ========================
section--facility
======================== */
.section--facility {
    width: 100%;
    background-image: url(../img/sp-facility-bg.webp);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.section--facility th, .section--facility td {
    border: 1px solid var(--primary--yellow);
    background-color: var(--primary--white);
    width: auto;
}

.facility__txt {
    margin-top: 16px;
}

@media screen and (min-width: 769px) {
    .section--facility {
        background-image: url(../img/pc-facility-bg.webp);
        background-size: cover;
    }
}

/* ========================
section--access
======================== */
.section--access {
    background-color: var(--primary--white);
}

.section--access address{
    font-family: sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 32px;
}

.googlemap {
    width: 100%;
    height: 350px;
    margin: 32px auto 0;
    border-radius: 8px;
    border: 1px solid var(--primary--blue);
}

.googlemap iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* access pc */
@media screen and (min-width: 769px) {
   .section--access address {
    text-align: center;
   }
   .sp {
    display: none;
   }
   .googlemap {
    max-width: 1160px;
    height: 500px;
    }
}/* pc 769px */

.br-sp {
    display: block;
}