@charset "UTF-8";
/* フォント設定
=============================================== */
img {
    width: 100%;
    height: auto;
}

body {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    color: #333333;
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.5;
}

.lp-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(../img/lp_bg.webp) no-repeat left center/cover;
}

.lp-container {
    position: relative;
    z-index: 2;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 500px;
    background-color: white;
}

.fo-bold {
    font-weight: bold;
}

.fsz-15 {
    font-size: 1.5em;
}

section.js-anm {
    position: relative;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
section.js-anm.is-appear {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.footer {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    background-color: #ed9093;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*   gap: 2em; */
    padding: 10px;
}

.mv__bottom {
    margin-top: -90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.mv__bottom-content {
    width: 95%;
    border: 1px solid #ed9093;
    position: relative;
}
.mv__bottom-title {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: white;
    font-size: clamp(20px, 5vw, 25px);
    white-space: nowrap;
    background-color: #ed9093;
    padding: 4px 10px;
    border-radius: 1em;
}
.mv__bottom-list {
    width: 100%;
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    padding: 32px 5px 15px;
    background-color: white;
}
.mv__bottom-list > li {
    position: relative;
    padding-left: 1.3em;
}
.mv__bottom-list > li::before {
    position: absolute;
    content: "";
    width: 1.2em;
    aspect-ratio: 1;
    background: url(../img/icon-check.webp) no-repeat center center/contain;
    top: 13px;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.benefit {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.benefit__title {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: clamp(20px, 5vw, 25px);
    text-align: center;
}
.benefit__title::before {
    position: absolute;
    content: "";
    height: 80%;
    aspect-ratio: 1/2;
    background: url(../img/text-deco.webp) no-repeat center center/contain;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-150%);
    transform: translateX(-150%);
}
.benefit__title::after {
    position: absolute;
    content: "";
    height: 80%;
    aspect-ratio: 1/2;
    background: url(../img/text-deco.webp) no-repeat center center/contain;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(150%) scale(-1, 1);
    transform: translateX(150%) scale(-1, 1);
}
.benefit__body {
    margin-top: 20px;
    padding-inline: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.benefit__body img {
    width: 40%;
}
.benefit__text {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.8em;
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1em;
}
.benefit__text > span {
    position: relative;
    display: inline-block;
}
.benefit__text > span::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 44%;
    background-color: #fdc6c1;
    bottom: -0.1em;
    left: 0;
    z-index: -1;
}
.benefit__text > span .is-red {
    color: #b72f27;
}
.benefit__bottom {
    width: 100%;
    padding: 20px 0;
    background: url(../img/benefit_bg.webp) no-repeat center center/cover;
    color: white;
    font-size: clamp(18px, 5vw, 25px);
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.benefit__btn-wrap {
    width: 100%;
    margin-block: 20px;
    padding-inline: 20px;
}
.benefit__btn {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 86px;
    border-radius: 43px;
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: clamp(20px, 5vw, 25px);
    line-height: 1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#03bf02), to(#049b05));
    background-image: linear-gradient(#03bf02 0%, #049b05 100%);
    padding: 4px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.benefit__btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}
.benefit__btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(-45deg, transparent 50%, rgba(255, 255, 255, 0.3) 55%, transparent 60%);
    background-size: 600% 100%;
    -webkit-animation: shine 20s infinite;
    animation: shine 20s infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
.benefit__btn::after {
    position: absolute;
    content: "";
    width: 1.2em;
    aspect-ratio: 1;
    background: url(../img/icon_arrow.webp) no-repeat center center/contain;
    top: 50%;
    right: 0;
    -webkit-transform: translate(-1em, -50%);
    transform: translate(-1em, -50%);
}
.benefit__btn-inner {
    width: 100%;
    height: 100%;
    border-radius: 41px;
    border: 1px solid white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.benefit__btn-main {
    font-size: 1.1em;
}
.benefit__btn-main .is-highlight {
    color: #ffff00;
    font-size: 1.2em;
    font-weight: bold;
}
.benefit__btn-note {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 0.5em;
    font-size: 12px;
    text-align: center;
}

@-webkit-keyframes shine {
    0% {
        background-position-x: 400%;
    }
    50% {
        background-position-x: 0%;
    }
    100% {
        background-position-x: -400%;
    }
}

@keyframes shine {
    0% {
        background-position-x: 400%;
    }
    50% {
        background-position-x: 0%;
    }
    100% {
        background-position-x: -400%;
    }
}
.flow {
    padding: 40px 0;
    background-color: #faefef;
}
.flow__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.flow__title-sub {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(20px, 5vw, 25px);
    display: inline-block;
    position: relative;
}
.flow__title-sub::before {
    position: absolute;
    content: "";
    height: 80%;
    aspect-ratio: 1/2;
    background: url(../img/text-deco.webp) no-repeat center center/contain;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-150%);
    transform: translateX(-150%);
}
.flow__title-sub::after {
    position: absolute;
    content: "";
    height: 80%;
    aspect-ratio: 1/2;
    background: url(../img/text-deco.webp) no-repeat center center/contain;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(150%) scale(-1, 1);
    transform: translateX(150%) scale(-1, 1);
}
.flow__title-main {
    font-size: clamp(24px, 6vw, 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.flow__title-main .num {
    width: auto;
    height: 2em;
}
.flow__body {
    margin-top: 20px;
    padding-inline: 20px;
}
.flow__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}
.flow__item {
    background-color: white;
    padding: 10px;
    position: relative;
    z-index: 0;
}
.flow__item > span {
    font-size: clamp(16px, 4vw, 20px);
    padding-left: 1.5em;
    display: inline-block;
    position: relative;
}
.flow__item > span::before {
    position: absolute;
    content: "";
    width: 1.2em;
    aspect-ratio: 1;
    background: url(../img/icon-check.webp) no-repeat center center/contain;
    top: 0.8em;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.flow__item > span .underline {
    display: inline-block;
    position: relative;
}
.flow__item > span .underline::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30%;
    background-color: #ed9093;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.voice {
    padding: 40px 0;
}
.voice__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.voice__title-sub {
    position: relative;
    display: inline-block;
    font-size: clamp(20px, 5vw, 25px);
}
.voice__title-sub::before {
    position: absolute;
    content: "";
    height: 80%;
    aspect-ratio: 1/2;
    background: url(../img/text-deco.webp) no-repeat center center/contain;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-150%);
    transform: translateX(-150%);
}
.voice__title-sub::after {
    position: absolute;
    content: "";
    height: 80%;
    aspect-ratio: 1/2;
    background: url(../img/text-deco.webp) no-repeat center center/contain;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(150%) scale(-1, 1);
    transform: translateX(150%) scale(-1, 1);
}
.voice__title-main {
    color: #ed9093;
    font-size: clamp(40px, 10vw, 50px);
}
.voice__list {
    margin-top: 20px;
    padding-inline: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 20px;
}
.voice__item {
    position: relative;
    width: 70%;
    border: 1px solid #ed9093;
    padding: 10px;
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
}
.voice__item .name {
    font-size: clamp(12px, 3vw, 15px);
}
.voice__item .comment {
    margin-top: 0.5em;
    font-size: clamp(12px, 3vw, 15px);
}
.voice__item::before {
    position: absolute;
    content: "";
    width: 50%;
    aspect-ratio: 3/1;
    top: -5%;
    right: 0;
}
.voice__item::after {
    position: absolute;
    content: "";
    width: 50%;
    aspect-ratio: 1;
}
.voice__item:nth-child(1)::before {
    background: url(../img/voice01.webp) no-repeat top right/contain;
}
.voice__item:nth-child(1)::after {
    background: url(../img/voice01_img.webp) no-repeat bottom center/contain;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.voice__item:nth-child(2) {
    -ms-flex-item-align: start;
    align-self: flex-start;
}
.voice__item:nth-child(2)::before {
    background: url(../img/voice02.webp) no-repeat top right/contain;
}
.voice__item:nth-child(2)::after {
    background: url(../img/voice02_img.webp) no-repeat bottom center/contain;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}
.voice__item:nth-child(3)::before {
    background: url(../img/voice03.webp) no-repeat top right/contain;
}
.voice__item:nth-child(3)::after {
    background: url(../img/voice03_img.webp) no-repeat bottom center/contain;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.worries {
    position: relative;
    z-index: 0;
}
.worries__head {
    padding: 30px 0 35px;
    background-color: #dedede;
}
.worries__title {
    position: relative;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: clamp(18px, 4.5vw, 22.5px);
}
.worries__title > span {
    display: inline-block;
    border-bottom: 1px solid;
}
.worries__title::before {
    position: absolute;
    content: "";
    width: 1.5em;
    aspect-ratio: 1;
    background: url(../img/icon-quote--black.webp) no-repeat center center/contain;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.worries__title::after {
    position: absolute;
    content: "";
    width: 1.5em;
    aspect-ratio: 1;
    background: url(../img/icon-quote--black.webp) no-repeat center center/contain;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(50%, 100%) rotate(180deg);
    transform: translate(50%, 100%) rotate(180deg);
}
.worries__body {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.worries__body.is-bg-grad {
    padding: 40px 20px 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e4e5e6));
    background-image: linear-gradient(to bottom, #fff, #e4e5e6);
}
.worries__body.is-bg-img {
    padding: 0 20px 20px;
    background-image: url(../img/worries_bg.webp);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center bottom;
}
.worries__list {
    margin: 20px 0;
    margin-left: auto;
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    position: relative;
}
.worries__list::before {
    position: absolute;
    content: "";
    height: 120%;
    aspect-ratio: 4/4;
    background: url(../img/worries_img01.webp) no-repeat center bottom/contain;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(-70%, 10%);
    transform: translate(-70%, 10%);
}
.worries__item {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #d3cfcf;
    padding: 10px 10px 10px 25px;
    font-size: clamp(12px, 3vw, 15px);
}
.worries__text {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 3.5vw, 17.5px);
    line-height: 1.8;
}
.worries__text + .worries__text {
    margin-top: 1.5em;
}
.worries__text.is-center.fo-bold {
    text-align: center;
    font-weight: bold;
}
.worries__text .marker {
    display: inline-block;
    position: relative;
    padding-inline: 2px;
    color: #ffff00;
}
.worries__text .marker::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 90%;
    background-color: #333333;
    top: 8%;
    left: 0;
    z-index: -1;
}
.worries__catch {
    padding: 50px 0 30px;
}
.worries__catch-text {
    position: relative;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: clamp(18px, 4.5vw, 22.5px);
}
.worries__catch-text > span {
    display: inline-block;
    border-bottom: 1px solid;
}
.worries__catch-text::before {
    position: absolute;
    content: "";
    width: 1.5em;
    aspect-ratio: 1;
    background: url(../img/icon-quote--black.webp) no-repeat center center/contain;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.worries__catch-text::after {
    position: absolute;
    content: "";
    width: 1.5em;
    aspect-ratio: 1;
    background: url(../img/icon-quote--black.webp) no-repeat center center/contain;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(50%, 100%) rotate(180deg);
    transform: translate(50%, 100%) rotate(180deg);
}

.future {
    margin-top: 45px;
}
.future__head {
    position: relative;
    padding: 45px 0 50px;
    width: 100%;
    background: url(../img/future_ttl-bg.webp) no-repeat center center/cover;
}
.future__head::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 55px;
    background-color: #707070;
    bottom: 100%;
    left: calc(50% - 1px);
}
.future__head::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 32px;
    background-color: white;
    top: 0;
    left: calc(50% - 1px);
}
.future__title {
    position: relative;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: clamp(18px, 4.5vw, 22.5px);
    color: white;
}
.future__title > span {
    display: inline-block;
    border-bottom: 1px solid;
}
.future__title::before {
    position: absolute;
    content: "";
    width: 1.5em;
    aspect-ratio: 1;
    background: url(../img/icon-quote--white.webp) no-repeat center center/contain;
    top: 0;
    left: 0;
    -webkit-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
}
.future__title::after {
    position: absolute;
    content: "";
    width: 1.5em;
    aspect-ratio: 1;
    background: url(../img/icon-quote--white.webp) no-repeat center center/contain;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(100%, 100%) rotate(180deg);
    transform: translate(100%, 100%) rotate(180deg);
}
.future__body {
    padding: 40px 0;
    overflow: hidden;
}
.future__body > img {
    margin-block: 20px 10px;
}
.future__text {
    padding-inline: 20px;
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 3.5vw, 17.5px);
    line-height: 1.8;
}
.future__text + .future__text {
    margin-top: 1.5em;
}
.future__text .underline--pink {
    color: #ed9093;
    border-bottom: 1px solid;
}
.future__catch {
    position: relative;
    margin-block: 20px;
    padding: 40px 20px;
    background-color: #fdc6c1;
    color: white;
    font-size: clamp(16px, 4vw, 20px);
}
.future__catch::before {
    position: absolute;
    content: "";
    width: 40%;
    aspect-ratio: 1;
    background: url(../img/future_img02.webp) no-repeat center bottom/contain;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
}

.change {
    background: url(../img/change_bg.webp) no-repeat center center/cover;
    position: relative;
    padding: 40px 0;
}
.change::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 55px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: white;
    top: 0;
    left: 0;
}
.change__head {
    position: relative;
    z-index: 2;
}
.change__head-sub {
    font-size: clamp(20px, 5vw, 25px);
    text-align: center;
}
.change__title {
    margin-top: 32px;
    position: relative;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: clamp(18px, 4.5vw, 22.5px);
}
.change__title > span {
    display: inline-block;
    border-bottom: 1px solid;
}
.change__title::before {
    position: absolute;
    content: "";
    width: 1.5em;
    aspect-ratio: 1;
    background: url(../img/icon-quote--black.webp) no-repeat center center/contain;
    top: 0;
    left: 0;
    -webkit-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
}
.change__title::after {
    position: absolute;
    content: "";
    width: 1.5em;
    aspect-ratio: 1;
    background: url(../img/icon-quote--black.webp) no-repeat center center/contain;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(100%, 100%) rotate(180deg);
    transform: translate(100%, 100%) rotate(180deg);
}
.change__body {
    margin-top: 32px;
    padding-inline: 20px;
}
.change__text {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.8;
}
.change__text + .change__text {
    margin-top: 1.5em;
}
.change__text .underline--red {
    color: #b72f27;
    border-bottom: 1px solid;
}
.change__text .underline--pink {
    color: #ffa8a8;
    border-bottom: 1px solid;
}

.life {
    padding: 20px 0 0;
}
.life__title {
    padding-inline: 20px;
    color: #ed9093;
    font-size: clamp(18px, 4.5vw, 22.5px);
}
.life__title > span {
    border-bottom: 1px solid;
}
.life__text-wrap {
    padding: 20px;
}
.life__text-wrap.is-bottom-img {
    position: relative;
}
.life__text-wrap.is-bottom-img::after {
    position: absolute;
    content: "";
    width: 40%;
    aspect-ratio: 1/2;
    background: url(../img/life_img02.webp) no-repeat right bottom/contain;
    bottom: 0;
    right: 0;
    z-index: 0;
}
.life__text {
    position: relative;
    z-index: 2;
    margin-top: 1.5em;
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 3.5vw, 17.5px);
    line-height: 1.8;
}
.life__text .underline--pink {
    color: #ed9093;
    border-bottom: 1px solid;
}
.life__catch {
    padding: 20px 0;
    background: url(../img/life_catch-bg.webp) no-repeat center center/cover;
}
.life__catch-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: clamp(20px, 5vw, 25px);
}
.life__catch-text span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.life__catch-text span img {
    width: auto;
    height: 2em;
}
.life__catch p {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.howto {
    padding: 40px 0;
    background: url(../img/howto_bg.webp) no-repeat center center/cover;
}
.howto__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.howto__title-sub {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(18px, 4.5vw, 22.5px);
    display: inline-block;
    position: relative;
}
.howto__title-sub::before {
    position: absolute;
    content: "";
    height: 80%;
    aspect-ratio: 1/2;
    background: url(../img/text-deco.webp) no-repeat center center/contain;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-150%);
    transform: translateX(-150%);
}
.howto__title-sub::after {
    position: absolute;
    content: "";
    height: 80%;
    aspect-ratio: 1/2;
    background: url(../img/text-deco.webp) no-repeat center center/contain;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(150%) scale(-1, 1);
    transform: translateX(150%) scale(-1, 1);
}
.howto__title-main {
    color: #ed9093;
    font-size: clamp(24px, 6vw, 30px);
}
.howto__body {
    margin-top: 20px;
    padding-inline: 20px;
}
.howto__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.howto__item {
    padding: 10px;
    position: relative;
    z-index: 0;
}
.howto__item:nth-child(odd) {
    background-color: #f8edee;
}
.howto__item:nth-child(even) {
    background-color: white;
}
.howto__item > span {
    font-size: clamp(16px, 4vw, 20px);
    padding-left: 1.5em;
    display: inline-block;
    position: relative;
}
.howto__item > span::before {
    position: absolute;
    content: "";
    width: 1.2em;
    aspect-ratio: 1;
    background: url(../img/icon-check.webp) no-repeat center center/contain;
    top: 0.8em;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.profile__title {
    padding: 5px 0;
    background-color: #ed9093;
    color: white;
    font-size: clamp(24px, 5vw, 32px);
    text-align: center;
}
.profile__summery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.profile__summery > img {
    width: 60%;
}
.profile__summery-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.profile__summery-text .position {
    font-size: clamp(14px, 3.5vw, 17.5px);
    margin-left: -2em;
}
.profile__summery-text .name {
    width: 100%;
    color: #ed9093;
    font-size: clamp(24px, 6vw, 30px);
    border-bottom: 2px solid #f8edee;
}
.profile__summery-text .name-en {
    font-size: clamp(14px, 3.5vw, 17.5px);
    padding-left: 0.5em;
}
.profile__text {
    padding: 20px;
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 3.5vw, 17.5px);
    line-height: 1.8;
}
.profile__text .is-pink {
    color: #ed9093;
}
