@charset "UTF-8";
/*====================================================*/
/* common */
/*====================================================*/
/* Light */
@font-face {
    font-family: "Noto Sans CJK JP";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/NotoSansCJKjp-Light.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Light.woff") format("woff");
}
/* Regular */
@font-face {
    font-family: "Noto Sans CJK JP";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/NotoSansCJKjp-Regular.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Regular.woff") format("woff");
}
/* Medium */
@font-face {
    font-family: "Noto Sans CJK JP";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/NotoSansCJKjp-Medium.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Medium.woff") format("woff");
}
/* Bold */
@font-face {
    font-family: "Noto Sans CJK JP";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/NotoSansCJKjp-Bold.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Bold.woff") format("woff");
}
/* black */
@font-face {
    font-family: "Noto Sans CJK JP";
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/NotoSansCJKjp-Black.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Black.woff") format("woff");
}


html{
    font-size: 62.5%;
}
body {
    color: #17191B;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: bold;
}
img {
    max-width: 100%;
}
a {
    display: block;
}
em {
    font-style: normal;
}

:root {
    --font-Montserrat: "Montserrat", sans-serif;
    --point-color: #E83170;
    --filter-pink: invert(33%) sepia(81%) saturate(4304%) hue-rotate(322deg) brightness(95%) contrast(90%);
    --hover-transition: all .3s ease;
}


/*====================================================*/
/* 共通デザイン */
/*====================================================*/
/* LINEボタン */
.line-btn {
    padding: 1em 0.5em;
    background-color: #22C412;
    border: 2px solid #fff;
    border-radius: 60vh;
    color: #fff;
    font-weight: bold;
    text-align: center;
    position: relative;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.16);
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
    transition: var(--hover-transition);
    position: relative;
}
.line-btn img {
    display: block;
    width: 1.8em;
    height: 1.8em;
    position: absolute;
    top: 50%;
    left: 1.2em;
    transform: translateY(-50%);
}
.line-btn::after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background-image: url(../img/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 1.2em;
    transform: translateY(-50%);
}
.line-btn:hover {
    background-color: #0F9800;
}
@media print,screen and (min-width: 1025px){
    .line-btn {
        border-width: 4px;
    }
}


/* デバイスごとの改行・表示 */
@media print,screen and (max-width: 1024px){
    .pc-only {
        display: none;
    }
}
@media print,screen and (min-width: 1025px){
    .sp-only {
        display: none;
    }
}

/* フォント装飾 */
.point-text {
    color: var(--point-color);
}
.under-text {
    color: var(--point-color);
    text-decoration: underline;
}
.emphasis-text {
    line-height: 1.3em;
    position: relative;
}
.emphasis-text::before,
.emphasis-text::after {
    content: "";
    display: block;
    width: 2px;
    height: 1.3em;
    background-color: currentColor;
    position: absolute;
    bottom: 0;
}
.emphasis-text::before {
    transform: rotate(-30deg);
    left: calc(50% - 4.8em);
}
.emphasis-text::after {
    transform: rotate(30deg);
    right: calc(50% - 4.8em);
}

/* モバイル ボタンの固定 */
.float-button__wrap {
    display: none;
    width: 100%;
    position: fixed;
    bottom: 10px;
    right: 0;
    z-index: 10;
}
.float-button__wrap .line-btn {
    width: 315px;
    margin: 0 auto;
}


/*====================================================*/
/* header */
/*====================================================*/
#header {
    width: 100%;
    position: absolute;
    top: 7rem;
    left: 0;
    z-index: 100;
}
.head-wrap {
    margin-left: calc( 40 * 100% / 750 );
}
.logo {
    width: 125px;
}

@media print,screen and (min-width: 1025px){
    #header {
        top: 2.5rem;
        transition: var(--hover-transition);
    }
    #header.m_fixed {     
        position: fixed;
        z-index: 100;
    }
    .head-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-left: calc( 40 * 100% / 1536 );
        margin-right: calc( 40 * 100% / 1536 );
    }
    .logo {
        width: 176px;
    }
    #header.m_fixed .logo {
        filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.4));
    }
    .head-wrap .line-btn {
        width: 321px;
        font-size: 1.8rem;
    }
}


/* 
@media print,screen and (min-width: 1025px){
    #header {
        position: static;
        top: -30px;
        transition: var(--hover-transition);
    }
    #header.m_fixed {
        box-shadow: 0 2px 10px rgb(0 0 0 / 15%);        
        position: fixed;
        top: 0;
        z-index: 100;
    }
    #header.m_fixed + main {
        padding-top: 9.7rem;
    }
}
 */


/*====================================================*/
/* footer */
/*====================================================*/
footer {
    padding: 2.5rem 0;
    background-color: #241E1E;
    text-align: center;
}
footer small {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
@media print,screen and (min-width: 1025px){
    footer {
        padding: 3.3rem 0 4rem;
    }
    footer small {
        font-size: 1.4rem;
    }
}


/*====================================================*/
/* lp */
/*====================================================*/
/* main {
    font-size: 1.6rem;
}
.mv {
    width: 100%;
    height: calc(100svh - 7rem - 6rem);
    position: relative;
}
.mv picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv-text {
    display: flex;
    align-items: end;
    justify-content: space-between;
    position: absolute;
    left: calc( 28 * 100% / 750 );
    right: calc( 28 * 100% / 750 );
    bottom: 2.5rem;
}
.mv-text p {
    width: 60%;
    font-size: 1.6rem;
    font-weight: bold;
}
.mv-text .bkg {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px;
    background-color: #fff;
    white-space: nowrap;
}
.mv-text em {
    font-size: 2rem;
}
.mv-text .bkg:last-of-type {
    margin-bottom: 0;
    font-size: 2.4rem;
}
.mv-text .bkg:last-of-type > span,
.mv-text .bkg:last-of-type > em {
    font-size: 3rem;
}
.mv .mv-parts {
    display: block;
    width: 40%;
    max-width: 242px;
    padding-bottom: 6rem;
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 20%));
}

.float-button__wrap {
    display: none;
    width: 100%;
    box-shadow: 0 2px 10px rgb(0 0 0 / 15%);
    position: fixed;
    bottom: 10px;
    right: 0;
    z-index: 10;
}


@media print,screen and (min-width: 1025px){
    main {
        font-size: 1.8rem;
    }
    .mv {
        height: calc(100svh - 9.6rem);
    }
    .mv-text {
        left: calc( 100 * 100% / 1536 );
        right: calc( 60 * 100% / 1536 );
        bottom: 5.2rem;
    }
    .mv-text p {
        width: 60%;
        padding-bottom: 1.2rem;
        font-size: 2.8rem;
    }
    .mv-text .bkg {
        display: inline-block;
        margin-bottom: 0;
        padding: 5px 0;
    }
    .mv-text em {
        font-size: 3.4rem;
    }
    .mv-text .bkg:first-of-type {
        padding-left: 10px;
    }
    .mv-text .bkg:last-of-type {
        margin-top: 1rem;
        padding-left: 15px;
        font-size: 5.1rem;
    }
    .mv-text .bkg:last-of-type > span,
    .mv-text .bkg:last-of-type > em {
        font-size: 6rem;
    }
    .mv .mv-parts {
        display: block;
        width: 18%;
        padding-bottom: 0;
    }
}

h1,
h2 {
    display: inline-block;
    margin-bottom: 2.8rem;
    font-size: 2.2rem;
    font-weight: bold;
}
h1::after,
h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    margin-top: 1.2rem;
    background-color: rgba(232, 49, 112, 20%);
}
@media print,screen and (min-width: 1025px){
    h1,
    h2 {
        margin-bottom: 3rem;
        font-size: 2.8rem;
    }
    h1::after,
    h2::after {
        margin-top: 1.6rem;
    }
}

#recruit {
    margin: 7rem 0;
    text-align: center;
}
#recruit > p {
    line-height: 1.5;
}
.recruit-point {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3.9rem;
    margin-right: calc( 28 * 100% / 750 );
    margin-left: calc( 28 * 100% / 750 );
}
.recruit-point li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    aspect-ratio: 1;
    background-image: url(../img/maru.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.25;
}
.recruit-point li:last-of-type {
    margin: auto;
}
.recruit-point li span {
    display: block;
    font-weight: bold;
}
.recruit-point li:first-of-type span {
    font-size: 1.5rem;
}
.recruit-point li:nth-of-type(2) span {
    font-size: 1.6rem;
    font-weight: 500;
}
.recruit-point li:last-of-type span {
    font-size: 1.3rem;
}
.recruit-point li:nth-of-type(-n+2) em {
    display: block;
    margin: 4px 0;
    font-size: 2.5rem;
    font-weight: bold;
}
.recruit-point li:last-of-type em {
    font-size: 1.7rem;
}
@media print,screen and (min-width: 1025px){
    #recruit {
        margin: 7rem 0;
        text-align: center;
    }
    .recruit-point {
        flex-wrap: nowrap;
        margin-top: 4.5rem;
        margin-right: calc( 320 * 100% / 1536 );
        margin-left: calc( 320 * 100% / 1536 );
    }
    .recruit-point li {
        width: 31%;
        aspect-ratio: 1;
        max-width: 263px;
        font-size: 1.8rem;
    }
    .recruit-point li:last-of-type {
        margin: 0;
    }
    .recruit-point li:first-of-type span {
        font-size: 2.4rem;
    }
    .recruit-point li:nth-of-type(2) span,
    .recruit-point li:last-of-type span  {
        font-size: 2rem;
    }
    .recruit-point li:first-of-type span em {
        margin: 8px 0 5px;
        font-size: 4rem;
    }
    .recruit-point li:nth-of-type(2) span em {
        margin: 10px 0 8px;
        font-size: 2.7rem;
    }
    .recruit-point li:last-of-type em {
        font-size: 2.7rem;
    }
}


.suggestion {
    filter: drop-shadow(0px 6px 0px #B1305C);
}
.suggestion::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: -1px auto 0;
    border-style:solid;
    border-width: 23px 28.5px 0 28.5px;
    border-color: #E83170 transparent transparent transparent;
}
.suggestion-wrap {
    padding: 4.8rem 0 5rem;
    background-color: var(--color-pink);
    color: #fff;
    text-align: center;
}
.suggestion-wrap h2::after {
    background-color: #fff;
}
.suggestion-wrap ul {
    margin-right: calc( 60 * 100% / 750 );
    margin-left: calc( 60 * 100% / 750 );
    text-align: left;
}
.suggestion-wrap ul li {
    text-indent: calc(-1em + -1rem);
    padding-left: calc(1em + 1rem);
    font-weight: 500;
    line-height: 1.5;
}
.suggestion-wrap ul li:not(:last-of-type) {
    margin-bottom: 1rem;
}
.suggestion-wrap ul li::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 1rem;
    background-image: url(../img/check-box.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}
.suggestion + p {
    margin-top: 8rem;
    font-size: 1.9rem;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: center;
}
.suggestion + p em,
.suggestion + p strong {
    font-size: 2.4rem;
    font-weight: bold;
}
.suggestion + p span {
    display: block;
}
.suggestion + p span::after {
    content: "";
    display: block;
    width: 13em;
    height: 1rem;
    margin: -13px auto 0;
    background-color: rgba(232, 49, 112, 20%);
}
@media print,screen and (min-width: 1025px){
    .suggestion {
        filter: drop-shadow(0px 12px 0px #B1305C);
    }
    .suggestion::after {
        margin-top: -10px;
        border-width: 38px 47.5px 0 47.5px;
    }
    .suggestion-wrap {
        padding: 5.7rem 0 7.5rem;
    }
    .suggestion-wrap ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 4rem;
        grid-row-gap: 2.5rem;
        align-items: center;
        justify-content: space-between;
        margin-top: 2.8rem;
        margin-right: calc( 340 * 100% / 1536 );
        margin-left: calc( 340 * 100% / 1536 );
    }
    .suggestion-wrap ul li {
        white-space: nowrap;
    }
    .suggestion-wrap ul li:first-of-type {
        grid-area: 1 / 1 / 2 / 2;
    }
    .suggestion-wrap ul li:nth-of-type(3) {
        grid-area: 1 / 2 / 2 / 3;
    }
    .suggestion-wrap ul li:not(:last-of-type) {
        margin-bottom: 0;
    }
    .suggestion + p {
        margin-top: 9rem;
        font-size: 2.4rem;
    }
    .suggestion + p em,
    .suggestion + p strong {
        font-size: 3rem;
    }
    .suggestion + p span {
        display: inline-block;
    }
}


#promises {
    margin: 7rem 0;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}
#promises ul {
    margin-top: 3.4rem;
    margin-bottom: 4rem;
    margin-right: calc( 28 * 100% / 750 );
    margin-left: calc( 28 * 100% / 750 );
}
#promises ul li {
    position: relative;
}
#promises ul li:not(:last-of-type) {
    margin-bottom: 6.5rem;
}
#promises ul li div {
    width: 81%;
    margin: auto;
    border-radius: 1rem;
    box-shadow: 0px 0px 14px 0px rgba(119,119,119,0.2);
    overflow: hidden;
}
#promises ul li p {
    padding: 2.2rem 0 2.7rem;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.35;
}
#promises ul li p span {
    display: block;
    margin-top: 4px;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: normal;
}
#promises ul li .parts {
    display: block;
    width: 7.9rem;
    position: absolute;
    top: -3.5rem;
    left: 0;
}
@media print,screen and (min-width: 1025px){
    #promises {
        margin: 14rem 0 10rem;
        font-size: 2rem;
    }
    #promises ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 6.7rem;
        margin-top: 6.5rem;
        margin-bottom: 4.7rem;
        margin-right: calc( 200 * 100% / 1536 );
        margin-left: calc( 200 * 100% / 1536 );
    }
    #promises ul li:not(:last-of-type) {
        margin-bottom: 0;
    }
    #promises ul li div {
        width: 100%;
        margin: 0;
        box-shadow: 0px 0px 20px 0px rgba(119,119,119,0.2);
    }
    #promises ul li p {
        padding: 2.9rem 0;
        font-size: 2rem;
    }
    #promises ul li p span {
        margin-top: 6px;
        font-size: 1.8rem;
    }
    #promises ul li .parts {
        width: 9.4rem;
        top: -5.4rem;
        left: -5.4rem;
    }
    
}

.message {
    margin-top: 6.5rem;
    margin-right: calc( 60 * 100% / 750 );
    margin-left: calc( 60 * 100% / 750 );
    padding: 3rem 0;
    border-radius: 10px;
    border: 2px solid var(--color-pink);
    overflow: clip;
}
.message h3 {
    margin-bottom: 1.7rem;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.03em;
}
.message p {
    padding: 0 2rem;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-align: left;
}
.message .dash {
    display: inline-block;
    width: 1.8em;
    height: 1px;
    margin: 0 0.1em 3px;
    background-color: #241E1E;
    vertical-align: middle;
}
.representative {
    margin-top: 2.9rem;
    white-space: nowrap;
}
.representative span {
    font-size: 1.8rem;
}
.message-wrap img {
    width: 148px;
    margin-top: 20px;
    float: right;
    shape-outside: polygon(0 20%, 100% 20%, 100% 100%, 0 100%);
}
@media print,screen and (min-width: 1025px){
    .message {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-top: 6.9rem;
        margin-right: calc( 200 * 100% / 1536 );
        margin-left: calc( 200 * 100% / 1536 );
        padding: 4.4rem 0 0 4.6rem;
        border-radius: 20px;
        text-align: left;
    }
    .message h3 {
        margin-bottom: 1rem;
        font-size: 2rem;
    }
    .message p {
        padding: 0;
        font-size: 1.6rem;
        line-height: 1.75;
    }
    .message p.representative {
        margin-top: 1rem;
        padding-bottom: 2.9rem;
        text-align: right;
    }
    .representative span {
        font-size: 2srem;
    }
    .message > img {
        width: min(30%, 243px);
    }
}
@media print,screen and (min-width: 1200px){
    .message-wrap {
        white-space: nowrap;
    }
    .message > img {
        width: min(30%, 233px);
    }
}


#flow {
    padding: 5rem 0;
    background: #F9F7F2;
    text-align: center;
}
#flow ol {
    margin-top: 3.5rem;
    margin-right: calc( 60 * 100% / 750 );
    margin-left: calc( 60 * 100% / 750 );
}
#flow ol li {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.6rem 1.4rem;
    background: #fff;
    border-radius: 1rem;
    font-weight: 500;
    position: relative;
}
#flow ol li:not(:last-of-type) {
    margin-bottom: 4.4rem;
}
#flow ol li:not(:last-of-type)::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 12.5px 0 12.5px;
    border-color: #241e1e99 transparent transparent transparent;
    position: absolute;
    bottom: -2.9rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.step {
    padding: 7px 1rem;
    background: #FFF0F5;
    border-radius: 30ch;
    color: var(--color-pink);
    font-family: var(--font-Montserrat);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}
.step span {
    display: inline-block;
    margin-left: 6px;
    font-size: 2rem;
    font-weight: 500;
}
#flow ol li img {
    display: inline-block;
    width: 5.4rem;
    aspect-ratio: 1;
    margin-right: 6px;
}
#flow ol li p:not(.step) {
    line-height: 1.37;
    text-align: left;
}
#flow ol li p:not(.step) span {
    display: inline-block;
}
#flow ol li:nth-of-type(6) p:not(.step) span {
    display: block;
    text-decoration: underline;
    text-decoration-color: var(--color-pink);
    text-decoration-thickness: 2px;
    text-decoration-style: dashed;
    text-underline-offset: 3px;
    font-size: 1.2rem;
}
@media print,screen and (min-width: 1025px){
    #flow {
        padding: 11rem 0;
    }
    #flow ol {
        margin-top: 3.5rem;
        margin-right: calc( 395 * 100% / 1536 );
        margin-left: calc( 395 * 100% / 1536 );
    }
    #flow ol li {
        padding: 1.6rem 2.4rem;
        font-size: 2rem;
    }
    .step {
        margin-right: 7.4rem;
        padding: 1rem 2rem;
    }
    .step span {
        font-size: 3rem;
    }
    #flow ol li img {
        width: 7.2rem;
        aspect-ratio: 1;
        margin-right: 2rem;
    }
    #flow ol li:nth-of-type(6) p:not(.step) span {
        display: inline-block;
        margin-left: 3.6rem;
        text-decoration-thickness: 3px;
        text-underline-offset: 4px;
        font-size: 1.8rem;
    }
}


#example {
    margin: 7rem 0;
    text-align: center;
}
#example ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 6px;
    margin-right: calc( 28 * 100% / 750 );
    margin-left: calc( 28 * 100% / 750 );
}
#example ul li {
    display: inline-block;
    padding: 1.2rem 2rem;
    border-radius: 30vh;
    border: 1px solid #C9C9C9;
    color: var(--color-pink);
    font-weight: 500;
}
@media print,screen and (min-width: 1025px){
    #example {
        margin: 11.5rem 0 11rem;
    }
    #example ul {
        margin-top: 3rem;
        gap: 2.4rem 2rem;
        margin-right: calc( 280 * 100% / 1536 );
        margin-left: calc( 280 * 100% / 1536 );
    }
    #example ul li {
        padding: 1.3rem 3rem;
        font-size: 2rem;
    }
}


#faq {
    padding: 5rem 0;
    background-color: #FFF0F5;
    text-align: center;
}
.accordion_container {
    margin-right: calc( 28 * 100% / 750 );
    margin-left: calc( 28 * 100% / 750 );
    border-radius: 1rem;
    border: 2px solid var(--color-pink);
    text-align: left;
}
.accordion_container:not(:last-of-type) {
    margin-bottom: 2rem;
}
.js-accordion_title {
    padding: 1.4rem 1.6rem;
    background-color: var(--color-pink);
    color: #fff;
    letter-spacing: 0.05em;
    cursor: pointer;
    position: relative;
}
.js-accordion_title::before {
    content: "Q. ";
    display: inline-block;
    margin-right: 6px;
    font-family: var(--font-Montserrat);
    font-size: 2.2rem;
    font-weight: 600;
}
.js-accordion_inner {
    display: none;
    box-sizing: border-box;
    padding: 1.1rem 0 1.5rem;
    background-color: #fff;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
.js-accordion_inner p {
    margin: 0 1.6rem;
    text-indent: -1em;
    padding-left: 2em;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.37;
}
.js-accordion_inner p::before {
    content: "A. ";
    display: inline-block;
    margin-right: 8px;
    font-family: var(--font-Montserrat);
    font-size: 2.2rem;
    font-weight: 600;
}
.js-accordion_inner.open {
    display: block;
}
.icon_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 1.6rem;
    width: 14px;
    height: 14px;
    box-sizing: border-box;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.icon {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.icon:before,
.icon:after {
    content: "";
    opacity: 1;
    display: block;
    background-color: #fff;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 6px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
    transition: var(--hover-transition);
}
.icon:before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 6px;
}
.js-accordion_title.open .icon:before {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.js-accordion_title.open .icon::after {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
@media print,screen and (min-width: 1025px){
    #faq {
        padding: 11rem 0;
    }
    .accordion_container {
        margin-right: calc( 300 * 100% / 1536 );
        margin-left: calc( 300 * 100% / 1536 );
        font-size: 1.6rem;
    }
    .accordion_container:not(:last-of-type) {
        margin-bottom: 2.4rem;
    }
    .js-accordion_title {
        padding: 2.1rem 4.3rem;
    }
    .js-accordion_title::before {
        margin-right: 1rem;
        font-size: 2.2rem;
    }
    .js-accordion_inner {
        padding: 2.3rem 4.3rem 2rem 4.3rem;
    }
    .js-accordion_inner p {
        margin: 0;
        text-indent: unset;
        padding-left: 0;
    }
    .icon_wrap {
        right: 3.8rem;
        width: 20px;
        height: 20px;
    }
    .icon:after {
        height: 3px;
        top: 8.5px;
    }
    .icon:before {
        width: 3px;
        left: 8.5px;
    }
}


.cta {
    margin: 7rem 0 10rem;
    text-align: center;
}
.cta-catch {
    margin-bottom: 2.4rem;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
}
.cta-catch::before,
.cta-catch::after {
    content: "";
    display: block;
    width: 3em;
    height: 3px;
    background-color: var(--color-pink);
    position: absolute;
    top: calc(100% - 1.5em);
}
.cta-catch::before {
    left: calc(50% + -8.5em);
    transform: rotate(60deg);
}
.cta-catch::after {
    right: calc(50% + -8.5em);
    transform: rotate(-60deg);
}
.cta-catch span:first-of-type {
    font-size: 2.8rem;
}
.cta-catch span:nth-of-type(2) {
    font-size: 3.7rem;
    font-weight: bold;
}
.cta > p:not(.cta-catch) {
    line-height: 1.5;
}
@media print,screen and (min-width: 1025px){
    .cta {
        margin: 11rem 0 12rem;
    }
    .cta-catch {
        margin-bottom: 3rem;
    }
    .cta-catch::before,
    .cta-catch::after {
        width: 3em;
        height: 3px;
        top: calc(100% - 1.2em);
    }
    .cta-catch::before {
        left: calc(50% + -12.5em);
    }
    .cta-catch::after {
        right: calc(50% + -12.5em);
    }
} */
