:root {
    --color-black: rgb(77, 77, 77);
    --color-black-transparent : rgba(77, 77, 77, 0.5);
    --color-grey: rgb(145, 145, 145);
    --color-lightgrey: rgb(249, 249, 249);
    --color-white: rgb(255, 255, 255);
    --color-white-transparent: rgba(255, 255, 255, 0.5);
    --color-pink: rgb(216, 143, 143);
    --color-lightpink: rgb(239, 228, 228);
    --color-beige: rgb(191, 179, 166);
    --color-lightbeige: rgb(239, 234, 230);
    --color-blue: rgb(135, 195, 213);
}
body {
    width: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%), url(../../images/top/policy.webp) ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

}
.serif {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
}
h2 {
    color: var(--color-black);
}

/*--------------------------------------------

common

--------------------------------------------*/
/*background*/
.back-black {background: var(--color-black);}
.back-grey {background: var(--color-grey);}
.back-white {background: var(--color-white);}
.back-white-transparent {background: var(--color-white-transparent);}
.back-lightgrey {background: var(--color-lightgrey);}
.back-pink {background: var(--color-pink);}
.back-lightpink {background: var(--color-lightpink);}
.back-beige {background: var(--color-beige);}
.back-lightbeige {background: var(--color-lightbeige);}
.back-blue {background: var(--color-blue);}

/*font-color*/
.text-black {color: var(--color-black);}
.text-white {color: var(--color-white);}
.text-pink {color: var(--color-pink);}

/*text-align*/
.text-center {text-align: center;}
.text-right {text-align: right;}

/*triangle-back*/
.triangle-back {
    position: relative;
}
.triangle-back::before {
    content: "";
    width: 100%;
    height: 5rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    bottom: -4.95rem;
    left: 0;
}
/*triangle-bottom*/
.triangle-bottom {
    position: relative;
}
.triangle-bottom::before {
    content: "";
    width: 100%;
    height: 10rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/*link-btn*/
.link-btn {
    font-size: 120%;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    max-width: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    border-radius: 100px;
    padding: 0.5em 1em;
}
.link-btn:hover {
    transform: scale(1.1);
}
/*form-btn*/
.form-btn {
    font-size: 120%;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    font-weight: 500;
    padding: 0.25em 2em 0.5em 2em;
    border-radius: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 0.25em;
    margin-top: 0.25em;
}
.form-btn:hover {
    transform: scale(1.1);
}
.form-btn small {
    font-size: 90%;
    font-weight: 400;
    width: 100%;
    text-shadow:
        1.5px 1.5px 0 var(--color-blue), -1.5px -1.5px 0 var(--color-blue),
        -1.5px 1.5px 0 var(--color-blue), 1.5px -1.5px 0 var(--color-blue),
        0px 1.5px 0 var(--color-blue),  0-1.5px 0 var(--color-blue),
        -1.5px 0 0 var(--color-blue), 1.5px 0 0 var(--color-blue);
    display: block;
    margin-top: -1em;
}
.form-btn .text-l {
    font-size: 150%;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    font-weight: 400;
}
/*link-arrow*/
.link-arrow {
    width: 0.8em;
    height: 0.8em;
    display: block;
    border-top: solid 2px var(--color-white);
    border-right: solid 2px var(--color-white);
    transform: rotate(45deg);
}

/*bubble*/
.bubble {
    width: fit-content;
    padding: 0.5em 1em;
    margin: 0 auto;
    border-radius: 100px;
    position: relative;
}
.bubble::before {
    content: "";
    width: 1em;
    height: 0.7em;
    display: block;
    clip-path: polygon(0 0, 100% 0, 25% 100%);
    position: absolute;
    bottom: -0.7em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
/*bubble-small*/
.bubble-small {
    width: fit-content;
    padding: 0.5em 1em;
    margin: 0 auto;
    border-radius: 0.5em;
    position: relative;
}
.bubble-small::before {
    content: "";
    width: 20px;
    height: 10px;
    display: block;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
/*circle-bubble*/
.circle-bubble {
    font-size: 90%;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    width: 3em;
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    background: var(--color-black);
    color: var(--color-white);
}
.circle-bubble::before {
    content: "";
    width: 15px;
    height: 20px;
    background: var(--color-black);
    clip-path: polygon(0 0, 100% 75%, 0 100%);
    position: absolute;
    right: -5px;
    bottom: 9px;
    transform: rotate(13deg);
}

/*check*/
#check {
    height: 1em;
}
#check .st0 {
    fill: var(--color-white);
}
#check .st1 {
    fill: var(--color-black);
}
/*close*/
#close {
    height: 1em;
    fill: var(--color-black);
}

img {
    display: block;
    width: 100%;
}

/*--------------------------------------------

wrap article section

--------------------------------------------*/
.wrap {
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
}
/*article section*/
.wrap article:not(.first-view, #worry, #point) ,#worry-list ,#point section {
    padding-left: 7.5%;
    padding-right: 7.5%;
}
.wrap article:not(.first-view) {
    padding-top: calc(30px + 7.5%);
    padding-bottom: calc(30px + 7.5%);
}
.wrap article:not(.first-view) section:nth-of-type(n + 2) {
    padding-top: calc(30px + 7.5%);
}
.triangle-bottom {
    padding-top: calc(30px + 7.5% + 5rem) !important;
}


/*--------------------------------------------
min-width 810
--------------------------------------------*/
@media (min-width: 810px) {
    /*article section*/
    .wrap article:not(.first-view) {
        padding-top: calc(45px + 7.5%);
        padding-bottom: calc(45px + 7.5%);
    }
}
/*--------------------------------------------
min-width 570
--------------------------------------------*/
@media (min-width: 570px) {
    .wrap {
        box-shadow: 0px 0px 20px rgba(175, 175, 175, 0.25);
    }
}

/*--------------------------------------------

first-view

--------------------------------------------*/
.first-view {
    padding-top: 60px;
}
.first-view section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.first-view section h1, .first-text {
    position: absolute;
}
.first-view section h1 {
    font-size: 180%;
    font-weight: 400;
    width: fit-content;
    top: 0;
    right: 5%;
}
.first-view section h1 img {
    width: 80%;
    margin: 0.5em 0 0 auto;
}

.first-text {
    font-size: 200%;
    bottom: 0;
    left: 0;
}
.first-text p {
    width: fit-content;
    letter-spacing: 0.1em;
    border-radius: 0 100px 100px 0;
    padding: 0.25em 1em;
    margin-bottom: 0.5em;
}
.first-text span {
    font-size: 70%;
    font-weight: 500;
    letter-spacing: 0;
    display: block;
}
.first-text img {
    width: 80%;
    margin-left: 0.1em;
}

.first-view img {
    height: auto;
}
.first-view section > img:nth-of-type(1) {
    width: 63%;
    margin-top: 5em;
}
.first-view section > img:nth-of-type(2) {
    width: 37%;
    margin-top: 17em;
}

/*--------------------------------------------
min-width 810
--------------------------------------------*/
@media (min-width: 810px) {
    .first-view {
        padding-top: 90px;
    }
}

/*--------------------------------------------

second-view

--------------------------------------------*/
#second-view.triangle-back::before {
    background: var(--color-lightbeige);
}

/*shop*/
#shop {
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.shop-title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
}
.shop-title h2 {
    font-size: 160%;
    font-weight: 400;
    letter-spacing: 0.2em;
    border-radius: 0 100px 100px 0;
    padding-left: calc(1em + 0.5em);
    margin: 0;
}
.shop-title .bubble::before {
    background: var(--color-white);
}
.shop-title span {
    font-size: 280%;
    width: 2.75em;
    height: 2.75em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: -0.5em;
    position: relative;
}
#shop > p span {
    font-size: 125%;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    display: block;
    margin-top: -1.5em;
}

/*slider-nav*/
.slider-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}

/*shop-slider*/
.shop-slider {
    width: 100%;
    height: min-content;
    padding-bottom: 3em;
}
.shop-slider img {
    width: 100%;
    aspect-ratio: 1.91 / 1;
    object-fit: cover;
    border-radius: 1em;
}

/*slide-description*/
.slide-description {
    font-size: 120%;
    line-height: 1em;
}
/*slider-btn*/
.slider-btn-prev, .slider-btn-next {
    width: 1em;
    height: 1em;
    border-top: solid 2px var(--color-black);
    border-right: solid 2px var(--color-black);
}
.slider-btn-prev {
    transform: rotate(-135deg);
}
.slider-btn-next {
    transform: rotate(45deg);
}

/*guide*/
#guide {
    display: flex;
    flex-direction: column;
    gap: 3em;
}
#guide h2 {
    font-weight: 400;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
}
#guide h2::before {
    background: var(--color-white);
}

.guide-text {
    font-size: 110%;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    padding: 0.5em 1em;
    border-radius: 100px;
    margin-bottom: 1em;
}

.free-guide h3 {
    width: 90%;
    margin: 0 auto;
}
.free-guide-title {
    display: flex;
    flex-direction: column-reverse;
}
.free-guide-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: -2em;
}
.free-guide-content p.serif {
    font-size: 700%;
}
.free-guide-content p.serif small {
    font-size: 1.25rem;
    font-weight: 700;
}
.free-guide ul {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
    padding: 1em;
    border-radius: 1em;
}

.paid-guide {

}
.paid-guide dd {
    font-size: 350%;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    line-height: 1em;
}
.paid-guide dd small {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
}
.paid-guide > p {
    line-height: 1.8em;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    padding: 1em;
    border-radius: 1em;
    margin-top: 1em;
}

/*--------------------------------------------
min-width 810
--------------------------------------------*/
@media (min-width: 810px) {
}

/*--------------------------------------------

worry

--------------------------------------------*/
#worry {
    padding-bottom: 0;
}
#worry.triangle-bottom::before {
    background: var(--color-lightgrey);
}
/*worry-list*/
#worry-list {
    position: relative;
    padding-bottom: 3rem;
}
#worry-list ul {
    font-size: 120%;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
#worry-list li {
    line-height: 1em;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    padding-bottom: 1em;
    border-bottom: dotted 4px var(--color-grey);
}
#worry-list li svg {
    height: 1.25em;
    padding-right: 0.25em;
    margin-bottom: -0.25em;
}
#worry-list > img {
    width: 100%;
    height: 3rem;
    position: absolute;
    bottom: -2.99rem;
    left: 0;
    z-index: 1;
}


/*worry-detail*/
#worry-detail {
    padding-bottom: 7.5%;
}
#worry-detail.triangle-back::before {
    background: var(--color-white);
}
#worry-detail h2 {
    font-weight: 400;
    width: fit-content;
    padding: 0.5em 2em 0.5em 1em;
    border-radius: 0 100px 100px 0;
    position: relative;
}
#worry-detail ul {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    padding: 0 7.5%;
    padding-top: 1em;
}
#worry-detail ul li {
    font-size: 120%;
    display: flex;
    align-items: flex-start;
    gap: 0.25em;
}
#worry-detail ul li svg {
    height: 1.25em;
    margin-top: 0.25em;
}

.worry-top {
    position: relative;
}
.worry-top ul {
    position: relative;
    z-index: 2;
}
.worry-top img {
    width: 60%;
    height: 300px;
    object-fit: contain;
    object-position: bottom;
    position: absolute;
    right: 0;
    bottom: -4rem;
    z-index: 1;
}

.worry-bottom h2 {
    position: relative;
    padding-left: calc(7.5% + 3em) !important;
    margin-top: 1em;
    z-index: 2;
}
.worry-bottom h2 .circle-bubble {
    position: absolute;
    left: 7.5%;
    bottom: 0;
}


/*--------------------------------------------
min-width 810
--------------------------------------------*/
@media (min-width: 810px) {
}

/*--------------------------------------------

point

--------------------------------------------*/
#point {
    overflow: hidden;
}
#point.triangle-bottom::before {
    background: var(--color-lightpink);
}

/*wave-back*/
.wave-back {
    width: 100%;
    position: relative;
    z-index: 2;
}
/*wave-bottom*/
.wave-bottom {
    padding-top: calc(30px + 7.5% + 4rem) !important;
    margin-top: calc(-30px - 4rem);
}

/*point-detail*/
#point-detail {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 2em;
}
#point-detail p {
    font-size: 140%;
    display: flex;
    align-items: flex-end;
    gap: 0.5em;
    letter-spacing: 0.1em;
}
#point-detail p .text-l {
    font-size: 140%;
}
#point-detail .circle-bubble {
    width: 4.5em;
    height: 4.5em;
    font-size: 70%;
}

/*point-content*/
#point-content {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 1em;
    border-radius: 1em;
    padding: 7.5% 5%;
    margin-top: 7.5%;
    position: relative;
}
#point-content::before {
    content: "";
    position: absolute;
    width: 115%;
    height: 110%;
    background: var(--color-lightpink);
    left: -7.5%;
    bottom: 0;
    z-index: -1;
}
#point-content h2 {
    font-size: 140%;
    letter-spacing: 0.1em;
}
#point-content h2 .text-l {
    font-size: 140%;
    font-weight: 500;
}
#point-content p {
    font-size: 90%;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    padding-bottom: 1em;
    border-bottom: solid 2px var(--color-pink);
}
.point-detail {
    display: flex;
    gap: 0.5em;
    position: relative;
}
.point-detail a {
    display: block;
    border-radius: 1em 1em 50% 50%;
    padding: 0.75em;
}
.point-detail dl {
    margin-top: -1.5em;
}
.point-detail dt {
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    padding: 0.25em 0;
    border-radius: 100px;
}
.point-detail dd {
    font-size: 125%;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    font-weight: 500;
}
.point-detail #close {
    height: 2em;
    fill: var(--color-pink);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/*point-section*/
.point-section h2:not(.section-title) {
    font-size: 125%;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    font-weight: 500;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    border-bottom: solid 2px var(--color-black-transparent);
    padding: 0 0.5em;
    margin: 0 auto;
}
.point-section h2:not(.section-title) .text-l {
    font-size: 350%;
    line-height: 0.8em;
    font-style: italic;
}

/*point-1*/
#point-1 {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-bottom: 65vw;
    margin-bottom: 65svw;
}
#Point-1 > *:not(#point-1 > img) {
    position: relative;
    z-index: 2;
}
#point-1 dt {
    margin-bottom: 1.5em;
}
#point-1 dt::before {
    background: var(--color-white);
}
#point-1 dd {
    font-size: 115%;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
}
#point-1 video {
    border-radius: 1em;
}
#point-1 p {
    font-size: 120%;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
}
#point-1 p span {
    font-size: 67%;
    letter-spacing: 0.025em;
    text-indent: 0.025em;
    display: block;
    padding-top: 1em;
}
#point-1 > img {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -65vw;
    bottom: -65svw;
}
/*point-2*/
#point-2 {
    display: flex;
    flex-direction: column;
    gap: 3em;
    padding-top: calc(7.5% + 65vw);
    padding-top: calc(7.5% + 65svw);
    padding-bottom: calc(7.5% + 30px);
    margin-top: -65vw;
    margin-top: -65svw;
}
/*point-price*/
.price-slider{
    display: flex;
    align-items: stretch;
    width: 90%;
    margin: 0 auto;
    padding: 40px 0 0 0;
}
#point-2 .slick-dots {
    padding-bottom: 15px;
}
#point-2 .slick-dots li{
    width: fit-content !important;
    height: fit-content !important;
    position: relative;
    opacity: 0.5;
}
#point-2 .slick-dots li.slick-active{
    opacity: 1;
}
#point-2 .slick-dots li.slick-active::before {
    content: "";
    width: 15px;
    height: 10px;
    background: var(--color-beige);
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
#point-2 .slick-dots li.slick-active:nth-child(1)::before {
    clip-path: polygon(100% 100%, 0 0, 100% 0);
}
#point-2 .slick-dots li.slick-active:nth-child(2)::before {
    clip-path: polygon(0 100%, 0 0, 100% 0);
}
#point-2 .slick-dots li button{
    font-size: 0.8rem !important;
    color: var(--color-grey) !important;
    border: solid 2px var(--color-grey) !important;
    width: 130px !important;
    height: fit-content !important;
    border-radius: 100px;
    line-height: 1.2em !important;
    padding: 10px !important;
    font-weight: 700;
    font-size: 0.8rem !important;
    border-radius: 200px;
}
#point-2 .slick-dots li.slick-active button {
    background: var(--color-beige);
    border: none !important;
    color: var(--color-white) !important;
}
#point-2 .slick-dots li button span > *{
    width: 100% !important;
    margin: 0;
}
#point-2 .slick-dots li button span small{
    background: var(--color-white-transparent);
    border-bottom: solid 2px var(--color-beige);
    padding: 2px 0;
}
#point-2 .slick-dots li button span strong{
    font-size: 3rem !important;
    padding: 15px 0;
}
#point-2 .slick-dots li button > small{
    display: block;
    font-size: 0.8rem;
    padding-top: 5px;
}
#point-2 .slick-dots li button::before{
    content: none !important;
}
#point-2 .slick-dots{
    bottom: auto !important;
    top: 0;
}
#point-2 .slick-dotted.slick-slider{
    margin-bottom: 20px !important;
}

/*price detail*/
#point-2 .detail{
    position: relative;
}
#point-2 .detail dl{
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 90%;
    margin: 15px auto 0 auto;
}
#point-2 .detail dl{
    background: var(--color-white);
}
#point-2 .bottom .detail dl{
    background: var(--color-white);
}
#point-2 .detail dl .text{
    font-size: 0.65rem;
    font-weight: 400;
    margin: 3px 0;
}
#point-2 .detail dl .name{
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
}
#point-2 .detail dl .price{
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
}
#point-2 .detail dl .tax{
    font-size: 1rem;
    letter-spacing: 0.1em;
}
#point-2 .detail dl .message span{
    font-size: 1rem;
}
#point-2 .detail dl small{
    font-size: 0.7rem;
}
#point-2 .detail > span{
    width: 5em;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: -10px;
    right: 0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    justify-content: center;
    align-items: center;
    padding: 5px;
    line-height: 1em;
    font-weight: 500;
    color: var(--color-white);
}
#point-2 .detail > span::before{
    content: "";
    position: absolute;
    bottom: 12px;
    left: -4px;
    width: 10px;
    height: 10px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    transform: rotate(-25deg);
}
#point-2 .detail.month > span ,#point-2 .detail.month > span::before{
    background: rgb(167, 209, 228);
}
#point-2 .detail.year > span ,#point-2 .detail.year > span::before{
    background: rgb(139, 203, 161);
}
#point-2 .detail > span small{
    font-size: 0.7rem;
}

#point-2 .sample-content{
    background: var(--color-lightgrey);
    padding: 2.5px 20px;
    border-radius: 20px;
    position: relative;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 25px;
    padding: 20px;
}
#point-2 .sample-content::before{
    content: "";
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    background: var(--color-lightgrey);
    width: 15px;
    height: 10px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
#point-2 .sample-content h3{
    background: rgb(255, 255, 255);
    padding: 2.5px 20px;
    border-radius: 100px;
    margin: 0 auto 15px auto;
    text-align: center;
    width: fit-content;
}
#point-2 .sample-content dl{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 auto;
}
#point-2 .sample-content dl div{
    display: flex;
    gap: 10px;
}
#point-2 .sample-content dl div dt{
    width: 10em;
}
#point-2 .sample-content dl div:nth-last-of-type(2){
    border-top: dotted 3px rgb(185 185 185);
    padding-top: 5px;
}
#point-2 .sample-content dl div dd span{
    border-radius: 100px;
    display: block;
    padding: 2px 10px;
    font-size: 0.6rem;
    margin-top: 2px;
}
/*point-motivation*/
.point-motivation {
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.point-motivation p {
    font-size: 120%;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
}
.point-motivation p span {
    font-size: 67%;
    letter-spacing: 0.025em;
    text-indent: 0.025em;
    display: block;
    padding-top: 1em;
}

/*point-3*/
#point-3 {
    display: flex;
    flex-direction: column;
    gap: 2em;
    position: relative;
    padding-bottom: 20vw;
    padding-bottom: 20svw;
}
#point-3 > *:not(.wave-back) {
    position: relative;
    z-index: 3;
}
#point-3 div {
    font-size: 110%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25em;
}
#point-3 ul {
    display: flex;
    gap: 0.25em;
}
#point-3 ul li {
    font-size: 84%;
    line-height: 1em;
    width: 5.5em;
    height: 5.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 50%;
}
#point-3 ul li .text-l {
    font-size: 150%;
    line-height: 1em;
}
#point-3 p {
    font-size: 125%;
    line-height: 1.8em;
    width: 70%;
}
#point-3 p .text-l {
    font-size: 115%;
}
#point-3 .wave-back {
    position: absolute;
    left: 0;
    bottom: -14vw;
    bottom: -14svw;
}

/*--------------------------------------------
min-width 570
--------------------------------------------*/
@media (min-width: 570px) {
    #point {
        padding-bottom: calc(30px + 7.5% + 3rem);
    }

    /*wave-bottom*/
    .wave-bottom {
        padding-top: calc(30px + 7.5% + 6rem) !important;
        margin-top: calc(-30px - 6rem);
    }

    #point-1 {
        margin-bottom: 32rem;
    }
    #point-1 > img {
        bottom: -25rem;
    }
    #point-2 {
        padding-top: calc(7.5% + 12rem);
        margin-top: -18rem;
    }
    #point-3 {
        padding-bottom: 4rem;
    }
    #point-3 .wave-back {
        bottom: -7.5rem;
    }
}

/*--------------------------------------------

review

--------------------------------------------*/
#review {
    display: flex;
    flex-direction: column;
}
#review.triangle-back::before {
    background: var(--color-white);
    z-index: 2;
}
#review-title {
}
.review-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 1em 1.5em !important;
    aspect-ratio: 4 / 3;
}
.review-content:nth-of-type(even) {
    background-image: url(../../images/lp/2506/review/back_pink.webp);
    transform: rotate(5deg);
}
.review-content:nth-of-type(odd) {
    background-image: url(../../images/lp/2506/review/back_beige.webp);
    transform: rotate(-5deg);
}
.review-content div {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 1em;
}
.review-content div h2 {
    font-size: 125%;
    letter-spacing: 0.1em;
    font-weight: 500;
    flex-shrink: 0;
}
.review-content div img {
    width: 7em;
    height: 7em;
}
#review > a {
    margin-top: 2em;
}

/*--------------------------------------------
min-width 570
--------------------------------------------*/
@media (min-width: 570px) {
    .review-content {
        padding: 2em 4em !important;
    }
    .review-content p {
        line-height: 1.8em;
    }
}

/*--------------------------------------------

experience

--------------------------------------------*/
#experience.triangle-bottom::before {
    background: var(--color-lightgrey);
}
.experience-content {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1em;
}
.experience-item img {
    width: auto;
    height: 10em;
}
.experience-item dt {
    font-size: 140%;
    letter-spacing: 0.1em;
    border-bottom: dotted 4px var(--color-white);
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
}
.experience-arrow {
    width: 1.5em;
    height: 1.5em;
    border-top: solid 2px var(--color-black);
    border-right: solid 2px var(--color-black);
    transform: rotate(135deg);
    margin: 0 auto;
    margin-bottom: 1em;
}
#experience .form-btn {
    margin-top: 3em;
}

/*--------------------------------------------
min-width 810
--------------------------------------------*/
@media (min-width: 810px) {
}

/*--------------------------------------------

pc-l-wrap & pc-r-wrap

--------------------------------------------*/
.pc-l-wrap, .pc-r-wrap {
    width: calc((100% - 570px) / 2);
    display: none;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

/*--------------------------------------------
min-width 1250
--------------------------------------------*/
@media (min-width: 1250px) {
    .pc-l-wrap, .pc-r-wrap {
        display: flex;
    }
}

/*--------------------------------------------
pc-l-wrap
--------------------------------------------*/
.pc-l-wrap {
    left: 0;
}
.pc-l-wrap ul {
    width: 90%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding: 3em 1.5em;
    margin: 0 auto;
    border-radius: 1em;
}
.pc-l-wrap ul > li {
    border-bottom: solid 1px var(--color-beige);
    padding-bottom: 1.5em;
}
.pc-l-wrap ul > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.pc-l-wrap ul li a {
    font-size: 120%;
    display: flex;
    align-items: center;
    gap: 0.25em;
    transition: all 0.3s;
}
.pc-l-wrap ul li a:hover {
    opacity: 0.5;
}
.pc-l-wrap ol {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    border-left: solid 5px var(--color-beige);
    padding: 0.25em 0;
    padding-left: 1em;
    margin-top: 0.5em;
}
.nav-arrow {
    width: 0.75em;
    height: 0.75em;
    display: block;
    border-top: solid 2px var(--color-beige);
    border-right: solid 2px var(--color-beige);
    transform: rotate(45deg);
}

/*--------------------------------------------
min-width 810
--------------------------------------------*/
@media (min-width: 810px) {
}


/*--------------------------------------------
pc-r-wrap
--------------------------------------------*/
.pc-r-wrap {
    right: 0;
}
.pc-r-wrap ul {
    width: 90%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    margin: 0 auto;
}
.pc-r-wrap a {
    font-size: 160%;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    border-radius: 1em;
    padding: 1em;
    display: block;
    transition: all 0.3s;
}
.pc-r-wrap a:hover {
    transform: scale(1.1);
}
.pc-r-wrap a small {
    font-size: 70%;
    display: block;
    margin-bottom: 0.25em;
}
.pc-r-wrap a > span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25em;
}
.pc-r-wrap a img {
    width: auto;
    height: 1.5em;
}

/*--------------------------------------------
min-width 810
--------------------------------------------*/
@media (min-width: 810px) {
}

footer {
    position: relative;
    z-index: 2;
}