main {
    overflow: hidden;
}

header {
    /* display: block; */
}


/* ========== KV sequence animation ========== */

@keyframes kv-fadeup {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kv-char {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kv {
    visibility: hidden;
}

.kv.kv-ready {
    visibility: visible;
}

.kv[data-kv-anim] {
    visibility: hidden;
}

.kv[data-kv-anim].kv-ready {
    visibility: visible;
}


/* Prevent first-frame flash before .is-kv-anim is applied */

.kv[data-kv-anim].kv-ready:not(.is-kv-anim) .kv__inner h1>span,
.kv[data-kv-anim].kv-ready:not(.is-kv-anim) .kv__inner h1 em .kv-char,
.kv[data-kv-anim].kv-ready:not(.is-kv-anim) .wrap-01 .wrap__item .kv-card__text,
.kv[data-kv-anim].kv-ready:not(.is-kv-anim) .button_cv {
    opacity: 0;
    transform: translateY(12px);
}

.kv[data-kv-anim].kv-ready:not(.is-kv-anim) .kv-bg,
.kv[data-kv-anim].kv-ready:not(.is-kv-anim) .kv-topic {
    opacity: 0;
    transform: none;
}

.kv .wrap-01 .wrap__item {
    position: relative;
    overflow: hidden;
}

.kv .wrap-01 .wrap__item .kv-card__text {
    position: relative;
    display: block;
}

.kv.is-kv-anim .kv__inner h1 em {
    /* keep existing layout, animate per-char spans */
}

.kv.is-kv-anim .kv__inner h1 em .kv-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
    animation: kv-char 520ms ease forwards;
    animation-delay: var(--d, 0ms);
    will-change: opacity, transform;
}


/* 2) 3 cards: bg first, then text */

.kv .wrap-01 .wrap__item {
    background: transparent;
    box-shadow: none;
    position: relative;
}

.kv.is-kv-anim .wrap-01 .wrap__item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--color-bg-card);
    box-shadow: var(--shadow-card);
    z-index: 0;
    opacity: 0;
    transform: translateY(12px);
    animation: kv-fadeup 650ms ease forwards;
    animation-delay: var(--bg-delay, 900ms);
    will-change: opacity, transform;
    box-shadow: var(--shadow-card);
    margin-bottom: 5px;
    margin-right: 5px;
}

.kv.is-kv-anim .wrap-01 .wrap__item .kv-card__text {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    animation: kv-fadeup 600ms ease forwards;
    animation-delay: var(--text-delay, 1080ms);
    will-change: opacity, transform;
}


/* 4) Button */

.kv.is-kv-anim .button_cv {
    opacity: 0;
    transform: translateY(12px);
    animation: kv-fadeup 650ms ease forwards;
    animation-delay: 1900ms;
    will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
    .kv.is-kv-anim .kv__inner h1>span,
    .kv.is-kv-anim .kv__inner h1 em .kv-char,
    .kv.is-kv-anim .wrap-01 .wrap__item::before,
    .kv.is-kv-anim .wrap-01 .wrap__item .kv-card__text,
    .kv.is-kv-anim .kv-bg,
    .kv.is-kv-anim .kv-topic,
    .kv.is-kv-anim .button_cv {
        opacity: 1;
        transform: none;
        animation: none;
    }
}


/* ========== layout.css ========== */

.kv {
    background: #fff;
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    height: 600px;
    position: relative;
    overflow: hidden;
    padding: 0 44px;
}

.kv::before {
    content: "";
    display: block;
    aspect-ratio: 16 / 9;
    /* 画像の比率 */
    background: url(../image/kv_pc.png) no-repeat center bottom;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .kv::before {
        display: none;
    }
}

.kv header {
    padding: 11px 0;
    position: absolute;
}

.kv header .logo img {
    width: 186px;
    height: auto;
}

.kv .section__inner {
    max-width: 1130px;
    padding: 0;
    position: relative;
}

.kv__inner {
    width: 618px;
    padding-top: 104px;
    position: relative;
    z-index: 1;
}

.kv__inner h1>span {
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--color-brand-blue-deep);
    display: inline-block;
    border-bottom: 0.25rem solid #FFE5B8;
}

.kv__inner h1 em {
    display: block;
    font-size: 3.125rem;
    line-height: 1;
    margin-top: 8px;
    letter-spacing: 0.3rem;
}

.kv__inner h1 em span {
    display: block;
    margin-top: 14px;
}

.kv__inner h1 em strong {
    display: inline-block;
    color: #ffffff;
    background: var(--color-brand-blue-light);
    padding: 1px 4px 7px 4px;
    letter-spacing: 0.12rem;
    margin-right: 0.5rem;
}

.kv__inner ul {
    margin-top: 20px;
    margin-bottom: 40px;
}

.kv-bg {
    position: absolute;
    right: -282px;
    left: auto;
    top: 97px;
    /* transform: translateY(-50%); */
    width: 901px;
    z-index: 0;
}

@media (min-width: 1441px) {
    .kv .section__inner {
        /* margin-left: 150px; */
    }
    .kv-bg {
        position: absolute;
        right: auto;
        left: 510px;
        /* top: 57%; */
        /* transform: translateY(-50%); */
        width: 901px;
        z-index: 0;
        /* margin-left: 150px; */
    }
}

@media (max-width: 1440px) {
    .kv .section__inner {
        position: static;
    }
    .kv__inner {
        width: clamp(540px, calc(100vw * 618 / 1440), 618px);
    }
    .kv__inner h1 em {
        font-size: clamp(40px, calc(100vw * 50 / 1440), 50px);
    }
    .wrap-01 .wrap__item {
        font-size: clamp(16px, calc(100vw * 19.2 / 1440), 19.2px);
    }
    .kv-bg {
        right: -126px;
        left: auto;
        /* top: 97px; */
    }
}

@media (min-width: 768px) and (max-width: 1130px) {
    .kv-bg {
        right: auto;
        left: 355px;
        /* position: static; */
    }
    .kv {
        background: #fff url(../image/kv_pc.png);
        background-size: 1130px auto;
        background-position: center bottom;
        background-repeat: no-repeat;
        height: 600px;
        position: relative;
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .kv {
        width: 100%;
        background: none;
        height: auto;
        position: static;
        padding-bottom: 0;
        background: #FFF;
        padding: 0;
    }
    .kv header {
        z-index: 1;
        position: relative;
    }
    .kv .section__inner {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #fff;
    }
    .kv__inner {
        width: 100%;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        inset: 0;
        padding: 0;
        background: #d6ebff;
        background-image: url(../image/kv_sp.png);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100% auto;
        z-index: 0;
    }
    .kv__inner h1 {
        padding: 16vw 7vw 0;
        /* font-size: 7vw; */
    }
    .kv__inner h1 span {
        font-size: 6vw;
    }
    .kv__inner h1 em {
        font-size: 10vw;
    }
    .kv__inner h1 em span {
        font-size: 10vw;
    }
    .kv__inner h1 strong {
        font-size: 10vw;
    }
    .kv__inner h1 small {
        font-size: 7vw;
    }
    .kv-bg img {
        display: none;
    }
    .kv .wrap-01 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-items: stretch;
        /* padding: 4vw; */
    }
    /* 1å€‹ç›®ã‚’ä¸Šæ®µä¸­å¤®ï¼ˆå¹…ã¯1ã‚«ãƒ©ãƒ åˆ†ï¼‰ */
    .kv .wrap-01>.wrap__item:nth-child(1) {
        grid-column: 1 / -1;
        /* è¡Œã¯å˜ç‹¬ã«ã™ã‚‹ */
        justify-self: center;
        /* ä¸­å¤®ã«ç½®ã */
        width: calc((100% - 12px) / 2);
        /* ä¸‹æ®µã¨åŒã˜å¹… */
    }
    .kv .kv__inner__bottom {
        padding: 0 5vw 8vw;
        padding-top: 52vw;
    }
}

.kv .kv-topic {
    width: 142px;
    height: 142px;
    background: #FFCE78;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 165px;
}

.kv .kv-topic p {
    line-height: 1;
    position: relative;
    /* top: -2rem; */
}

.kv .kv-topic p:first-child {
    font-size: 16px;
    font-weight: bold;
    color: #073E79;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 2px;
}

.kv .kv-topic p:last-child {
    font-size: 40px;
    font-weight: bold;
    color: #305CFB;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
}

.kv .kv-topic p:last-child span {
    font-size: 24px;
}

@media (max-width: 1110px) {
    .kv .kv-topic {
        width: 142px;
        height: 142px;
        background: #FFCE78;
        border-radius: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: auto;
        left: calc(594px + ( 100vw - 1110px));
        /* position: fixed; */
    }
}

@media (max-width: 767px) {
    .kv header {
        padding: 16px 20px;
        position: absolute;
    }
    .kv header .logo img {
        width: 125px;
        height: auto;
    }
    .kv .kv-bg {
        width: 100%;
        right: 0;
        position: absolute;
        top: 61vw;
    }
    .kv .kv-topic {
        width: 28vw;
        height: 28vw;
        background: #FFCE78;
        border-radius: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 4vw;
        left: auto;
    }
    .kv .kv-topic p {
        line-height: 1;
        position: relative;
        /* top: -2rem; */
    }
    .kv .kv-topic p:first-child {
        font-size: 3vw;
        font-weight: bold;
        color: #073E79;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 2px;
    }
    .kv .kv-topic p:last-child {
        font-size: 8vw;
        font-weight: bold;
        color: #305CFB;
        letter-spacing: -0.05em;
        margin-bottom: 1vw;
    }
    .kv .kv-topic p:last-child span {
        font-size: 5vw;
    }
}

section.learning {
    padding-top: 72px;
    background: #F6F8FF;
}

@media (max-width: 767px) {
    section.learning {
        padding-top: 3.56789rem;
        padding-bottom: 0rem;
        margin-block: 0;
    }
}

.learning span.section__header--subtitle img {
    width: 215px;
    height: auto;
}

@media (max-width: 767px) {
    .learning span.section__header--subtitle img {
        width: 42vw;
        height: auto;
    }
}

.learning .block.block01 {
    margin-top: 33px;
    margin-bottom: 62px;
}

@media (max-width: 767px) {
    .learning .block.block01 {
        padding-top: 1.56789rem;
        padding-bottom: 1.56789rem;
        margin-block: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

.learning .block.block01 ul {
    justify-content: center;
}

@media (min-width: 768px) and (max-width: 830px) {
    .learning .block.block01 ul {
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(2, 1fr);
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

.learning .block h3 {
    color: var(--color-text-main);
    margin-bottom: 23px;
}

@media (max-width: 767px) {
    .learning .block h3 {
        font-size: 24px;
    }
}

.learning .block.block01 h3 {
    margin-bottom: 18px;
    letter-spacing: 0.21rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .learning .block.block01 h3 {
        display: inline-block;
        width: 100%;
    }
}

.learning .block h3 span {
    color: var(--color-brand-blue-soft);
}

.learning .block.block02 {
    margin-top: 94px;
    margin-bottom: 0;
    padding-bottom: 94px;
}

@media (max-width: 767px) {
    .learning .block.block02 {
        padding-top: 1.56789rem;
        padding-bottom: 1.56789rem;
        margin-block: 0;
    }
}

.learning .block.block02 .block--button {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 30px;
    width: 777px;
    margin-left: auto;
    margin-right: auto;
}

.learning .block.block02 .block--button>.block--button__item {
    width: 48%;
}

@media (max-width: 830px) {
    .learning .block.block02 .block--button {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .learning .block.block02 .block--button {
        width: 100%;
    }
}

.cv {
    background: #fafaf5 url(../image/kugiri02.png) top center no-repeat;
    background-size: 100% auto;
    padding: 6.9% 0 80px 0;
}

@media (max-width: 767px) {
    .cv {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.cv .block-cv {
    background: #fff;
    border: 0.625rem solid #f3cf4d;
    padding: 38px 0 25px;
    text-align: center;
    box-sizing: border-box;
    width: 49.3125rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 42px;
}

@media (max-width: 789px) {
    .cv .block-cv {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .cv .block-cv {
        width: 100%;
        padding-top: 1.56789rem;
        padding-inline: 5vw;
        padding-bottom: 1.56789rem;
        margin-block: 0;
        margin-bottom: 1.56789rem;
    }
}

.cv .block-cv__lead {
    margin: 0;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    position: relative;
    padding-bottom: 28px;
    padding-inline: 2rem;
}

@media (max-width: 767px) {
    .cv .block-cv__lead {
        font-size: 3.6vw;
        padding-inline: 0;
    }
}

.cv .block-cv__lead:before {
    content: '';
    position: absolute;
    background: url(../image/cv_line.png) center bottom no-repeat;
    width: 100%;
    left: 0;
    height: 0.875rem;
    bottom: 0;
}

.cv .block-cv__row {
    justify-content: center;
    align-items: center;
    gap: 2.5vw;
    margin-top: 0;
}

.cv .block-cv__badge img {
    display: block;
    height: auto;
    max-width: 7.5rem;
    width: 100%;
}

.cv .block-cv__titlebox {
    min-width: 0;
}

.cv .block-cv__title {
    margin: 0;
    display: inline-block;
    background: #fff;
    font-weight: 800;
    font-size: 2.125rem;
    line-height: 1.5;
    letter-spacing: .06em;
    color: #333;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .cv .block-cv__title {
        font-size: 6.5vw;
    }
}

.cv .block-cv__sub {
    margin: 10px 0 0;
    font-size: 1.25rem;
    color: #333;
}

@media (max-width: 767px) {
    .cv .block-cv__sub {
        font-size: 4.5vw;
    }
}

.practicalnurse {
    background: #FFF4F9 url(../image/kugiri01.png) top center no-repeat;
    background-size: 100% auto;
    padding-top: 116px;
    padding-bottom: 40px;
}

@media (max-width: 767px) {
    .practicalnurse {
        padding-top: 3.56789rem;
        padding-bottom: 30px;
        margin-block: 0;
    }
}

.practicalnurse .section__header--subtitle {
    margin-bottom: 3px;
}

.practicalnurse .section__header--subtitle img {
    width: 194px;
    height: auto;
}

@media (max-width: 767px) {
    .practicalnurse .section__header--subtitle img {
        width: 41vw;
        height: auto;
    }
}

.practicalnurse h3 {
    color: var(--color-accent-pink);
    margin-bottom: 20px;
}

.practicalnurse .block h3.deco {
    margin-bottom: 0px;
    line-height: 1;
}

.practicalnurse .block h3.deco span {
    color: var(--color-accent-pink);
    letter-spacing: -0.06rem;
}

.practicalnurse .block h3.deco span::before,
.practicalnurse .block h3.deco span::after {
    background: var(--color-accent-pink);
}

.practicalnurse .block.block01 {
    margin-top: 48px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .practicalnurse .block.block01 {
        margin-top: 24px;
        margin-bottom: 30px;
    }
    .practicalnurse .block.block01 .block--lead {
        font-size: 17px;
    }
}

.practicalnurse .block.block01 h3 span {
    background: #fff;
    display: inline-block;
    padding: 2px 10px 5px;
}

.practicalnurse .block02 {
    border: 1.875rem solid #fff;
    padding: 30px 0 30px;
    margin-top: 46px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .practicalnurse .block02 {
        border: 10px solid #fff;
        padding: 5vw 5vw 0;
        width: 100%;
        margin-top: 0;
    }
}

.practicalnurse .block02 .g-flex-auto {
    justify-content: center;
    padding: 10px 0 0 0;
    flex-wrap: nowrap;
    align-items: center;
    width: 750px;
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 906px) {
    .practicalnurse .block02 .g-flex-auto {
        width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 767px) {
    .practicalnurse .block02 .g-flex-auto {
        padding: 0;
        flex-flow: column;
        width: 100%;
        position: relative;
    }
}

.practicalnurse .block02__text {
    flex: 1 1 10%;
    min-width: 0;
}

.practicalnurse .block02__img {
    flex: 0 0 auto;
    position: relative;
    top: -3.1rem;
    /* right: 0.6rem; */
    margin-bottom: -3.1rem;
    /* width: 410px; */
}

@media (max-width: 767px) {
    .practicalnurse .block04 figure {
        width: 100%;
        padding: 1rem;
    }
    .practicalnurse .block04 figure img {
        max-width: 100%;
        height: auto;
        width: auto;
    }
}

@media (max-width: 767px) {
    .practicalnurse .block02__img {
        position: static;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        /* position: relative; */
        width: 100%;
        position: relative;
        justify-content: center;
        top: 0;
        padding-bottom: 2.5vw;
    }
    .practicalnurse .block02__img:before {
        content: '';
        position: absolute;
        bottom: 0vw;
        left: -5vw;
        width: calc(100% + 10vw);
        height: calc(100% - 2.5vw);
        display: block;
        background: #fff;
        z-index: 0;
        /* padding-bottom: 1.5vw; */
    }
    .practicalnurse .block02__img__inner {
        /* max-width: 36%; */
        flex: 1;
        z-index: 1;
        max-width: 130px;
    }
    .practicalnurse .block02__img__inner img {
        width: 100%;
        height: auto;
    }
    .practicalnurse .block02__img .g-flex-auto__item.sp {
        /* flex: 1; */
        width: 182px;
        z-index: 1;
        font-feature-settings: 'palt' on;
    }
}

.practicalnurse .block02__img img {
    display: block;
    height: auto;
    max-width: none;
}

.practicalnurse .block02__text {
    font-size: 1.25rem;
    text-align: center;
    line-height: 1.85;
    letter-spacing: -0.08rem;
}

@media (max-width: 767px) {
    .practicalnurse .block02__text {
        font-size: 16px;
        text-align: left;
        margin-top: 1.3rem;
        z-index: 1;
        position: relative;
    }
}

.practicalnurse .block02__text span {
    font-weight: bold;
}

.practicalnurse .block02__text ul.pc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.practicalnurse .block02__text ul.pc li {
    text-align: left;
    width: 213px;
}

.practicalnurse .block03 {
    margin-top: 36px;
    margin-bottom: 84px;
}

@media (max-width: 767px) {
    .practicalnurse .block03 {
        padding-top: 1.56789rem;
        padding-bottom: 1.56789rem;
        margin-block: 0;
    }
    .practicalnurse .block03 .block--lead {
        font-size: 16px;
    }
}

.practicalnurse .block03__inner {
    max-width: 25.875rem;
    margin: 30px auto 37px;
    color: var(--color-accent-pink);
    font-size: 1.25rem;
    text-align: center;
    background: #fff;
}

.practicalnurse .block03 h3 {
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .practicalnurse .block03__inner {
        font-size: 16px;
        margin: 20px auto;
    }
}

.practicalnurse .block03__inner .g-flex {
    --g-flex-columns: 1;
    --g-flex-gap: 0;
}

.practicalnurse .block03__inner .g-flex__item {
    padding: 0.95rem 0.75rem;
    border-top: 0.125rem solid currentColor;
    width: 100%;
}

.practicalnurse .block03__inner .g-flex__item:last-child {
    border-bottom: 0.125rem solid currentColor;
}

.practicalnurse .block03__inner p {
    margin: 0;
    line-height: 1.6;
}

.practicalnurse .block03__inner span {
    font-weight: 700;
}

.practicalnurse .block__title strong {
    background: var(--color-accent-pink);
}

.practicalnurse .block04 {
    margin-top: 86px;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .practicalnurse .block04 {
        padding-top: 1.56789rem;
        padding-bottom: 1.56789rem;
        margin-block: 0;
    }
}

.practicalnurse .block04 .block__midashi {
    margin-bottom: 14px;
    color: #E97AAC;
}

.practicalnurse .block04 h3 {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .practicalnurse .block04 .block__midashi {
        margin-bottom: 1rem;
    }
    .practicalnurse .block04 .block__midashi p {
        color: #E97AAC;
    }
}

.practicalnurse .block04 .block.note {
    margin-top: 52px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .practicalnurse .block04 .block.note {
        padding-top: 1.56789rem;
        padding-bottom: 0px;
        margin-block: 0;
    }
}

.practicalnurse .block05 {
    margin: 0;
}

.practicalnurse .acc {
    border-radius: 0.5rem;
    overflow: hidden;
    width: 62.5rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 60px;
}

@media (max-width: 1000px) {
    .practicalnurse .acc {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .practicalnurse .acc {
        width: 100%;
        padding-bottom: 30px;
    }
}

.practicalnurse .acc__summary {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 1rem;
    background: var(--color-accent-pink);
    color: #fff;
    cursor: pointer;
    list-style: none;
    font-size: 2rem;
    text-align: center;
}

.practicalnurse .acc__summary {
    display: block;
    position: relative;
}

@media (max-width: 767px) {
    .practicalnurse .acc__summary {
        font-size: 5vw;
        line-height: 1.2;
    }
}

.practicalnurse .acc__summary::-webkit-details-marker {
    display: none;
}

.practicalnurse .acc__title {
    text-align: center;
}

.practicalnurse .acc__icon {
    transition: transform .2s;
}

.practicalnurse .acc[open] .acc__icon {
    transform: rotate(45deg);
}

.practicalnurse .acc__icon {
    position: absolute;
    right: 1.5rem;
    top: calc(50% - 20px);
    font-size: 40px;
    line-height: 1;
}

.practicalnurse .acc__list {
    margin: 0;
    padding: 20px 0 20px 20px;
    list-style: none;
    gap: 8px 16px;
    background: #fff;
    position: relative;
}

@media (max-width: 767px) {
    .practicalnurse .acc__list {
        display: block;
        padding: 18px 18px 32px;
    }
}

.practicalnurse .acc__list li {
    position: relative;
    font-size: 1.25rem;
    font-weight: bold;
    padding-left: 1.75rem;
}

@media (max-width: 767px) {
    .practicalnurse .acc__list li {
        font-size: 16px;
        width: 100%;
    }
    .practicalnurse .acc__list li+li {
        margin-top: 0.5rem;
    }
}

.practicalnurse .acc__list li:not(.none):before {
    content: '';
    font-size: 20px;
    background: #FFE4F0;
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 8px;
    left: 0;
}

@media (max-width: 767px) {
    .practicalnurse .acc__list li:not(.none):before {
        top: 2px;
        font-size: 16px;
    }
    .practicalnurse .acc__list li.none {
        display: none;
    }
}

.acptraining {
    background: #E4EAFF;
    position: relative;
}

.acptraining:before {
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: #DCF1F0 url(../image/kugiri07.png) top center no-repeat;
    background-size: 100% auto;
    position: absolute;
    z-index: 0;
}

.acptraining__inner {
    background: #FFF4F9;
    padding: 48px 0;
    width: 1130px;
    margin-left: auto;
    margin-right: auto;
    border: 0.625rem solid var(--color-accent-pink);
    position: relative;
    z-index: 1;
}

@media (max-width: 1130px) {
    .acptraining__inner {
        width: 100%;
        padding-inline: 2rem;
    }
}

@media (max-width: 767px) {
    .acptraining__inner {
        width: auto;
        margin: 0 1.5rem;
        padding: 4vw;
        border-width: 5px;
    }
    .acptraining__inner .important {
        margin-bottom: 0;
    }
}

.acptraining header .section__header-lead {
    margin-top: 10px;
}

@media (max-width: 767px) {
    .acptraining header {
        font-size: 0;
    }
    .acptraining header .section__header-lead {
        display: inline;
        text-align: left;
        font-size: 16px;
    }
}

.acptraining .section__header h2 {
    line-height: 1.5;
}

@media (max-width: 767px) {
    .acptraining .section__header {
        text-align: left;
    }
    .acptraining .section__header h2 {
        line-height: 1.4;
        margin-bottom: 20px;
    }
}

.acptraining .section__header strong {
    background: var(--color-accent-pink);
    margin-bottom: 24px;
}

.acptraining .block01 {
    display: flex;
    justify-content: center;
}

.acptraining .block01__inner {
    align-items: stretch;
    justify-content: center;
    width: 910px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .acptraining .block01__inner {
        width: 100%;
        gap: 1vw;
        margin-top: 4vw;
    }
}

@media (max-width: 550px) {
    /*
  .acptraining .block01__inner {
    flex-direction: column;
  }
    */
}

.acptraining .block01__card {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    overflow: hidden;
    box-sizing: border-box;
}

.acptraining .block01__card-head {
    padding: 0.625rem 0.75rem;
    text-align: center;
    font-weight: 700;
    color: #fff;
    box-sizing: border-box;
    font-size: 1.5rem;
}

@media (max-width: 767px) {
    .acptraining .block01__card-head {
        font-size: 20px;
        font-feature-settings: 'palt' on;
        padding: 8px 2vw;
    }
}

@media (max-width: 400px) {
    .acptraining .block01__card-head {
        font-size: 5vw;
    }
}

.acptraining .block01__card-body {
    flex: 1;
    background: #fff;
    border: 0.125rem solid;
    padding: 0.875rem 0.875rem;
    text-align: center;
    line-height: 1.7;
    box-sizing: border-box;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    font-size: 1.25rem;
}

@media (max-width: 767px) {
    .acptraining .block01__card-body {
        font-size: 16px;
        text-align: left;
        padding: 3vw;
    }
}

.acptraining .block01__card--common .block01__card-head {
    background: #f07fb0;
}

.acptraining .block01__card--common .block01__card-body {
    border-color: #f07fb0;
}

.acptraining .block01__card--category .block01__card-head {
    background: #9a9a9a;
}

.acptraining .block01__card--category .block01__card-body {
    border-color: #9a9a9a;
}

.acptraining .block01__plus {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 0.75rem;
}

@media (max-width: 767px) {
    .acptraining .block01__plus {
        padding-inline: 0rem;
        width: 5vw;
    }
}

.acptraining .block01__plus img {
    width: 1.5rem;
    height: auto;
}

.nurse {
    background: #EEF2FF url(../image/kugiri03.png) top center no-repeat;
    background-size: 100% auto;
    padding: 116px 0 73px;
}

@media (max-width: 767px) {
    .nurse {
        padding-top: 3.56789rem;
        padding-bottom: 3.56789rem;
        margin-block: 0;
    }
}

.nurse .section__header--subtitle img {
    width: 175px;
    height: auto;
}

@media (max-width: 767px) {
    .nurse .section__header--subtitle img {
        width: 36vw;
        height: auto;
    }
}

.nurse .section__header h2 {
    margin-bottom: 43px;
}

@media (max-width: 767px) {
    .nurse .section__header h2 {
        /* margin-bottom: 20px; */
    }
}

.nurse .section__header h2 strong {
    background: var(--color-brand-blue-mid);
}

.nurse .section__header h2 strong span {
    color: #fff;
    font-size: 32px;
}

@media (max-width: 767px) {
    .nurse .section__header h2 strong span {
        font-size: 7vw;
    }
}

.nurse .section__header .section__header-lead {
    margin-top: 0;
}

@media (max-width: 767px) {
    .nurse .section__header .section__header-lead {
        font-size: 17px;
    }
}

.nurse .section__header .section__header-lead+.section__header-lead {
    margin-top: 27px;
}

@media (max-width: 767px) {
    .nurse .section__header .section__header-lead+.section__header-lead {
        margin-top: 0;
    }
}

.nurse .block h3 {
    color: var(--color-brand-blue-mid);
}

.nurse .block01 {
    width: 839px;
    margin-left: auto;
    margin-right: auto;
    border: 0.0625rem solid var(--color-brand-blue-mid);
    border-radius: 0.25rem;
    text-align: center;
    padding: 1.25rem 0 30px;
    margin-bottom: 40px;
    margin-top: 37px;
}

@media (max-width: 839px) {
    .nurse .block01 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .nurse .block01 {
        width: 100%;
        padding: 1rem;
    }
    .nurse .block01 p {
        text-align: left;
    }
}

.nurse .block.block01 h3 {
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .nurse .block.block01 h3 {
        margin-bottom: 1rem;
    }
}

.nurse .block01 p {
    font-size: 1.25rem;
    line-height: 1.78;
    letter-spacing: -0.08rem;
}

@media (max-width: 767px) {
    .nurse .block01 p {
        font-size: 16px;
    }
}

.nurse .block01 p span {
    font-weight: bold;
}

.nurse .block__title {
    margin-bottom: 2.5rem;
}

.nurse .block__title strong {
    background: var(--color-brand-blue-mid);
}

@media (max-width: 767px) {
    .nurse .block__title {
        margin-bottom: 20px;
    }
    .nurse .block__title strong {
        width: 100%;
    }
}

.nurse .block__img {
    text-align: center;
}

@media (max-width: 767px) {
    .nurse .block__img {
        padding: 0 1rem;
    }
    .nurse .block__img img {
        max-width: 100%;
        height: auto;
        width: auto;
    }
}

.aimtogether {
    background: #E4EAFF url(../image/kugiri04.png) top center no-repeat;
    background-size: 100% auto;
    padding-top: 116px;
    padding-bottom: 88px;
}

@media (max-width: 767px) {
    .aimtogether {
        padding-top: 3.56789rem;
        padding-bottom: 3.56789rem;
        margin-block: 0;
    }
}

.aimtogether header h2 strong {
    background: var(--color-brand-blue);
}

.aimtogether header h2 strong span {
    font-size: 32px;
    color: #fff;
}

.aimtogether header .note {
    margin-top: 6px;
    margin-bottom: 47px;
}

@media (max-width: 767px) {
    .aimtogether header .note {
        margin-top: 0;
        margin-bottom: 20px;
        padding-top: 0;
    }
}

.aimtogether .section__header--subtitle {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .aimtogether .section__header--subtitle {
        margin-bottom: 0;
    }
}

.aimtogether .section__header--subtitle img {
    width: 136px;
    height: auto;
}

@media (max-width: 767px) {
    .aimtogether .section__header--subtitle img {
        width: 29vw;
        height: auto;
    }
}

.aimtogether .block01 {
    border: 0.0625rem solid var(--color-brand-blue);
    width: 53.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 35px 0;
    line-height: 1.3;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 47px;
}

@media (max-width: 856px) {
    .aimtogether .block01 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .aimtogether .block01 {
        width: 100%;
        padding: 1rem;
    }
}

.aimtogether .block01 h3 {
    color: var(--color-brand-blue);
    font-size: 2rem;
    margin-bottom: 18px;
}

.aimtogether .block01 h3 strong {
    font-size: 2.5rem;
}

@media (max-width: 767px) {
    .aimtogether .block01 h3 {
        margin-bottom: 1rem;
    }
    .aimtogether .block01 h3,
    .aimtogether .block01 h3 strong {
        font-size: 20px;
    }
}

.aimtogether .block01 .note {
    margin-top: 1.25rem;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .aimtogether .block01 .note {
        margin-block: 1rem;
        padding-top: 0;
    }
    .aimtogether .block01 .note p.tac {
        text-align: left;
    }
}

.aimtogether .block__title strong {
    background: var(--color-brand-blue);
}

@media (max-width: 767px) {
    .aimtogether .block__title strong {
        font-size: 4.4vw;
    }
}

.aimtogether .block01 .block__title strong {
    font-size: 2rem;
}

.aimtogether .block02 {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .aimtogether .block02 h3 {
        margin-bottom: 20px;
    }
}

.aimtogether .block02 figure {
    margin: 2.5rem 0 60px;
    text-align: center;
}

@media (max-width: 767px) {
    .aimtogether .block02 figure {
        padding: 0 1rem;
        margin: 20px 0;
    }
    .aimtogether .block02 figure img {
        max-width: 100%;
        height: auto;
    }
}

.aimtogether .block03 {
    margin-top: 70px;
}

.aimtogether .block03 h3 {
    margin-bottom: 45px;
}

@media (max-width: 767px) {
    .aimtogether .block03 h3 {
        margin-bottom: 20px;
    }
    .aimtogether .block03 .block__title strong {
        font-size: 8vw;
        padding: 0 1rem;
    }
}

.aimtogether .voice-block {
    background: #fff;
    padding: 1.875rem 1.25rem 1.875rem 2.5rem;
    position: relative;
}

@media (max-width: 767px) {
    .aimtogether .voice-block {
        background: none;
        z-index: 1;
        padding: 0;
    }
    .aimtogether .voice-block:before {
        content: '';
        position: absolute;
        background: rgb(255 255 255 / 40%) bottom center no-repeat;
        background-size: 100% 60%;
        width: 100%;
        height: calc(100% - 83px);
        left: 0;
        bottom: 0;
        z-index: 0;
    }
}

.aimtogether .voice-block__right p {
    font-size: 1.25rem;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .aimtogether .voice-block__right {
        font-size: 0;
    }
    .aimtogether .voice-block__right p {
        font-size: 16px;
        display: inline;
        line-height: 1.4;
    }
}

.aimtogether .voice-block__right p span {
    font-weight: bold;
}

.aimtogether .voice-block__left {
    flex: 0 0 auto;
}

.aimtogether .voice-block__right {
    min-width: 0;
}

.aimtogether .voice-block .g-flex-auto {
    gap: 2.5rem;
}

@media (max-width: 767px) {
    .aimtogether .voice-block .g-flex-auto {
        flex-flow: column;
        position: relative;
        z-index: 1;
        gap: 5vw;
        padding: 0 5vw 6vw;
    }
}

.aimtogether .voice-block figure {
    text-align: center;
    align-self: flex-start;
}

@media (max-width: 767px) {
    .aimtogether .voice-block figure {
        width: 100%;
        margin-inline: auto;
    }
    .aimtogether .voice-block figure img {
        width: 110px;
        height: auto;
        margin-bottom: 5px;
    }
}

.howtoapply {
    background: #DCF1F0;
    background-size: 100% auto;
    padding-top: 116px;
    padding-bottom: 70px;
}

@media (max-width: 767px) {
    .howtoapply {
        padding-top: 3.56789rem;
        padding-bottom: 3.56789rem;
        margin-block: 0;
    }
}

.howtoapply h2 {
    height: 8.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    background: url(../image/howtoapply_tit.png) center center no-repeat;
}

@media (max-width: 767px) {
    .howtoapply h2 {
        font-size: 24px;
        background: url(../image/howtoapply_tit.png) center center no-repeat;
    }
}

.howtoapply h2 span {
    letter-spacing: -0.02rem;
}

.howtoapply .block__title {
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .howtoapply .block__title {
        margin-bottom: 30px;
    }
}

.howtoapply .block__title strong {
    background: #21B8D3;
}

@media (max-width: 767px) {
    .howtoapply .block__title strong {
        background: none;
        color: #21B8D3;
    }
    .howtoapply .block__title strong span {
        font-size: 24px;
        display: block;
    }
}

.howtoapply .block01 {
    width: 53.125rem;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: nowrap;
    align-items: flex-start;
    --g-flex-gap: 2.5rem;
}

@media (max-width: 767px) {
    .howtoapply .block01 {
        width: 100%;
        flex-flow: column;
    }
}

.howtoapply .howtoapply__text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1.25rem;
    letter-spacing: -0.08rem;
    line-height: 1.55;
}

@media (max-width: 767px) {
    .howtoapply .howtoapply__text {
        font-size: 17px;
    }
}

.howtoapply .howtoapply__visual {
    flex: 0 0 auto;
    /* width: 100%; */
}

.howtoapply .howtoapply__visual img {
    display: block;
    max-width: 100%;
    height: auto;
}

.howtoapply .howtoapply__visual__inner {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 445px;
}

.howtoapply .howtoapply__visual__inner .title {
    font-size: 20px;
    color: #21B8D3;
    line-height: 56px;
    font-weight: bold;
}

.howtoapply .howtoapply__visual__inner .title i {
    color: #fff;
    font-size: 18px;
    background: #21B8D3;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    display: inline-flex;
    line-height: 56px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: 500;
}

.howtoapply .howtoapply__visual__inner .wrap {
    display: flex;
    gap: 11px;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.howtoapply .howtoapply__visual__inner .wrap__left {
    border: 4px solid #21B8D3;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    border-radius: 8px;
    gap: 10px;
}

.howtoapply .howtoapply__visual__inner .wrap__left__img {
    display: flex;
    align-items: center;
    gap: 12px;
}

.howtoapply .howtoapply__visual__inner .wrap__left__text {
    text-align: center;
}

.howtoapply .howtoapply__visual__inner .wrap__left__text span {
    font-weight: bold;
}

.howtoapply .howtoapply__visual__inner .wrap__right {
    font-size: 20px;
    font-weight: bold;
    width: 55px;
    text-align: center;
}

.howtoapply .howtoapply__visual__inner .wrap__right span {
    font-size: 28px;
}

@media (max-width: 767px) {
    .howtoapply .howtoapply__visual {
        display: block;
        width: 100%;
    }
    .howtoapply .howtoapply__visual__inner {
        background: #fff;
        border-radius: 12px;
        padding: 0;
        width: 100%;
    }
    .howtoapply .howtoapply__visual__inner .title {
        font-size: 20px;
        color: #21B8D3;
        line-height: 56px;
        font-weight: bold;
        /* background: #21B8D3; */
        text-align: center;
    }
    .howtoapply .howtoapply__visual__inner .title i {
        color: #fff;
        font-size: 16px;
        /* font-weight: 600; */
        width: 100%;
        height: 32px;
        border-radius: 12px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        display: block;
        line-height: 32px;
        align-items: center;
        justify-content: center;
        margin-right: 0;
        font-weight: 500;
        text-align: center;
        margin-bottom: 0;
    }
    .howtoapply .howtoapply__visual__inner .wrap {
        display: flex;
        gap: 11px;
        /* flex-direction: column; */
        align-items: center;
        justify-content: center;
        margin-top: 5px;
        padding: 0;
        /* width: 400px; */
        margin: auto;
        padding-bottom: 1rem;
        /* margin-bottom: 2vw; */
    }
    .howtoapply .howtoapply__visual__inner .wrap__left {
        border: 0;
        height: auto;
        /* display: grid; */
        flex-direction: column;
        flex: none;
        border-radius: 8px;
        gap: 2vw;
        width: 192px;
        justify-content: center;
        align-content: center;
        background: #F9F5F6;
        padding: 3vw;
    }
    .howtoapply .howtoapply__visual__inner .wrap__left__img {
        display: flex;
        align-items: center;
        gap: 2vw;
        justify-content: center;
    }
    .howtoapply .howtoapply__visual__inner .wrap__left__img img {
        width: 40%;
        height: auto;
    }
    .howtoapply .howtoapply__visual__inner .wrap__left__text {
        text-align: center;
    }
    .howtoapply .howtoapply__visual__inner .wrap__left__text span {
        font-weight: bold;
    }
    .howtoapply .howtoapply__visual__inner .wrap__right {
        font-size: 20px;
        font-weight: bold;
        width: auto;
        text-align: center;
        flex: none;
        width: 55px;
    }
    .howtoapply .howtoapply__visual__inner .wrap__right span {
        font-size: 28px;
    }
}

.howtoapply .block02 {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1000px) {
    .howtoapply .block02 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .howtoapply .block02 {
        width: 100%;
    }
}

.howtoapply .block02__tabs {
    flex-wrap: nowrap;
    gap: 1.25rem;
    align-items: stretch;
    position: relative;
    top: 1px;
}

.howtoapply .block02__tab {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    border: 0;
    background: transparent;
    padding: 0;
}

.howtoapply .block02__tab-sub {
    position: absolute;
    left: 50%;
    top: -2rem;
    transform: translateX(-50%);
    background: #ffffff;
    color: var(--color-text-main);
    font-weight: 700;
    padding: 0.75rem 0;
    width: 181px;
    border-radius: 0.125rem;
    line-height: 1;
    z-index: 2;
    font-size: 1.25rem;
}

@media (max-width: 767px) {
    .howtoapply .block02__tab-sub {
        padding: 0 13px;
        width: 103px;
        font-size: 16px;
        top: -23px;
        line-height: 31px;
        font-feature-settings: 'palt' on;
        display: block;
    }
}

.howtoapply .block02__tab-sub::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.5rem;
    transform: translateX(-50%);
    border-width: 0.5rem 0.5rem 0 0.5rem;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

@media (max-width: 767px) {
    .howtoapply .block02__tab-sub::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -0.25rem;
        transform: translateX(-50%);
        border-width: 0.25rem 0.25rem 0 0.25rem;
        border-style: solid;
        border-color: #ffffff transparent transparent transparent;
    }
}

.howtoapply .block02__tab-main {
    display: block;
    padding: 1.125rem 0.625rem 1rem;
    border-radius: 0.375rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    text-align: center;
    font-weight: 800;
    background: #9DE0EC;
    color: #21B8D3;
    font-size: 1.5rem;
}

@media (max-width: 767px) {
    .howtoapply .block02__tab-main {
        padding: .5rem .8rem;
        font-size: 16px;
        top: -1.2rem;
    }
}

.howtoapply .block02__tab.is-active .block02__tab-main {
    background: #21B8D3;
    color: #fff;
}

.howtoapply .block02__tab:focus {
    outline: none;
}

.howtoapply .block02__tab:focus-visible .block02__tab-main {
    background: #21B8D3;
}

.howtoapply .block02__panel[hidden] {
    display: none;
}

.howtoapply .block02__panel {
    display: block;
    border: 0.25rem solid #21B8D3;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    padding: 1rem 0.5rem;
    background: #fff;
}

.howtoapply .block02__steps {
    align-items: stretch;
    /* height: 100%; */
}

.howtoapply .block02__step {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 767px) {
    .howtoapply .block02__steps {
        flex-flow: column;
        gap: 0;
    }
    .howtoapply .block02__step {
        display: flex;
        flex-flow: row;
        gap: 16px;
    }
    .howtoapply .block02__step__left {
        width: 120px;
        text-align: center;
    }
    .howtoapply .block02__step__right {
        flex: 1;
    }
}

.howtoapply .block02__step-title {
    margin: 0 0 0.875rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .howtoapply .block02__step-title {
        font-size: 16px;
    }
}

.howtoapply .block02__step-title span {
    font-size: 1rem;
}

@media (max-width: 767px) {
    .howtoapply .block02__step-title span {
        font-size: 14px;
    }
}

.howtoapply .block02__step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem;
}

.howtoapply .block02__step:not(:nth-child(2)) .block02__step-icon {
    min-height: 3.8125rem;
}

.howtoapply .block02__step-icon img {
    display: block;
    /* max-width: 5.75rem; */
    height: auto;
}

.howtoapply .block02__step:nth-child(1) .block02__step-icon img {
    width: 59px;
}

.howtoapply .block02__step:nth-child(2) .block02__step-icon img {
    width: 115px;
}

.howtoapply .block02__step:nth-child(3) .block02__step-icon img {
    width: 71px;
}

.howtoapply .block02__step:nth-child(4) .block02__step-icon img {
    width: 56px;
}

@media (max-width: 767px) {
    .howtoapply .block02__step:not(:nth-child(2)) .block02__step-icon {
        min-height: auto;
    }
    .howtoapply .block02__step:nth-child(1) .block02__step-icon img {
        width: 41px;
    }
    .howtoapply .block02__step:nth-child(2) .block02__step-icon img {
        width: 90px;
    }
    .howtoapply .block02__step:nth-child(3) .block02__step-icon img {
        width: 66px;
    }
    .howtoapply .block02__step:nth-child(4) .block02__step-icon img {
        width: 51px;
    }
}

.howtoapply .block02__step-date {
    margin: 0 0 0.5rem;
    font-weight: 700;
    text-align: left;
    font-size: 20px;
}

.howtoapply .block02__step-text {
    margin: 0;
    text-align: left;
    line-height: 1.8;
    font-size: 1.25rem;
}

@media (max-width: 767px) {
    .howtoapply .block02__step-date {
        font-size: 16px;
        margin-bottom: 0;
    }
    .howtoapply .block02__step-text {
        font-size: 16px;
    }
}

.howtoapply .block02__step {
    position: relative;
    padding: 1rem;
    height: auto;
}

@media (max-width: 767px) {
    .howtoapply .block02__step {
        padding: 0 0 30px 0;
    }
    .howtoapply .block02__step:last-child {
        padding: 0 0 0 0;
    }
}

.howtoapply .block02__step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.625rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.5625rem 0 1.5625rem 1rem;
    border-color: transparent transparent transparent rgba(33, 184, 211, 0.35);
    pointer-events: none;
}

@media (max-width: 767px) {
    .howtoapply .block02__step:not(:last-child)::after {
        right: auto;
        top: auto;
        bottom: 17px;
        left: 47px;
        transform: translateY(0);
        border-width: 11px 13px 0 13px;
        border-color: rgba(33, 184, 211, 0.35) transparent transparent transparent;
    }
}

.tuitionfee {
    background: #EEF2FF url(../image/kugiri05.png) top center no-repeat;
    background-size: 100% auto;
    padding-top: 116px;
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    .tuitionfee {
        padding-top: 3.56789rem;
        padding-bottom: 3.56789rem;
        margin-block: 0;
    }
}

.tuitionfee .block01 {
    max-width: 58.125rem;
    width: 100%;
    margin: 0 auto;
}

.tuitionfee .block01__inner {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: 0;
    margin-top: 2.5rem;
}

.tuitionfee .section__header h2 strong:nth-child(1) {
    padding-right: 0;
}

.tuitionfee .section__header h2 strong:nth-child(3) {
    padding-left: 0;
    padding-right: var(--space-xs);
}

.tuitionfee .section__header h2 strong span {
    color: #fff;
    font-size: 32px;
}

@media (max-width: 767px) {
    .tuitionfee .section__header h2 strong {
        padding: 0 var(--space-xs) 3px !important;
        margin-bottom: 3px;
    }
}

.tuitionfee .block01__box {
    flex: 0 0 13.125rem;
    width: 13.125rem;
    padding: 30px 1rem;
    border-radius: 0.375rem;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .tuitionfee .block01__box {
        font-size: 3vw;
        flex: 0 0 24%;
        padding-block: 18px;
    }
}

.tuitionfee .block01__box--primary {
    background: #cfe8ff;
    color: #2b2b2b;
}

.tuitionfee .block01__box--secondary {
    background: #dde3ea;
    color: #2b2b2b;
}

.tuitionfee .block01__op {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.tuitionfee .block01__op--eq img {
    display: block;
    width: 2rem;
    height: 1.5rem;
}

.tuitionfee .block01__op--plus img {
    display: block;
    width: auto;
    height: auto;
    max-width: 2rem;
}

.tuitionfee .block01__op img {
    user-select: none;
}

@media (max-width: 767px) {
    .tuitionfee .block01__op img {
        width: 20px;
        height: auto;
    }
}

.tuitionfee .block01 {
    width: 58.125rem;
    margin: 0 auto;
}

@media (max-width: 990px) {
    .tuitionfee .block01 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .tuitionfee .block01 {
        width: 100%;
    }
}

.tuitionfee .block01 table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-top: 2.5rem;
}

.tuitionfee .block01 th,
.tuitionfee .block01 td {
    padding: 17px 0;
    border: 0.0625rem solid #e3eef3;
    text-align: center;
    vertical-align: middle;
    font-size: 24px;
    font-weight: 400;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .tuitionfee .block01 th,
    .tuitionfee .block01 td {
        font-size: 16px;
    }
}

.tuitionfee .block01 thead th {
    background: #dfe7ed;
    width: 24%;
}

.tuitionfee .block01 thead th:first-child {
    width: 28%;
}

@media (max-width: 767px) {
    .tuitionfee .block01 thead th {}
    .tuitionfee .block01 thead th:first-child {
        /* width: 101px; */
    }
}

.tuitionfee .block01 thead th:first-child {
    background: transparent;
    border: none;
}

.tuitionfee .block01 thead th:nth-child(2) {
    border-top-left-radius: 0.5rem;
}

.tuitionfee .block01 tbody>tr>th {
    background: #8aa2f6;
    color: #ffffff;
    width: 15rem;
    border-left: none;
}

@media (max-width: 767px) {
    .tuitionfee .block01 tbody>tr>th {
        padding-inline: 2vw;
    }
}

.tuitionfee .block01 tbody>tr:first-child>th {
    border-top-left-radius: 0.5rem;
}

.tuitionfee .block01 td {
    background: #ffffff;
}

.tuitionfee .block01 thead th:last-child {
    border-top-right-radius: 0.5rem;
}

.tuitionfee .block01 tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0.5rem;
}

.tuitionfee .block01 tbody tr:last-child th {
    border-bottom-left-radius: 0.5rem;
}

.tuitionfee .block01 .note {
    margin: 22px 0 44px;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .tuitionfee .block01 .note {
        margin: 0px;
        font-size: 11px;
        padding-block: 1.56789rem;
    }
}

.tuitionfee .block02 {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    .tuitionfee .block02 {
        padding-top: 1.56789rem;
        padding-bottom: 1.56789rem;
        margin-block: 0;
    }
}

.tuitionfee .block02 .simu {
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 33px 2rem;
    box-sizing: border-box;
    max-width: 58.125rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu {
        padding: 1rem;
    }
}

.tuitionfee .block02 .simu h3 {
    margin: 0 0 22px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-text-main);
}

.tuitionfee .block02 .simu h3 strong {
    font-size: 2.125rem;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu h3 strong {
        font-size: 20px;
    }
}

.tuitionfee .block02 .simu h4 {
    margin: 0 0 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    padding: 5px 0.75rem;
    max-width: 794px;
    margin-inline: auto;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu h4 {
        font-size: 16px;
    }
}

.tuitionfee .block02 .simu>p {
    margin: 0 0 1.75rem;
    text-align: center;
    line-height: 1.7;
    color: var(--color-text-main);
    font-size: 1.25rem;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu>p {
        font-size: 14px;
        text-align: left;
    }
}

.tuitionfee .block02 .simu>p span {
    font-weight: bold;
}

.tuitionfee .block02 .simu .simu__inner {
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1.125rem;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu .simu__inner {
        flex-direction: column;
    }
}

.tuitionfee .block02 .simu .simu__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.tuitionfee .block02 .simu .simu__right {
    box-sizing: border-box;
}

.tuitionfee .block02 .simu .simu__box {
    width: 100%;
}

.tuitionfee .block02 .simu .simu__box__inner {
    border-radius: 0.5rem;
    padding: 22px 0.75rem;
    text-align: center;
    box-sizing: border-box;
}

.tuitionfee .block02 .simu .simu__box>p {
    text-align: right;
}

.tuitionfee .block02 .simu .simu__box p {
    margin: 0;
    line-height: 1.4;
    color: var(--color-text-main);
}

.tuitionfee .block02 .simu .simu__box p {
    font-size: 1.25rem;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu .simu__box p {
        font-size: 16px;
    }
}

.tuitionfee .block02 .simu .simu__box p span {
    font-size: 1.5rem;
    font-weight: 700;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu .simu__box p span {
        font-size: 20px;
    }
    .tuitionfee .block02 .simu.n2 .simu__box p span {
        /* display: block; */
    }
}

.tuitionfee .block02 .simu .simu__box p small {
    font-size: 1rem;
    margin-top: 0.5rem;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu .simu__box p small {
        font-size: 11px;
    }
}

.tuitionfee .block02 .simu .simu__op img {
    display: block;
    width: 2rem;
    height: 2rem;
}

.tuitionfee .block02 .simu .simu__arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu .simu__arrow {
        display: none;
    }
}

.tuitionfee .block02 .simu .simu__arrow img {
    display: block;
    width: 1.125rem;
    height: 4.1875rem;
}

.tuitionfee .block02 .simu .simu__result {
    border-radius: 0.5rem;
    padding: 0.875rem 1.125rem 1rem;
    box-sizing: border-box;
}

.tuitionfee .block02 .simu .simu__result-title {
    margin: 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu .simu__result-title {
        font-size: 18px;
    }
}

.tuitionfee .block02 .simu .simu__result-body {
    margin-top: 0.625rem;
    padding-top: 0.625rem;
    text-align: center;
}

.tuitionfee .block02 .simu .simu__result-body p {
    margin: 0 0 0.375rem;
    color: var(--color-text-main);
    font-size: 1.25rem;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu .simu__result-body p {
        font-size: 16px;
    }
}

.tuitionfee .block02 .simu .simu__result-body p.simu__total {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-main);
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu .simu__result-body p.simu__total {
        font-size: 32px;
    }
}

.tuitionfee .block02 .simu .simu__highlight {
    margin: 0.875rem 0 0.625rem;
    text-align: center;
    font-size: 1.625rem;
    font-weight: 700;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu .simu__highlight {
        font-size: 20px;
    }
}

.tuitionfee .block02 .simu .simu__footnote {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-main);
    line-height: 1.7;
    text-align: left;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu .simu__footnote {
        font-size: 11px;
        text-align: left;
    }
}

.tuitionfee .block02 .simu.n1 {
    margin-bottom: 2.5rem;
}

.tuitionfee .block02 .simu.n1 h3 span {
    color: var(--color-accent-pink);
    font-size: 32px;
}

.tuitionfee .block02 .simu.n1 h4 {
    background: var(--color-accent-pink);
}

.tuitionfee .block02 .simu.n1 .simu__left {
    flex: 0 0 255px;
    width: 255px;
    max-width: 255px;
}

.tuitionfee .block02 .simu.n1 .simu__right {
    flex: 0 0 29.6875rem;
    width: 29.6875rem;
}

@media (max-width: 890px) {
    .tuitionfee .block02 .simu.n1 .simu__right {
        width: auto;
        flex: 1;
    }
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu.n1 .simu__right {
        flex: auto;
        width: 100%;
    }
}

.tuitionfee .block02 .simu.n1 .simu__box__inner,
.tuitionfee .block02 .simu.n1 .simu__result {
    background: #FDF2F7;
}

.tuitionfee .block02 .simu.n1 .simu__result-body {
    border-top: 0.0625rem solid var(--color-accent-pink);
}

.tuitionfee .block02 .simu.n1 .simu__result-title {
    color: var(--color-accent-pink);
}

.tuitionfee .block02 .simu.n1 .simu__highlight {
    color: var(--color-accent-pink);
}

.tuitionfee .block02 .simu.n2 h3 span {
    color: var(--color-brand-blue-mid);
    font-size: 32px;
}

.tuitionfee .block02 .simu.n2 h4 {
    background: var(--color-brand-blue-mid);
}

.tuitionfee .block02 .simu.n2 .simu__left {
    display: block;
    flex: 0 0 255px;
    width: 255px;
    text-align: center;
}

.tuitionfee .block02 .simu.n2 .simu__left .simu__op {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu h3 {
        font-size: 4vw;
    }
    .tuitionfee .block02 .simu h3 span {
        font-size: 5vw !important;
    }
}

@media (max-width: 767px) {
    .tuitionfee .simu .simu__op {
        display: flex;
        align-items: center;
    }
    .tuitionfee .simu .simu__op img {
        display: block;
        position: relative;
        width: 18px !important;
        height: 18px !important;
        margin-top: -20px;
    }
    .tuitionfee .simu .simu__left__bottom .simu__op img {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu.n1 .simu__left,
    .tuitionfee .block02 .simu.n2 .simu__left {
        width: 100%;
        position: relative;
        padding-bottom: 36px;
    }
    .tuitionfee .block02 .simu.n1 .simu__left:before,
    .tuitionfee .block02 .simu.n2 .simu__left:before {
        content: "";
        position: absolute;
        inset: 0;
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        width: 67px;
        height: 18px;
        border-left: 33.5px solid transparent;
        border-right: 33.5px solid transparent;
        border-top: 18px solid #5F7DE2;
    }
    .tuitionfee .block02 .simu.n1 .simu__left:before {
        border-top: 18px solid #E97AAC;
    }
    .tuitionfee .block02 .simu.n2 .simu__left .simu__left__top {
        width: 100%;
        display: flex;
        gap: 3px;
        align-items: stretch;
    }
    .tuitionfee .block02 .simu.n1 .simu__left .simu__box:nth-child(1) {
        width: 32%;
    }
    .tuitionfee .block02 .simu.n1 .simu__left .simu__box:not(:nth-child(1)) {
        flex: 1;
    }
    .tuitionfee .block02 .simu.n2 .simu__left .simu__left__top .simu__box:nth-child(1) {
        width: 38%;
    }
    .tuitionfee .block02 .simu.n2 .simu__left .simu__left__top .simu__box:not(:nth-child(1)) {
        flex: 1;
    }
    .tuitionfee .block02 .simu.n2 .simu__left .simu__left__top .simu__op {
        width: auto;
        margin-left: 0;
        margin-right: 0;
    }
    .tuitionfee .block02 .simu.n2 .simu__left .simu__left__bottom {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .tuitionfee .block02 .simu.n2 .simu__left .simu__left__bottom .simu__op {
        width: 30px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .tuitionfee .block02 .simu.n2 .simu__left .simu__op {
        display: flex;
        justify-content: center;
        padding: 1rem 0;
    }
    .tuitionfee .block02 .simu.n2 .simu__left .simu__left__bottom .simu__box {
        width: 60%;
    }
}

.tuitionfee .block02 .simu.n2 .simu__right {
    flex: 0 0 29.6875rem;
    width: 29.6875rem;
}

@media (max-width: 890px) {
    .tuitionfee .block02 .simu.n2 .simu__right {
        width: auto;
        flex: 1;
    }
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu.n2 .simu__right {
        width: 100%;
        flex: auto;
    }
}

.tuitionfee .block02 .simu.n2 .simu__box__inner,
.tuitionfee .block02 .simu.n2 .simu__result {
    background: #EFF2FC;
}

.tuitionfee .block02 .simu.n2 .simu__result-body {
    border-top: 0.125rem solid var(--color-brand-blue-mid);
}

.tuitionfee .block02 .simu.n2 .simu__result-title {
    color: var(--color-brand-blue-mid);
}

.tuitionfee .block02 .simu.n2 .simu__highlight {
    color: var(--color-brand-blue-mid);
}

@media (max-width: 767px) {
    .tuitionfee .block02 .simu.n1 .simu__left,
    .tuitionfee .block02 .simu.n1 .simu__left {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        align-items: stretch;
        flex: 1;
        gap: 3px;
    }
}

.flow {
    background: #E4EAF3 url(../image/kugiri06.png) center top no-repeat;
    background-size: 100% auto;
    padding-top: 154px;
    padding-bottom: 3.75rem;
}

@media (max-width: 767px) {
    .flow {
        padding-top: 3.56789rem;
        padding-bottom: 3.56789rem;
        margin-block: 0;
    }
}

.flow .section__header h2 strong span {
    color: #fff;
    font-size: 32px;
}

@media (max-width: 767px) {
    .flow .section__header h2 strong span {
        font-size: 7vw;
    }
}

.flow .block01 {
    margin-top: 40px;
}

.flow .block01__panel {
    max-width: 47.3125rem;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 3.375rem 2rem 4.75rem;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .flow .block01__panel {
        padding: 1rem;
        max-width: 100%;
    }
}

.flow .block01__lead {
    margin: 0 0 2.125rem;
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-text-main);
}

@media (max-width: 767px) {
    .flow .block01__lead {
        font-size: 16px;
        margin-bottom: 1rem;
    }
}

.flow .block01__steps {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    width: 556px;
}

@media (max-width: 767px) {
    .flow .block01__steps {
        width: 100%;
    }
}

.flow .block01__step {
    position: relative;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 0.625rem 0;
}

.flow .block01__step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(1.125rem - 0.0625rem);
    top: 2.25rem;
    width: 0.125rem;
    height: calc(100% - 1.125rem);
    background: #6c86ff;
    z-index: 1;
}

@media (max-width: 767px) {
    .flow .block01__step:not(:last-child)::after {
        left: 11px;
        top: 30px;
    }
}

.flow .block01__num {
    flex: 0 0 2.25rem;
    position: relative;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-brand-blue-soft);
    box-sizing: border-box;
    top: -2px;
}

.flow .block01__num::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 0.125rem solid var(--color-brand-blue-soft);
    background: #fff;
    box-sizing: border-box;
    z-index: -1;
    top: 0.0625rem;
    width: 2.25rem;
    height: 2.25rem;
}

@media (max-width: 767px) {
    .flow .block01__num {
        flex: 0 0 23px;
        font-size: 16px;
        width: 23px;
        height: 23px;
    }
    .flow .block01__num::before {
        width: 23px;
        height: 23px;
    }
}

.flow .block01__body {
    min-width: 0;
}

.flow .block01__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.4;
}

@media (max-width: 767px) {
    .flow .block01__title {
        font-size: 16px;
    }
}

.flow .block01__text {
    margin: 0.625rem 0 0;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    font-feature-settings: 'palt' on;
    color: var(--color-text-main);
}

@media (max-width: 767px) {
    .flow .block01__text {
        font-size: 16px;
        font-feature-settings: normal;
    }
}

.flow .block01__bottom {
    justify-content: center;
    margin-top: 1.125rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
    .flow .block01__bottom {
        padding-top: 1.56789rem;
        padding-bottom: 1.56789rem;
        margin-block: 0;
    }
}

.flow .block01__bottom-inner {
    text-align: center;
}

.flow .block01__bottom-inner p {
    font-weight: bold;
    font-size: 1.5rem;
}

@media (max-width: 767px) {
    .flow .block01__bottom-inner p {
        font-size: 18px;
    }
}

.flow .block01__bottom-inner p span {
    font-size: 2rem;
}

@media (max-width: 767px) {
    .flow .block01__bottom-inner p span {
        font-size: 18px;
    }
}

.footer {
    background: #ffffff;
    padding: 24px 16px 20px;
}

.footer__inner {
    margin: 0 auto;
    text-align: center;
}

.footer img {
    display: block;
    margin: 0 auto 16px;
    width: 155px;
    height: auto;
}

.footer p {
    font-family: "Montserrat", sans-serif;
    font-size: calc(12 / 16 * 1rem);
    color: var(--color-text-muted);
    line-height: 1.6;
}
