/* -------------------- common -------------------- */

html {
    font-size: 62.5%; /* 10px */
}
body {
    margin: 0;
    padding: 0;
    word-break: normal;
    box-sizing: border-box;
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    letter-spacing : -0.07em;
    cursor: pointer;
}
.container {
    overflow: hidden;
}
.wrapper {
    margin:0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 80%;
    max-width: 1400px;
    overflow: hidden;
}
a {
    cursor: pointer;
}
.pc_n {
    display: none;
}

ol, ul {　
    list-style: none;
}

/* h2 */
    .h2,
    .h2_small,
    .h2_middle,
    .h2_big {
        text-align: center;
        padding-bottom: 100px;
    }
    .h2 img {
        width: 50%;
    }
    .h2_small img{
        width: 30%;
    }
    .h2_middle img{
        width: 70%;
    }
    .h2_big img {
        width: 100%;
    }
/* text */
.sec04_txt,
.sec05_txt,
.sec06_txt,
.sec08_txt {
    text-align: center;
    font-weight: 600;
    line-height: 7rem;
    font-size: 3.5rem;
}

/*padding*/
.pd_t20 {
    padding-top: 2rem;
}
.pd_b20 {
    padding-bottom: 2rem;
}
.pd_t40 {
    padding-top: 4rem;
}
.pd_b40 {
    padding-bottom: 4rem;
}
.pd_t60 {
    padding-top: 6rem;
}
.pd_b60 {
    padding-bottom: 6rem;
}
.pd_t100 {
    padding-top: 10rem;
}
.pd_b100 {
    padding-bottom: 10rem;
}

/*font-size*/
.notes {
    font-size: 1.2rem;
}
.px20 {
    font-size: 2rem;
}
.px25 {
    font-size: 2.5rem;
}
.px30 {
    font-size: 3rem;
}
.px35 {
    font-size: 3.5rem;
}
.px40 {
    font-size: 4rem;
}
.px50 {
    font-size: 5rem;
}
.px55 {
    font-size: 5.5rem;
}
.px65 {
    font-size: 6.5rem;
}
.px70 {
    font-size: 7rem;
}
.px80 {
    font-size: 8rem;
}
.emp {
    font-size: 1.5em;
}
/* font-wight */
.w6 {
    font-weight: 600;
}
.w7 {
    font-weight: 700;
}
.w8 {
    font-weight: 800;
}


/* font-color */
.wht {
    color: #fff;
}
.ylw {
    color:#fff100 ;
}
.gray {
    color: #333;
}
.blue {
    color: #045cb6;
}
.orange {
    color: #ff5353;
}

/* deco */
.highlight {
    text-decoration: underline;
    text-underline-offset: -0.2em;
    text-decoration-thickness: 0.5em;
    text-decoration-color: #ffe400;
    text-decoration-skip-ink: none;
}

/* position */
.txt_c {
    text-align: center;
}

/* background */
#sec01,
#sec05,
#footer {
    background-color: #045cb6;
}

#cta,
#sec04,
#sec06 {
    background-image: linear-gradient(-45deg, #fff 25%, #ddeeff 25%, #ddeeff 50%, #fff 50%, #fff 75%, #ddeeff 75%, #ddeeff);
    background-size: 8px 8px;
}
#sec07 {
    background-color: #f5f6fa;
}


/* -------------------- CTA -------------------- */
/*h2 animation*/


/*横並び*/
    /*.cta_btn_set {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }*/

    .cta_btn_set img {
        width: 100%;
    }

/*Line*/
    a.cta_line_txt { /*ref:https://excellent.ne.jp/homepage/6562/*/
        display: block;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        width: 47%;
        margin: auto;
        padding: 3rem 4rem;
        font-weight: bold;
        border: 1rem solid #ffffff;
        background: #06c755;
        color: #fff;
        border-radius: 100px;
        transition: 0.5s;
        animation: move_d 2s infinite;
        box-shadow: 0 2rem 0 rgb(0, 0, 0, 0.3);
        position: relative;
    }
    @keyframes move_d {
        0% {box-shadow: 0 2rem 0 rgb(0, 0, 0, 0.3); top: 0px;}
        10% {box-shadow: 0 0 0 rgb(0, 0, 0, 0.3); top: 5px;}
        20% {box-shadow: 0 2rem 0 rgb(0, 0, 0, 0.3); top: 0px;}
        30% {box-shadow: 0 0 0 rgb(0, 0, 0, 0.3); top: 5px;}
        40% {box-shadow: 0 2rem 0 rgb(0, 0, 0, 0.3); top: 0px;}
    }
    a.cta_line_txt:hover {
        color: #06c755;
        background: #22884c;
        border: 1rem solid #ffffff;
    }
/*Tel*/
    a.cta_tel_txt { /*ref:https://excellent.ne.jp/homepage/6562/*/
        display: block;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        width: 47%;
        margin: auto;
        padding: 3rem 4rem;
        font-weight: bold;
        border: 1rem solid #ffffff;
        background: #ec6941;
        color: #fff;
        border-radius: 100px;
        transition: 0.5s;
        animation: move_d 2s infinite;
        box-shadow: 0 2rem 0 rgb(0, 0, 0, 0.3);
        position: relative;
    }
    @keyframes move_d {
        0% {box-shadow: 0 2rem 0 rgb(0, 0, 0, 0.3); top: 0px;}
        10% {box-shadow: 0 0 0 rgb(0, 0, 0, 0.3); top: 5px;}
        20% {box-shadow: 0 2rem 0 rgb(0, 0, 0, 0.3); top: 0px;}
        30% {box-shadow: 0 0 0 rgb(0, 0, 0, 0.3); top: 5px;}
        40% {box-shadow: 0 2rem 0 rgb(0, 0, 0, 0.3); top: 0px;}
    }
    a.cta_tel_txt:hover {
        color: #ec6941;
        background: #9f452a;
        border: 1rem solid #ffffff;
    }
    
.cta_btn {
    padding-top: 100px;
}
.cta_btn img {
        width: 100%;
}

.cta_txt {
    text-align: center;
    font-weight: 600;
    font-size: 1.8rem;
}


/*Line*/
    a.cta_line_txt_big {
        display: block;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        width: 72%;
        margin: auto;
        padding: 6rem 8rem;
        font-weight: bold;
        border: 1rem solid #ffffff;
        background: #06c755;
        color: #fff;
        border-radius: 150px;
        transition: 0.5s;
        animation: move_d 2s infinite;
        box-shadow: 0 2rem 0 rgb(0, 0, 0, 0.3);
        position: relative;
    }
    @keyframes move_d {
        0% {box-shadow: 0 2rem 0 rgb(0, 0, 0, 0.3); top: 0px;}
        10% {box-shadow: 0 0 0 rgb(0, 0, 0, 0.3); top: 5px;}
        20% {box-shadow: 0 2rem 0 rgb(0, 0, 0, 0.3); top: 0px;}
        30% {box-shadow: 0 0 0 rgb(0, 0, 0, 0.3); top: 5px;}
        40% {box-shadow: 0 2rem 0 rgb(0, 0, 0, 0.3); top: 0px;}
    }
    a.cta_line_txt_big:hover {
        color: #06c755;
        background: #22884c;
        border: 1rem solid #ffffff;
    }

/* -------------------- MV -------------------- */
#MV {
    position: relative;
    margin: 0;
}
.pc_mv_bg {
    width: 100vw;
}
.pc_mv_points {
    position: absolute;
    width: 65%;
    left: 20%;
    bottom: 2%;
}
/*points-animation*/
.dokidoki {
    animation: dokidoki 1.8s infinite;
}
@keyframes dokidoki{
0% {
    transform: scale(1.01);
}
5% {
    transform: scale(1.03);
}
95% {
    transform: scale(1);
}
100% {
    -webkit-transform: scale(1);
}
}


/* -------------------- sec01 -------------------- */
.no3 {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    /**/
    font-size: 3rem;
}

.radius_yellow {
    display: block;
    text-align: center;
    width: 25%;
    padding: 0.5em 0.5em;
    margin-right: 0.5em;
    background: #fff100;
    color: #045cb6;
    border-radius: 100px;
}
.reasons img {
    width: 100%;
}
.support_pc {
    display: flex;
    align-content: space-between;
}
.support_pc .sec01_person01{
    width: 300px;
    height: 100%;
    padding-right: 2.5rem;
}

.support_pc .support_pc_txt img {
    width: 100%;
}
.borderline {
    margin: 25px 0;
    width: 100%;
    height: 10px;
    background-image: linear-gradient(-45deg, #fff 25%, #045cb6 25%, #045cb6 50%, #fff 50%, #fff 75%, #045cb6 75%, #045cb6);
    background-size: 8px 8px;
}
.support_pc p{
    font-size: 2.5rem;
    line-height: 5rem;
}

/* -------------------- sec02 -------------------- */
.comics {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}
.comics img {
    width: 50%;
}


/* -------------------- sec03 -------------------- */
#sec03 img{
    width: 100%;
}
/* -------------------- sec04 -------------------- */
.pc_steps_12 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 17%;
    margin-right: 17%;
}
.pc_steps img {
    width: 100%;
}
.pc_steps p {
    padding-left: 25px;
    padding-right: 25px;
}
.sec04_arrow {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 17%;
    padding-right: 17%;
}
.pc_steps_345 {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* -------------------- sec05 -------------------- */
#sec05 {
    background-image: url(../img/sec05_mapbg.png);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 50%;
}
.sec05_txt {
    line-height: 6rem;
    text-align: center;
}

/*求人ボックス*/
.swiper {
    max-width: 750px;
    display: flex;
    justify-content: center;

}
    .offer_box {
        width: 100%;
        max-width: 600px;
        background-color: #fff;
        border-radius: 15px;
        margin: 0 auto 50px auto;
    }
    .offer_head {
        background-color: #ddeeff;
        padding-top: 2rem;
        border-radius: 20px 20px 0 0;
    }
    .phrase {
        background-color: #ff5353;
        padding: 2rem;

        font-size: 3rem;
        color:#fff;
        font-weight: 600;
        text-align: center;
    }
    .offer_head h3 {
        padding-top: 3rem; 
        padding-bottom: 3rem;
        margin: 0 auto;

        text-align: center;
    }
    .offer_head .pref {
        background-color: #045cb6;
        padding: 1rem 2rem;
        margin-right: 2rem;

        font-size: 2.5rem;
        color: #fff;
    }
    .offer_head .ind {
        font-size: 3rem;
        font-weight: 600;
        color: #045cb6;
    }

    .offer_detail {
        padding: 3rem;
        margin: 0 auto;
    }
    .offer_detail .item {
        padding-bottom: 25px;
        font-size: 2.5rem;
        color: #045cb6;
    }
    .offer_detail .tag {
        background-color: #f5f6fa;
        padding: 10px 35px;
        margin-right: 20px;
    }
    .offer_txt{
        text-align: center;
        font-size: 2.5rem;
        color: #045cb6;
        padding-top: 2rem;
    }

    /*swiper*/
    .swiper-button-next, .swiper-button-prev {
        color: #045cb6;
        background: #ffffff83;
        border-radius: 100px;
        padding: 2rem;
        margin-top:calc(0px - (var(--swiper-navigation-size)/ 1));
    }

/* -------------------- sec06 -------------------- */
/*ご利用者さま*/
    .c_voice {
        width: 80%;
        display: flex;
        justify-content: space-between;
        background-color: #fff;
        margin: 0 auto;
        padding: 4rem 3rem;
        position: relative;
        margin-bottom: 80px;
    }
    .c_voice .sec06_person {
        width: 20%;
        position: absolute;
        top: -30px;
    }
    .c_voice_status .tag {
        background-color: #f5f6fa;
        padding: 0.5rem 2.5rem;
        margin-right: 2rem;
    }

    .c_voice_status .tag:not(:first-child) {
        margin-left: 2rem;
    }
    .c_voice_status {
        font-size: 2rem;
    }
    .c_voice_txt .message{
        padding-top: 3rem;
        font-size: 2rem;
        line-height: 3.5rem;
    }
    /*順番関係*/
    .c_voices > ul li:nth-child(even) .c_voice {
        flex-direction: row-reverse;
    }
    .c_voices > ul li:nth-child(odd) .c_voice_txt {
        margin-left: 25%;
        margin-right: 0%;
    }
    .c_voices > ul li:nth-child(even) .c_voice_txt {
        margin-left: 0;
        margin-right: 25%;
    }


/*社員*/
    .w_voice {
        width: 80%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-content: center;

        background-color: #fff;
        margin: 0 auto;
        padding: 3rem 3rem;
        position: relative;
        margin-bottom: 80px;
    }
    .w_voice .sec06_worker {
        width: 20%;
        height: auto;
    }
    .w_voice2{
        margin-right: 2.5rem;
    }
    .w_voice1{
        margin-left: 2.5rem;
    }
    .w_voice_txt .message{
        font-size: 2rem;
        line-height: 3.5rem;
    }
    /*順番関係*/
    .w_voices > ul li:nth-child(even) .w_voice {
        flex-direction: row-reverse;
    }


/* -------------------- sec07 -------------------- */
.Qa-Box {
    width: 80%;
    margin: 0 auto;
  }

.Qa {
    margin-bottom: 3.5rem;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
    display: flex;
    align-items: baseline;
    margin: 1.5rem 0;
    padding: 1.5rem;
}

.Qa-Box .Qa dt {
    background: #ddeeff;
}

.Qa-Box .Qa dt p {
    margin: 0;
    padding-left: 1.5rem;
    font-size: 3rem;
    font-weight: bold;
    color: #045cb6;
    width: 100%;
}

.Qa-Box .Qa dd p {
    margin: 0;
    padding-left: 1.5rem;
    width: 100%;
    font-size: 2.5rem;
    line-height: 4.5rem;
}

.Qa-Box .Qa dt::before {
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #ff5353;
    width: 5rem;
    height: 5rem;
    font-size: 3rem;
}

.Qa-Box .Qa dd::before {
    content: "A";
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #045cb6;
    width: 5rem;
    height: 5rem;
    font-size: 3rem;
}

/* -------------------- sec08 -------------------- */
.pc_commonsteps img{
    width: 100%;
}
.pc_commonstep_line,
.pc_commonstep_line2 {
    display: flex;
    justify-content: start;
    align-items: center;
}
.pc_commonstep_line span,
.pc_commonstep_line2 span {
    font-size: 4rem;
    color: #045cb6;
    padding: 0 2.5rem;
}
.pc_commonstep_line2 {
    margin-right: 11rem;
}
.sec08_txt p{
    font-size: 2.5rem;
    line-height: 5.5rem;
}

.triangle { /*ref:https://qiita.com/degudegu2510/items/09f34d4b218c9df6bb57*/
    background: #a8d8fe;
    height: calc(15rem / 2);
    width: 15rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);

    margin: 10rem auto 6rem auto;
  }

/* -------------------- footer -------------------- */
#footer {
    text-align: center;
    color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
    font-size: 2rem;
    line-height: 4rem;
}

footer img {
    width: 10%;
}

/* 固定ボタン */
.fixbtn {
    text-align: center;
    place-content: center;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index:9999;
}

/*固定ボタン*/

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn,
a.btn,
button.btn {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  padding: 1rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn--circle {
  width: 14rem;
  height: 14rem;
  padding: 2rem 0 0;
  border-radius: 50%;
  color: #fff;
  background: #06c755;
  -webkit-box-shadow: 0 7px 0 #049440;
  box-shadow: 0 7px 0 #049440;
}

a.btn--circle i {
  font-size: 200%;
}

.fa-position-bottom {
  position: absolute;
  bottom: 1rem;
  left: calc(50% - 0.5rem);
}

a.btn--circle:hover {
  -webkit-transform: translate(0, 4px);
  transform: translate(0, 4px);
  color: #fff;
  -webkit-box-shadow: 0 3px 0 #049440;
  box-shadow: 0 3px 0 #049440;
  opacity: 0.7;
}

/*ふわっと*/
.fadeup{
    animation-name:fadeupanime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
}
    
@keyframes fadeupanime{
    from {
        opacity: 0;
    transform: translateY(50px); /* 透明・下100pxから */
    }
    
    to {
        opacity: 1;
    transform: translateY(0); /* 不透明・0pxの位置へフェードアップアニメーションが動く */
    }
}
.fadeuptrigger{
    opacity: 0; /* ふわっと出現するきっかけの起点となるクラス名「fadeUpTrigger」に「透過0（opacity:0;）」の指定をする。 */
}

/* -------------------- SP -------------------- */
@media (max-width: 768px) {
    /* 共通 */
    html {
        font-size: 31.25%; /* 1rem:5px */
    }
    .sp_n {
        display: none;
    }
    .pc_n {
        display: block;
    }
    .wrapper {
        width: 90%;
        padding-top: 50px;
        padding-bottom: 50px;
        overflow: hidden;
    }
    /* fontsize*/
    .emp {
        font-size: 1.3em;
    }

    /* text */

        .sec04_txt,
        .sec05_txt,
        .sec06_txt,
        .sec08_txt {
            text-align: center;
            font-weight: 600;
            line-height: 5.4rem;
            font-size: 3.4rem;
        }
        /* h2 */
        .h2,
        .h2_small,
        .h2_middle,
        .h2_big {
            text-align: center;
            padding-bottom: 50px;
        }
        .h2 img,
        .h2_middle img {
            width: 100%;
        }
        .h2_small img{
            width: 60%;
        }

    /*--- CTA ---*/
    /*横並び*/
        .cta_btn_set {
            display: block;
        }
        /*Line*/
        a.cta_line_txt {
            width: 100%;
        }
        /*Tel*/
        a.cta_tel_txt {
            width: 100%;
            margin-top: 20px;
        }
        .cta_txt{
            font-size: 2.4rem;
            line-height: 6rem;
        }

    
        /*単独*/
        .cta_btn {
            padding-top: 40px;
        }
        .cta_btn img {
            width: 100%;
        }


        /*Line*/
        a.cta_line_txt_big {
            width: 100%;
            padding: 20px 30px;
            border: 8px solid #ffffff;
        }
        a.cta_line_txt_big:hover {
            border: 8px solid #ffffff;
        }

    /*--- MV ---*/
    .sp_mv_bg {
        width: 100vw;
    }
    .sp_mv_points {
        position: absolute;
        width: 44%;
        left: 5%;
        bottom: 0%;
    }

    /*--- sec01 ---*/
    .no3 {
        width: 100%;
        font-size: 2.4rem;
    }

    .support_sp_head {
        display: flex;
        align-content: space-between;
        align-items: center;
        width: 100%;
    }
    .support_sp .sec01_person01{
        width: 25%;
        height: 100%;
        padding-right: 2.5rem;
    }
    .support_sp img {
        width: 100%;
    }
    .support_sp p{
        font-size: 2.5rem;
        line-height: 5rem;
    }



    /*--- sec02 ---*/
    .comics {
        display: block;
    }
    .comics img {
        width: 100%;
    }

    /*--- sec04 ---*/
    .sp_steps img{
        width: 100%;
    }
    .sp_steps .sec04_arrow {
        padding: 0 0 10px 0;
    }
    /*--- sec05 ---*/
    #sec05 .h2 {
        padding-bottom: 6rem;
    }
    .swiper {
        width: 100%;
    }
    .offer_box {
        width: 90%;
    }



    /*--- sec06 ---*/
        /*　ご利用者さま　*/
        .c_voice {
            width: 100%;
            margin-bottom: 40px;
        }
        .c_voice .sec06_person {
            top: -10px;
        }
        .c_voice_status {
            line-height: 2.4em;
        }
        .c_voice_status .tag:not(:first-child) {
            margin-left: 0rem;
        }
        .afterbr::after {
            content: "\A";
            white-space: pre;
        }
        .c_voice_txt .message {
            padding-top: 1.3rem;
        }

        /*　社員　*/
        .w_voice {        
            width: 100%;
            margin-bottom: 40px;
        }

        .w_voice .sec06_worker {
            width: 18%;
            height: auto;
        }
        .w_voice_txt .message{
            font-size: 2rem;
            line-height: 3.5rem;
        }
        /*順番関係*/
        .w_voices > ul li:nth-child(even) .w_voice {
            flex-direction: row-reverse;
        }

    /*--- sec07 ---*/
    .Qa-Box {
        width: 100%;
    }

    /*--- sec08 ---*/
    .sp_commonsteps img{
        width: 100%;
    }
    .sp_commonstep_line,
    .sp_commonstep_line2 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sp_commonstep_line {
        padding-bottom: 1rem;
    }
    .sp_commonsteps span {
        font-size: 3rem;
        color: #045cb6;
        padding: 0 1rem;
    }
    .sp_commonstep_line2 {
        margin-right: 27rem;
    }
    .sec08_txt p{
        font-size: 2.4rem;
        line-height: 6rem;
    }

    /*--- footer---*/
    .fixbtn {
        bottom: 20px;
    }

    footer img {
    width: 30%;
}