@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: #241E1E;
    font-family: 'Noto Sans CJK JP', sans-serif;
}
img {
    max-width: 100%;
}
a {
    display: block;
}
em {
    font-style: normal;
}

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


/*====================================================*/
/* 共通デザイン */
/*====================================================*/
/* エントリーボタン */
.entry-btn {
    display: block;
    height: 6rem;
    background-color: var(--color-pink);
    color: #fff;
    font-family: var(--font-Montserrat);
    font-size: 2rem;
    font-weight: 600;
    line-height: 6rem; 
    text-align: center;
}

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

/* カラー ピンク */
.red {
    color: var(--color-pink);
}


/*====================================================*/
/* header */
/*====================================================*/
#header {
    width: 100%;
    background-color: #fff;
}
#header a {
    transition: var(--hover-transition);
}
#header a:hover {
    opacity: 0.6;
}
.head-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}
.logo {
    display: block;
    width: 5.5rem;
    margin-left: calc( 28 * 100% / 750 );
    filter: invert(12%) sepia(59%) saturate(4049%) hue-rotate(344deg) brightness(99%) contrast(92%);
}


@media print,screen and (max-width: 1199px){
    .head-pc {
        display: none;
    }
    .toggle {
        display: block;
        width: 7rem;
        height: 7rem;
        background-color: var(--color-pink);
    }
    .toggle-line {
        display: block;
        width: 3rem;
        height: 2rem;
        margin: auto;
        position: relative;
    }
    .toggle-line span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        left: 0;
        transition: all .2s ease-in-out;
    }
    .toggle-line span {
        top: calc(50% - 1px);
    }
    .toggle-line::after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        top: 0;
        transition: all .3s ease-in-out;
    }
    .toggle-line::before {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        bottom: 0;
        transition: all .3s ease-in-out;
    }
    .toggle.active .toggle-line span {
        width: 0;
        background-color: transparent;
    }
    .toggle.active .toggle-line::after {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }
    .toggle.active .toggle-line::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .toggle-navi {
        width: 100%;
        height: 100vh;
        padding-top: 8.5rem;
        background-color: #fff;
        position: absolute;
        top: -100vh;
        left: 0;
        z-index: 50;
        transition: all .3s ease-in-out;
    }
    .toggle-navi.active {
        top: 0;
    }
    .toggle-navi ul {
        margin-bottom: 8.6rem;
    }
    .toggle-navi ul li {
        padding: 1.3rem 0;
        border-bottom: 1px solid #241E1E;
        font-size: 1.6rem;
        font-weight: bold;
    }
    .toggle-navi ul li a {
        margin-right: calc( 60 * 100% / 750 );
        margin-left: calc( 60 * 100% / 750 );
        padding: 1.3rem 0;
        position: relative;
    }
    .toggle-navi ul li a:after {
        content: "";
        display: inline-block;
        width: 0.7em;
        height: 0.7em;
        background-image: url(../img/chevron-down.svg);
        background-size: contain;
        background-repeat: no-repeat;
        filter: var(--filter-pink);;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%) rotate(-90deg);
    }
}
@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;
    }
}
@media print,screen and (min-width: 1200px){
    .toggle,
    .toggle-navi {
        display: none;
    }
    .logo {
        width: 7rem;
        margin-left: calc( 20 * 100% / 1536 );
    }
    .head-pc {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .head-pc .navi {
        display: flex;
        align-items: center;
    }
    .head-pc .navi li {
        font-size: 1.4rem;
        font-weight: 500;
    }
    .head-pc .navi li:not(:last-of-type) {
        margin-right: 4rem;
    }
    .head-pc .navi li a::after {
        content: "";
        display: inline-block;
        width: 0.7em;
        height: 0.7em;
        margin-left: 6px;
        background-image: url(../img/chevron-down.svg);
        background-size: contain;
        background-repeat: no-repeat;
        filter: var(--filter-pink);
        vertical-align: middle;
    }
    .head-pc .entry-btn {
        height: 9.6rem;
        margin-left: 4.3rem;
        padding: 0 4rem;
        line-height: 9.6rem; 
    }
}


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


/*====================================================*/
/* 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;
}
.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);
    }
}


.application-form {
    margin-top: 4.2rem;
    margin-right: calc( 60 * 100% / 750 );
    margin-left: calc( 60 * 100% / 750 );
}
.application-form .from-wrap {
    width: 100%;
    font-size: 1.6rem;
    text-align: left;
}
.from-wrap dl:not(:last-of-type) {
    margin-bottom: 2rem;
}
.from-wrap dt {
    margin-bottom: 1rem;
    line-height: 1.37;
}
.from-wrap dt .Req {
    display: inline-block;
    height: 2.2rem;
    margin-left: 1rem;
    padding: 0 6px;
    background-color: #EF2C2C;
    color: #fff;
    font-size: 1.4rem;
    line-height: 2.2rem;
}
.from-wrap dt span:not(.Req) {
    display: block;
    font-size: 1.4rem;
    font-weight: normal;
}
.from-wrap dd > span {
    display: block;
}
.from-wrap dd input[type="text"],
.from-wrap dd input[type="tel"],
.from-wrap dd input[type="email"] {
    width: 100%;
    height: 5rem;
    padding: 0 0.5em;
    border: 1px solid #707070;
    font-weight: 500;
    line-height: 5rem;
}
.from-wrap dd span:has(select) {
    height: 5rem;
    position: relative;
}
.from-wrap dd span:has(select)::before {
    content: "";
    width: 0.7em;
    height: 0.7em;
    background-image: url(../img/chevron-down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(25%) sepia(6%) saturate(18%) hue-rotate(321deg) brightness(94%) contrast(91%);
    position: absolute;
    top: 1.3em;
    right: 1em;
}
.from-wrap dd span[data-name="select-age"],
.from-wrap dd span[data-name="select-times"] {
    width: 12rem;
}
.from-wrap dd span[data-name="select-job"] {
    width: 258px;
}
.from-wrap dd select {
    width: 100%;
    height: 100%;
    padding: 0 0.5em;
    border: 1px solid #707070;
}
.wpcf7-list-item {
    display: block;
    margin: 0;
}
.wpcf7-list-item:not(:last-of-type) {
    margin-bottom: 1.5rem;
}
.wpcf7-list-item label {
    cursor: pointer;
}
.wpcf7-list-item input[type="checkbox"] {
    opacity: 0;
    appearance: none;
    position: absolute;
}
.wpcf7-list-item .wpcf7-list-item-label {
    display: inline-block;
    position: relative;
    padding-left: calc(1em + 1rem);
    height: 1em;
}
.wpcf7-list-item .wpcf7-list-item-label::before {
    content: "";
    width: 1em;
    height: 1em;
    box-sizing: content-box;
    background: #fff;
    border-radius: 2px;
    border: 1px solid #B5B5B5;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}
.wpcf7-list-item .wpcf7-list-item-label::after {
    content: "";
    width: 0.8em;
    height: 0.8em;
    background-image: url(../img/check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0.15em;
    left: 0.15em;
    opacity: 0;
    transition: var(--hover-transition);
} 
.wpcf7-list-item  input:checked + span::after {
    opacity: 1;
}
.from-wrap dd textarea {
    width: 100%;
    height: 5em;
    padding: 0.5em;
    border: 1px solid #707070;
    line-height: 1.75;
}
.wpcf7-not-valid-tip {
    margin-top: 0.5em;
}

.consent-btn {
    margin: 5.2rem 0 2.5rem;
    font-weight: 500;
}
.consent-btn a {
    display: inline-block;
    cursor: pointer;
}
.consent-btn a::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 0 2px;
    background-image: url(../img/window.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: text-top;
}
.submit-btn {
    width: 315px;
    margin: auto;
    position: relative;
}
.submit-btn input {
    width: 100%;
    height: 7rem;
    background-color: #FF9A43;
    border-radius: 30vh;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.01em;
    line-height: 7rem;
    text-align: center;
    filter: drop-shadow(0px 6px 0px #DD6D0D);
    transition: var(--hover-transition);
}
.submit-btn::before {
    content: "";
    display: block;
    width: 3.6rem;
    height: 3.7rem;
    background-color: #fff;
    border-radius: 60vh;
    box-shadow: inset 0px 3px 0px #DD6D0D;
    position: absolute;
    top: 1.8rem;
    left: 8%;
    transform: translateX(-8%);
    -webkit-transform: translateX(-8%);
    z-index: 5;
    transition: var(--hover-transition);
}
.submit-btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent #FE9A43;
    position: absolute;
    top: 2.8rem;
    left: 12%;
    transform: translateX(-12%);
    -webkit-transform: translateX(-12%);
    z-index: 10;
}
/* hoverまたはactive時 */
.submit-btn input:hover,
.submit-btn input:active {
    filter: none;
    transform: translate(0, 3px);
}
.submit-btn:has(input:hover)::before,
.submit-btn:has(input:active)::before {
    box-shadow: none;
}
.submit-btn:has(input:hover)::after,
.submit-btn:has(input:active)::after {
    top: 2.7rem;
}
/* 承諾確認にチェックが入っていない場合 */
.submit-btn input:disabled {
    background-color: #ccc;
    filter: drop-shadow(0px 6px 0px #aaa);
    transform: none;
}
.submit-btn:has(input:disabled)::before {
    box-shadow: inset 0px 3px 0px #aaa;
}
.submit-btn:has(input:disabled)::after {
    border-color: transparent transparent transparent #aaa;
    top: 2.8rem;
}

.application-form form.wpcf7-form.init {
    display: grid;
}
.application-form form.wpcf7-form.init .wpcf7-turnstile.cf-turnstile {
    grid-area: 4 / 1 / 5 / 2;
}


@media print,screen and (min-width: 1025px){
    .application-form {
        margin-top: 5.6rem;
        margin-right: calc( 280 * 100% / 1536 );
        margin-left: calc( 280 * 100% / 1536 );
    }
    .application-form .from-wrap {
        font-size: 1.8rem;
    }
    .from-wrap dl {
        display: grid;
        grid-template-columns: 255px 1fr;
        grid-column-gap: 3.5rem;
    }
    .from-wrap dl:not(:last-of-type) {
        margin-bottom: 4rem;
    }
    .from-wrap dl:nth-of-type(-n+8) {
        align-items: center;
    }
    .from-wrap dt {
        margin-bottom: 0;
        line-height: 1.5;
    }
    .from-wrap dt span:not(.Req) {
        margin-top: 8px;
    }
    .from-wrap dd input[type="text"],
    .from-wrap dd input[type="tel"],
    .from-wrap dd input[type="email"] {
        height: 6rem;
        padding: 0.75em;
        line-height: 6rem;
    }
    .from-wrap dd span:has(select) {
        height: 6rem;
    }
    .from-wrap dd span[data-name="select-age"],
    .from-wrap dd span[data-name="select-times"] {
        width: 21rem;
    }
    .from-wrap dd span[data-name="select-job"] {
        width: 328px;
    }
    .from-wrap dd select {
        padding: 0.75em;
    }
    span.wpcf7-form-control.wpcf7-checkbox {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 3rem;
        grid-row-gap: 2rem;
    }
    .wpcf7-list-item:not(:last-of-type) {
        margin-bottom: 0;
    }
    .wpcf7-list-item .wpcf7-list-item-label {
        white-space: nowrap;
    }
    .from-wrap dd textarea {
        height: 6rem;
        padding: 0.75em;
    }
    .from-wrap dl:last-of-type dd textarea {
        height: 16rem;
    }

    .consent-btn {
        margin: 6.9rem 0 3.6rem;
    }
    .submit-btn {
        width: 408px;
    }
    .submit-btn input {
        height: 7.8rem;
        font-size: 2.2rem;
        line-height: 7.8rem;
        filter: drop-shadow(0px 8px 0px #DD6D0D);
    }
    .submit-btn::before {
        width: 4.2rem;
        height: 4.2rem;
    }
    .submit-btn::after {
        border-width: 10px 0 10px 16px;
        top: 3rem;
        left: 11.5%;
        transform: translateX(-11.5%);
        -webkit-transform: translateX(-11.5%);
    }
    .submit-btn:has(input:hover)::after,
    .submit-btn:has(input:active)::after {
        top: 2.9rem;
    }
    .submit-btn:has(input:disabled)::after {
        top: 3rem;
    }
}