:root {
    --ktyWhite: #FFF;
    --ktyPink: #EC3970;
    --ktyLine: #BCD0E0;
    --KTY-Text-default: #121414;
    --KTY-Border-Title: #F53B73;
    --KTY-Background-01: #000;
    --KTY-Background-02: #BCD0E0;
    --KTY-Background-03: #F1F5F9;
    --KTY-Surface-button-default: #000;
    --KTY-Border-blanked: #FFF;
    --KTY-Text-blanked: #FFF;
    --KTY-Border-default: #BCD0E0;
    --KTY-Surface-text-blank: #121414;
    --KTY-Text-sub: #788085;
    --KTY-Surface-program-item: #D7E9F7;
    --KTY-Text-accent: #F53B73;
    --KTY-Text-program-item: #BCD0E0;
    --KTY-Surface-white: #FFF;
    --KTY-Border-dark: #121414;
    --KTY-Surface-button--active: #D62259;
}
html {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "M PLUS 1", -apple-system, BlinkMacSystemFont, Meiryo, sans-serif;    font-size: calc(100vw / 375);
    color: var(--KTY-Text-default, #121414);
    font-size: calc(100vw / 375);
}
body {
    display: flex;
    flex-direction: column;
}
html, body {
    margin: 0;
    height: 100%;
}
.kty {
    flex-grow: 1;
}
.pc-br {
    display: none;
}
@media screen and (min-width: 768px) {
    html {
        font-size: 1px;
    }
    .sp-br {
        display: none;
    }
    .pc-br {
        display: block;
    }
}


/* ---------- ヘッダー ---------- */
.kty__header {
    width: 100%;
}
.kty__header-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 375rem;
    padding: 10rem;
    height: 60rem;
    background-color: var(--ktyWhite, #FFF);
    z-index: 2;
    margin: 0 auto;
}
.kty__logo-link {
    display: block;
}
.kty__logo {
    display: block;
    width: 218rem;
}
.kty__menu-btn {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 60rem;
    height: 60rem;
    padding: 14rem 0;
}
.kty__menu-text {
    text-align: center;
    font-family: Jost;
    font-size: 12rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.96rem;
}
.kty__menu-text::before,
.kty__menu-text::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    content: '';
    width: 40rem;
    height: 2rem;
    background-color: var(--KTY-Icon-dark, #000);
    transition: .5s all ease;
}
.kty__menu-text::before {
    top: 14rem;
}
.kty__menu-text::after {
    top: 24rem;
}
.kty__menu-btn.active .kty__menu-text {
    color: var(--ktyWhite, #FFF);
}
.kty__menu-btn.active .kty__menu-text::before {
    top: 24rem;
    transform: translateX(-50%) translateY(6rem) rotate(45deg);
}
.kty__menu-btn.active .kty__menu-text::after {
    top: 34rem;
    transform: translateX(-50%) translateY(-4rem) rotate(-45deg);
}
.kty__menu-content {
    position: fixed;
    top: 60rem;
    right: -350rem;
    width: 304rem;
    height: calc(100vh - 60rem);
    padding: 30rem 40rem;
    background-color: rgba(241, 245, 249, 0.95);
    box-shadow: -20px 20px 40px 0 rgba(86, 95, 102, 0.30);
    z-index: 1;
    transition: .5s right ease;
}
.kty__menu-content.active {
    display: block;
    right: 0;
}
.kty__menu-list {
    margin-bottom: 80rem;
}
.kty__menu-item {
    position: relative;
    font-size: 14rem;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.56rem;
    list-style: none;
    margin-bottom: 20rem;
    padding-left: 22rem;
}
.kty__menu-item:last-of-type {
    margin-bottom: 0;
}
.kty__menu-item::before {
    position: absolute;
    top: 4rem;
    left: 0;
    display: block;
    content: '';
    background-image: url(../../images/icon/icon-menu-pink-arrow.svg);
    background-size: contain;
    width: 12rem;
    height: 6rem;
}
.kty__menu-link {
    display: block;
    color: var(--KTY-Text-default, #121414);
}
.kty__banner-list {
    margin-bottom:  20rem;
}
.kty__banner-item {
    width: 160rem;
    margin-bottom: 10rem;
}
.kty__banner-item:last-of-type {
    margin-bottom: 0;
}
.kty__banner-img {
    display: block;
    width: 100%;
}
.kty__copyright {
    font-size: 10rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.4rem;
}
@media screen and (min-width: 768px) {
    .kty__header-top {
        width: 100%;
        min-width: 1080rem;
        padding: 10rem 40rem;
    }
    .kty__logo {
        width: 270rem;
    }
    .kty__menu-content {
        top: 60rem;
        right: -320rem;
        width: 280rem;
        height: fit-content;
        padding: 30rem;
    }
    .kty__menu-list {
        margin-bottom: 0;
    }
    .kty__banner-list {
        display: none;
    }
    .kty__copyright {
        display: none;
    }
}

/* 追従ボタン */
.kty__follow-btn {
    position: fixed;
    right: 0;
    bottom: 231rem;
    display: block;
    background-color: #000;
    padding: 10rem 6rem;
    border: 1px solid #FFF;
    z-index: 3;
}
.kty__follow-img {
    display: block;
    width: 30rem;
    margin: 0 auto 5rem;
}
.kty__follow-text {
    color: #FFF;
    font-size: 10rem;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.4rem;
    text-align: center;
    margin-bottom: 6rem;
}
.kty__follow-text-highlight {
    display: none;
}
.kty__follow-course {
    color: #000;
    font-size: 13rem;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.52rem;
    background-color: var(--KTY-Surface-white, #FFF);
    text-align: center;
    padding: 4rem 0;
    min-width: 48rem;
}
.kty__follow-course-highlight {
    font-size: 10rem;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.4rem;
}
@media screen and (min-width: 768px) {
    .kty__follow-btn {
        top: 558rem;
        right: 20rem;
        bottom: auto;
        padding: 12rem 10rem;
    }
    .kty__follow-img-wrap {
        display: flex;
        align-items: center;
        padding-bottom: 10rem;
        border-bottom: 1px solid #FFF;
        margin-bottom: 12rem;
    }
    .kty__follow-img {
        margin: 0;
        flex-shrink: 1;
        margin-right: 10rem;
    }
    .kty__follow-text {
        font-size: 13rem;
        letter-spacing: 0.52rem;
        text-align: left;
        margin-bottom: 0;
    }
    .kty__follow-text-highlight {
        display: block;
    }
    .kty__follow-course {
        color: #FFF;
        font-size: 18rem;
        letter-spacing: 0.72rem;
        background-color: transparent;
        padding: 0;
        min-width: auto;
    }
    .kty__follow-course-highlight {
        font-size: 18rem;
        letter-spacing: 0.72rem;
    }
}

/* ---------- フッター ---------- */
.kty-footer {
    background-color: var(--KTY-Background-01, #000);
}
.kty-footer__inner {
    padding: 40rem 20rem 20rem;
    margin: 0 auto;
}
.kty-footer__logo-wrapper {
    display: block;
    width: 260rem;
    margin-bottom: 40rem;
}
.kty-footer__logo {
    display: block;
    width: 100%;
}
.kty-footer__menu-list {
    margin-bottom: 50rem;
}
.kty-footer__menu-item {
    position: relative;
    color: var(--KTY-Text-blanked, #FFF);
    font-size: 14rem;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.56rem;
    padding-left: 22rem;
    margin-bottom: 16rem;
    list-style: none;
}
.kty-footer__menu-link {
    display: block;
    color: var(--KTY-Text-blanked, #FFF);
    transition: .2s all ease;
}
.kty-footer__menu-item::before {
    position: absolute;
    top: 4rem;
    left: 0;
    display: block;
    content: '';
    background-image: url(../../images/icon/icon-btn-white-arrow.svg);
    width: 12rem;
    height: 6rem;
}
.kty-footer__menu-link:hover {
    text-decoration: underline;
    transition: .2s all ease;
}
.kty-footer__menu-item:last-of-type {
    margin-bottom: 0;
}
.kty-footer__banner-list {
    width: 240rem;
    margin: 0 auto 20rem;
}
.kty-footer__banner-item {
    width: 100%;
    margin-bottom: 10rem;
}
.kty-footer__banner-item:last-of-type {
    margin-bottom: 0;
}
.kty-footer__banner-image {
    display: block;
    width: 100%;
}
.kty-footer__price-text {
    color: var(--KTY-Text-blanked, #FFF);
    text-align: center;
    font-size: 12rem;
    font-weight: 300;
    line-height: 130%;
    letter-spacing: 0.48rem;
    margin-bottom: 8rem;
}
.kty-footer__copyright-text {
    color: var(--KTY-Text-blanked, #FFF);
    text-align: center;
    font-family: Jost;
    font-size: 10rem;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.4rem;
}
@media screen and (min-width: 768px) {
    .kty-footer__inner {
        display: flex;
        justify-content: space-between;
        max-width: 1460rem;
        min-width: 1080rem;
        padding: 50rem 60rem 30rem;
    }
    .kty-footer__top-area {
        display: flex;
    }
    .kty-footer__logo-wrapper {
        width: 245rem;
        margin: 0 60rem 0 0;
    }
    .kty-footer__menu-list {
        margin-bottom: 0;
    }
}


/* ---------- 共通パーツ ---------- */

.kty__primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300rem;
    height: 60rem;
    border: 1px solid var(--KTY-Border-button, #FFF);
    background-color: #000;
    color: var(--KTY-Text-blanked, #FFF);
    font-size: 16rem;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.64rem;
    margin: 0 auto;
    transition: .2s all ease;
}
.kty__primary--next::after {
    position: absolute;
    top: 50%;
    right: 24rem;
    transform: translate(-50%, 0);
    display: block;
    content: '';
    background-image: url(../../images/icon/icon-btn-white-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 12rem;
    height: 12rem;
}
.kty__primary--back::after {
    position: absolute;
    top: 50%;
    left: 24rem;
    transform: translate(-50%, 0) rotate(180deg);
    display: block;
    content: '';
    background-image: url(../../images/icon/icon-btn-white-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 12rem;
    height: 6rem;
}
.kty__primary:hover {
    background-color: var(--KTY-Surface-button--active, #D62259);
    transition: .2s all ease;
}
@media screen and (min-width: 768px) {
    .kty__primary {
        margin: 0;
    }
}


/* 共通タイトル */
.kty__title-body {
    position: relative;
    padding-top: 60rem;
}
.kty__title-img {
    display: block;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .kty__title-body {
        max-width: 1470rem;
        min-width: 1080rem;
        margin: 0 auto;
    }
}


/* ---------- トップ共通 ---------- */
.top__mv{
    padding-top: 60rem;
}
.top__h2-title {
    color: var(--KTY-Background-02, #BCD0E0);
    text-align: center;
    font-family: Jost;
    font-size: 40rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 3.2rem;
    margin-bottom: 10rem;
    width: fit-content;
    padding: 0 10rem;
}
.top__h2-title--white {
    color: var(--ktyWhite, #FFF);
}
.top__h2-title--mb-none {
    margin-bottom: 0;
}
.top__secomdary-btn-list {
    width: fit-content;
    margin: 0 auto;
}
.top__secomdary-btn-item {
    display: block;
    margin-bottom: 10rem;
}
.top__secomdary-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--KTY-Text-blanked, #FFF);
    font-size: 14rem;;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.56rem;
    background-color: var(--KTY-Surface-button-default, #000);
    width: 200rem;
    height: 40rem;
    transition: .2s all ease;
}
.top__secomdary-btn::after {
    position: absolute;
    top: 50%;
    right: 12rem;
    transform: translateY(-50%);
    display: block;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
}
.top__secomdary-btn--external::after {
    background-image: url(../../images/icon/icon-btn-white-external.svg);
    width: 12rem;
    height: 12rem;
}
.top__secomdary-btn--details::after {
    background-image: url(../../images/icon/icon-btn-white-arrow.svg);
    width: 12rem;
    height: 6rem;
}
@media screen and (min-width: 768px) {
    .top__h2-title {
        font-size: 80rem;
        letter-spacing: 6.4rem;
        margin-bottom: 20rem;
        padding: 0;
    }
    .top__secomdary-btn-list--pc-left {
        margin: 0;
    }
}

/* ---------- トップメインビジュアル ---------- */
.top__mv-body {
    margin: 0 auto;
}
.top__mv-img {
    display: block;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .top__mv-body {
        width: 100%;
        min-width: 1080rem;
        margin: 0 auto;
    }
}


/* ---------- トップ オープン ---------- */
.top__open-body {
    margin: 0 auto;
}
.top__open-img {
    display: block;
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .top__open-body {
        min-width: 1080rem;
        max-width: 1440rem;
    }
    .top__open-img {
        width: 920rem;
    }
}


/* ---------- 顔の悩みは、KTYフェイスジムへ ---------- */
.top__about-body {
    padding: 60rem 0 100rem;
    margin: 0 auto;
}
.top__about-content {
    position: relative;
}
.top__about-title {
    margin-bottom: 40rem;
}
.top__about-title-img {
    display: block;
    width: 238rem;
}
.top__about-text-area {
    padding: 0 10rem;
    margin-bottom: 100rem;
}
.top__about-text {
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.64rem;
    margin-bottom: 40rem;
}
.top__about-highlight {
    font-weight: 700;
}
.top__about-text--mb80-110 {
    margin-bottom: 80rem;
}
.top__about-text:last-of-type {
    margin-bottom: 0;
}
.top__about-img {
    display: block;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .top__about-body {
        max-width: 1460rem;
        min-width: 1080rem;
        padding: 80rem 0 104em;
    }
    .top__about-title {
        width: 356rem;
        margin-bottom: 70rem;
    }
    .top__about-title-img {
        width: 100%;
    }
    .top__about-text-area {
        position: relative;
        height: 910rem;
        padding: 0;
        margin: 0 0 106rem 164rem;
        z-index: 1;
    }
    .top__about-text {
        font-size: 18rem;
        letter-spacing: 0.72rem;
        margin-bottom: 30rem;
    }
    .top__about-text--mb80-110 {
        margin-bottom: 110rem;
    }
    .top__about-img {
        position: absolute;
        top: 0;
        right: 0;
        width: 860rem;
    }
}


/* ---------- Katsuyo（KTY先生） ---------- */
.top__intro-body {
    margin: 0 auto;
}
.top__intro-img {
    display: block;
    width: 100%;
}
.top__intro-block {
    position: relative;
}
.top__intro-text-area {
    position: absolute;
    left: 0;
    bottom: 60rem;
    width: 100%;
    padding: 0 20rem;
}
.top__intro-title-text {
    color: var(--KTY-Text-blanked, #FFF);
    text-align: right;
    font-size: 16rem;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.64rem;
}
.top__intro-name-text {
    color: var(--KTY-Text-blanked, #FFF);
    text-align: right;
    font-size: 28rem;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 3.36rem;
    margin-bottom: 12rem;
}
.top__intro-name-text--sub {
    font-size: 20rem;
    letter-spacing: 2.4rem;
}
.top__intro-role-text {
    color: var(--KTY-Text-blanked, #FFF);
    text-align: right;
    font-size: 12rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.48rem;
    margin-bottom: 40rem;
}
.top__intro-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300rem;
    height: 60rem;
    border: 1px solid var(--KTY-Border-button, #FFF);
    background-color: #000;
    color: var(--KTY-Text-blanked, #FFF);
    font-size: 16rem;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.64rem;
    margin: 0 auto;
    transition: .2s all ease;
}
.top__intro-link::after {
    position: absolute;
    top: 50%;
    right: 24rem;
    transform: translate(-50%, 0);
    display: block;
    content: '';
    background-image: url(../../images/icon/icon-btn-white-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 12rem;
    height: 12rem;
}
.top__intro-link:hover {
    background-color: var(--KTY-Surface-button--active, #D62259);
    transition: .2s all ease;
}
@media screen and (min-width: 768px) {
    .top__intro-body {
        max-width: 1460rem;
        min-width: 1080rem;
    }
    .top__intro-block {
        position: relative;
    }
    .top__intro-text-area {
        left: 46.74%;
        bottom: 8.56%;
        width: 603rem;
        padding: 0;
    }
    .top__intro-title-text {
        text-align: left;
    }
    .top__intro-name-text {
        text-align: left;
        font-size: 36rem;
        letter-spacing: 4.32rem;
    }
    .top__intro-name-text--sub {
        font-size: 24rem;
        letter-spacing: 2.88rem;
    }
    .top__intro-role-text {
        text-align: left;
        font-size: 14rem;
        letter-spacing: 0.56rem;
    }
    .top__intro-link {
        margin: 0;
    }
}


/* ---------- ただの美容じゃない。医師が語る“顔トレ”の力 ---------- */
.top__message-body {
    padding: 80rem 0;
    margin: 0 auto;
}
.top__message-content {
    padding: 0 10rem;
}
.top__message-title {
    margin-bottom: 40rem;
}
.top__message-title-img {
    display: block;
    width: 100%;
}
.top__message-list {
    padding: 0 20rem;
}
.top__message-item {
    margin-bottom: 60rem;
}
.top__message-item:last-of-type {
    margin-bottom: 0;
}
.top__message-img {
    display: block;
    width: 240rem;
    margin: 0 auto 20rem;
}
.top__message-hospital {
    text-align: center;
    font-size: 14rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.56rem;
}
.top__message-doctor {
    text-align: center;
    font-size: 20rem;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.8rem;
    margin-bottom: 10rem;
}
.top__message-comment {
    font-size: 14rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.56rem;
}
@media screen and (min-width: 768px) {
    .top__message-body {
        max-width: 1132rem;
        min-width: 1080rem;
        padding: 120rem 0 110rem;
    }
    .top__message-title {
        margin-bottom: 60rem;
    }
    .top__message-title-img {
        width: 853rem;
        margin: 0 auto 60rem;
    }
    .top__message-list {
        display: flex;
        justify-content: space-between;
        padding: 0;
    }
    .top__message-item {
        width: calc((100% - 80rem) / 3);
        padding: 0 20rem;
        margin-bottom: 0;
    }
    .top__message-img {
        margin: 0 auto 40rem;
    }
}


/* ---------- THE METHOD ---------- */
.top__method-img {
    display: block;
    width: 100%;
}
.top__method-text-area {
    position: relative;
    background-color: var(--KTY-Background-02, #BCD0E0);
    padding: 80rem 10rem 280rem;
    background-image: url(../../images/kty-top/top-method-bg-sp.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 375rem 240rem;
}
.top__method-title {
    position: absolute;
    top: -20rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--KTY-Text-blanked, #FFF);
    text-align: center;
    font-family: Jost;
    font-size: 40rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 3.2rem;
    width: 100%;
}
.top__method-title-img {
    display: block;
    width: 100%;
    margin-bottom: 40rem;
}
.top__method-sub-title-img {
    display: block;
    width: 100%;
    margin-bottom: 40rem;
}
.top__method-description {
    font-size: 16rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.64rem;
    margin-bottom: 40rem;
}
.top__method-change-section {
    padding: 80rem 10rem;
    background-color: var(--KTY-Background-03, #F1F5F9);
}
.top__method-change-list {
    padding: 0 27.5rem;
    margin-bottom: 60rem;
}
.top__method-change-item {
    position: relative;
    font-size: 16rem;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.64rem;
    list-style: none;
    background: linear-gradient(119deg, #FFF 49.72%, #CEE0F2 100%), #E6ECF2;
    padding: 30rem 20rem 30rem 36rem;
    border-radius: 10rem;
    margin-bottom: 20rem;
}
.top__method-change-item:last-of-type {
    margin-bottom: 0;
}
.top__method-change-item::before {
    display: block;
    position: absolute;
    top: 50%;
    left: -20rem;
    transform: translateY(-50%);
    content: '';
    background-image: url(../../images/kty-top/top-method-checkbox.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 40rem;
    height: 40rem;
}
.top__method-change-text {
    text-align: center;
    font-size: 16rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.64rem;
    margin-bottom: 12rem;
}
.top__method-change-highlight {
    text-align: center;
    font-size: 24rem;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 1.92rem;
}
@media screen and (min-width: 768px) {
    .top__method-body {
        max-width: 1460rem;
        min-width: 1080rem;
        margin: 0 auto;
    }
    .top__method-text-area {
        position: relative;
        background-color: var(--KTY-Background-02, #BCD0E0);
        padding: 132.5rem 174rem;
        background-image: url(../../images/kty-top/top-method-bg-pc.png);
        background-position: bottom right;
        height: 620rem;
        background-size: 680rem 620rem;
    }
    .top__method-title {
        top: -40rem;
        font-size: 80rem;
        letter-spacing: 6.4rem;
    }
    .top__method-title-img {
        width: 600rem;
        margin: 0 0 60rem;
    }
    .top__method-sub-title-img {
        width: 600rem;
        margin: 0 auto 60rem;
    }
    .top__method-description {
        font-size: 18rem;
        letter-spacing: 0.72rem;
        margin-bottom: 80rem;
    }
    .top__method-change-section {
        padding: 160rem 10rem;
    }
    .top__method-change-list {
        display: flex;
        justify-content: space-between;
        width: 808rem;
        padding: 0;
        margin: 0 auto 60rem;
    }
    .top__method-change-item {
        font-size: 18em;
        letter-spacing: 0.72rem;
        text-align: center;
        width: calc((100% - 80rem) / 3);
        margin-bottom: 0;
        padding: 50rem 20rem 40rem;
    }
    .top__method-change-item::before {
        top: -12rem;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .top__method-change-text {
        font-size: 20rem;
        letter-spacing: 0.8rem;/
    }
    .top__method-change-highlight {
        font-size: 36rem;
        letter-spacing: 2.88rem;
    }
}


/* ---------- IMPROVEMENT ---------- */
.top__improvement-body {
    padding: 60rem 0;
    margin: 0 auto;
}
.top__improvement-item {
    padding: 40rem 10rem;
    background-color: var(--KTY-Background-02, #BCD0E0);
    margin-bottom: 20rem;
}
.top__improvement-item:last-of-type {
    margin-bottom: 0;
}
.top__improvement-case {
    color: var(--KTY-Text-darkpink, #D62259);
    font-family: Jost;
    font-size: 16rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.64rem;
    margin-bottom: 4rem;
}
.top__improvement-description {
    color: var(--KTY-Text-default, #121414);
    font-size: 24rem;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.96rem;
    margin-bottom: 40rem;
}
.top__improvement-img {
    display: block;
    width: 100%;
    margin-bottom: 10rem;
}
.top__improvement-text {
    color: var(--KTY-Text-darkpink, #D62259);
    text-align: center;
    font-size: 20rem;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.8rem;
}
.top__improvement-text--mb40 {
    margin-bottom: 40rem;
}
.top__improvement-text-area {
    position: relative;
    border-radius: 10rem;
    border: 1px solid var(--ktyWhite, #FFF);
}
.top__improvement-comment-title {
    position: absolute;
    top: -15rem;
    left: -1px;
    color: var(--KTY-Text-default, #121414);
    font-size: 14rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.56rem;
    background-color: var(--ktyWhite, #FFF);
    width: fit-content;
    padding: 8rem 10rem;
}
.top__improvement-comment-text {
    color: var(--KTY-Text-default, #121414);
    font-size: 14rem;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.56rem;
    padding: 30rem 20rem 20rem;
}
@media screen and (min-width: 768px) {
    .top__improvement-body {
        min-width: 1080rem;
        padding: 100rem 0 60rem;
    }
    .top__improvement-content {
        max-width: 1020rem;
        margin: 0 auto;
    }
    .top__improvement-item {
        padding: 40rem 96rem;
        margin-bottom: 40rem;
    }
    .top__improvement-case {
        font-size: 20rem;
        letter-spacing: 0.8rem;
    }
    .top__improvement-description {
        font-size: 28rem;
        letter-spacing: 1.12rem;
        margin-bottom: 32rem;
    }
    .top__improvement-img {
        margin-bottom: 20rem;
    }
    .top__improvement-text {
        font-size: 24rem;
        letter-spacing: 0.96rem;
    }
    .top__improvement-comment-text {
        padding: 30rem 40rem;
    }
}


/* ---------- STORE ---------- */
.top__store-body {
    max-width: 1460rem;
    margin: 0 auto;
}
.top__store-text-area {
    position: relative;
    width: 100%;
}
.top__store-img {
    display: block;
    width: 100%;
}
.top__store-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--KTY-Text-blanked, #FFF);
    font-family: Jost;
    font-size: 28rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 2.24rem;
    width: 375rem;
    height: 160rem;
}
.top__store-list {
    background-color: var(--KTY-Background-03, #F1F5F9);
}
.top__store-item {
    margin-bottom: 20rem;
}
.top__store-item:last-of-type {
    margin-bottom: 0;
}
.top__store-info {
    padding: 20rem;
}
.top__store-address {
    display: flex;
    margin-bottom: 20rem;
}
.top__store-address-title {
    color: var(--KTY-Text-default, #121414);
    font-size: 20rem;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 2.4rem;
    margin-right: 24rem;
}
.top__store-address-text {
    color: var(--KTY-Text-default, #121414);
    font-size: 12rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.48rem;
}
@media screen and (min-width: 768px) {
    .top__store-body {
        max-width: 1460rem;
        min-width: 1080rem;
        margin: 0 auto;
    }
    .top__store-text-area {
        width: 58%;
        height: 320rem;
    }
    .top__store-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .top__store-name {
        left: 164rem;
        transform: translate(0, -50%);
        font-size: 42rem;
        letter-spacing: 3.84rem;
    }
    .top__store-list {
        background-color: transparent;
    }
    .top__store-item {
        display: flex;
        background-color: var(--KTY-Background-03, #F1F5F9);
    }
    .top__store-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 42%;
        height: 320rem;
        padding: 47rem 56rem;
    }
    .top__store-address {
        display: block;
        margin-bottom: 20rem;
    }
    .top__store-address-title {
        font-size: 28rem;
        letter-spacing: 3.36rem;
        margin: 0 0 16rem 0;
    }
    .top__store-address-text {
        font-size: 14rem;
        letter-spacing: 0.56rem;
    }
}


/* ---------- PRODUCTS ---------- */
.top__products-body {
    padding: 80rem 0 60rem;
    margin: 0 auto;
}
.top__products-img {
    display: flex;
    width: 335rem;
    float: right;
}
.top__products-h2-title {
    display: block;
    width: 100%;
    margin-bottom: 40rem;
}
.top__products-h2-title-area{
    position: relative;
    top: -30rem;
    padding: 0 10rem;
    width: 100%;
}
.top__products-h2-title-text {
    font-size: 16rem;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.64rem;
    margin-bottom: 30rem;
}
@media screen and (min-width: 768px) {
    .top__products-body {
        max-width: 1460rem;
        min-width: 1080rem;
        padding: 100rem 0 126rem;
    }
    .top__products-content {
        position: relative;
        min-height: 760rem;
    }
    .top__products-img {
        position: absolute;
        top: 120rem;
        right: 0;
        width: 78%;
    }
    .top__products-h2-title {
        width: 424rem;
    }
    .top__products-h2-title-area{
        padding: 180rem 164rem 0;
        width: fit-content;
        z-index: 1;
    }
    .top__products-h2-title-text {
        font-size: 18rem;
        letter-spacing: 0.72rem;
        margin-bottom: 80rem;
    }
}


/* ---------- NEWS ---------- */
.top__news {
    background-color: var(--KTY-Background-02, #BCD0E0);
    /* ニュースのカードの列数を変数で定義 */

}
.top__news-body {
    padding: 40rem 10rem;
    margin: 0 auto;
}
.top__news-list {
    display: flex;
    flex-direction: column;
    gap: 30rem;
    /* padding: 0 10rem; */
}
.top__news-item {
    width: 100%;
    padding-bottom : 20rem;
    border-bottom: 1px solid var(--KTY-Border-blanked, #FFF);
}
.top__news-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}
.top__news-link {
    display: flex;
    flex-direction: column;

}
.top__news-date {
    display: block;
    color: var(--KTY-Text-default, #121414);
    font-size: 12rem;
    font-weight: 400;
    line-height: 21rem;
    letter-spacing: 0.48rem;
}
.top__news-text {
    color: var(--KTY-Text-default, #121414);
    font-size: 14rem;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.56rem;
    text-decoration: underline;
    transition: .2s all ease;
    /* オフセット */
    text-underline-offset: 4rem;
}
.top__news-link:hover .top__news-text {
    text-decoration: none;
    transition: .2s all ease;
}
.top__news-meta {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.top__news-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12rem;
}
.top__news-thumb-image{
    display: block;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .top__news {
        /* ニュースのカードの列数を変数で定義 */
    }

    .top__news-body {
        max-width: 1132rem;
        min-width: 1080rem;
        padding: 20rem 0 60rem;
    }
    .top__news-content {
        /* display: flex; */
    }
    .top__news-list {
        /* padding: 0 56rem 0 76rem; */
        width: 100%;
        flex-direction: row;
        justify-content: space-between;

    }
    .top__news-link {
        display: flex;
        gap: 0 ;
    }
    .top__news-date {
        font-size: 14rem;
        letter-spacing: 0.56rem;
        width: 136rem;
        flex-shrink: 0;
    }
    .top__news-text {
        font-size: 16rem;
        letter-spacing: 0.64rem;
    }
    .top__news-item {
        width: calc( ( 100% - 60rem ) / 3 );
        border: none;
        padding-bottom: 0;
        /* border-bottom: 1px solid var(--KTY-Border-blanked, #FFF); */
    }

}


/* ----------　書籍 ---------- */
/* Simple-Flick必須クラス */
.mixin-wrapper-width{
    width: 100%;
    margin: 0 auto;
}
.mixin-width{
    margin: 0 auto;
}
.flick-list{
    width: fit-content;
    display: flex;
    position: relative;
    left: 0;
    transition: .5s all ease;
}
.flick-wrapper{
    overflow-x: hidden;
}
@media screen and (min-width: 768px) {
    .mixin-width{
        padding: 0 20rem;
    }
}

.top__books-body {
    padding: 40rem 0;
    margin: 0 auto;
}
.top__books-block {
    position: relative;
    padding: 0;
}
.top__block-list {
    padding: 0 10rem;
}
.top__books-item {
    width: 248rem;
    margin-right: 20rem;
}
.top__books-link {
    display: block;
    transition: .2s all ease;
}
.top__books-img-area {
    overflow: hidden;
    width: 100%;
}
.top__books-img {
    display: block;
    width: 100%;
    transform: scale(1);
    transition: .2s all ease;
}
.top__books-link:hover .top__secomdary-btn {
    background-color: var(--KTY-Surface-button--active, #D62259);
    transition: .2s all ease;
}
.top__books-link:hover .top__books-img {
    transform: scale(1.1);
    transition: .2s all ease;
}
.top__books-info {
    padding: 12rem 20rem;
}
.top__books-title {
    color: #1A1A1A;
    font-size: 18rem;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.72rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 46rem;
    margin-bottom: 8rem;
}
.top__books-price {
    color: #1A1A1A;;
    font-size: 14rem;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.56rem;
}
.top__books-btn {
    display: none;
}
@media screen and (min-width: 768px) {
    .top__books-body {
        max-width: 1192rem;
        min-width: 1080rem;
        padding: 100rem 0;
    }
    .top__books-content {
        position: relative;
        padding: 0 10rem;
    }
    .top__books-block {
        /* width: 1192rem; */
        width: 100%;
        padding: 0 40rem;
    }
    .top__block-list {
        /* width: 77%; */
        padding: 0;
    }
    .top__books-item {
        width: calc((1112rem - 120rem) / 4);
        margin-right: 40rem;
        flex-shrink: 0;
    }
    .top__books-btn {
        position: absolute;
        top: 80rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40rem;
        height: 40rem;
        background-color: var(--KTY-Surface-button-default, #000);
        transition: .2s all ease;
    }
    .top__books-btn:hover {
        background-color: var(--KTY-Surface-button--active, #D62259);
        transition: .2s all ease;
    }
    .top__books-btn::before {
        display: block;
        content: '';
        background-image: url(../../images/icon/icon-btn-white-arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        width: 12rem;
        height: 6rem;
    }
    .top__books-btn--left {
        /* left: -30rem; */
        left: 0;
        transform: rotate(180deg);
    }
    .top__books-btn--right {
        /* right: -30rem; */
        right: 0;
    }
    .top__books-btn--none {
        display: none;
    }
}


/* ---------- コース ---------- */
.top__course-body {
    padding: 60rem 0;
    margin: 0 auto;
}
.top__course-content {
    padding: 0 10rem;
}
@media screen and (min-width: 768px) {
    .top__course-body {
        min-width: 1080rem;
        padding: 100rem 0;
    }
    .top__course-content {
        max-width: 940rem;
        margin: 0 auto;
    }
}


/* ---------- PRODUCTS 商品一覧 ---------- */
.products__pick-up-body {
    padding: 40rem 0;
}
.products__pick-up-content {
    padding: 0 10rem;
}
.products__pick-up-block {
    position: relative;
    border: 1px solid var(--ktyLine, #BCD0E0);
    padding: 30rem 20rem;
}
.products__pick-up-tag {
    position: absolute;
    top: -16rem;
    left: -1rem;
    color: var(--ktyWhite, #FFF);
    font-family: Jost;
    font-size: 16rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.28rem;
    width: fit-content;
    background-color: var(--ktyPink, #EC3970);
    padding: 8rem 10rem;
}
.products__pick-up-img {
    display: block;
    width: 100%;
    margin-bottom: 24rem;
}
.products__pick-up-title {
    color: var(--KTY-Text-default, #121414);
    font-size: 20rem;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.8rem;
    margin-bottom: 20rem;
}
.products__pick-up-text {
    color: var(--KTY-Text-default, #121414);
    font-size: 14rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.56rem;
    margin-bottom: 20rem;
}
.products__pick-up-text p:last-of-type {
    margin-bottom: 0;
}
.products__pick-up-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ktyWhite, #FFF);
    font-size: 13rem;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.56rem;
    background-color: #000;
    width: 200rem;
    height: 40rem;
    margin: 0 auto;
}
.products__pick-up-link::after {
    position: absolute;
    top: 50%;
    right: 14rem;
    transform: translateY(-50%);
    content: '';
    background-image: url(../../images/icon/icon-btn-white-external.svg);
    background-size: cover;
    width: 12rem;
    height: 12rem;
}
.products__others-body {
    padding: 40rem 0 60rem;
}
.products__others-content {
    padding: 0 10rem;
}
.products__item-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40rem 20rem;
}
.products__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 20rem) / 2);
}
.products__item-img-wrapper {
    position: relative;
    width: 100%;
}
.products__item-new-label {
    position: absolute;
    top: 10rem;
    right: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ktyWhite, #FFF);
    font-family: Jost;
    font-size: 10rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.8rem;
    background-color: var(--ktyPink, #EC3970);
    width: 40rem;
    height: 40rem;
    border-radius: 20rem;
}
.products__item-img {
    display: block;
    width: 100%;
    object-fit: cover;
}
.products__category-list {
    display: flex;
    flex-wrap: wrap;
    padding: 10rem 0;
}
.products__category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--KTY-Text-default, #121414);
    font-size: 12rem;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.48rem;
    list-style: none;
    border: 1px solid var(--ktyLine, #BCD0E0);
    padding: 2rem 5rem;
    min-height: 20rem;
    border-radius: 4rem;
    margin: 0 4rem 4rem 0;
}
.products__category-item:last-of-type {
    margin-right: 0;
}
.products__item-title {
    color: var(--KTY-Text-default, #121414);
    font-size: 14rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.56rem;
    margin-bottom: 16rem;
}
.products__item-description {
    color: var(--KTY-Text-default, #121414);
    font-size: 14rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.56rem;
    margin-bottom: 16rem;
}
.products__item-price {
    color: var(--KTY-Text-default, #121414);
    font-size: 18rem;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.72rem;
    margin-bottom: 16rem;
}
.products__item-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ktyWhite, #FFF);
    font-size: 13rem;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.56rem;
    background-color: #000;
    width: 100%;
    height: 40rem;
    margin: 0 auto;
}
.products__item-link::after {
    position: absolute;
    top: 50%;
    right: 14rem;
    transform: translateY(-50%);
    content: '';
    background-image: url(../../images/icon/icon-btn-white-external.svg);
    background-size: cover;
    width: 12rem;
    height: 12rem;
}
@media screen and (min-width: 768px) {
    .products__pick-up-body {
        max-width: 1132rem;
        padding: 60rem 0 80rem;
        margin: 0 auto;
    }
    .products__pick-up-block {
        display: flex;
        width: 100%;
        padding: 80rem 56rem 60rem;
    }
    .products__pick-up-tag {
        top: 20rem;
        font-size: 28rem;
        letter-spacing: 2.24rem;
        padding: 10rem 20rem;
    }
    .products__pick-up-img {
        width: 300rem;
        margin: 0 80rem 0 0;
    }
    .products__pick-up-title {
        font-size: 24rem;
    }
    .products__pick-up-text {
        font-size: 16rem;
        letter-spacing: 0.64rem;
        margin-bottom: 20rem;
    }
    .products__pick-up-text p {
        font-size: 16rem;
        letter-spacing: 0.64rem;
    }
    .products__pick-up-link {
        font-size: 14rem;
        margin: 0;
    }
    .products__others-body {
        max-width: 1132rem;
        min-width: 1080rem;
        padding: 80rem 0 200rem;
        margin: 0 auto;
    }
    .products__item-list {
        gap: 80rem 40rem;
    }
    .products__item {
        width: calc((100% - 120rem) / 4);
    }
    .products__item-link {
        font-size: 14rem;
        width: 80%;
    }
}


/* ---------- KTY NEWS ---------- */
.news__title-body {
    padding: 120rem 0 60rem;
}
.news__title-text {
    color: var(--KTY-Text-default, #121414);
    font-family: Jost;
    font-size: 50rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 4rem;
    text-align: center;
}
.news__article-content {
    padding: 0 10rem;
}
.news__article-body {
    padding: 0 0 80rem;
}
.news__item {
    margin-bottom: 40rem;
}
.news__item:last-of-type {
    margin-bottom: 0;
}
.news__img {
    display: block;
    width: 100%;
    margin-bottom: 20rem;
}
.news__time {
    display: block;
    color: var(--KTY-Text-default, #121414);
    text-align: right;
    font-size: 12rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.48rem;
    width: 100%;
}
.news__category-list {
    display: flex;
    flex-wrap: wrap;
}
.news__category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #B5BFC2;
    min-height: 20rem;
    padding: 2rem 5rem;
    border-radius: 4rem;
    width: fit-content;
    color: #343738;;
    font-size: 11rem;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.44rem;
    list-style: none;
    margin: 0 4rem 4rem 0;
}
.news__item-title {
    color: var(--KTY-Text-default, #121414);
    font-family: "Hiragino Kaku Gothic ProN";
    font-size: 18rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.72rem;
    margin-top: 8rem;
}
@media screen and (min-width: 768px) {
    .news__title-body {
        max-width: 1440rem;
        min-width: 1080rem;
        padding: 80rem 0;
        max-width: 1440rem;
        margin: 0 auto;
    }
    .news__title-text {
        font-size: 100rem;
        letter-spacing: 8rem;
    }
    .news__article-body {
        min-width: 1080rem;
        max-width: 1460rem;
        margin: 0 auto;
    }
    .news__list {
        display: flex;
        flex-wrap: wrap;
        gap: 40rem;
    }
    .news__item {
        width: calc((100% - 80rem) / 3);
    }
    .news__item:last-of-type {
        margin-bottom: 0;
    }
}


/* ---------- KTY NEWS ニュース詳細 ---------- */
.news-single__body {
    padding: 60rem 0 80rem;
}
.news-single__content {
    padding: 0 15rem;
}
.news-single__h1-title {
    font-size: 26rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 2.56rem;
    margin-bottom: 20rem;
}
.news-single__date {
    display: block;
    font-size: 12rem;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.48rem;
    margin-bottom: 20rem;
}
.news-single__img {
    display: block;
    width: 100%;
    margin-bottom: 60rem;
}
.news-single__link-list {
    display: flex;
    justify-content: space-between;
    margin: 64rem auto 40rem;
}
.news-single__link-item {
    display: flex;
    align-items: center;
}
.news-single__link-item--next {
    margin-left: auto;
}
.news-single__back-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 16rem;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.64rem;
    width: 300rem;
    height: 60rem;
    background-color: #000;
    margin: 0 auto;
}
.news-single__back-link::before {
    position: absolute;
    top: 50%;
    left: 24rem;
    transform: translate(0,-50%) rotate(180deg);
    display: block;
    content: '';
    background-image: url(../../images/icon/icon-btn-white-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 12rem;
    height: 12rem;
}
.news-single__link-btn-text {
    color: #121414;
    font-size: 14rem;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.64rem;
    text-decoration-line: underline;
}
.news-single__link-btn {
    position: relative;
    display: block;
    width: 40rem;
    height: 40rem;
    background-color: #000;
}
.news-single__link-btn::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    content: '';
    background-image: url(../../images/icon/icon-menu-white-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 12rem;
    height: 12rem;
}
.news-single__link-btn--prev::after {
    transform: translate(-50%,-50%) rotate(180deg);
}
.news-single__link-btn--prev {
    margin-left: 15rem;
}
.news-single__link-btn--next {
    margin-right: 15rem;
}
@media screen and (min-width: 768px) {
    .news-single__body {
        max-width: 960rem;
        margin: 0 auto;
    }
    .news-single__content {
        padding: 0 20rem;
    }
    .news-single__h1-title {
        font-size: 32rem;
    }
    .news-single__link-list {
        width: 392rem;
    }
    .news-single__link-btn-text {
        font-size: 16rem;
    }
    .news-single__link-btn--prev {
        margin-left: 20rem;
    }
    .news-single__link-btn--next {
        margin-right: 20rem;
    }
}

/* ---------- STORE ---------- */

/* 共通パーツ */
.kty__store-title {
    font-size: 24rem;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.96rem;
    margin-bottom: 30rem;
}
.kty__store-title::after {
    display: block;
    content: '';
    width: 100rem;
    height: 2rem;
    background-color: var(--KTY-Border-Title, #F53B73);
    margin-top: 16rem;
}
@media screen and (min-width: 768px) {
    .kty__store-title {
        margin-bottom: 40rem;
    }
}

/* 住所 */
.kty__address-body {
    padding: 40rem 0 60rem;
    margin: 0 auto;
}
.kty__address-content {
    padding: 0 10rem;
}
.kty__address-block {
    border: 1px solid var(--KTY-Border-default, #BCD0E0);
    padding: 20rem;
}
.kty__address-text {
    position: relative;
    font-size: 16rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.64rem;
}
.kty__address-text--note {
    font-size: 12rem;
    letter-spacing: 0.48rem;
}
.kty__address-map-wrapper {
    position: relative;
    padding-left: 34rem;
    margin-bottom: 20rem;
}
.kty__address-map-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: '';
    background-image: url(../../images/kty-store/icon-pin.svg);
    background-size: contain;
    background-repeat:  no-repeat;
    width: 24rem;
    height: 24rem;
}
.kty__address-map-wrapper--access::before {
    background-image: url(../../images/kty-store/icon-train.svg);
}
.kty__address-time-wrapper {
    position: relative;
    margin-bottom: 20rem;
    padding-left: 34rem;
}
.kty__address-time-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: '';
    background-image: url(../../images/kty-store/icon-clock.svg);
    background-size: contain;
    background-repeat:  no-repeat;
    width: 24rem;
    height: 24rem;
}
.kty__address-notes-text {
    font-size: 10rem;
    font-weight: 300;
    line-height: 130%;
    letter-spacing: 0.4rem;
    margin-top: 12rem;
}
.kty__address-map {
    display: block;
    width: 100%;
    height: 219rem;
}
.kty__sns-list {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20rem;
}
.kty__sns-item {
    width: 30rem;
    margin-right: 16rem;
}
.kty__sns-item::after {
    margin-right: 0;
}
.kty__sns-icon {
    display: block;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .kty__address-body {
        min-width: 1080rem;
        padding: 80rem 0 50rem;
    }
    .kty__address-content {
        max-width: 940rem;
        margin: 0 auto;
    }
    .kty__address-block {
        display: flex;
        justify-content: space-between;
        padding: 40rem;
    }
    .kty__address-text {
        font-size: 18rem;
        letter-spacing: 0.72rem;
        width: 424rem;
    }
    .kty__address-text--note {
        font-size: 12rem;
        letter-spacing: 0.48rem;
    }
    .kty__address-map-wrapper {
        padding-left: 46rem;
        margin-bottom: 20rem;
    }
    .kty__address-map-wrapper::before {
        width: 36rem;
        height: 36rem;
    }
    .kty__address-time-wrapper {
        padding-left: 46rem;
    }
    .kty__address-time-wrapper::before {
        width: 36rem;
        height: 36rem;
    }
    .kty__address-notes-text {
        width: 424rem;
    }
    .kty__address-map {
        display: block;
        width: calc(100% - 524rem);
        height: 240rem;
    }
    .kty__sns-list {
        width: 470rem;
        margin: 0;
    }
}

/* コース */
.kty__course-body {
    margin: 0 auto;
}
.kty__course-content {
    padding: 0 10rem;
}
.kty__course-item {
    margin-bottom: 50rem;
}
.kty__course-item::after {
    margin-bottom: 0;
}
.kty__course-item:last-of-type {
    margin-bottom: 0;
}
.kty__course-info-recommend {
    color: var(--KTY-Text-accent, #F53B73);
    font-size: 14rem;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.56rem;
    margin-bottom: 4rem;
}
.kty__course-title-wrapper {
    display: flex;
    align-items: center;
}
.kty__course-title-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--KTY-Text-blanked, #FFF);
    font-size: 12rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.44rem;
    width: fit-content;
    height: 24rem;
    padding: 2rem 10rem;
    background: var(--KTY-Surface-text-blank, #121414);
    border-radius: 4rem;
}
.kty__course-title-badge--white {
    color: var(--KTY-Text-default, #121414);
    border: 1px solid var(--KTY-Border-dark, #121414);
    background: var(--KTY-Surface-white, #FFF);
}
.kty__course-title-badge-new {
    color: var(--KTY-Text-accent, #F53B73);
    font-size: 14rem;
    font-weight: 700;
    line-height: 20rem;
    letter-spacing: 0.56rem;
    margin-left: 8rem;
}
.kty__course-title {
    color: var(--KTY-Text-default, #121414);
    font-size: 20rem;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.8rem;
    margin-bottom: 12rem;
}
.kty__course-block {
    margin-bottom: 20rem;
}
.kty__course-description {
    color: var(--KTY-Text-default, #121414);
    font-size: 16rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.64rem;
}
.kty__course-info-table {
    width: 100%;
    background-color: var(--KTY-Background-table, #F9FBFC);
}
.kty__course-info-table-header {
    border-bottom: 1px solid var(--KTY-Border-default, #BCD0E0);
}
.kty__course-info-table-header:first-of-type {
    border-top: 1px solid var(--KTY-Border-default, #BCD0E0);
}
.kty__course-info-table-header-cell {
    color: var(--KTY-Text-sub, #788085);
    font-size: 12rem;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.48rem;
    text-align: left;
    width: 80rem;
    padding: 16rem 8rem;
}
.kty__course-info-table-data {
    padding: 16rem 8rem;
}
.kty__course-info-table-data-list {
    margin-bottom: 16rem;
}
.kty__course-info-table-data-text-area p {
    font-size: 12rem;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.48rem;
}
.kty__course-info-table-data-text-area a {
    display: inline-block;
    color: var(--KTY-Text-default, #121414);
    text-decoration-line: underline;
}
.kty__course-info-treatment-details {
    background-color: var(--KTY-Surface-program-item, #D7E9F7);
    padding: 15rem;
    margin-top: 16rem;
}
.kty__course-info-treatment-details-title {
    font-size: 12rem;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.48rem;
    margin-bottom: 4rem;
}
.kty__course-info-treatment-details-description {
    font-size: 12rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.48rem;
}
.kty__course-info-table-data-text {
    font-size: 12rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.48rem;
}
.kty__course-info-table-data-value {
    font-family: Jost;
    font-size: 24rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.96rem;
    width: fit-content;
}
.kty__course-info-table-data-item {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    background-color: var(--KTY-Surface-program-item, #D7E9F7);
    padding: 4rem;
    margin-bottom: 4rem;
    margin-right: 24em;
}
.kty__course-info-table-data-item:last-of-type {
    margin-bottom: 0;
}
.kty__course-info-table-data-item::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -18rem;
    display: block;
    content: '';
    background-image: url(../../images/kty-store/icon-plus.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 12rem;
    height: 12rem;
}
.kty__course-info-table-data-item:last-of-type::after {
    display: none;
}
.kty__course-info-table-data-block {
    margin-right: 8rem;
}
.kty__course-info-table-data-title {
    font-size: 13rem;
    font-weight: 700;
    line-height: 20rem;
    letter-spacing: 0.52rem;
}
.kty__course-info-table-data-subtitle {
    font-size: 12rem;
    font-weight: 400;
    line-height: 16rem;
    letter-spacing: 0.48rem;
}
.kty__course-info-table-data-time-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--KTY-Surface-white, #FFF);
    min-width: 36rem;
    min-height: 36rem;
    padding: 4rem 6rem;
}
.kty__course-info-table-data-time {
    color: var(--KTY-Text-accent, #F53B73);
    text-align: center;
    font-family: Jost;
    font-size: 18rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.72rem;
}
.kty__course-info-table-data-time-unit {
    color: var(--KTY-Text-program-item, #BCD0E0);
    font-family: Jost;
    font-size: 12rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.48rem;
}
.kty__course-info-table-data-price-wrapper {
    display: flex;
}
.kty__course-info-table-data-original-price {
    display: flex;
    font-size: 14rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.56rem;
    text-decoration-line: line-through;
}
.kty__course-info-table-data-single-price {
    font-size: 24rem;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.96rem;
}
.kty__course-info-table-data-single-price-unit {
    font-size: 12rem;
    font-weight: 400;
    letter-spacing: 0.48rem;
}
.kty__course-info-table-data-original-price::after {
    display: block;
    content: '';
    background-image: url(../../images/kty-store/icon-triangle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 10rem;
    height: 16rem;
    margin: 4rem 8rem;
}
.kty__course-info-table-data-note-wrapper {
    width: fit-content;
}
.kty__course-info-table-data-discount {
    color: var(--KTY-Text-accent, #F53B73);
    font-family: Jost;
    font-size: 24rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.96rem;
    width: fit-content;
}
.kty__course-info-table-data-discount-unit {
    color: var(--KTY-Text-default, #121414);
    font-size: 12rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.48rem;
}
.kty__course-info-table-data-note {
    color: var(--KTY-Text-default, #121414);
    font-size: 12rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.48rem;
    width: fit-content;
}
.kty__course-info-table-data-comments {
    font-size: 12rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.48rem;
    margin-top: 20rem;
}
.kty__course-info-table-item {
    display: flex;
    margin-bottom: 16rem;
}
.kty__course-info-table-item:last-of-type {
    margin-bottom: 0;
}
.kty__course-info-count {
    font-size: 14rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.56rem;
    text-align: center;
    margin-right: 8rem;
    min-width: 50rem;
}
.kty__course-info--price {
    font-size: 24rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.96rem;
}
.kty__course-info-price-per-session {
    font-size: 12rem;
    line-height: 170%;
    letter-spacing: 0.48rem;
}
.kty__course-info-fee-note {
    font-size: 12rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.48rem;
    margin-top: 16rem;
}
.kty__course-category-title{
    font-size: 22rem;
    font-weight: 700;
    line-height: 170%;
    margin-bottom: 20rem;
    margin-top: 100rem;
}
.kty__course-category-title:first-of-type{
    margin-top: 0;
}
.kty__course-category-description {
    font-size: 12rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.48rem;
    margin-top: 20rem;
}
@media screen and (min-width: 768px) {
    .kty__course-body {
        min-width: 1080rem;
        padding: 50rem 0 100rem;
    }
    .kty__course-content {
        max-width: 940rem;
        margin: 0 auto;
    }
    .kty__course-item {
        margin-bottom: 60rem;
    }
    .kty__course-title-badge {
        font-size: 18rem;
        letter-spacing: 2.16rem;
        height: 38rem;
        margin-right: 10rem;
    }
    .kty__course-title-badge-new {
        font-size: 18rem;
        line-height: 41rem;
        letter-spacing: 0.72rem;
        margin: 0 10rem 0 0;
    }
    .kty__course-title {
        font-size: 24rem;
        letter-spacing: 0.96rem;
        margin-bottom: 0;
    }
    .kty__course-block {
        margin-bottom: 20rem;
    }
    .kty__course-description {
        font-size: 18rem;
        letter-spacing: 0.72rem;
    }
    .kty__course-info-table-header-cell {
        font-size: 14rem;
        letter-spacing: 0.56rem;
        width: 120rem;
        padding: 16rem;
        vertical-align: middle;
    }
    .kty__course-info-table-data {
        vertical-align: middle;
        padding: 16rem;
        height: 100%;
    }
    .kty__course-info-table-data-list {
        margin-bottom: 16rem;
    }
    .kty__course-info-table-data-text {
        font-size: 16rem;
        letter-spacing: 0.64rem;
    }
    .kty__course-info-table-data-value {
        font-size: 32rem;
        letter-spacing: 1.28rem;
    }
    .kty__course-info-table-data-list {
        display: flex;
        flex-wrap: wrap;
    }
    .kty__course-info-table-data-item {
        padding: 6rem;
        margin: 0 36rem 4rem 0;
    }
    .kty__course-info-table-data-item:last-of-type {
        margin-bottom: 4rem;
    }
    .kty__course-info-table-data-item::after {
        right: -24rem;
    }
    .kty__course-info-table-data-block {
        margin-right: 4rem;
    }
    .kty__course-info-table-data-title {
        font-size: 16rem;
        line-height: 24rem;
        letter-spacing: 0.64rem;
    }
    .kty__course-info-table-data-subtitle {
        line-height: 24rem;
    }
    .kty__course-info-table-data-time-wrapper {
        min-width: 48rem;
        min-height: 48rem;
    }
    .kty__course-info-table-data-time {
        font-size: 24rem;
        letter-spacing: 0.96rem;
    }
    .kty__course-info-table-data-price-wrapper {
        align-items: center;
    }
    .kty__course-info-table-data-original-price {
        align-items: center;
        font-size: 16rem;
        letter-spacing: 0.64rem;
    }
    .kty__course-info-table-data-single-price {
        font-size: 32rem;
        letter-spacing: 1.28rem;
    }
    .kty__course-info-table-data-single-price-unit {
        font-size: 16rem;
        letter-spacing: 0.64rem;
    }
    .kty__course-info-table-data-original-price::after {
        width: 12rem;
        height: 20rem;
        margin: 6rem 20rem;
    }
    .kty__course-info-table-data-note-wrapper {
        display: flex;
        align-items: center;
    }
    .kty__course-info-table-data-discount {
        font-size: 32rem;
        letter-spacing: 1.28rem;
    }
    .kty__course-info-table-data-discount-unit {
        font-size: 16rem;
        letter-spacing: 0.64rem;
    }
    .kty__course-info-table-data-note {
        font-size: 16rem;
        letter-spacing: 0.64rem;
    }
    .kty__course-info-count {
        font-size: 16rem;
        letter-spacing: 0.64rem;
        margin-right: 20rem;
        min-width: 52rem;
    }
    .kty__course-info-price-wrapper {
        display: flex;
        align-items: center;
    }
    .kty__course-info--price {
        font-size: 32rem;
        letter-spacing: 1.28rem;
    }
    .kty__course-info-price-per-session {
        font-size: 16rem;
        letter-spacing: 0.64rem;
    }
    .kty__course-category-description {
        margin-top: 40rem;
    }
}

/* トレーナー */
.kty__store-trainer {
    background: var(--KTY-Background-03, #F1F5F9);
}
.kty__store-trainer-body {
    padding: 60rem 0;
    margin: 0 auto;
}
.kty__store-trainer-content {
    padding: 0 10rem;
}
.kty__store-trainer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40rem 20rem;
}
.kty__store-trainer-item {
    width: calc((100% - 20rem) / 2);
}
.kty__store-trainer-img {
    display: block;
    width: 120rem;
    border-radius: 60rem;
    margin: 0 auto 26rem;
}
.kty__store-trainer-name {
    font-size: 14rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.56rem;
    text-align: center;
    margin-bottom: 12rem;
}
.kty__store-trainer-name-highlight {
    font-size: 18rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.72rem;
}
.kty__store-trainer-description {
    font-size: 14rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.56rem;
}
.kty__store-trainer-note {
    font-size: 12rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.48rem;
    margin-top: 40rem;
}
@media screen and (min-width: 768px) {
    .kty__store-trainer-body {
        min-width: 1080rem;
        padding: 100rem 0;
    }
    .kty__store-trainer-content {
        max-width: 940rem;
        margin: 0 auto;
    }
    .kty__store-trainer-list {
        gap: 60rem 40rem;
    }
    .kty__store-trainer-item {
        display: flex;
        align-items: flex-start;
    }
    .kty__store-trainer-item {
        width: calc((100% - 40rem) / 2);
    }
    .kty__store-trainer-img {
        width: 152rem;
        border-radius: 76rem;
        margin: 0 20rem 0 0;
    }
    .kty__store-trainer-name {
        text-align-last: left;
    }
    .kty__store-trainer-name-highlight {
        font-size: 20rem;
        letter-spacing: 0.8em;
    }
}

/* バナー */
.kty__store-banner-body {
    padding: 40rem 0;
    margin: 0 auto;
}
.kty__store-banner-content {
    padding: 0 10rem;
}
.kty__store-banner-link {
    position: relative;
    display: block;
    background: var(--KTY-Background-01, #000);
    padding: 10rem 54rem 10rem 70rem;
}
.kty__store-banner-link::before,
.kty__store-banner-link::after {
    position: absolute;
    display: block;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
}
.kty__store-banner-link::before {
    top: 50%;
    left: 13rem;
    transform: translateY(-50%);
    background-image: url(../../images/kty-store/line-social-fukidashi.png);
    width: 54rem;
    height: 51.462rem;
}
.kty__store-banner-link::after {
    right: 20rem;
    bottom: 22rem;
    background-image: url(../../images/icon/icon-btn-white-arrow.svg);
    width: 12rem;
    height: 6rem;
}
.kty__store-banner-title {
    font-size: 18rem;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.72rem;
    color: var(--KTY-Text-blanked, #FFF);
    width: fit-content;
}
.kty__store-banner-subtitle {
    color: var(--KTY-Text-blanked, #FFF);
    text-align: center;
    font-size: 12rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.48rem;
    width: 212rem;
}
@media screen and (min-width: 768px) {
    .kty__store-banner-body {
        min-width: 1080rem;
        padding: 80rem 0;
    }
    .kty__store-banner-content {
        max-width: 556rem;
        margin: 0 auto;
    }
    .kty__store-banner-link {
        padding: 25rem 66rem 25rem 110rem;
    }
    .kty__store-banner-link::before {
        left: 34rem;
        width: 72rem;
        height: 68.616rem;
    }
    .kty__store-banner-link::after {
        right: 30rem;
        bottom: 33rem;
    }
    .kty__store-banner-title {
        font-size: 24rem;
        letter-spacing: 0.92rem;
        text-align: center;
        width: 100%;
    }
    .kty__store-banner-subtitle {
        font-size: 17rem;
        letter-spacing: 0.68rem;
        width: 100%;
    }
}

/* 404 */
.kty__not-found-body {
    max-width: 1460rem;
    padding: 120rem 0 60rem;
    margin: 0 auto;
}
.kty__not-found-content {
    padding: 0 10rem;
}
.kty__not-found-h1-title {
    color: #788085;
    font-size: 80rem;
    font-weight: 500;
    text-align: center;
    font-family: Jost;
    margin-bottom: 10rem;
}
.kty__not-found-h1-subtitle {
    color: #788085;
    font-size: 24rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30rem;
}
.kty__not-found-text {
    font-size: 14rem;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.56rem;
    text-align: center;
    padding: 0 20rem;
    margin-bottom: 40rem;
}
@media screen and (min-width: 768px) {
    .kty__not-found--btn {
        margin: 0 auto;
    }
}