@charset "UTF=8";

*, *::before, *::after{
    box-sizing: border-box;
}

@keyframes fade-in{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
} 

/* mainのpがゴシックなのでメニューのＰと区別 */
.container02 li p{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}


/* main
------------------------ */
main{
    color: #3a3a3a;
}
/* 便宜的な空エリア */
.white_room{
    height: 125px;
}

.title_area {
    /* 枠を作ってh2を真ん中に配置
     */
     display: flex;
     justify-content: center;
     align-items: center;
    background: url(../img/recruit_img_pc.jpg) no-repeat center center;
    background-size: cover;
     /* 縦横比でスライドイメージの高さを設定しておく↓ */
    /* 検証ツールで単位をvwに、数値を動かし調整 */
    height: 15vw;
}


h2{
    /* 枠を作ってh2を真ん中に配置
     */

    font-size: 2.5vw;
    color: #ffffff;
    font-family: 'Cormorant SC';
    letter-spacing: 5px;
    background-color: rgba(0,0,0,.5);
    width: 18vw;
    text-align: center;
    /* 遅れてタイトル表示 */
    opacity: 0;
    animation-name: fade-in;
    animation-duration: 2s;
    animation-delay: 1.5s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
 }

.bg_white{
    background: rgb(255, 255, 255);
    border:  #9c9c9c;
}
.bg_gray{
    background: #EBEBEB;
    border:  #9c9c9c;
}
.inner{
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5px;
}
.title{
    display: flex;
}

h3{
    opacity: 1;
    margin: 40px auto ;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8;
}    
.text01 h3{
    line-height: 1.8;
    text-align: left;
   margin-bottom: 20px;
}   
h4{
    opacity: 1;
    font-size: 25px;
    text-align: left;
    font-family: 'Noto Serif JP', serif;
    /* font-size: 18px; */
    line-height: 1.5;
    letter-spacing: 2px;
    width: 100%;
}

/* p{
    font-family: 'Noto Serif JP', serif; 
    font-size: 18px; 
    line-height: 2;
    letter-spacing: 1.2px;
} */

.recruit_info{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.bar01{    
    width: 10px;
    height: 30px;
    margin-top: 60px;
    margin-right: 10px;
    background: #DB000D;
}
.bar02{    
    width: 10px;
    height: 30px;
    margin-top: 48px;
    margin-right: 10px;
    background: #00942D;
}
/* .text01{
    margin-top: 35px;
} */

p{
    font-family: 'Noto Serif JP', serif;
    /* font-size: 18px; */
    line-height: 2;
    letter-spacing: 1.2px;    
}
.text_area p{
    margin-bottom: 40px;
}
.bold{
    font-size: 18px;
    font-weight: 700;
}
.line_height{
    margin-top: -35px;
}
iframe{
    margin-bottom: 30px;
}
.recruit_btn{
    margin-bottom: 100px;
    
}
.recruit_btn a{
    color: #ffffff;
    background: rgb(255, 96, 5);
    width: 150px;
    font-size: 18px;
    font-weight: 500;
    height: auto;
    text-decoration: none;
    padding: 20px 50px 20px;
}
.recruit_btn a i{
    transform: translate(14px, 0);
    /* transitionの設定 */
    transition: all 1s  0s ease-out;
}
.recruit_btn a:hover i{
    transform: translate(34px, 0);
}
.recruit_btn a:hover{
    background: rgb(255, 203, 33);
    transition: all 1.5s  0s ease-out;
}
.qr_code img{
    margin-bottom: 10px;
}
figcaption{
    font-size: 14px;
    font-weight: 500;
}

#content {
    max-width: 650px;
}





/* 右に出来た空白をhiddenに　横スクロール回避 */
.wrap {
    overflow: hidden;
}



@media(max-width: 767px){
    .title_area {
        background: url(../img/recruit_img_sp.jpg) no-repeat center center;
        background-size: cover;
        width: 100vw;
     }
    .white_room{
        height: 70px;
        /* width: 100%; */
    }
    /* h2{
        font-size: 4.5vw;
        letter-spacing: 2.5px;
        width: 27vw;
    } */
    h3{
        font-size: 1.1rem;
        margin: 30px auto;
        padding: 10px;
    }
    h4{
        font-size: 1.4rem;
    }
    
    .inner{
        width: 100%;
        padding: 0 15px;
    }
    
    .bar01,.bar02{    
        margin-top: 45px;
        margin-right: 0;
    }
    .recruit_info{
        display: block;
    }
    iframe{
        margin-bottom: 50px;
    }
   .recruit_btn{
       width: 100%;
       text-align: center;
       margin-bottom: 50px;
    }
   .recruit_btn a{
    width: 130px;
    font-size: 15px;
    font-weight: 500;
    height: auto;
    text-decoration: none;
    padding: 20px 50px 20px;
    }
   .qr_code{
       display: none;
   }   
}