@charset "utf-8";

/* ---------------------------------------------
Reset
--------------------------------------------- */
html, body, header, footer, main, section, div, span, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd {
    margin:0;
    padding:0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-family: "Noto Sans JP", sans-serif;
}
body{
    max-width: 470px;
    margin: 0 auto;
}
img{
    display: inline-block;
    width: 100%;
}
:root{
    --bg: #DCF8FF;
}
/* ---------------------------------------------
共通
--------------------------------------------- */
.center{
    text-align: center;
}
.flex {
    display: flex;
}
a{
    display: block;
    margin: 0 auto;
    width: 80%;
}
a:hover,
button:hover{
    opacity: 0.8;
}
/* ---------------------------------------------
fv
--------------------------------------------- */
#fv{
    background-color: var(--bg);
    padding-bottom: 10%;
    /* height: 100vh; */
}
.slider{
    margin: 5% 0;
}
#fv .fv_subtitle{
    background-color: #FFF;
    color: #000;
    border-radius: 10px;
    padding: 2%;
    margin: 8% auto 3% auto;
    width: 80%;
    font-size: 1rem;
    font-weight: 600;
}
#fv .coution{
    font-weight: 500;
    font-size: 0.9rem;
}
#fv a{
    margin: 10% auto 0 auto;
}
@media (max-width:469px) {
    #fv .fv_subtitle{
        font-size: 1.2rem;
    }   
}
/* ---------------------------------------------
form
--------------------------------------------- */
#form{
    /* height: 100vh; */
}
.step {
    display: none;
    /* padding-top: 15%; */
}
.step.active {
    display: block; 
}
#stepForm{
    background-color: var(--bg);
    padding-bottom: 15%;
}
#stepForm .title_box{
    position: relative;
}
#stepForm .progress_box{
    width: 80%;
    background: #FFF;
    height: 20px;
    border-radius: 10px;
    /* overflow: hidden; */
    position: absolute;
    top: 50%;
    left: 11%;
}
.bar {
    height: 100%;
    width: 0%;
    background: #0071BC;
    border-radius: 10px;
    transition:0.3s;
    border: 2px solid #FFF;
}
#stepForm .step .title_box .progress_box .flex{
    justify-content: space-between;
}
.progressTextLeft, .progressTextRight {
    font-weight: 600;
}
.progressTextLeft{
    color: #EEE92E
}
.progressTextRight{
    color: #FFF;
}
.stepform_title{
    text-align: center;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 5%;
    width: 80%;
    margin: 0 auto;
    padding-top: 15%;
    font-size: 1.5rem;
}
#stepForm h3.flex{
    justify-content: left;
    align-items: baseline;
    width: 80%;
    margin: auto;
}
.balloon {
    position: relative;
    display: inline-block;
    margin: 1.5em 15px 1.5em 0;
    padding: 0 5px;
    width: 45px;
    min-width: 45px;
    height: 45px;
    min-height: 45px;
    line-height: 45px;
    line-height: 45px;
    text-align: center;
    color: #FFF;
    font-size: 20px;
    font-weight: bold;
    background: #29ABE2;
    border-radius: 50%;
    box-sizing: border-box;
    font-size: 1.7rem;
}
.balloon::before {
    content: "";
    position: absolute;
    bottom: -5px;
    right: -2px;
    margin-top: -15px;
    border: 5px solid transparent;
    border-left: 10px solid #29ABE2;
    z-index: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.stepform__step_formarea_input{
    text-align: center;
    margin: 32px 0 30% 0;
    display: flex;
    justify-content: center;
    display: block;
}
[data-step="15"] .stepform__step_formarea_input{
    margin-bottom: 5%;
}
input[type="radio"] {
    display: none;
}
label span {
    display: inline-block;
    margin: 5px;
    width: 80%;
    height: 56px;
    line-height: 56px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: .3s;
    background-color: #FFF;
    font-weight: 600;
}
@media (min-width:769px) {
    label span:hover{
        color: #fff;
        background-color: #83cded;    
    }
}
input[type="radio"]:checked + span{
    color: #fff;
    background-color: #29ABE2;
}
/* ios制御 */
html, body {
    touch-action: manipulation;
}
label {
    -webkit-tap-highlight-color: transparent;
}
input[type="radio"] {
    -webkit-tap-highlight-color: transparent;
    appearance: none; /* iOS独自UIをリセット */
    outline: none;
}
label, label span {
    -webkit-tap-highlight-color: transparent;
}
label span.selected {
    color: #fff;
    background-color: #29ABE2;
}
label span, input[type="radio"] + span {
    -webkit-tap-highlight-color: transparent;
}
input[type="radio"]:not(:checked) + span:active {
    background: inherit !important;
    color: inherit !important;
}
/*  */
button{
    display: block;
    border: none;
    transition: .3s;
    background: none;
}
button[id="prevBtn"]{
    width: 20%;
    margin: 0 auto;
}
button[id="more_btn"]{
    display: none;
    width: 80%;
    margin: 0 auto 5% auto;
}
@media (max-width:469px) {
    .stepform_title{
        font-size: 1.2rem;
    }   
}
/* ---------------------------------------------
loading
--------------------------------------------- */
#loading_screen{
    display: none;
    background-color: var(--bg);
    padding-bottom: 15%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.loading_box{
    position: relative;
}
.loading {
    /* height: 100%; */
    z-index: 1000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#imageArea{
    display: block;
    width: 50%;
    margin: 15% auto;
    padding: 15% 0;
}
.spinner {
    width: 400px;
    height: 400px;
    border: 20px solid #FFF;
    border-top: 20px solid #0071BC;
    border-radius: 50%;
    animation: spin 5s linear infinite
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#loading_screen div.center{
    padding-top: 10%;
}

@media (max-width:469px) {
    .loading_box{
        width: 90%;
        margin: 0 5%;
    }
    .spinner {
    width: 300px;
    height: 300px;
    border: 20px solid #FFF;
    border-top: 20px solid #0071BC;
    border-radius: 50%;
    animation: spin 5s linear infinite;
}
}
/* ---------------------------------------------
result
--------------------------------------------- */
[id^="type"] {
    display: none;
    padding-bottom: 10%;
    }
.type_bg{
    padding-bottom: 3%;
}
#result img[src*="name"]{
    width: 80%;
    margin: 5% auto;
    display: block;
}
.job_box{
    border-radius: 10px;
    background-color: #FFF;
    width: 80%;
    margin: 8% auto;
    padding: 3%;
}
.job_box p{
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 3%;
}
.job_box ul li{
    text-align: center;
    list-style-position: inside;
    line-height: 1.3;
}
.job_box ul li::marker{
    font-size: 1.5rem;
}
#result h3{
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
}
#result [class^="type"][class$="_result"] h3{
    margin: 2% 0 5% 0;
}
.cta{
    width: 80%;
    margin: 0 auto;
    color: #aaa;
    font-size: 0.8rem;
    padding: 3% 0;
}
.cta_wrapper{
    position: relative;
}
.sns_wrapper{
    position: absolute;
    width: 45%;
    bottom: 20%;
    left: 8%;
}
.instaWrapper{
    width: 80%;
    background:none;
    border:none;
    padding:0;
}
img[src*="cta01"]{
    margin-top:3%;
}
img[src*="cta02"]{
    margin-top:3%;
}

/* animation */
.sns_wrapper{
    cursor: pointer;
    animation: pulseEffect 1s ease-in-out infinite;
}
@keyframes pulseEffect {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
.cta02 a{
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
}
.imgWrapper{
    overflow: hidden; 
    margin: 10px;
}
.cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    pointer-events: none;
}
.shine {
    position: absolute;
    top: 12%;   
    left: -20%;
    width: 30%;
    height: 75%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-40deg);
    animation: btn_animation 1.5s ease-in-out infinite;
    opacity: 0;
    pointer-events: none; 
}
@keyframes btn_animation {
    0% {
        left: -10%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        left: 100%;
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/*  */

.pink,.blue,.green,.orange{
    border-radius: 10px;
    padding: 3%;
    margin: 3% auto;
    width: 90%;
}
.p_title,.b_title,.g_title,.o_title{
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 2%;
}
.pink{
    background-color: #FFD7E7;
}
.p_title{
    color: #EE627B;
}
.blue{
    background-color: #A4E7FF;
}
.b_title{
    color: #0091C4;
}
.green{
    background-color: #AEFCB5;
}
.g_title{
    color: #119C50;
}
.orange{
    background-color: #FFD6AE;
}
.o_title{
    color: #F15F2A;
}
#type01 .type_bg{
    background-color: #FFEEF0;
}
#type01 h3,
#type01 .job_box p,
#type01 ul li::marker{
    color: #C1272D;
}
#type02 .type_bg{
    background-color: #F0FFF1;
}
#type02 h3,
#type02 .job_box p,
#type02 ul li::marker{
    color: #006837;
}
#type03 .type_bg{
    background-color: #FFF4E9;
}
#type03 h3,
#type03 .job_box p,
#type03 ul li::marker{
    color: #F79B2F;
}
#type04 .type_bg{
    background-color: #E3F5FF;
}
#type04 h3,
#type04 .job_box p,
#type04 ul li::marker{
    color: #0370BB;
}
#type05 .type_bg{
    background-color: #FFF3F8;
}
#type05 h3,
#type05 .job_box p,
#type05 ul li::marker{
    color: #EE637A;
}
#type06 .type_bg{
    background-color: #FFF4EB;
}
#type06 h3,
#type06 .job_box p,
#type06 ul li::marker{
    color: #8C6239;
}
#type07 .type_bg{
    background-color: #FFEEF6;
}
#type07 h3,
#type07 .job_box p,
#type07 ul li::marker{
    color: #FF7BAC;
}
#type08 .type_bg{
    background-color: #E3F5FF;
}
#type08 h3,
#type08 .job_box p,
#type08 ul li::marker{
    color: #29ABE2;
}
#type09 .type_bg{
    background-color: #E6FFF1;
}
#type09 h3,
#type09 .job_box p,
#type09 ul li::marker{
    color: #019246;
}
#type10 .type_bg{
    background-color: #FFF3F8;
}
#type10 h3,
#type10 .job_box p,
#type10 ul li::marker{
    color: #A678CE;
}