@charset "utf-8";

/*==========================
common
==========================*/

:root {
    --primary-white: #FDFDFD;
    --primary-whiteLow: #ECF5F5;
    --primary-black: #333221;
    --primary-green: #2BC8AC;
    --primary-greenR: 79, 185, 185;
    --primary-darkGreen: #076363;
    --primary-pink: #F77;
    --primary-lightGray: #C8D1D1;
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Zen Kaku Gothic New", sans-serif;
    font-style: normal;
    font-size: 16px;
    color: var(--primary-black);
    line-height: 1.5;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 1.1px;
    overflow-x: hidden;
}

body span {
    display: inline-block;
}


/* span {
    display: inline-block;
} */

img {
    max-width: 100%;
    height: auto;
}


/* Loading背景画面設定*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: linear-gradient(180deg, rgba(55, 179, 218, 0.00) 0%, rgba(55, 179, 218, 0.80) 23.94%, rgba(54, 183, 210, 0.80) 43.44%, rgba(47, 199, 171, 0.80) 67.44%, rgba(47, 199, 171, 0.57) 82.44%, rgba(47, 199, 171, 0.00) 100%);
    text-align: center;
}

/* Loading画像中央配置*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定*/
#splash_logo img {
    width: 100%;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* common pc */
@media screen and (min-width:954px) {
    .btn__apply__sp {
        display: none;
    }
}

/* pc 721px */

/*==========================
header
==========================*/
.header {
    background: linear-gradient(0deg, rgba(246, 255, 253, 0) 0%, rgb(43 200 172 / 28%) 19.22%, rgb(43 200 172 / 51%) 41.22%, rgb(67 213 219) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 4px 0 0 20px;
    height: 72px;
    position: fixed;
    width: 100%;
    z-index: 99;
}

.header__btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo__pc {
    display: none;
}

/* .nav初期表示 */
.nav {
    background: linear-gradient(0deg,
            rgba(43.2, 199.97, 172.04, 1) 0%,
            rgba(43.19, 199.97, 172.04, 1) 80.22%,
            rgb(67, 213, 219, 1) 100%);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: opacity 0.4s;
    opacity: 0;
}

.box {
    margin: auto;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.80);
    z-index: 100;
    position: relative;
}

.logo__sp {
    width: 170px;
    z-index: 101;
    position: relative;
}

.nav__header {
    display: flex;
}

.nav__logo {
    display: none;
}

.nav__list {
    margin-top: 45px;
    display: flex;
    width: auto;
    padding: 20px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;

}

.nav__list::before {
    content: "";
    display: block;
    background-image: url(../images/flower1__right.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 110px;
    height: 9em;
    position: absolute;
    right: 0;
    top: -32px;
}

.nav__list::after {
    content: "";
    display: block;
    background-image: url(../images/flower1__left.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 110px;
    height: 9em;
    position: absolute;
    left: -3px;
    bottom: -48px;
}

.nav__item a {
    color: #333221;
    font-family: "Zen Maru Gothic", serif;
    font-size: 1.6rem;
}

.close__btn {
    display: block;
    width: 30px;
    height: 30px;
    margin: 5px 0 0 auto;
}


.mainVisual__pc {
    display: none;
}

.mainVisual__sp {
    margin-top: 80px;
    width: 80%;
}

.mainVisual__sp {
    animation-name: zoomIn;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
    opacity: 1;
    padding: 10px 24px;
}

.menu__btn {
    display: block;
    width: 40%;
    padding: 8px 0 0;
}

.instagram__btn {
    position: relative;
    z-index: 101;
    padding-top: 9px;
}

.article__header {
    display: none;
}

.btn__apply__sp a {
    display: block;
    margin: auto;
    text-align: center;
}

.btn__apply__sp {
    position: fixed;
    left: 50%;
    /* 画面左端に固定 */
    bottom: 0;
    /* 画面下に固定 */
    width: 280px;
    z-index: 10;
    font-family: "Zen Maru Gothic", serif;
    display: block;
    background: linear-gradient(0deg, #FF7D04 0%, #FFE500 100%);
    background-size: 200% auto;
    color: #FFF;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 1.4rem;
    transition: .5s;
    margin: 0 auto 10px;
    display: inline-flex;
    padding: 10px 37px 12px 50px;
    box-shadow: 0px 4px 4px 0px rgba(135, 199, 187, 0.25);
    transform: translateX(-50%);
    font-size: 1.8rem;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px rgba(135, 199, 187, 0.25);
}

/* .btn__apply__sp::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 1px solid #FFF;
    border-top: 1px solid #FFF;
    display: inline-block;
    transform: rotate(45deg);
    position: absolute;
    top: 42%;
    right: 18px;
} */

/* 光の疑似要素 */
.btn__apply__sp::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: skewX(-30deg);
    position: absolute;
    top: 0;
    left: -150%;
    opacity: 0.5;
    animation: btn__apply__sp-anime 3s infinite;
}


/* 光の動き */
@keyframes btn__apply__sp-anime {
    0% {
        left: -150%;
        opacity: 0;
    }

    80% {
        left: -100%;
        opacity: 0.5;
    }

    81% {
        left: -100%;
        opacity: 1;
    }

    100% {
        left: 50%;
        opacity: 0;
    }
}

.btn__apply__pc {
    display: none;
}

.pcBr {
    display: none;
}

@media screen and (min-width:700px) {
    .mainVisual__sp {
        margin-top: 80px;
        width: 70%;
    }

}


/* .header pc */
@media screen and (min-width:1080px) {
    .header {
        display: none;

    }

    .mainVisual__sp {
        display: none;
    }

    .mainVisual__pc {
        display: block;
        padding-top: 9%;
        margin: 0 auto;
        width: 38%;
        animation-name: mainVisual__pc;
        animation-duration: 2.5s;
        animation-fill-mode: forwards;
    }

    @keyframes mainVisual__pc {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .article__header {
        display: block;
    }

    .btn__apply__pc a {
        display: block;
        margin: auto;
        text-align: center;
        -ms-writing-mode: tb-lr;
        writing-mode: vertical-lr;
        font-size: 2.4rem;
        position: relative;
    }

    .btn__apply__pc {
        z-index: 10;
        font-family: "Zen Maru Gothic", serif;
        display: block;
        background: linear-gradient(0deg, #FFE500 0%, #fbd70a 20%, #FFaD04 100%);
        background-size: 200% auto;
        color: #FFF;
        text-decoration: none;
        transition: .1s;
        margin: auto;
        position: fixed;
        right: 0;
        top: 205px;
        border-radius: 10px 0 0 10px;
        padding: 20px 30px 43px 17px;
        transform: none;
        overflow: hidden;
        box-shadow: 0px 4px 4px 0px rgba(135, 199, 187, 0.25);
    }

    .btn__apply__pc::after {
        content: "";
        width: 16px;
        height: 16px;
        border-right: 3px solid #FFF;
        border-top: 3px solid #FFF;
        display: inline-block;
        transform: rotate(45deg);
        position: absolute;
        bottom: 0;
        top: 89%;
        right: 43px;
    }

    /* 光の疑似要素 */
    .btn__apply__pc:before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: #fff;
        transform: skewX(-20deg);
        position: absolute;
        top: 0;
        left: -50%;
        opacity: 0.5;
        animation: btn__apply__pc-anime 4s infinite;
    }

    /* 光の動き */
    @keyframes btn__apply__pc-anime {
        0% {
            left: -200%;
            opacity: 0;
        }

        80% {
            left: -200%;
            opacity: 0.5;
        }

        81% {
            left: -200%;
            opacity: 1;
        }

        100% {
            left: 100%;
            opacity: 0;
        }
    }

    .btn__apply__sp {
        display: none;
    }

    .article__header {
        background: linear-gradient(0deg, rgba(246, 255, 253, 0) 0%, rgb(43 200 172 / 41%) 19.22%, rgb(43 200 172 / 76%) 41.22%, rgb(67 213 219) 100%);
        height: 150px;
        font-family: "Zen Maru Gothic", serif;
        position: fixed;
        width: 100%;
        z-index: 99;
        height: 140px;
    }

    .mainVisual__pc__under {
        max-width: 250px;
        padding-left: 20px;
    }

    .nav__list__pc__under {
        align-items: center;
        justify-content: space-between;
        display: flex;
        width: auto;
        gap: 5px;
        padding: 1%;
        color: #fff;

    }
}

@media screen and (max-width: 1200px) {

    .skinship__lineUp,
    .charms__lineUp,
    .tools__lineUp {
        display: inline-block;
        width: 80%;
    }
}


@media screen and (max-width: 700px) {

    .skinship__lineUp,
    .charms__lineUp,
    .tools__lineUp {
        margin-bottom: 0;
        display: inline-block;
        width: 80%;
    }
}

/* pc 721px */

/*==========================
Article header
==========================*/
/* --CatchCopy-- */

.clientImg {
    transform-origin: center bottom;
    animation: clientImg 4s linear infinite;
}

@keyframes clientImg {

    0%,
    100% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(-3deg);
    }
}

.box__pc {
    display: none;
}

.nav__list__pc {
    display: none;

}

.section--home {
    background-image: url(../images/backPc__img.webp);
    background-size: cover;
    padding: 0 3% 20%;
}


.mainCaption {
    display: inline-block;
    font-family: "Zen Kaku Gothic New";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1.1px;
    z-index: 1;
    padding: 0 3% 0;
}

.mainCaption {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 5% 11% 4%;
    z-index: 1;
    margin-top: -18px;
    /* animation: poyonSoft 6s ease-in-out infinite;
    transition: border-radius 0.3s ease; */
}

.mainCaption__txt {
    font-family: "Zen Maru Gothic", serif;
    display: block;
    margin-top: 5px;
}

.mainCaption__txt2 {
    display: block;
    margin-top: 5px;
    font-size: 1.6rem;
}

.mainCaption__btn {
    display: block;
    margin-top: 30px;
}

.btn__profile {
    margin-top: 20px;
}

.mainCaption__alphabet__big {
    font-family: "Aleo", serif;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1.3px;
    color: transparent;
    background: -webkit-linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
    background: -moz-linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
    background: -o-linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
    background: linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
    background: linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.mainCaption__alphabet__medium {
    font-family: "Aleo", serif;
    background: linear-gradient(transparent 60%, #fdf4c3 60%);
    font-size: 2rem;
    letter-spacing: 1.1px;
    display: inline-block;
    word-wrap: break-word;
}

.btn {
    font-family: "Zen Maru Gothic", serif;
    display: inline-block;
    background: linear-gradient(to right, #28E6C3 0%, #F2F87D 45%, #FFFA77 100%);
    background-size: 200% auto;
    color: #333221;
    border-radius: 70px;
    padding: 10px 0;
    text-decoration: none;
    font-size: 1.4rem;
    transition: .5s;
    width: 250px;
    z-index: 2;
    position: relative;
    margin: 2% auto 4%;
    text-align: center;
}

.btn:hover {
    background-position: right center;
}

.btn::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 0.8px solid hwb(169 2% 61%);
    border-top: 0.8px solid hwb(169 2% 61%);
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: rotate(45deg) translateY(-58%);
}

.btn-wrapper {
    display: flex;
    justify-content: center;
    /* 横中央 */
    align-items: center;
    /* 縦中央 */
    height: 100vh;
    /* または任意の高さ */
}

.top__left {
    display: none;
}

.top__right {
    display: none;
}

.clientImg {
    position: relative;
    z-index: 2;
}


.btn {
    margin: 20px auto;
    display: inline-block;
}

.mainCaption__txtAll .btn {
    margin: 10px auto 20px;
    display: inline-block;
}

.mainCaption__txtAll {
    padding: 0 5%;
}


/* .Article header pc */
/* --CatchCopy-- */
@media screen and (min-width:954px) {

    .section--home {
        background-image: url(../images/backPc__img.webp);
        background-size: cover;
        padding: 0 0% 10%;
    }

    .section--home span {
        display: inline-block;
    }

    .section--home .box__pc {
        display: block;
        border-radius: 120px;
        background: rgba(255, 255, 255, 0.95);
        width: 86%;
        margin: 0 auto 8%;
    }


    .top__left {
        display: block;
    }

    .top__right {
        display: block;
    }

    .mainCaption__txtAll {
        padding-bottom: 10px;
        /* width: 912px; */
    }

    .nav__item a {
        display: block;
        justify-content: center;
        align-items: center;
        font-size: 1.6rem;
    }

    .mainCaption__txt {
        display: block;
        margin-top: 5px;
        font-size: 2rem;
        line-height: 1.6;
    }

    .mainCaption__txt:nth-of-type(2) {
        margin-top: 20px;
    }

    .mainCaption__txt:nth-of-type(3) {
        margin-top: 20px;
    }

    .mainCaption__txt2 {
        display: block;
        margin-top: 5px;
        font-size: 2.3rem;
    }

    .mainCaption__alphabet__big {
        font-family: "Aleo", serif;
        width: fit-content;
        margin: 0 auto;
        text-align: center;
        font-size: 4.3rem;
        font-weight: 500;
        letter-spacing: 4.8px;
        color: transparent;
        background: linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
        background: linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
        background-clip: text;
        -webkit-background-clip: text;
    }

    .mainCaption__alphabet__big__a {
        font-family: "Damion", cursive;
        width: fit-content;
        margin: auto;
        padding-top: 5%;
        text-align: center;
        font-size: 2.6rem;
        font-weight: 500;
        letter-spacing: 1.3px;
        color: transparent;
        background: linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
        background: linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
        background-clip: text;
        -webkit-background-clip: text;
    }

    .mainCaption__alphabet__medium {
        font-size: 3rem;
        font-family: "Aleo", serif;
        word-wrap: break-word;
        letter-spacing: 4.5px;
    }

    .mainCaption__btn {
        display: flex;
        margin-top: 30px;
        justify-content: space-around;
        gap: 20px;

    }

    .btn__rythmique {
        width: 232px;
        height: 47px;
        text-decoration: none;
        display: inline-block;
        border-bottom: 4px solid rgba(51, 50, 33, 0.55);
        border-radius: 70px;
        margin: 0 20px;
    }

    .btn__profile {
        width: 232px;
        height: 47px;
        text-decoration: none;
        display: inline-block;
        border-bottom: 4px solid rgba(51, 50, 33, 0.55);
        border-radius: 70px;
        margin: 0 20px;
    }

    /* .clientImg {
        display: none;
    } */


    .mainVisualc {
        &::after {
            content: "";
            display: block;
            background-image: url(../images/top__right.png);
            background-size: contain;
            background-repeat: no-repeat;
            width: 37em;
            height: 46em;
            animation: clientImg_pc 4s linear infinite;
            position: relative;
            right: 20px;
        }
    }

    /* .mainCaption {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 400;
        line-height: 2;
        width: 80%;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 77% 70% 77% 70% / 75% 76% 75% 76%;
        padding: 0 1%;

        &::before {
            content: "";
            display: inline-block;
            background-image: url(../images/top__left.png);
            background-size: contain;
            background-repeat: no-repeat;
            width: 37em;
            height: 41em;
            animation: clientImg_pc 4s linear infinite;
            position: relative;
            left: 50px;
        }

        &::after {
            content: "";
            display: block;
            background-image: url(../images/top__right.png);
            background-size: contain;
            background-repeat: no-repeat;
            width: 37em;
            height: 46em;
            animation: clientImg_pc 4s linear infinite;
            position: relative;
            right: 20px;
        }
    } */

    .mainCaptio::after {
        animation: clientImg_pc 4s linear infinite;
    }


    @keyframes clientImg_pc {

        0%,
        100% {
            transform: rotate(3deg);
        }

        50% {
            transform: rotate(-3deg);
        }
    }

    .top__btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 30px;
        gap: 20px;
        align-items: center;
    }

    .btn {
        font-family: "Zen Maru Gothic", serif;
        display: inline-block;
        background: linear-gradient(to right, #28E6C3 0%, #F2F87D 45%, #FFFA77 100%);
        background-size: 200% auto;
        color: #333221;
        border-radius: 70px;
        padding: 10px 0;
        text-decoration: none;
        font-size: 1.5rem;
        transition: .5s;
        width: 285px;
        z-index: 2;
        position: relative;
        margin: 20px auto;
    }

    .mainCaption .mainCaption__alphabet__medium::after {
        width: 237px;
        height: 5em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 33px;
        z-index: -1;
    }

    .btn::after {
        content: "";
        width: 10px;
        height: 10px;
        border-right: 2px solid hwb(169 2% 61%);
        border-top: 2px solid hwb(169 2% 61%);
        display: inline-block;
        transform: rotate(45deg);
        position: absolute;
        top: 42%;
        right: 18px;
    }
}


@media screen and (min-width:690px) {

    .mainCaption {
        width: 80%;
        padding: 3% 8% 4%;
    }
}


@media screen and (min-width:954px) {

    .mainCaption {
        width: 70%;
        padding: 3% 8% 4%;
    }
}



/* --Instructor training course-- */
.topics__item__instructor {
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 1.1px;
    position: relative;
    background: linear-gradient(180deg, rgba(55, 179, 218, 0.00) 0%, rgba(55, 179, 218, 0.80) 23.94%, rgba(54, 183, 210, 0.80) 43.44%, rgba(47, 199, 171, 0.80) 67.44%, rgba(47, 199, 171, 0.57) 82.44%, rgba(47, 199, 171, 0.00) 100%);
    padding: 50px 5% 20px;
}

.topics__item__instructor .topics__item__instructor__sp {
    letter-spacing: 1.1px;
    line-height: 1.6;
    background-color: #FFF;
    border-radius: 10px;
    padding: 20px 8%;
}

.topics__item__instructor .topics__item__instructor__sp::before {
    content: "";
    display: block;
    background-image: url(../images/leaf__right.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 9em;
    position: absolute;
    right: 0px;
    top: -104px;
}

@media screen and (min-width:700px) {
    .topics__item__instructor {
        padding: 50px 10% 20px;
    }
}

@media screen and (min-width:800px) {

    .topics__item__instructor::before {
        content: "";
        display: block;
        background-image: url(../images/leaf__rightPc.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: 15em;
        position: absolute;
        right: 0px;
        top: -152px;
        max-width: 300px;
    }

    .topics__item__instructor .topics__item__instructor__sp::before {
        display: none;
    }

    .topics__item__instructor {
        padding: 50px 10% 20px;
    }
}

@media screen and (min-width:520px) {

    .topics__item__instructor::before {
        display: none;
    }

    .topics__item__instructor .topics__item__instructor__sp::before {
        content: "";
        display: block;
        background-image: url(../images/leaf__right.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 86%;
        height: 15em;
        position: absolute;
        right: 0px;
        top: -152px;
        max-width: 239px;
    }
}

.topics__item__instructor .alphabet__small {
    font-size: 2.2rem;
    display: inline-block;
    font-family: "Damion", cursive;
    color: transparent;
    background: linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    word-wrap: break-word;
    margin-top: 40px;
}

.topics__item__instructor .txt__medium1 {
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.6rem;
    font-weight: 500;
}

.topics__item__instructor .txt__medium2 {
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.3rem;
    font-weight: 400;
    margin-top: 10px;
}

.topics__item__instructor .txt__medium3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 20px 5% 0 12%;
    text-align: left;
    display: inline-block;
}

.topics__item__instructor .btn {
    margin-top: 20px;
}

.txt__small {
    margin-top: 10px;
}

.txt__alphabet {
    font-family: "Aleo", serif;
}

.txt__alphabet__Damion {
    font-family: "Damion", cursive;
    color: #305329;
    font-size: 2rem;
    font-weight: 200;
}

.mainCaption__txt a .btn .txt__alphabet {
    font-family: "Aleo", serif;
    color: #333221;
    font-size: 2.4rem;
    font-weight: 300;
}

.navTxt__alphabet {
    font-family: "Damion", cursive;
    font-size: 1.5rem;
    color: transparent;
    background: linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    word-wrap: break-word;
}

.instructorImg {
    display: block;
    padding: 0 10%;
}

.instructorImg__sp {
    margin-top: 10px;
    position: relative;
    width: 75%;
}

@media screen and (min-width:350px) {

    .instructorImg__sp {
        margin-top: 10px;
        position: relative;
        width: 95%;
    }
}

.instructorImg__pc1 {
    display: none;
}

.instructorImg__pc2 {
    display: none;
}


.topics__item__instructor .apply__btn {
    margin-top: 20px;
}

.topics__item__instructor .txt__medium2 {
    background: linear-gradient(transparent 60%, #fdf4c3 60%);
    padding: 0 4px;
    border-radius: 4px;
    display: inline;

}

.center-box {
    display: flex;
    justify-content: center;
    /* 中央に配置 */
    align-items: center;
    /* 縦方向の中央（必要なら） */
    text-align: left;
    /* 中身の文字は左揃え */
}

.event__img {
    margin-top: 3%;
}

/* .Article header pc */
/* --Instructor-- */

@media screen and (min-width:700px) {
    .instructorImg__sp {
        width: 65%;
    }
}

@media screen and (min-width:960px) {
    .instructorImg__sp {
        display: none;
    }

    .topics__item__instructor {
        display: block;
        margin-top: 30px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        letter-spacing: 1.1px;
        position: relative;
        background: linear-gradient(180deg, rgba(55, 179, 218, 0.00) 0%, rgba(55, 179, 218, 0.80) 23.94%, rgba(54, 183, 210, 0.80) 43.44%, rgba(47, 199, 171, 0.80) 67.44%, rgba(47, 199, 171, 0.57) 82.44%, rgba(47, 199, 171, 0.00) 100%);
        padding: 50px 10% 20px;
    }

    .topics__item__instructor .topics__item__instructor__sp {
        letter-spacing: 1.1px;
        line-height: 1.6;
        background-color: #fefefe;
        border-radius: 10px;
        padding: 0;

    }


    .instructorImg__pc {
        display: flex;
        margin: auto;
        gap: 20px;
        padding: 0 5%;
        margin: 20px 0;
    }

    .instructorImg__pc1 {
        display: block;
    }

    .instructorImg__pc2 {
        display: block;
        height: 80%;
        margin: auto;
    }

    .spBr {
        display: none;
    }

    .topics__item__instructor .txt__medium3 {
        margin: 20px 0 0 0;
        text-align: center;
    }

    .topics__item__event .txt__medium3 {
        font-size: 1.8rem;
        font-weight: 400;
        margin: 0 10% 0;
        text-align: center;
    }

    .topics__item__instructor__spa {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 3%;

        &::before {
            content: "";
            display: block;
            background-image: url(../images/instructorImg__pc1a.png);
            background-size: contain;
            background-repeat: no-repeat;
            width: 20em;
            height: 25em;
            position: relative;
            left: 4px;
        }

        &::after {
            content: "";
            display: block;
            background-image: url(../images/instructorImg__pc2a.png);
            background-size: contain;
            background-repeat: no-repeat;
            width: 21em;
            height: 20em;
            position: relative;
            right: 14px;
        }
    }

    .topics__item__instructor__spab {
        margin: 0 2% 40px;
    }

    .topics__item__instructor__sp {
        position: relative;
    }

    .topics__item__instructor__sp::after {
        content: "";
        display: block;
        background-image: url(../images/flower1__left.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 200px;
        height: 10em;
        position: absolute;
        left: -19px;
        bottom: 35px;
    }

    .topics__item__instructor .topics__item__instructor__sp::before {
        display: none;
    }


    .topics__item__instructor .txt__medium2 {
        margin-top: 0;
    }

    .topics__item__instructor::before {
        content: "";
        display: block;
        background-image: url(../images/leaf__rightPc.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 300px;
        height: 17em;
        position: absolute;
        top: -90px;
        z-index: 1;
        right: 10px;
    }

    .txt__alphabet__Damion {
        font-family: "Damion", cursive;
        color: #305329;
        font-size: 2.5rem;
        font-weight: 200;
    }

    .event__img {
        width: 70%;
    }
}


/* --Rhythmic Lessons-- */
.topics__event {
    background: linear-gradient(180deg, rgba(55, 179, 218, 0.00) 0%, rgba(55, 179, 218, 0.80) 23.94%, rgba(54, 183, 210, 0.80) 43.44%, rgba(47, 199, 171, 0.80) 67.44%, rgba(47, 199, 171, 0.57) 82.44%, rgba(47, 199, 171, 0.00) 100%);
    padding: 50px 5% 100px;
}

.topics__item__event {
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    justify-content: center;
    letter-spacing: 1.1px;
    line-height: 1.6;
    background-color: #FFF;
    border-radius: 10px;
    padding: 20px 8%;
}

.topics__item__event .txt__medium1 {
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.4rem;
    font-weight: 500;
}

.topics__item__event .txt__medium2 {
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.3rem;
    font-weight: 400;
}

.topics__item__event .txt__small {
    margin-top: 10px;
    text-align: left;
}

/* --Charity ALOHA Market-- */
.topics__item__charity {
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    justify-content: center;
    letter-spacing: 1.1px;
    line-height: 1.6;
    background-color: #FFF;
    border-radius: 10px;
    padding: 20px 8% 20px;
}

.topics__item__charity .txt__medium1 {
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.4rem;
    font-weight: 500;
}

.topics__item__lesson .txt__medium2 {
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.3rem;
    font-weight: 400;
}

.topics__item__lesson .txt__medium3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0 10% 0;
}

.topics__item__lesson .txt__small {
    margin-top: 10px;
    text-align: left;
}


.topics__item__event .btn {
    text-align: center;
    margin: 20px auto 0;
}

.topics__event .alphabet__small {
    font-size: 2.2rem;
    display: inline-block;
    font-family: "Damion", cursive;
    color: transparent;
    background: linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    word-wrap: break-word;
}

.topics__event {
    position: relative;
}

.topics__event::before {
    content: "";
    display: block;
    background-image: url(../images/leaf__left.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 9em;
    position: absolute;
    top: -27px;
    left: -11px;
}

@media screen and (min-width:520px) {

    .topics__event::before {
        content: "";
        display: block;
        background-image: url(../images/leaf__leftPc.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 86%;
        height: 15em;
        position: absolute;
        right: 0px;
        top: -39px;
        max-width: 239px;
        z-index: 1;
    }
}

@media screen and (min-width:700px) {
    .topics__event {
        padding: 50px 10% 20px;
    }
}

@media screen and (min-width:800px) {

    .topics__event::before {
        content: "";
        display: block;
        background-image: url(../images/leaf__leftPc.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: 15em;
        position: absolute;
        right: 0px;
        top: -62px;
        max-width: 260px;
    }

}



/* .Article header pc */
/* --lesson,charity-- */
@media screen and (min-width:1200px) {
    .topics__event {
        display: flex;
        justify-content: center;
        height: auto;
        padding: 130px 10% 160px;
        gap: 3%;
        background: linear-gradient(180deg, rgba(55, 179, 218, 0.00) 0%, rgba(55, 179, 218, 0.80) 23.94%, rgba(54, 183, 210, 0.80) 43.44%, rgba(47, 199, 171, 0.80) 67.44%, rgba(47, 199, 171, 0.57) 82.44%, rgba(47, 199, 171, 0.00) 100%);
    }

    .topics__item__lesson {
        padding: 30px 0 0;
        line-height: 1.6;
        background-color: #FFF;
        border-radius: 10px;
        padding-bottom: 20px;
    }

    .topics__item__charity {
        padding: 30px 0 0;
        line-height: 1.6;
        background-color: #FFF;
        border-radius: 10px;
        padding-bottom: 20px;
    }

    .topics__item__event {
        display: flex;
        margin-top: 30px;
        flex-direction: column;
        justify-content: center;
        letter-spacing: 1.1px;
        line-height: 1.6;
        background-color: #FFF;
        border-radius: 10px;
        padding: 20px 6%;
        flex: 1;
    }

    .topics__event {
        display: flex;
        gap: 20px;
        /* アイテム間の間隔（任意） */
    }

    .topics__item__event {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* 子要素を上下に整列 */
        flex: 1;
        /* 高さを統一 */
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 12px;
        position: relative;
        /* 親要素内で相対的に配置 */
        margin-top: 5%;
    }

    .topics__event__bottom {
        margin-top: auto;
        /* 下部に配置 */
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 必要に応じて調整 */
        width: 100%;
    }

    .img-wrap {
        display: flex;
        align-items: flex-end;
        /* 画像の下端を揃える */
        width: 100%;
    }

    .event__img {
        width: 100%;
        height: auto;
        object-fit: cover;
        /* 画像のトリミング */
    }

    .topics__item__eventHead {
        min-height: auto;
        /* 内容に応じて調整。両ブロックに適用される */
    }

    .topics__item__event {
        display: grid;
        grid-template-rows: auto 1fr auto;
        /* 上: 見出し / 中: 本文 / 下: 画像とボタン */
        gap: 16px;
        padding: 40px 3%;
        border: 1px solid #ccc;
        border-radius: 12px;

        /* 必須：親要素の高さをそろえるため */
    }

}


/* --Schedule-- */
.topics__item__schedule {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    letter-spacing: 1.1px;
    padding: 30px 8%;
    position: relative;
}

.topics__item__schedule .alphabet__small {
    font-size: 2.8rem;
    display: inline-block;
    font-family: "Damion", cursive;
    color: transparent;
    background: linear-gradient(90deg, #FF7D04, #F0C343 50%, #28E6C3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    word-wrap: break-word;
}

.topics__item__schedule .txt__medium1 {
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.4rem;
    font-weight: 500;
}

.topics__item__schedule .txt__medium2 {
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.3rem;
    font-weight: 400;
}

.topics__item__schedule .txt__medium3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0 10% 0;
}

.babyImg__sp {
    display: block;
    width: 75%;
    margin: auto;
    position: relative;
}

.babyImg__pc {
    display: none;
}

.babyImg__sp {
    transform-origin: center bottom;
    animation: babyImg__sp 4.5s linear infinite;
}

@keyframes babyImg__sp {

    0%,
    100% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(-3deg);
    }
}

.calendar__pc {
    display: none;
}


.topics__item__schedule::before {
    content: "";
    display: block;
    background-image: url(../images/leaf__right.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 9em;
    position: absolute;
    right: 0%;
    bottom: 92px;

}

@media screen and (min-width:730px) {

    .topics__item__schedule::before {
        content: "";
        display: block;
        background-image: url(../images/leaf__rightPc.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 86%;
        height: 15em;
        position: absolute;
        right: 0px;
        top: -39px;
        max-width: 239px;
        z-index: 1;
    }
}

@media screen and (min-width:800px) {

    .topics__item__schedule::before {
        content: "";
        display: block;
        background-image: url(../images/leaf__rightPc.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: 15em;
        position: absolute;
        right: 0px;
        top: -81px;
        max-width: 263px;
    }

    .babyImg__sp {
        width: 50%;
        margin-top: 20px;
    }

    .btn__apply__sp {
        width: 350px;
    }


}



/* .Article header pc */
/* --Schedule-- */
@media screen and (min-width:954px) {
    .schedule {
        padding: 0 6%;
        margin-top: 60px;
    }

    .calendar__sp {
        display: none;
    }

    .calendar__pc {
        display: block;
    }

    .babyImg__pc {
        display: block;
        width: 60%;
        height: 90%;
        margin: auto;
    }

    .babyImg__pc {
        transform-origin: center bottom;
        animation: babyImg__sp 4.5s linear infinite;
    }

    @keyframes babyImg__pc {

        0%,
        100% {
            transform: rotate(3deg);
        }

        50% {
            transform: rotate(-3deg);
        }
    }

    .babyImg__sp {
        display: none;
    }

    .calendarPc {
        display: inline;
        margin: 40px 30px 30px;
    }

    .calendar__pc {
        width: 100%;
    }

    .schedule .txt__medium1 {
        font-size: 3rem;
    }

    .babyImg__pc {
        width: 40%;
        margin-top: 20px;
    }


    .topics__item__schedule::before {
        content: "";
        display: block;
        background-image: url(../images/leaf__rightPc.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 300px;
        height: 17em;
        position: absolute;
        right: -6%;
        bottom: -33px;

    }

}

/*==========================
footer
==========================*/
.footer {
    background: linear-gradient(180deg, rgba(43, 200, 172, 0.00) 0%, rgba(43, 200, 172, 0.50) 19.22%, rgba(43, 200, 172, 0.80) 41.22%, #2BC8AC 100%);
    padding-bottom: 20%;
}

.footerLogo__pc {
    display: none;
}

.footerNav {
    display: none;
}

.copy {
    color: #FFF;
    font-family: "Aleo", serif;
    font-size: 1.4 rem;
    margin-top: 20px;
    font-weight: 300;
    padding-bottom: 2rem;
}

/* .footer pc */
@media screen and (min-width:954px) {
    .footer {
        background: linear-gradient(180deg, rgba(43, 200, 172, 0.00) 0%, rgba(43, 200, 172, 0.50) 19.22%, rgba(43, 200, 172, 0.80) 41.22%, #2BC8AC 100%);
        margin-bottom: 0;
        padding-bottom: 0;
        padding-top: 100px;
    }

    .footerLogo__sp {
        display: none;
    }

    .footerLogo__pc {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    .footer .box__pc {
        display: block;
        border-radius: 120px;
        background: rgba(255, 255, 255, 0.95);
        width: 86%;
        margin: 0 auto 3%;
        color: #333221;
        font-family: "Zen Maru Gothic", serif;
        font-size: 1.6rem;
    }


    .nav__list__pc {
        display: flex;
        height: 6em;
        justify-content: space-between;
        align-items: center;
        padding: 0 6%;
    }

    .nav__list__pc .js_fixed {
        position: fixed;
        top: 20px;
    }

    .nav__item a {
        display: block;
        justify-content: space-between;
        align-items: center;
        font-size: 1.6rem;
        margin: 0 5px;
    }

    .footerNav {
        display: inline-flex;
    }

    .copy {
        padding-bottom: 60px;
    }

}



/* pc 721px */