


/*######################################################################
共通設定
######################################################################*/

:root {
    --width__main-content: min(100%, 375px);
    --color__accent: #FF7BAC;
}

/* コンテンツ全体の調整 */
body {
    width: min(100%, 375px);
    margin-inline: auto;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    color: #141413;
    background-color: #FFF;

    &.page { /* bodyが .page というクラス名を持っているときだけ */
        margin: 0 auto;
    }
}


h1, h2 {
    margin: 0;
}

p, a, ul, ol, table {
    /* 400-768 */
    font-size: clamp(0.875rem, 0.739rem + 0.543vw, 1rem);
}

/* imgタグの調整 */
img {
    vertical-align: top;
    width: 100%;
}

.pc-only {
    display: block;
}
@media (max-width: 767px) {
    .pc-only {
        display: none;
    }
}
.sp-only {
    display: none;
}
@media (max-width: 767px) {
    .sp-only {
        display: block;
    }
}


/* 折り返し */
/* PC版でのみ表示 */
.pc {
    display: inline; /* PCでは表示 */
}

@media (max-width: 767px) {
    .pc {
        display: none; /* SPでは非表示 */
    }
}
/* SP版でのみ表示 */
.sp {
    display: none; /* PCでは非表示 */
}

@media (max-width: 767px) {
    .sp {
        display: inline; /* SPでは表示 */
    }
}

span.strong {
    font-weight: bold; /* 太字にする */
    font-size: 1em;  /* 強調のためにサイズを若干大きく（任意） */
}

/*------------------------------------------------------------
スクロールアニメーション
------------------------------------------------------------*/

/* フェードイン */
.fadein {
    opacity: 0;
    animation: fadein 1s ease-in forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadein-scrollin {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.5s;


    &.scrollin-left {
        transform: translate(-30px, 0);
    }

    &.scrollin-right {
        transform: translate(30px, 0);
    }

    &.scrollin-bottom {
        transform: translate(0, 30px);
    }

    &.scrollin {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/*######################################################################
コンテンツ
######################################################################*/
/*------------------------------------------------------------
cta
------------------------------------------------------------*/
.cta {
    position: relative;
}
.cta01__btn {
    position: absolute;
    width: 359px;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
}
.cta02__btn {
    position: absolute;
    width: 359px;
    top: 9%;
    left: 50%;
    transform: translateX(-50%);
}
.cta03__btn {
    position: absolute;
    width: 359px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

/*------------------------------------------------------------
class
------------------------------------------------------------*/
.class {
    position: relative;
}
.class__kids {
    position: absolute;
    top: 48.7%;
    left: 24%;
}
.class__junior01 {
    position: absolute;
    top: 48.7%;
    left: 70.7%;
}
.class__junior02 {
    position: absolute;
    top: 62.6%;
    left: 70%;
}
.class__kids,
.class__junior01,
.class__junior02 {
    font-size: 19px;
    font-weight: 700;
    color: #FFF;
}

/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access {
    position: relative;
}
.access__map {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 238px;
    overflow: hidden;
}
.access-table__table {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    background-color: #FFF;
    border: none;
    padding: 6% 0 6% 6%;
}
.access-table__table th {
    color: #58b1e3;
    text-align: left;
    padding: 5px 0 11px;
    vertical-align:  top;
    width: 34%;
    font-size: 15px;
    font-weight: 500;
}
.access-table__table td {
    color: #141413;
    text-align: left;
    padding: 5px 0;
    vertical-align: middle;
    font-size: 15px;
    line-height: 1.6;
}
.access-table__table a {
    text-decoration: none;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 1.5rem 0;
    background-color: #58b1e3;
    color: #FFF;
    font-style: normal;
}
@media (max-width: 767px) {
    .footer {
        padding: 1.2rem 0;
    }
 }

.footer__nav {
    font-size: clamp(0.875rem, 0.765rem + 0.49vw, 1rem);
    letter-spacing: 0.8px;
    
    ul {
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 0;
        padding: 0;

        li:not(:last-child)::after {
            content: "|";
        }
    }

    a {
        text-decoration: none;
        transition: 0.2s;
        font-size: 14px!important;

        &:hover {
            color: lightgray;
        }
    }
}
@media (max-width: 767px) {
    .footer__nav a {
        font-size: 12.5px!important;
    }
 }

.copyright__p {
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.6px;
    margin-top: 10px !important;
    font-size: 12.5px !important;
}
@media (max-width: 767px) {
    .copyright__p {
        margin-top: 0;
        font-size: 12.5px !important;
    }
 }

.follow__btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    /* background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem 0; */
}

