html { 
    font-family: "Noto Sans JP", sans-serif;
    color: #454545;
    scroll-behavior: smooth;
}

body {
    min-width: 375px;
}

main.overflow-hidden {
    width: 100%;
    overflow: hidden;
    position: relative;
}

span {
    display: inline-block;
}

picture {
    display: block;
}

img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

a {
    display: inline-block;
}

@media screen and (min-width: 901px) {
    .hover-nomal {
        transition: opacity .5s 0s cubic-bezier(.44,.14,.09,1.02);
    }

    .hover-nomal:hover {
        opacity: .7;
    }
}

/* layout */
.l-wrapper {
    padding-left: 45px;
    padding-right: 45px;
}

.l-inner {
    margin: 0 auto;
    max-width: 1240px;
}

@media screen and (max-width: 900px) {
    .l-wrapper {
        padding-left: 25px;
        padding-right: 25px;
    }

    .l-inner {
        max-width: 500px;
    }
}

/* common */
.pc-only {
    display: block;
}

.br-pc-only {
    display: inline-block;
}

.sp-only {
    display: none;
}

.br-sp-only {
    display: none;
}

@media screen and (max-width: 900px) {
    .pc-only {
        display: none;
    }

    .br-pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .br-sp-only {
        display: inline-block;
    }
}

/*===========================================================================*/
/*  utility  */
/*===========================================================================*/
.u-en {
    font-family: "Poppins", sans-serif;
}

.u-overflow-hidden {
    overflow: hidden;
}

/* hover */
.hover-link-txt::before {
    width: 0;
    transition: width .5s 0s cubic-bezier(.44,.14,.09,1.02);
}

@media screen and (min-width: 901px) {
    .hover-link:hover .hover-link-txt::before {
        width: 100%;
    }
}

/* color */
.u-color-white {
    color: #fff;
}

.u-color-pink {
    color: #FF9AA9;
}

.u-txtGradation-pink {
    background: linear-gradient(90deg, #FF92B3 0%, #FFC862 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.u-txtGradation-green {
    background: linear-gradient(270deg, #7AF3AC 0%, #47ACDE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.u-txtGradation-all {
    background: linear-gradient(90deg, #F1A0B8 0%, #FFBD7B 41%, #97DDB8 70%, #82B5E8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.u-bgGradation-pink {
    background: linear-gradient(90deg, #FF92B3 0%, #FFC862 100%);
}

.u-bgGradation-green {
    background: linear-gradient(270deg, #7AF3AC 0%, #47ACDE 100%);
}

.u-bgGradation-all {
    background: linear-gradient(91deg, #F1A0B8 -4.01%, #FFBD7B 40.07%, #97DDB8 71.25%, #82B5E8 103.51%);
}

/*===========================================================================*/
/*  text  */
/*===========================================================================*/
.c-secMv {
    max-width: 1340px;
    margin: 0 auto;
    position: relative;
}

.c-secMv__img {
    height: 472px;
    overflow: hidden;
    border-radius: 20px;
}

.c-secMv__img img {
    height: 100%;
    object-fit: cover;
}

.c-secMv__bg {
    position: absolute;
    width: 100%;
    height: 154px;
    left: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
}

.c-headEn {
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 110px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: .01em;
}

.c-head {
    margin-top: 20px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .1em;
}

@media screen and (max-width: 900px) {
    .c-secMv {
        width: calc(100% + 26px);
        left: -13px;
    }
    .c-secMv__img {
        height: 260px;
        border-radius: 10px;
    }

    .c-secMv__bg {
        height: 64px;
        border-radius: 10px;
    }

    .c-headEn {
        font-size: 43px;
    }

    .c-head {
        margin-top: 8px;
        font-size: 15px;
    }
}

/*===========================================================================*/
/*  btn  */
/*===========================================================================*/
.c-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 372px;
    height: 74px;
    overflow: hidden;
    border-radius: 8px;
    background: #FF2566;
}

.c-btn::before {
    background: url('../img/cta-arrow.webp') no-repeat center center/contain;
    content: '';
    height: 12px;
    right: 18px;
    position: absolute;
    top: 50%;
    width: 15px;
    transform: translate(0, -50%);
    transition: transform .5s 0s cubic-bezier(.44,.14,.09,1.02);
}

.c-btn .--free {
    position: absolute;
    width: 28px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    background: #EAE53F;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.c-btn .--txt {
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .09em;
    position: relative;
}
.c-btn .--txt::before {
    background-color: #fff;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    bottom: 0;
}

@media screen and (min-width: 901px) {
    .c-btn:hover:before {
        transform: translate(5px, -50%);
    }
}

@media screen and (max-width: 900px) {
    .c-btn {
        max-width: 243px;
        height: 48px;
        border-radius: 6px;
        padding-right: 7px;
    }

    .c-btn::before {
        height: 10px;
        right: 14px;
        width: 12px;
    }

    .c-btn .--free {
        width: 18px;
        font-size: 10px;
    }

    .c-btn .--txt {
        font-size: 13px;
    }
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.p-lpHamburgerBtn {
    position: fixed;
    z-index: 99;
    width: 64px;
    height: 64px;
    border-radius: 6px;
    background: #611D2F;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    top: 40px;
    right: 40px;
    cursor: pointer;
}

.p-lpHamburgerBtn .--txt {
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .01em;
    position: relative;
}

.p-lpHamburgerBtn .--txt .--menu {
    transition: opacity .5s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-lpHamburgerBtn.js-active .--txt .--menu {
    opacity: 0;
}

.p-lpHamburgerBtn .--txt .--close {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: opacity .5s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-lpHamburgerBtn.js-active .--txt .--close {
    opacity: 1;
}

.p-lpHamburgerBtn .--bars {
    width: 40px;
    height: 8px;
    position: relative;
}

.p-lpHamburgerBtn .--bars span {
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    top: 0;
    background-color: #fff;
    transition: transform .5s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-lpHamburgerBtn .--bars span:last-of-type {
    top: unset;
    bottom: 0;
}

.p-lpHamburgerBtn.js-active .--bars span:nth-of-type(1) {
    transform: translate(0px, 3px) rotate(15deg);
}
.p-lpHamburgerBtn.js-active .--bars span:nth-of-type(2) {
    transform: translate(0px, -3px) rotate(-15deg);
}

.p-lpHamburger {
    position: fixed;
    height: 100vh;
    width: 432px;
    padding: 140px 52px 50px 40px;
    background-color: #fff;
    top: 0;
    right: 0;
    z-index: 90;
    fill: #FFF;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.15);
    transition: transform .5s 0s cubic-bezier(.44,.14,.09,1.02);
    transform: translate(101%, 0);
}
.p-lpHamburger.js-active {
    transform: translate(0, 0);
}

.p-lpHamburger ul li {
    padding: 18px 0;
    border-bottom: #dfdfdf solid 1px;
}

.p-lpHamburger ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-lpHamburger ul li .--txts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.p-lpHamburger ul li .--large {
    font-feature-settings: 'palt' on;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .1em;
    position: relative;
}

.p-lpHamburger ul li .--large::before {
    background-color: #454545;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    bottom: 0;
}

.p-lpHamburger ul li .--small {
    margin-top: 6px;
    font-feature-settings: 'palt' on;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .1em;
}

.p-lpHamburger ul li .--arrow {
    width: 24px;
    transition: transform .5s 0s cubic-bezier(.44,.14,.09,1.02);
}

@media screen and (min-width: 901px) {
    .p-lpHamburger ul li a:hover .--arrow {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 900px) {
    .p-lpHamburgerBtn {
        width: 43px;
        height: 43px;
        border-radius: 5px;
        gap: 5px;
        top: 12px;
        right: 12px;
    }

    .p-lpHamburgerBtn .--txt {
        font-size: 10px;
    }

    .p-lpHamburgerBtn .--bars {
        width: 27px;
        height: 6px;
    }

    .p-lpHamburgerBtn .--bars span {
        height: 1px;
    }

    .p-lpHamburger {
        height: auto;
        width: 100%;
        padding: 55px 25px 50px;
        border-radius: 0 0 18px 18px;
        transform: translate(0, -101%);
    }
}

/*===========================================================================*/
/*  mv  */
/*===========================================================================*/
.p-mv {
    aspect-ratio: 1360/766;
}

.p-mv video {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 900px) {
    .p-mv {
        aspect-ratio: 500/666;
    }
}

/*===========================================================================*/
/*  index  */
/*===========================================================================*/
.p-index {
    position: relative;
    padding-top: 100px;
    padding-bottom: 30px;
}
.p-index::before {
    background: url('../img/index-bg.webp') no-repeat center center/cover;
    content: '';
    height: calc(100% + 242px);
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.p-index .l-inner {
    position: relative;
    z-index: 2;
}

.p-index__btn {
    text-align: center;
    margin-top: 60px;
}

.p-index__subHead {
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .12em;
}

.p-index__txt {
    margin-top: 25px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 20px;
    line-height: 1.85;
    letter-spacing: .1em;
}

.p-index__mv {
    margin-top: 100px;
}

.p-index__content {
    z-index: 2;
    margin-top: -66px;
}

.p-index__list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 30px;
}

.p-index__list li {
    padding: 18px 0;
    border-bottom: #dfdfdf solid 1px;
    width: calc(100%/3 - 100px/3);
}

.p-index__list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-index__list li .--txts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.p-index__list li .--large {
    font-feature-settings: 'palt' on;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: .1em;
    position: relative;
}

.p-index__list li .--large::before {
    background-color: #454545;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    bottom: 0;
}

.p-index__list li .--small {
    margin-top: 6px;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .1em;
}

.p-index__list li .--arrow {
    width: 24px;
    transition: transform .5s 0s cubic-bezier(.44,.14,.09,1.02);
}

@media screen and (min-width: 901px) {
    .p-index__list li a:hover .--arrow {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 900px) {
    .p-index {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .p-index::before {
        background: url('../img/index-bg-sp.webp') no-repeat center center/cover;
        height: calc(100% + 108px);
    }

    .p-index__subHead {
        font-size: 36px;
    }

    .p-index__txt {
        margin-top: 15px;
        text-align: left;
        font-size: 15px;
    }

    .p-index__mv {
        margin-top: 50px;
    }

    .p-index__content {
        z-index: 2;
        margin-top: -29px;
    }

    .p-index__list {
        margin-top: 5px;
        column-gap: 20px;
        row-gap: 7px;
    }

    .p-index__list li {
        padding: 15px 0;
        width: calc(50% - 10px);
    }

    .p-index__list li .--large {
        font-size: 15px;
    }

    .p-index__list li .--small {
        margin-top: 5px;
        font-size: 11px;
    }

    .p-index__list li .--arrow {
        width: 18px;
    }

    .p-index__btn {
        margin-top: 25px;
    }
}

/*===========================================================================*/
/*  info  */
/*===========================================================================*/
.p-info {
    position: relative;
    z-index: 2;
    padding-top: 190px;
}

.p-info__bg {
    height: 567px;
    left: 50%;
    position: absolute;
    top: 0;
    width: 100%;
    min-width: 1920px;
    transform: translate(-50%, 0);
}
.p-info__bg img {
    height: 100%;
    object-fit: fill;
}

.p-info__inner {
    position: relative;
    z-index: 2;
}

.p-info__head {
    margin-top: 52px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: .13em;
}

.p-info__btns {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.p-info__btn {
    cursor: pointer;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .13em;
    width: 275px;
    height: 76px;
    border-radius: 100vh;
    border: #dfdfdf solid 1px;
    position: relative;
    display: flex;
    padding: 0 25px;
    align-items: center;
    transition: color .5s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-info__btn.js-active {
    color: #fff;
    background: linear-gradient(90deg, #FF92B3 0%, #FFC862 100%);
    border: none;
    pointer-events: none;
}

.p-info__btn::before {
    background: url('../img/btn-arrow-pink.webp') no-repeat center center/contain;
    content: '';
    height: 24px;
    right: 25px;
    position: absolute;
    top: 50%;
    width: 24px;
    transform: translate(0, -50%);
    transition: transform .5s 0s cubic-bezier(.44,.14,.09,1.02), opacity .5s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-info__btn::after {
    background: url('../img/btn-arrow-white.webp') no-repeat center center/contain;
    content: '';
    height: 24px;
    right: 25px;
    position: absolute;
    top: 50%;
    width: 24px;
    transform: translate(0, -50%);
    opacity: 0;
}
.p-info__btn.js-active::before {
    opacity: 0;
}
.p-info__btn.js-active::after {
    opacity: 1;
}

.p-info__btn .hover-link-txt {
    position: relative;
}
.p-info__btn .hover-link-txt::before {
    background-color: #454545;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    bottom: 0;
}

.p-info__contents {
    margin: 60px auto 0;
    max-width: 1030px;
    padding: 65px 40px;
    border-radius: 20px;
    background: #F6F5EF;
}

.p-info__content {
    max-width: 894px;
    margin: 0 auto;
    display: none;
}
.p-info__content.js-active {
    display: block;
}

.p-info__content dl {
    display: flex;
    padding: 25px 0;
    border-bottom: #cacaca solid 1px;
}
.p-info__content dl:nth-of-type(1) {
    padding-top: 0;
}
.p-info__content dl:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

.p-info__content dl dt {
    width: 140px;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .08em;
}

.p-info__content dl dd {
    width: calc(100% - 140px);
    font-feature-settings: 'palt' on;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .08em;
}

.p-info__content dl dd li {
    position: relative;
    padding-left: 14px;
}
.p-info__content dl dd li::before {
    content: '・';
    left: 0;
    position: absolute;
    top: 0;
}

@media screen and (min-width: 901px) {
    .p-info__btn:hover:before {
        transform: translate(0, -50%) rotate(360deg);
    }
}

@media screen and (max-width: 900px) {
    .p-info {
        position: relative;
        z-index: 2;
        padding-top: 71px;
    }

    .p-info__bg {
        height: 187px;
        min-width: 476px;
    }
    .p-info__bg img {
        object-fit: fill;
    }

    .p-info__head {
        margin-top: 30px;
        font-size: 24px;
    }

    .p-info__btns {
        margin-top: 30px;
        gap: 0;
        position: relative;
        width: calc(100% + 26px);
        left: -13px;
    }

    .p-info__btn {
        font-size: 13px;
        text-align: center;
        width: calc(100%/3);
        height: 61px;
        border-radius: 16px 16px 0 0;
        border: #dfdfdf solid 1px;
        border-bottom: none;
        padding: 0;
        justify-content: center;
        padding-bottom: 13px;
    }
    .p-info__btn.js-active {
        color: #fff;
        background: linear-gradient(90deg, #FF92B3 0%, #FFC862 100%);
        border: none;
        pointer-events: none;
    }

    .p-info__btn::before {
        display: none;
    }
    .p-info__btn::after {
        display: none;
    }

    .p-info__contents {
        margin: -13px auto 0;
        position: relative;
        width: calc(100% + 26px);
        left: -13px;
        padding: 30px;
        border-radius: 12px;
    }

    .p-info__content dl {
        display: block;
        padding: 20px 0;
    }

    .p-info__content dl dt {
        width: 100%;
        font-size: 13px;
    }

    .p-info__content dl dd {
        width: 100%;
        font-size: 13px;
        margin-top: 5px;
    }

    .p-info__content dl dd li {
        padding-left: 13px;
    }
}

/*===========================================================================*/
/*  flow  */
/*===========================================================================*/
.p-flow {
    position: relative;
    padding-top: 120px;
    padding-bottom: 150px;
}

.p-flow__bg {
    position: absolute;
    left: 0;
    top: -795px;
    width: 100%;
    height: 1373px;
}

.p-flow__bg img {
    height: 100%;
    object-fit: fill;
}

.p-flow__inner {
    position: relative;
    z-index: 2;
}

.p-flow__list {
    margin: 50px auto 0;
    max-width: 1010px;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.p-flow__list::before {
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    width: calc(100% - 19.3%);
    transform: translate(-50%, 0);
    border-top: #dcdcdc dashed 1px;
}

.p-flow__list li {
    position: relative;
    width: 19.3%;
    padding-top: 39px;
}

.p-flow__list li .--num {
    position: absolute;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 100vh;
    top: -24px;
    left: calc(50% - 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 17px;
    line-height: 1;
    letter-spacing: .01em;
    padding-top: 2px;
    padding-right: 2px;
}

.p-flow__list--icon {
    max-width: 52px;
    margin: 0 auto;
}

.p-flow__list--head {
    margin-top: 12px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: .13em;
}

.p-flow__list--txt {
    margin-top: 12px;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .08em;
}

.p-flow__btn {
    text-align: center;
    margin-top: 60px;
}

@media screen and (max-width: 900px) {
    .p-flow {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .p-flow__bg {
        top: -163px;
        height: 417px;
    }

    .p-flow__list {
        margin: 25px 0 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .p-flow__list::before {
        content: '';
        height: calc(100% - 93px);
        left: 21px;
        position: absolute;
        top: 21px;
        width: calc(100% - 21px);
        transform: translate(0, 0);
        border-top: none;
        border-left: #dcdcdc dashed 1px;
    }

    .p-flow__list li {
        position: relative;
        width: 100%;
        padding-top: 0;
        padding-left: 57px;
    }

    .p-flow__list li .--num {
        width: 42px;
        height: 42px;
        border-radius: 100vh;
        top: 0;
        left: 0;
        font-size: 14px;
        padding-top: 1px;
        padding-right: 1px;
    }

    .p-flow__list--heads {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .p-flow__list--icon {
        max-width: 42px;
        margin: 0;
    }

    .p-flow__list--head {
        margin-top: 0;
        text-align: left;
        font-size: 16px;
    }

    .p-flow__list--txt {
        margin-top: 8px;
        font-size: 13px;
    }

    .p-flow__btn {
        margin-top: 30px;
    }
}

/*===========================================================================*/
/*  policy  */
/*===========================================================================*/
.p-policy {
    position: relative;
    padding-bottom: 120px;
}

.p-policy__bg {
    position: absolute;
    width: 100%;
    height: 2860px;
    left: 0;
    top: 1404px;
}

.p-policy__bg img {
    height: 100%;
    object-fit: fill;
}

.p-policy__inner {
    position: relative;
    z-index: 2;
    margin-top: -73px;
}

.p-policy__head {
    margin-top: 45px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.64;
    letter-spacing: .12em;
}

.p-policy__txt {
    margin-top: 30px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: .12em;
}

.p-policy__contents {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    padding: 94px 0 100px;
}
.p-policy__contents::before {
    background-color: #F6F5EF;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    width: calc(100vw - 40px);
    max-width: 1340px;
    transform: translate(-50%, 0);
    border-radius: 20px;
    z-index: -1;
}

.p-policy__subHead {
    text-align: center;
    color: #fff;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 20px;
    line-height: 1.64;
    letter-spacing: .12em;
}
.p-policy__subHead.--02 {
    margin-top: 124px;
}

.p-policy__subHead span {
    position: relative;
    z-index: 2;
}
.p-policy__subHead span::before {
    background: linear-gradient(91deg, #F1A0B8 -4.01%, #FFBD7B 40.07%, #97DDB8 71.25%, #82B5E8 103.51%);
    content: '';
    height: calc(100% - 2px);
    left: -14px;
    position: absolute;
    top: -4px;
    width: calc(100% + 28px);
    z-index: -1;
}

.p-policy__head02 {
    margin-top: 27px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.64;
    letter-spacing: .12em;
}

.p-policy__content--txt {
    margin-top: 28px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: .1em;
}
.p-policy__content--txt.--02 {
    margin-top: 50px;
}

.p-policy__content--img {
    max-width: 1100px;
    margin: 50px auto 0;
}

.p-policy__list {
    margin-top: 50px;
    z-index: 2;
    border-top: #dedede solid 1px;
}

.p-policy__list li {
    padding: 25px 0;
    border-bottom: #dedede solid 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.p-policy__list li:nth-of-type(2n) {
    flex-direction: row;
}

.p-policy__list--img {
    overflow: hidden;
    width: calc(100%*694/1240);
    border-radius: 10px;
}

.p-policy__list--txts {
    width: calc(100%*462/1240);
}

.p-policy__list--num {
    font-feature-settings: 'palt' on;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: .01em;
}

.p-policy__list--head {
    margin-top: 36px;
    font-feature-settings: 'palt' on;
    font-size: 32px;
    line-height: 1.55;
    letter-spacing: .12em;
}

.p-policy__list--txt {
    margin-top: 28px;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: .1em;
}

.p-policy__head03 {
    margin-top: 100px;
    padding: 14px 20px 15px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: .12em;
}

.p-policy__slide--pcImg {
    margin-top: 40px;
}

.p-policy__btn {
    text-align: center;
    margin-top: 60px;
}

@media screen and (max-width: 900px) {
    .p-policy {
        position: relative;
        padding-bottom: 70px;
    }

    .p-policy__bg {
        height: 2550px;
        top: 1110px;
    }

    .p-policy__inner {
        margin-top: -28px;
    }

    .p-policy__head {
        margin-top: 30px;
        font-size: 18px;
    }

    .p-policy__txt {
        margin-top: 15px;
        text-align: left;
        font-size: 14px;
        letter-spacing: .1em;
    }

    .p-policy__contents {
        margin-top: 30px;
        padding: 44px 0 40px;
    }
    .p-policy__contents::before {
        width: calc(100vw - 26px);
        max-width: 526px;
        border-radius: 8px;
    }

    .p-policy__subHead {
        font-size: 16px;
    }
    .p-policy__subHead.--02 {
        margin-top: 62px;
    }

    .p-policy__subHead span::before {
        height: 100%;
        left: -10px;
        top: -4px;
        width: calc(100% + 20px);
    }

    .p-policy__head02 {
        margin-top: 16px;
        font-size: 24px;
        line-height: 1.58;
    }

    .p-policy__content--txt {
        margin-top: 20px;
        text-align: left;
        font-size: 14px;
    }
    .p-policy__content--txt.--02 {
        margin-top: 30px;
    }

    .p-policy__content--img {
        margin: 30px auto 0;
    }

    .p-policy__list {
        margin-top: 20px;
    }

    .p-policy__list li {
        display: block;
        padding: 20px 0;
        border-bottom: #dedede solid 1px;
    }

    .p-policy__list li:nth-of-type(2n) {
        flex-direction: row;
    }

    .p-policy__list--img {
        width: 100%;
    }

    .p-policy__list--txts {
        width: 100%;
        margin-top: 25px;
    }

    .p-policy__list--num {
        font-size: 18px;
    }

    .p-policy__list--head {
        margin-top: 15px;
        font-size: 20px;
    }

    .p-policy__list--txt {
        margin-top: 10px;
        font-size: 14px;
    }

    .p-policy__head03 {
        margin-top: 60px;
        padding: 7px 20px 8px;
        border-radius: 8px;
        font-size: 16px;
    }

    .p-policy__btn {
        margin-top: 30px;
    }

    .p-policy__slide--wrapper {
        margin-top: 18px;
        position: relative;
        width: calc(100% + 50px);
        left: -25px;
        overflow: hidden;
    }

    .p-policy__slide {
        display: flex;
        gap: 20px;
        width: 320px;
        margin: 0 auto;
        transition: transform 0.4s ease;
    }

    .p-policy__slide li {
        width: 320px;
        min-width: 320px;
    }

    .p-policy__slide li figure {
        width: 320px;
    }

    .p-policy__slide--prev {
        position: absolute;
        width: 24px;
        height: 24px;
        background: url('../img/example-btn-prev.webp') no-repeat center center/contain;
        top: 50%;
        transform: translate(0, -50%);
        right: calc(50% + 156px);
    }
    .p-policy__slide--next {
        position: absolute;
        width: 24px;
        height: 24px;
        background: url('../img/example-btn-next.webp') no-repeat center center/contain;
        top: 50%;
        transform: translate(0, -50%);
        left: calc(50% + 156px);
    }

    .p-policy__slide--pagination {
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .p-policy__slide--pagination span {
        width: 12px;
        height: 12px;
        border-radius: 100vh;
        background: #d9d9d9;
    }

    .p-policy__slide--pagination span.active {
        background: linear-gradient(90deg, #FF92B3 0%, #FFC862 100%);
    }
}

/*===========================================================================*/
/*  works  */
/*===========================================================================*/
.p-works {
    position: relative;
    padding-bottom: 150px;
}

.p-works__inner {
    position: relative;
    z-index: 2;
    margin-top: -73px;
}

.p-works__contents {
    margin-top: 60px;
    position: relative;
    padding-right: calc(50% + 41px);
}

.p-works__imgs {
    position: absolute;
    height: 100%;
    width: calc(50vw - 14px);
    top: 0;
    left: calc(50% + 14px);
    overflow: hidden;
    border-radius: 6px;
}

.p-works__img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .5s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-works__img.js-active {
    opacity: 1;
}

.p-works__img img {
    height: 100%;
    object-fit: cover;
}

.p-works__list li {
    border-bottom: #dedede solid 1px;
}

.p-works__list--heads {
    cursor: pointer;
    padding: 35px 0;
}
#work-btn01 {
    padding-top: 0;
}

.p-works__list--head {
    position: relative;
    padding-left: 25px;
    color: #B2B2B2;
    font-feature-settings: 'palt' on;
    font-size: 20px;
    line-height: 1;
    letter-spacing: .12em;
    transition: color .5s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-works__list--head::before {
    background-color: #b2b2b2;
    content: '';
    height: 10px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 10px;
    border-radius: 100vh;
    transition: background-color .5s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-works__list--heads.js-active .p-works__list--head {
    color: #F1A0B8;
}
.p-works__list--heads.js-active .p-works__list--head::before {
    background-color: #F1A0B8;
}

.p-works__list--txts {
    padding: 5px 0 40px 25px;
    display: none;
}
.p-works__list--txts.js-active {
    display: block;
}

.p-works__list--head02 {
    font-feature-settings: 'palt' on;
    font-size: 27px;
    line-height: 1.3;
    letter-spacing: .12em;
}

.p-works__list--txt {
    margin-top: 25px;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: .1em;
}

.p-works__list--tags {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.p-works__list--tag {
    color: #7B7B7B;
    font-feature-settings: 'palt' on;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: .1em;
    padding: 3px 8px 4px;
    background-color: #E9E7DC;
    border-radius: 6px;
}

.p-works__list--btn {
    margin-top: 34px;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .13em;
}

.p-works__list--btn a {
    position: relative;
    padding-left: 34px;
    text-decoration: underline;
}

.p-works__list--btn a::before {
    background: url('../img/work-arrow.webp') no-repeat center center/contain;
    content: '';
    height: 24px;
    left: 0;
    position: absolute;
    top: calc(50% + 1px);
    width: 24px;
    transform: translate(0, -50%);
    transition: transform .5s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-works__btn {
    text-align: center;
    margin-top: 60px;
}

@media screen and (min-width: 901px) {
    .p-works__list--heads:hover .p-works__list--head {
        color: #F1A0B8;
    }
    .p-works__list--heads:hover .p-works__list--head::before {
        background-color: #F1A0B8;
    }

    .p-works__list--btn a:hover:before {
        transform: translate(0, -50%) rotate(360deg);
    }
}

@media screen and (max-width: 900px) {
    .p-works {
        padding-bottom: 60px;
    }

    .p-works__inner {
        margin-top: -29px;
    }

    .p-works__contents {
        margin-top: 30px;
        padding-right: 0;
    }

    .p-works__list--heads {
        padding: 22px 0;
    }
    #work-btn01 {
        padding-top: 0;
    }

    .p-works__list--head {
        padding-left: 15px;
        font-size: 16px;
    }
    .p-works__list--head::before {
        height: 7px;
        top: 5px;
        width: 7px;
    }

    .p-works__list--txts {
        padding: 0 0 31px;
    }

    .p-works__list--img {
        overflow: hidden;
        border-radius: 10px;
    }

    .p-works__list--head02 {
        margin-top: 17px;
        font-size: 20px;
        line-height: 1.5;
    }

    .p-works__list--txt {
        margin-top: 10px;
        font-size: 13px;
    }

    .p-works__list--tags {
        margin-top: 15px;
        gap: 6px;
    }

    .p-works__list--tag {
        font-size: 10px;
        padding: 3px 6px 4px;
    }

    .p-works__list--btn {
        margin-top: 24px;
    }

    .p-works__btn {
        margin-top: 30px;
    }
}

/*===========================================================================*/
/*  p-schedule  */
/*===========================================================================*/
.p-schedule  {
    padding-bottom: 150px;
}

.p-schedule__inner {
    position: relative;
    z-index: 2;
    margin-top: -73px;
}

.p-schedule__contents {
    max-width: 1170px;
    margin: 50px auto 0;
}

.p-schedule__content {
    display: none;
}
.p-schedule__content.js-active {
    display: block;
}

.p-schedule__btn {
    text-align: center;
    margin-top: 60px;
}

@media screen and (max-width: 900px) {
    .p-schedule  {
        padding-bottom: 60px;
    }

    .p-schedule__inner {
        margin-top: -29px;
    }

    .p-schedule__contents {
        max-width: 1170px;
        margin: -13px 0 0;
        position: relative;
        z-index: 2;
        width: calc(100% + 26px);
        left: -13px;
        border-radius: 10px;
        background-color: #f6f5ef;
        padding: 25px;
    }

    .p-schedule__btn {
        margin-top: 30px;
    }
}

/*===========================================================================*/
/*  support  */
/*===========================================================================*/
.p-support {
    padding-bottom: 150px;
}

.p-support__inner {
    position: relative;
    z-index: 2;
    margin-top: -73px;
}

.p-support__head {
    margin-top: 50px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.64;
    letter-spacing: .12em;
}

.p-support__subHead {
    margin-top: 52px;
    color: #797979;
    font-feature-settings: 'palt' on;
    font-size: 37px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .12em;
    text-align: center;
}

.p-support__subHead span {
    position: relative;
    padding: 0 67px;
}
.p-support__subHead span::before {
    background: url('../img/support-txt-left.webp') no-repeat center center/contain;
    content: '';
    height: 106px;
    left: 0;
    position: absolute;
    bottom: -37px;
    width: 67px;
}
.p-support__subHead span::after {
    background: url('../img/support-txt-right.webp') no-repeat center center/contain;
    content: '';
    height: 106px;
    right: 0;
    position: absolute;
    bottom: -37px;
    width: 67px;
}

.p-support__list {
    margin-top: 87px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 80px;
    row-gap: 30px;
}

.p-support__list li {
    position: relative;
    padding: 120px 0 28px;
    width: calc(100%/3 - 160px/3);
}
.p-support__list li:nth-of-type(3n - 1)::before {
    background-color: #d0d0d0;
    content: '';
    height: 100%;
    left: -40px;
    position: absolute;
    top: 0;
    width: 1px;
}
.p-support__list li:nth-of-type(3n - 1)::after {
    background-color: #d0d0d0;
    content: '';
    height: 100%;
    right: -40px;
    position: absolute;
    top: 0;
    width: 1px;
}

.p-support__list--icon {
    position: absolute;
    width: 52px;
    top: 24px;
    left: calc(50% - 26px);
}

.p-support__list--head {
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 28px;
    line-height: 1.6;
    letter-spacing: .12em;
}

.p-support__list--heads {
    position: relative;
}

.p-support__list--caution {
    position: absolute;
    width: 100%;
    text-align: center;
    top: calc(100% + 1px);
    font-feature-settings: 'palt' on;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: .12em;
}

.p-support__list--txt {
    margin-top: 32px;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: .1em;
}

.p-support__btn {
    text-align: center;
    margin-top: 40px;
}

@media screen and (max-width: 900px) {
    .p-support {
        padding-bottom: 60px;
    }

    .p-support__inner {
        margin-top: -29px;
    }

    .p-support__head {
        margin-top: 30px;
        font-size: 18px;
        line-height: 1;
    }

    .p-support__subHead {
        margin-top: 30px;
        font-size: 18px;
    }

    .p-support__subHead span {
        padding: 0 29px;
    }
    .p-support__subHead span::before {
        height: 50px;
        bottom: -17px;
        width: 32px;
    }
    .p-support__subHead span::after {
        height: 50px;
        bottom: -17px;
        width: 32px;
    }

    .p-support__list {
        margin-top: 18px;
        column-gap: 0;
        row-gap: 0;
    }

    .p-support__list li {
        position: relative;
        padding: 15px 0 15px 90px;
        width: 100%;
        border-bottom: #d0d0d0 solid 1px;
    }
    .p-support__list li:nth-of-type(3n - 1)::before {
        display: none;
    }
    .p-support__list li:nth-of-type(3n - 1)::after {
        display: none;
    }

    .p-support__list--icon {
        width: 40px;
        top: calc(50% - 20px);
        left: 20px;
    }

    .p-support__list--head {
        text-align: left;
        font-size: 20px;
    }

    .p-support__list--heads {
        position: relative;
    }

    .p-support__list--caution {
        position: relative;
        text-align: left;
        top: unset;
    }

    .p-support__list--txt {
        margin-top: 5px;
        font-size: 14px;
    }

    .p-support__btn {
        margin-top: 30px;
    }
}

/*===========================================================================*/
/*  member  */
/*===========================================================================*/
.p-member {
    padding-bottom: 150px;
}

.p-member__inner {
    position: relative;
    z-index: 2;
    margin-top: -72px;
}

.p-member__list {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 57px;
    justify-content: space-between;
}

.p-member__list li {
    width: 30.7%;
}

.p-member__list--link {
    display: block;
}

.p-member__list--imgs {
    position: relative;
}

.p-member__list--badges {
    position: absolute;
    z-index: 3;
    width: 148px;
    left: 15px;
    top: -17px;
    filter: drop-shadow(10px 10px 15px rgba(93, 99, 107, 0.30));
    transform: translateZ(0);
}
.p-member__list--badges.--03 {
    width: 217px;
}

.p-member__list--img {
    overflow: hidden;
    border-radius: 10px;
}

.p-member__list--img img {
    transition: transform .5s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-member__list--txts {
    position: relative;
    z-index: 2;
    margin-top: -14px;
    padding: 0 15px;
}

.p-member__list--tag span {
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: .1em;
    padding: 3px 8px 4px;
    border-radius: 6px;
    background: linear-gradient(95deg, rgba(235, 100, 140, 0.60) -15.84%, rgba(255, 168, 82, 0.60) 34.76%, rgba(94, 223, 154, 0.60) 70.56%, rgba(97, 159, 221, 0.60) 107.58%);
    backdrop-filter: blur(3.9px);
}

.p-member__list--head {
    margin-top: 6px;
    font-feature-settings: 'palt' on;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .1em;
}

.p-member__list--post {
    margin-top: 8px;
    color: #989898;
    font-feature-settings: 'palt' on;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: .1em;
}

.p-member__list--arrow {
    width: 32px;
    margin-top: 15px;
}

.p-member__btn {
    text-align: center;
    margin-top: 40px;
}

@media screen and (min-width: 901px) {
    .p-member__list--link:hover .p-member__list--img img {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 900px) {
    .p-member {
        padding-bottom: 60px;
    }

    .p-member__inner {
        margin-top: -29px;
    }

    .p-member__list {
        margin-top: 30px;
        row-gap: 20px;
    }

    .p-member__list li {
        width: calc(50% - 10px);
    }

    .p-member__list--badges {
        width: 53px;
        left: 5px;
        top: unset;
        bottom: 16px;
    }
    .p-member__list--badges.--03 {
        width: 134px;
    }
    .p-member__list--badges.--04 {
        width: 82px;
    }
    .p-member__list--badges.--05 {
        width: 84px;
    }
    .p-member__list--badges.--06 {
        width: 84px;
    }

    .p-member__list--img {
        overflow: hidden;
        border-radius: 10px;
    }

    .p-member__list--img img {
        transition: transform .5s 0s cubic-bezier(.44,.14,.09,1.02);
    }

    .p-member__list--txts {
        margin-top: -11px;
        padding: 0;
    }

    .p-member__list--tag {
        padding: 0 5px;
    }

    .p-member__list--tag span {
        font-size: 10px;
    }

    .p-member__list--head {
        margin-top: 8px;
        font-size: 13px;
    }

    .p-member__list--post {
        margin-top: 5px;
        font-size: 10px;
    }

    .p-member__list--arrow {
        width: 29px;
        margin-top: 10px;
    }

    .p-member__btn {
        margin-top: 30px;
    }
}

/*===========================================================================*/
/*  application  */
/*===========================================================================*/
.p-application {
    padding-bottom: 100px;
}

.p-application__inner {
    position: relative;
    z-index: 2;
    margin-top: -73px;
}

.p-application__contents {
    margin: 50px auto 0;
    max-width: 1026px;
}

.p-application__list {
    margin: 30px auto 0;
    max-width: 1026px;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: .1em;
}

.p-application__list li {
    position: relative;
    padding-left: 14px;
}
.p-application__list li::before {
    content: '・';
    left: 0;
    position: absolute;
    top: 0;
}

.p-application__caution {
    margin: 10px auto 0;
    max-width: 1026px;
    font-feature-settings: 'palt' on;
    font-size: 12px;
    line-height: 1.85;
    letter-spacing: .1em;
}

@media screen and (max-width: 900px) {
    .p-application {
        padding-bottom: 60px;
    }

    .p-application__inner {
        margin-top: -29px;
    }

    .p-application__contents {
        margin: 25px auto 0;
    }

    .p-application__list {
        margin: 15px auto 0;
        font-size: 12px;
    }

    .p-application__list li {
        padding-left: 12px;
    }

    .p-application__caution {
        margin: 5px auto 0;
        font-size: 10px;
    }
}

/*===========================================================================*/
/*  footer  */
/*===========================================================================*/
.p-lpFooter {
    padding-top: 80px;
    padding-bottom: 56px;
    background-color: #f6f5ef;
}

.p-lpFooter__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.p-lpFooter__badges {
    display: flex;
    width: calc(100% - 540px);
    max-width: 541px;
    justify-content: space-between;
}

.p-lpFooter__badge {
    width: 255px;
}

.p-lpFooter__infos {
    width: 510px;
}

.p-lpFooter__sns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.p-lpFooter__sns--head {
    position: relative;
    padding-right: 20px;
    font-feature-settings: 'palt' on;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .01em;
}

.p-lpFooter__sns--head::before {
    background-color: #454545;
    content: '';
    height: 14px;
    right: 0;
    position: absolute;
    top: 50%;
    width: 1px;
    transform: translate(0, -50%);
    border-radius: 100vh;
}

.p-lpFooter__sns--icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-lpFooter__sns--icons a {
    display: flex;
    width: 22px;
}

.p-lpFooter__links01 {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.p-lpFooter__link01 {
    position: relative;
    padding-left: 16px;
    color: #555;
    font-feature-settings: 'palt' on;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: .08em;
}
.p-lpFooter__link01::before {
    background: url('../img/blank-gray.svg') no-repeat center center/contain;
    content: '';
    height: 10px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 10px;
}
.p-lpFooter__link01::after {
    background-color: #555;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.p-lpFooter__links02 {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.p-lpFooter__link02 {
    position: relative;
    padding-left: 16px;
    color: #7c3147;
    font-feature-settings: 'palt' on;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: .08em;
}
.p-lpFooter__link02::before {
    background: url('../img/blank-brown.svg') no-repeat center center/contain;
    content: '';
    height: 10px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 10px;
}

.p-lpFooter__copyRight {
    margin-top: 16px;
    color: #7C3147;
    font-feature-settings: 'palt' on;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .01em;
}

@media screen and (max-width: 900px) {
    .p-lpFooter {
        padding-top: 30px;
        padding-bottom: 50px;
        margin-bottom: 64px;
    }

    .p-lpFooter__inner {
        max-width: 340px;
        display: block;
    }

    .p-lpFooter__badges {
        width: 100%;
    }

    .p-lpFooter__badge {
        width: 165px;
    }

    .p-lpFooter__infos {
        width: 100%;
        margin-top: 30px;
    }

    .p-lpFooter__sns {
        gap: 12px;
    }

    .p-lpFooter__sns--head {
        padding-right: 12px;
        font-size: 14px;
    }

    .p-lpFooter__sns--head::before {
        height: 12px;
    }

    .p-lpFooter__sns--icons {
        gap: 10px;
    }

    .p-lpFooter__sns--icons a {
        display: flex;
        width: 20px;
    }

    .p-lpFooter__links01 {
        margin-top: 20px;
    }

    .p-lpFooter__link01 {
        padding-left: 15px;
        font-size: 12px;
    }
    .p-lpFooter__link01::before {
        height: 9px;
        top: 5px;
        width: 9px;
    }

    .p-lpFooter__links02 {
        margin-top: 20px;
        gap: unset;
        column-gap: 15px;
        row-gap: 10px;
    }

    .p-lpFooter__link02 {
        padding-left: 13px;
        font-size: 11px;
    }
    .p-lpFooter__link02::before {
        height: 8px;
        top: 5px;
        width: 8px;
    }

    .p-lpFooter__copyRight {
        margin-top: 30px;
        text-align: center;
        font-size: 10px;
    }
}

/*===========================================================================*/
/*  float btn  */
/*===========================================================================*/
.p-lpFloat {
    position: fixed;
    width: 176px;
    height: 176px;
    bottom: 20px;
    right: 20px;
    z-index: 80;
}

.p-lpFloat__btn {
    background-color: #FF2566;
    border-radius: 100vh;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.p-lpFloat__btn::before {
    background: url('../img/cta-arrow.webp') no-repeat center center/contain;
    content: '';
    height: 12px;
    left: 50%;
    position: absolute;
    bottom: 39px;
    width: 15px;
    transform: translate(-50%, 0);
    transition: transform .5s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-lpFloat__btn .--txt {
    color: #FFF;
    font-feature-settings: 'palt' on;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .09em;
    position: relative;
}

.p-lpFloat__btn .--txt::before {
    background-color: #fff;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    bottom: 0;
}

@media screen and (min-width: 901px) {
    .p-lpFloat__btn:hover:before {
        transform: translate(5px, 0);
    }
}

@media screen and (max-width: 900px) {
    .p-lpFloat {
        width: 100%;
        height: auto;
        bottom: 0;
        right: unset;
        left: 0;
        padding: 8px;
        background-color: rgba(255,255,255,.8);
    }

    .p-lpFloat__btn {
        border-radius: 6px;
        width: 100%;
        max-width: 243px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;
        padding: 10px 38px;
        margin: 0 auto;
    }

    .p-lpFloat__btn::before {
        height: 10px;
        left: unset;
        right: 15px;
        bottom: unset;
        top: 50%;
        width: 12px;
        transform: translate(0, -50%);
    }

    .p-lpFloat__btn .--txt {
        font-size: 13px;
    }
}

/*===========================================================================*/
/*  jd  */
/*===========================================================================*/
.p-jd__inner {
    position: relative;
    z-index: 3;
}

.p-jd__navs--head {
    display: none;
}

.p-jd__btns {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.p-jd__navs.--02 {
    margin-top: 50px;
}

.p-jd__contents {
    margin-top: 86px;
}

.p-jd__content {
    display: none;
}
.p-jd__content.js-active {
    display: block;
}

.p-jd__upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-jd__head .--01 {
    display: block;
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.58;
    letter-spacing: .12em;
}

.p-jd__head .--01 span {
    position: relative;
    z-index: 2;
}
.p-jd__head .--01 span::before {
    background: linear-gradient(91deg, #F1A0B8 0%, #FFBD7B 41%, #97DDB8 70%, #82B5E8 100%);
    content: '';
    height: 29px;
    left: 0;
    position: absolute;
    bottom: 5px;
    width: 100%;
    z-index: -1;
}

.p-jd__head .--02 {
    display: block;
    font-feature-settings: 'palt' on;
    font-size: 75px;
    line-height: 1.3;
    letter-spacing: .1em;
}

.p-jd__head .--03 {
    display: block;
    font-feature-settings: 'palt' on;
    font-size: 50px;
    line-height: 1.3;
    letter-spacing: .14em;
}

.p-jd__tags {
    margin-top: 15px;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .13em;
}

.p-jd__tags span {
    padding: 10px;
    background-color: #f6f5ef;
    border-radius: 8px;
}

.p-jd__list {
    margin-left: 20px;
    padding: 7px 0 7px 35px;
    border-left: #dedede solid 1px;
}

.p-jd__list ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-feature-settings: 'palt' on;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.58;
    letter-spacing: .12em;
}

.p-jd__list ul li {
    position: relative;
    padding-left: 20px;
}

.p-jd__list ul li::before {
    background-color: #F1A0B8;
    content: '';
    height: 10px;
    left: 0;
    position: absolute;
    top: 7px;
    width: 10px;
    border-radius: 10px;
}

.p-jd__img {
    position: relative;
    margin-top: 45px;
    height: 645px;
    width: calc(100vw - 90px);
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 1340px;
    border-radius: 24px;
    overflow: hidden;
}

.p-jd__img img {
    overflow: hidden;
    object-fit: cover;
    height: 100%;
}

.p-jd__about {
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
}

.p-jd__about--subHead {
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .01em;
    text-align: center;
    position: relative;
    z-index: 3;
}

.p-jd__about--head {
    margin-top: 38px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 48px;
    line-height: 1.58;
    letter-spacing: .12em;
    position: relative;
    z-index: 3;
}

.p-jd__about--txt {
    margin-top: 30px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: .1em;
    position: relative;
    z-index: 3;
}

.p-jd__about--btn {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.p-jd__about--bg {
    position: absolute;
    top: 109px;
    transform: translate(-50%, 0);
    left: calc(50% - 16px);
    width: 1545px;
    z-index: 1;
}

.p-jd__about--deco01 {
    position: absolute;
    width: 334px;
    height: 334px;
    border-radius: 100vh;
    background: rgba(246, 170, 176, 0.30);
    filter: blur(107px);
    bottom: -82px;
    right: calc(50% + 316px);
}

.p-jd__about--deco02 {
    position: absolute;
    width: 204px;
    height: 204px;
    border-radius: 100vh;
    background: rgba(255, 189, 123, 0.30);
    filter: blur(107px);
    bottom: -33px;
    left: calc(50% + 84px);
}

.p-jd__about--deco03 {
    position: absolute;
    width: 263px;
    height: 263px;
    border-radius: 100vh;
    background: rgba(255, 189, 123, 0.30);
    filter: blur(107px);
    bottom: -42px;
    left: calc(50% + 366px);
}

.p-jd__schedule {
    position: relative;
    z-index: 3;
    padding-top: 120px;
    padding-bottom: 120px;
}
.p-jd__schedule::before {
    background-color: #f6f5ef;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    width: 100vw;
    transform: translate(-50%, 0);
}

.p-jd__schedule--subHead {
    position: relative;
    z-index: 3;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .01em;
}

.p-jd__schedule--head {
    position: relative;
    z-index: 3;
    margin-top: 13px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 48px;
    line-height: 1.55;
    letter-spacing: .12em;
}

.p-jd__schedule--list {
    position: relative;
    z-index: 3;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.p-jd__schedule--list li {
    position: relative;
    padding: 12px 10px 12px 52px;
    background-color: #fff;
    border-radius: 12px;
    min-height: 74px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-feature-settings: 'palt' on;
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: .12em;
    width: calc(100%/3 - 40px/3);
}
.p-jd__schedule--list li::before {
    background: linear-gradient(292deg, #7AF3AC -2.73%, #47ACDE 88.77%);
    content: '';
    height: 10px;
    left: 30px;
    position: absolute;
    top: 50%;
    width: 10px;
    transform: translate(0, -50%);
    border-radius: 100vh;
}

.p-jd__schedule--list li .--small {
    font-size: 14px;
}

.p-jd__schedule--head02 {
    position: relative;
    z-index: 3;
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: .12em;
    background: linear-gradient(90deg, #F1A0B8 0%, #FFBD7B 41%, #97DDB8 70%, #82B5E8 100%);
    margin-top: 50px;
}

.p-jd__schedule--img {
    position: relative;
    z-index: 3;
    margin-top: 20px;
}

.p-jd__schedule--btn {
    margin-top: 40px;
    text-align: center;
}

.p-jd__schedule--btns {
    position: relative;
    z-index: 3;
    padding: 4px;
    background-color: #fff;
    margin: 40px auto 0;
    border-radius: 100vh;
    display: flex;
    width: 392px;
}

.p-jd__schedule--btnTab {
    width: 192px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DEDEDE;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    z-index: 2;
    transition: color .6s 0s cubic-bezier(.44,.14,.09,1.02);
    cursor: pointer;
}
.p-jd__schedule--btnTab.js-active {
    color: #fff;
}

.p-jd__schedule--btnTab::before {
    background: linear-gradient(90deg, #FF92B3 0%, #FFC862 100%);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    transition: opacity .6s 0s cubic-bezier(.44,.14,.09,1.02);
    border-radius: 100vh;
    z-index: -1;
    opacity: 0;
}
.p-jd__schedule--btnTab.js-active::before {
    opacity: 1;
}

.p-jd__schedule--wrapper {
    margin: 30px auto 0;
    position: relative;
    z-index: 3;
    max-width: 1125px;
}

.p-jd__schedule--wrapper picture {
    display: none;
}
.p-jd__schedule--wrapper picture.js-active {
    display: block;
}

.p-jd__schedule--wrapper02 {
    margin: 40px auto 0;
    position: relative;
    z-index: 3;
    max-width: 1125px;
}

.p-ri {
    padding-top: 120px;
    padding-bottom: 120px;
}

.p-ri__inner {
    position: relative;
    z-index: 2;
    margin-top: -73px;
}

.p-ws {
    padding-bottom: 120px;
}

.p-ws__inner {
    position: relative;
    z-index: 2;
    margin-top: -73px;
}

.p-ws__list {
    margin-top: 60px;
    border-top: #dedede solid 1px;
}

.p-ws__list>li {
    padding: 20px 0;
    border-bottom: #dedede solid 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-ws__list--img {
    width: calc(100% - 570px);
    border-radius: 10px;
    overflow: hidden;
    max-width: 610px;
}

.p-ws__list--txts {
    width: 524px;
}

.p-ws__list--num {
    color: #F1A0B8;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .01em;
}

.p-ws__list--head {
    margin-top: 30px;
    font-feature-settings: 'palt' on;
    font-size: 34px;
    line-height: 1.55;
    letter-spacing: .12em;
}

.p-ws__list--txt {
    margin-top: 18px;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: .1em;
}

.p-ws__list--feature {
    margin-top: 30px;
    background-color: #f6f5ef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 23px 20px 23px 5px;
}

.p-ws__list--feature h4 {
    width: 120px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: .12em;
}

.p-ws__list--feature ul {
    width: calc(100% - 120px);
    border-left: #dedede solid 1px;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.p-ws__list--feature ul li {
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .12em;
    position: relative;
    padding-left: 15px;
}
.p-ws__list--feature ul li::before {
    background: #F1A0B8;
    content: '';
    height: 6px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 6px;
    border-radius: 100vh;
}

.p-ws__btn {
    text-align: center;
    margin-top: 50px;
}

.p-care {
    padding-bottom: 120px;
}

.p-care__subHead {
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .01em;
}

.p-care__head {
    margin-top: 10px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 48px;
    line-height: 1.55;
    letter-spacing: .12em;
}

.p-care__upper {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-care__img {
    border-radius: 10px;
    overflow: hidden;
    width: 49%;
}

.p-care__txts {
    width: 46%;
}

.p-care__txts h3 {
    font-feature-settings: 'palt' on;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: .12em;
    position: relative;
    padding-left: 28px;
}
.p-care__txts h3.--02 {
    margin-top: 40px;
}

.p-care__txts h3::before {
    background-color: #F1A0B8;
    content: '';
    height: 13px;
    left: 0;
    position: absolute;
    top: 14px;
    width: 13px;
    border-radius: 100vh;
}

.p-care__txts p {
    margin-top: 13px;
    padding-left: 28px;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: .1em;
}

.p-care__lower {
    margin-top: 46px;
    padding: 20px 40px 20px 20px;
    border-radius: 10px;
    background: #FBF5F7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-care__lower--head {
    width: 317px;
    height: 236px;
    border-radius: 7px;
    background: #F1A0B8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: .12em;
}

.p-care__lower--lists {
    width: calc(100% - 369px);
    display: flex;
    justify-content: space-between;
}

.p-care__lower--list {
    width: 47.5%;
}

.p-care__lower--list h4 {
    position: relative;
    padding-bottom: 22px;
    border-bottom: #d0d0d0 solid 1px;
    font-feature-settings: 'palt' on;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: .12em;
    padding-left: 20px;
}
.p-care__lower--list h4::before {
    background-color: #F1A0B8;
    content: '';
    height: 10px;
    left: 0;
    position: absolute;
    top: 14px;
    width: 10px;
    border-radius: 100vh;
}

.p-care__lower--list ul {
    margin-top: 20px;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: .1em;
}
.p-care__lower--list ul li {
    position: relative;
    padding-left: 16px;
}
.p-care__lower--list ul li::before {
    content: '・';
    left: 0;
    position: absolute;
    top: 0;
}

.p-care__btn {
    margin-top: 40px;
    text-align: center;
}

@media screen and (min-width: 901px) {
    .p-jd__btns {
        display: flex !important;
    }
}

@media screen and (max-width: 900px) {
    .p-jd__navs {
        position: relative;
        border: #454545 solid 1px;
        border-radius: 6px;
    }

    .p-jd__navs.--02 {
        margin-top: 30px;
    }

    .p-jd__navs--head {
        display: block;
        padding: 23px 10px 23px 25px;
        position: relative;
        font-feature-settings: 'palt' on;
        font-size: 16px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: .13em;
    }
    .p-jd__navs--head::before {
        background: url('../img/select-arrow.svg') no-repeat center center/contain;
        content: '';
        height: 9px;
        right: 24px;
        position: absolute;
        top: 50%;
        width: 12px;
        transform: translate(0, -50%);
        transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);
    }
    .p-jd__navs--head.js-active::before {
        transform: translate(0, -50%) rotate(180deg);
    }

    .p-jd__btns {
        display: none;
        padding: 0 10px 20px 25px;
    }

    .p-jd__btns .p-info__btn {
        background: transparent !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 0 !important;
        display: block !important;
        color: #454545 !important;
        border: none !important;
        text-align: left;
        font-size: 16px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: .13em;
        padding-bottom: 0 !important;
        margin-top: 15px;
    }
    .p-jd__btns .p-info__btn:nth-of-type(1) {
        margin-top: 0;
    }

    .p-jd__contents {
        margin-top: 44px;
    }

    .p-jd__upper {
        display: block;
    }

    .p-jd__head .--01 {
        font-size: 16px;
    }

    .p-jd__head .--01 span::before {
        height: 26px;
        bottom: 4px;
    }

    .p-jd__head .--02 {
        font-size: 40px;
        line-height: 1.25;
    }

    .p-jd__head .--03 {
        font-size: 28px;
        margin-top: 7px;
    }

    .p-jd__tags {
        margin-top: 10px;
        font-size: 12px;
    }

    .p-jd__tags span {
        padding: 8px;
    }

    .p-jd__list {
        margin-left: 0;
        margin-top: 25px;
        padding: 0;
        border-left: none;
    }

    .p-jd__list ul {
        gap: 10px;
        font-size: 13px;
    }

    .p-jd__list ul li {
        padding-left: 15px;
    }

    .p-jd__list ul li::before {
        height: 8px;
        top: 6px;
        width: 8px;
    }

    .p-jd__img {
        position: relative;
        margin-top: 45px;
        height: 220px;
        width: calc(100vw - 24px);
        border-radius: 6px;
    }

    .p-jd__about {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .p-jd__about--subHead {
        font-size: 13px;
    }

    .p-jd__about--head {
        margin-top: 20px;
        font-size: 26px;
    }

    .p-jd__about--txt {
        margin-top: 24px;
        text-align: left;
        font-size: 14px;
    }

    .p-jd__about--btn {
        margin-top: 30px;
    }

    .p-jd__about--deco01 {
        width: 128px;
        height: 128px;
        background: rgba(255, 163, 177, 0.90);
        opacity: 0.8;
        filter: blur(97px);
        bottom: -17px;
        right: calc(50% + 98px);
    }

    .p-jd__about--deco02 {
        display: none;
    }

    .p-jd__about--deco03 {
        width: 155px;
        height: 155px;
        filter: blur(97px);
        bottom: -68px;
        left: calc(50% - 12px);
    }

    .p-jd__schedule {
        padding-top: 60px;
        padding-bottom:60px;
    }

    .p-jd__schedule--subHead {
        font-size: 13px;
    }

    .p-jd__schedule--head {
        margin-top: 18px;
        font-size: 26px;
    }

    .p-jd__schedule--list {
        margin-top: 20px;
        gap: 10px;
    }

    .p-jd__schedule--list li {
        padding: 12px 10px 12px 42px;
        border-radius: 8px;
        min-height: unset;
        font-size: 16px;
        width: 100%;
    }
    .p-jd__schedule--list li::before {
        left: 20px;
    }

    .p-jd__schedule--list li .--small {
        font-size: 12px;
    }

    .p-jd__schedule--head02 {
        padding: 8px;
        border-radius: 8px;
        font-size: 16px;
        margin-top: 40px;
    }

    .p-jd__schedule--img {
        margin-top: 20px;
    }

    .p-jd__schedule--btn {
        margin-top: 30px;
    }

    .p-jd__schedule--btns {
        padding: 3px;
        margin: 20px auto 0;
        width: 336px;
    }

    .p-jd__schedule--btnTab {
        width: 165px;
        height: 36px;
        font-size: 12px;
    }

    .p-jd__schedule--btnTab::before {
        background: linear-gradient(90deg, #FF92B3 0%, #FFC862 100%);
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        transition: opacity .6s 0s cubic-bezier(.44,.14,.09,1.02);
        border-radius: 100vh;
        z-index: -1;
        opacity: 0;
    }
    .p-jd__schedule--btnTab.js-active::before {
        opacity: 1;
    }

    .p-jd__schedule--wrapper {
        margin: 20px auto 0;
        width: calc(100% + 50px);
        left: -25px;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .p-jd__schedule--wrapper::-webkit-scrollbar {
        display: none;
    }

    .p-jd__schedule--wrapper02 {
        margin: 20px auto 0;
        width: calc(100% + 50px);
        left: -25px;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .p-jd__schedule--wrapper02::-webkit-scrollbar {
        display: none;
    }

    .p-jd__schedule--wrapper picture,
    .p-jd__schedule--wrapper02 picture {
        width: 1090px;
        padding: 0 25px;
    }

    .p-ri {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .p-ri__inner {
        margin-top: -28px;
    }

    .p-info__contents.--02 {
        margin-top: 25px;
    }

    .p-ws {
        padding-bottom: 70px;
    }

    .p-ws__inner {
        margin-top: -28px;
    }

    .p-ws__list {
        margin-top: 40px;
    }

    .p-ws__list>li {
        padding: 20px 0;
        display: block;
    }

    .p-ws__list--img {
        border-radius: 6px;
        width: 100%;
    }

    .p-ws__list--txts {
        width: 100%;
        margin-top: 25px;
    }

    .p-ws__list--num {
        font-size: 12px;
        text-align: center;
    }

    .p-ws__list--head {
        margin-top: 15px;
        font-size: 20px;
        text-align: center;
    }

    .p-ws__list--txt {
        margin-top: 10px;
        font-size: 14px;
    }

    .p-ws__list--feature {
        margin-top: 15px;
        background-color: #f6f5ef;
        border-radius: 10px;
        display: flex;
        align-items: center;
        padding: 10px 10px 10px 5px;
    }

    .p-ws__list--feature h4 {
        width: 85px;
        font-size: 14px;
    }

    .p-ws__list--feature ul {
        width: calc(100% - 85px);
        padding-left: 25px;
        gap: 4px;
    }

    .p-ws__list--feature ul li {
        font-size: 14px;
        padding-left: 10px;
    }
    .p-ws__list--feature ul li::before {
        height: 4px;
        top: 9px;
        width: 4px;
    }

    .p-ws__btn {
        margin-top: 30px;
    }

    .p-care {
        padding-bottom: 60px;
    }

    .p-care__subHead {
        font-size: 13px;
    }

    .p-care__head {
        margin-top: 20px;
        font-size: 26px;
    }

    .p-care__upper {
        margin-top: 40px;
        display: block;
    }

    .p-care__img {
        border-radius: 6px;
        width: 100%;
    }

    .p-care__txts {
        width: 100%;
        margin-top: 25px;
    }

    .p-care__txts h3 {
        font-size: 20px;
        padding-left: 22px;
    }
    .p-care__txts h3.--02 {
        margin-top: 20px;
    }

    .p-care__txts h3::before {
        height: 10px;
        top: 11px;
        width: 10px;
    }

    .p-care__txts p {
        margin-top: 7px;
        padding-left: 22px;
        font-size: 14px;
    }

    .p-care__lower {
        margin-top: 25px;
        padding: 15px 10px;
        display: block;
    }

    .p-care__lower--head {
        width: 100%;
        height: auto;
        padding: 12px;
        font-size: 20px;
    }

    .p-care__lower--lists {
        width: 100%;
        flex-direction: column;
        gap: 25px;
        padding: 0 10px;
        margin-top: 25px;
    }

    .p-care__lower--list {
        width: 100%;
    }

    .p-care__lower--list h4 {
        padding-bottom: 15px;
        font-size: 18px;
        padding-left: 18px;
    }
    .p-care__lower--list h4::before {
        height: 8px;
        top: 10px;
        width: 8px;
    }

    .p-care__lower--list ul {
        margin-top: 15px;
        font-size: 14px;
    }
    .p-care__lower--list ul li {
        padding-left: 14px;
    }

    .p-care__btn {
        margin-top: 30px;
        text-align: center;
    }
}

.p-lpLink {
    margin-top: 15px;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .1em;
    text-align: center;
    position: relative;
    z-index: 2;
}

.p-lpLink a {
    text-decoration: underline;
}

@media screen and (max-width: 900px) {
    .p-lpLink {
        margin-top: 12px;
        font-size: 11px;
    }
}