@charset "utf-8";
/* CSS Document */

.flow{
    width: 100%;
    height: auto;
}

.flow-content{
    width: 40%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 100px;
}

.flow-content_1{
    width: 100%;
    height: auto;
}
.flow-content_1_1{
    width: 50%;
    height: auto;
    margin: 0 auto;
    justify-content: space-between;
}
.flow-content_1_1-sen{
    width: 100%;
    margin-top: 10px;
    text-align: center;
}
.flow-content_1_1-pic{
    width: 100%;
    height: auto;
    border: solid 3px #603916;
}
.flow-content_1_1-pic img{
    width: 100%;
}


@media (max-width: 1200px){
    .flow-content{
        width: 60%;
    }
}
@media (max-width: 960px){
    .flow-content{
        width: 70%;
    }
}
@media (max-width: 768px){
    .flow-content{
        width: 80%;
    }
}
@media (max-width: 640px){
     .flow-content{
        width: 90%;
    }
    .flow-content_1_1{
        width: 80%;
        padding-top: 0;
        padding-bottom: 0;
    }
}
@media (max-width: 480px){
    .flow-content_1_1{
        display: block;
        width: 90%;
    }
    .flow-content_1_1-sen{
        width: 100%;
    }
    .flow-content_1_1-sen p{
        font-size: 15px;
    }
    .flow-content_1_1-pic{
        width: 100%;
        margin: 0 auto;
    }
}
.flow-content_1_1-niretsu{
    width: 100%;
}
.flow-content_1_1-pic-1{
    display: flex;
    justify-content: space-between;
}
.flow-content_1_1-pic-1 .flow-content_1_1-pic{
    width: 49%;
    
}
@media (max-width: 480px){
    .flow-content_1_1-pic-1{
        display: block;
        justify-content: space-between;
    }
    .flow-content_1_1-pic-1 .flow-content_1_1-pic{
       width: 90%;
        margin-bottom: 10px;
    }
    .flow-content_1_1-niretsu .flow-content_1_1-sen{
        width: 90%;
        margin: 0 auto;
    }
}
.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid #DF6A25;
    margin: auto;
    margin: 20px auto 20px auto;
}

/*LINE応募ボタン*/
.line-btn{
    position: fixed;
    bottom: 185px;
    right: 40px;
    z-index: 9999;
}
.line-button {
    display: block;
    position: relative;
    background: #06C755;
    width: 18rem;
    padding: 1rem;
    border-radius: .6rem;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: .1rem;
    transition: .5s;
    margin: 0 auto;
    border: solid 3px #06C755;
}

.line-button:before {
    content: "";
    position: absolute;
    top: 46%;
    right: 12px;
    width: 10px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
}

.line-button:after {
    content: "";
    position: absolute;
    top: 54%;
    right: 12px;
    width: 10px;
    height: 2px;
    background: #fff;
    transform: rotate(-45deg);
}
.line-button:hover{
    color: #06C755;
    background: #fff;
}
.line-button:hover:before,.line-button:hover:after{
    background: #06C755;
}

@media (max-width: 768px){
    .wait-button,
    .line-button{
        font-size: 18px;
    }
    .wait-btn{
/*        position: absolute;*/
        left: 0;
        right: unset;
        width: 50vw;
    }
    .line-btn{
/*        position: absolute;*/
        bottom: 0;
        right: 0;
    }
    .line-button {
        width: 50vw;
        border-radius: 0px;
    }
    .wait-button{
        width: 50vw;
    }
}
/*固定ボタン終わり*/

/*見出し下の文章*/
.recruit-line{
    width: 100%;
    height: auto;
    margin: 15px auto;
    margin-bottom: 40px;
    text-align: center;
}
.recruit-line_h2{
    width: 400px;
    height: auto;
    padding: 15px 10px;
    background-color: #06C755;
    margin: 0 auto;
    margin-bottom: 30px;
    border-radius: 10px;
        position: relative;
}
.recruit-line_h2:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #06C755;
    z-index: 2;
}


.recruit-line_h2 h2{
    margin-bottom: 0;
    color: #fff;
    font-weight: 700;
    font-size: 25px;
    line-height: 2.2rem;
}
.recruit-line_p p{
    color: #603916;
    font-weight: bold;
}
@media (max-width: 480px){
    .recruit-line{
        margin-bottom: 30px;
    }
    .recruit-line_h2{
        width: 90%;
        padding: 10px;
    }
    .recruit-line_h2 h2{
        font-size: 18px;
        line-height: 1.6rem;
    }
    .recruit-line_p{
        width: 90%;
        margin: 0 auto;
    }
    .recruit-line_p p{
        font-size: 15px;
    }
    .recruit-line_p p span{
        display: inline-block;
    }
}