@charset "UTF-8";
/* --------------------------------------------------------------
   241108追加分
   数値的メモ：100%ベース、0.5remで50px, 0.1remで10px, 0.16remで16px
-------------------------------------------------------------- */
/*共通設定*/
body {
    background-color: #5FD847;
}
.f-zenmaru {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    font-style: normal;
}
.f-mplus1c {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-style: normal;   
}
.f-notosansjp {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal; 
}
.c-green {
    color: #44C829;
}
/* --------------------------------------------------------------
   header
-------------------------------------------------------------- */
.cmn_header {
    background-color: #fff;
    padding: 0.16rem;
    margin-bottom: 0;
}
.cmn_header .logo_wrap {
    justify-content: space-between;
    align-items: center;
}
.cmn_header .txt {
    text-align: left;
}
/*左上のテキスト(ロゴ)*/
.logo {
    width: 100%;
    max-width: 130px;
}
.logo .txt.container{
    color: #333;
    font-size: .9em;
    line-height: 1.4;
    text-align: center;
}
.logo .txtSubTitle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
}
.logo .txtSubTitle  .txtLabel {
    /* background-color: #5FD847; */
    background-color: #53cb3b;
    border-radius: 88px;
    padding: 0.01rem .1rem;
    color: #fff;
    text-align: center;
}
.logo .txtLabelTitle {
    /* color: #5FD847; */
    color: #53cb3b;
    font-size: 0.16rem;
}
/* .logo .txt.container .txtTitle {
    display: block;
    font-size: .24rem;
    letter-spacing: 0.01rem;
} */
/*ミツキャリロゴ*/
.logo .txt.container .txtTitle {
    display: block;
    width: 86%;
    margin: 0 auto;
}
.logo .txt.container .txtAppear {
    display: block;
    font-size: clamp(6px,2vw,10px);
    letter-spacing: 0.2em;
}
.logo .txt.container .txtTitle.__line {
    display: block;
    font-size: .24rem;
    letter-spacing: 0.01rem;
}
.cmn_header .logo img {/*上書き*/
    position: static;
}


/*右上のナレルロゴ*/
.cmn_header .nareru-logo {
    display: block;
    max-width: 150px;
    width: 100%;
}
@media screen and (max-width: 767px) { 
    .cmn_header .nareru-logo {
        max-width: 110px;
    }
}



/* --------------------------------------------------------------
   fv
-------------------------------------------------------------- */
.fv {
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* --------------------------------------------------------------
   form
-------------------------------------------------------------- */
/*STEP数表記のPC版の下地を補足*/
.from_wrap {
    position: relative;
}
.from_wrap::before {
    display: block;
    content: "";
    width: 100vw;
    height: 72px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 calc(50% - 50vw);
    z-index: -1;
}


.step1-bg, #step2::before, #step3::before  {
    background-image: none;
}
.step_form .bg {
    background-color: #fff;
}
.step_form .lists dt {
    background: #606260;
}
/*style.cssで0にしているものをさらに上書きしているので注意*/
#step1 .bg:nth-child(2) {
    margin-top: .3rem;
}
/*あと1ステップ表記追加(バルーン)*/
#step2 .btn_next {
    position: relative;
}
#step2 .ly_balloon {
    position: absolute;
    top: -12px;
    left: 60px;
    z-index: 1;
}
#step2 .bl_balloon {
    background-color: #5FD847;
    border-radius: 88px;
    padding: 0.16rem 0.24rem;
    text-align: center;
    position: relative;
    /* box-shadow: 2px 2px 0px 0px rgba(255, 255, 255, 1); */
    box-shadow: 0px 5px 8px 0px rgba(68, 30, 2, 0.3);
}
#step2 .bl_balloon::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 12px solid #5fd847;
    border-bottom: 0;
    position: absolute;
    bottom: -10px;
    right: 20px;
     -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
    z-index: 1;
}
#step2 .bl_balloon .balloon_txt {
    color: #fff;
    font-weight: 700;
    font-size: 0.24rem;
    letter-spacing: 0.03rem;
}
#step2 .bl_balloon .balloon_txt .large {
    color: #FFFC4D;
    font-size: 150%;
}
/*申し込みボタン*/
.step_form .submit-btn {
  position: relative;
}
.step_form .submit-btn::before {
    display: block;
    content:"無料";
    background: #fff;
    color: #fbb02d;
    font-size: 0.24rem;
    border-radius: 88px;
    padding: 0.1rem 0.24rem;
    text-align: center;
    font-weight: 700;
    border: solid 2px #fbb02d;
    position: absolute;
    top: 50%;
    /* left: 64px; */
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    /* top: -10px; */
    left: calc(64 * (100vw/750));
    z-index: 1;
}
/* .step_form .submit-btn::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 12px solid #fff;
    border-bottom: 0;
    position: absolute;
    top: calc(28 * (100vw/750));
    left: calc(170 * (100vw/750));
     -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
    z-index: 1; 
} */

/*input*/
.step_form .submit {
    width: 6rem;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/* --------------------------------------------------------------
   footer
-------------------------------------------------------------- */
.cmn_footer .lists {
    background-color: #fff;
}
.cmn_footer .lists li a {
    color: #333;
}
.cmn_footer .lists li:nth-of-type(2) {
    border-left: solid 1px #333;
    padding-left: 0.16rem;
}
.cmn_footer small {
    padding-top: 0.08rem;
}

/* --------------------------------------------------------------
   thanks
-------------------------------------------------------------- */
.thanks_page .thanks_sec::before {
    background-image: none;
}
.thanks_page .thanks_sec .tit {
    color: #fff;
    text-shadow: none;
    line-height: 1.2;
}
.thanks_page .thanks_sec .txt {
    background-color: #fff;
    padding: .16rem .24rem;
}
/*neko画像配置をそのままのものを活かすため*/
.thanks_page .thanks_sec .box {
    background-color: transparent;
    padding: 0;
}
.thanks_page .thanks_sec .box::before {
    background-image: url(../images/thanks/img-neko.webp);
    background-size: 60%;
    background-position: center;
    top: calc(-400 *(100vw/750));

}
@media screen and (min-width: 980px) { 
    .thanks_page .thanks_sec .box::before {
        background-position: center right;
        top: -400px;
    }
}/*media query end*/

/* --------------------------------------------------------------
   ステップ数表記
-------------------------------------------------------------- */
.progressbar {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 0.16rem 0;
    overflow: hidden;
}
.progressbar .inner {
    width: 96%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
/*stepの共通設定*/
.progressbar .step_title {
    font-size: 0.32rem;
}
.progressbar .step_block {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    padding: 0.1rem;
    color: #fff;
    background: #B5B5B5;
    font-weight: 700;
    font-size: 0.28rem;
    text-align: center;
    position: relative;
}

/*現在地点*/
.progressbar .step_block.step_current {
    background-color: #379D23;
}

@media screen and (min-width: 980px) { 
    .progressbar {
        box-shadow: none;
        border-radius: 0;
    }
    .progressbar .inner {
        gap: 16px;
    }
    .step_form .submit-btn::before {
        left: 64px;
    }
    /* .step_form .submit-btn::after {
        border-top: 18px solid #fff;
        top: 26px;
        left: 190px;
    } */
    .logo {
        max-width: 180px;
    }
    .logo .txt.container .txtTitle {
        width: 86%;
    } 
}/*media query end*/
@media screen and (max-width: 767px) { 
    .progressbar {
        box-shadow: 0px 0px 16px -8px rgba(0,0,0,0.4) inset;
        overflow: hidden;
    }
    .from_wrap::before {
        display: none;
    }
}/*media query end*/

/* --------------------------------------------------------------
アニメーションの追加
-------------------------------------------------------------- */
.anim_fuwafuwa {
    animation: anim_fuwafuwa 1s ease-in-out infinite alternate;
}

@keyframes anim_fuwafuwa {
    0% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}