@charset "utf-8";

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

/*------------------- base -------------------*/
a:hover{opacity:0.8;}
a{
	text-decoration:none;
    color: #333;
}
p{
    line-height: 1.76;
    letter-spacing: 0.2rem;
    margin-bottom: 2.2rem;
}
img{
	max-width: 100%;
	height: auto;
}
/*------------------- body -------------------*/
body{
	font-family: 'Noto Sans JP',sans-serif;
    font-style: normal;
	font-size: 1.6rem;
	color: #333;
    background-color: #fafafa;
}
@media screen and (max-width: 768px) {
    body{
        font-size: 1.4rem;
    }
}
/*------------------- ここまでbody -------------------*/

/*------------------- header -------------------*/
.header_container{
    width: 100%;
    background-color: #008674;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 70;
}
.header_inner{
    max-width: 1600px;
    padding: 8px 40px 0;
    margin: 0 auto;
    position: relative;
}
@media screen and (max-width: 768px){
    .header_container{
        background-color: #008674c7;
    }
    .header_inner{
        padding: 4px 12px;
    }
}
/* ハンバーガーメニュー ---- */
.hbg_menu_btn{
    width: 30px;
    height: 18px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 99;
    cursor: pointer;
}
.hbg_menu_btn span{
    display: block;
    height: 3px;
    position: absolute;
    background-color: #fff;
}
.btn_t {
    width: 100%;
    top: 0;
}
.hbg_menu_btn.active .btn_t { /* js */
    display: none;
}
.btn_c {
    width: 100%;
    top: 45%;
}
.hbg_menu_btn.active .btn_c { /* js */
    width: 80%;
    transform: rotate(-45deg);
}
.btn_b {
    width: 60%;
    bottom: 0;
}
.hbg_menu_btn.active .btn_b{ /* js */
    width: 80%;
    transform: rotate(45deg);
    top: 50%;
}
.hbg_menu_content{
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s;
}
.hbg_menu_content.active{ /* js */
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0px);
    z-index: 80;
}
.hbg_menu_inner{
    display: flex;
    justify-content: center;
    padding: 170px 30px 80px;
    background-image: url(../images/menu_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media screen and (min-width: 1367px){
    .hbg_menu_inner{
        padding: 15vw 15px 80px;
    }
}
@media screen and (max-width: 582px){
    .hbg_menu_inner{
        display:block;
    }
}
.nav{
    font-size: 1.8rem;
}
@media screen and (max-width: 768px){
    .nav{
        font-size: 1.6rem;
    }
}
.nav li:not(:last-child):not(.nav_sub li){
    margin-bottom: 36px;
}
.nav li a{
    color: #fff;
    display: block;
    transform: translateX(0);
    transition: transform .3s;
    font-size: 20px;
    text-shadow: 1px 1px 2px #000000b8;
}
.nav li a:hover{
    transform: translateX(20px);
}
.nav li a:hover span{
    color: #BC1616;
}
.nav_sub li{
    font-size: 1.6rem;
    margin: 6px 0 0 26px;
}
.hbg_menu_inner_r{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 30%;
}
@media screen and (max-width: 768px){
    .hbg_menu_inner_r{
        margin-left: 0;
    }
}
.hbg_menu_inner_r p{
    color: #fff;
    text-align:start;
    margin: 4px 0 0 0;
}
.hbg_menu_inner_r p span{
    font-size: 35px;
}
@media screen and (max-width: 582px){
    .hbg_menu_inner_r div:first-child{
        width: fit-content;
        position: absolute;
        top: 75%;
        right: -20%;
        opacity: 0.8;
    }
    .hbg_menu_inner_r div:last-child{
        margin-top: 50px;
    }
}
/* ここまでハンバーガーメニュー ---- */
/* .sns_box{
    line-height: 0;
    position: absolute;
    top: 50%;
    left: 92px;
    transform: translate(0, -50%);
    z-index: 99;
}
@media screen and (max-width: 768px){
    .sns_box{
        left: 70px;
    }
} */
@media screen and (max-width: 364px){
    .sns_box{
        display: none;
    }
}
.logo{
    text-align: center;
    line-height: 0;
    position: relative;
    z-index: 90;
}
@media screen and (max-width: 582px){
    .logo{
        text-align: end;
    }
}
.logo a{
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 1;
    margin-left: 100px;
}
.logo a p{
    display: flex;
    align-items: baseline;
    color: #fff;
    font-size: 84px;
    font-weight: bold;
    margin-bottom: 0;
}
@media screen and (max-width: 768px){
    .logo a{
        margin-right: 0;
    }
    .logo img{
        max-width: 184px;
    }
    .logo a p{
        font-size: 50px;
    }
}
@media screen and (max-width: 582px){
    .logo img{
        max-width: 80px;
    }
}
.logo a span{
    font-size: 25px;
}
.header_btn{
    display: flex;
}
.header_btn .btn{
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    z-index: 99;
}
.header_btn .btn_1{
    right: 357px;
}
.header_btn .btn_2{
    right: 40px;
}
.header_btn .btn_3{
    right: 197px;
}
@media screen and (max-width: 1068px){
    .header_btn .btn_1{
        position: fixed;
        bottom: 94px;
        right: 11px;
        transform: translate(0,100%);
        z-index: 70;
    }
    .header_btn .btn_1 a{
        display: none;
    }
}
@media screen and (max-width: 768px){
    .header_btn .btn_2{
        display: none;
    }
    .header_btn .btn_3{
        right: 22px;
    }
}
@media screen and (max-width: 582px){
    .header_btn .btn_2,.header_btn .btn_3{
        display: none;
    }
}
/*------------------- ここまでheader ---------*/

/*------------------- footer -------------------*/
.footer_bg{
    width: 100%;
    height: 100%;
    background-color: #F2F2F2;
}
.footer_inner{
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.5rem;
    padding: 60px 15px;
}
.footer_content_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 28px;
    border-bottom: solid 1px #B2B2B2;
    margin-bottom: 46px;
}
@media screen and (max-width: 582px){
    .footer_content_top{
        display: block;
        padding: 0;
    }
}
.footer_logo{
    margin-right: 0;
}
.footer_logo a{
    display: flex;
    align-items: flex-end;
    opacity: 1;
}
.footer_logo a p{
    font-size: 45px;
    font-weight: 600;
    margin-left: 10px;
    margin-bottom: 0;
}
.footer_info{
    position: relative;
    margin: 0 80px 0 50px;
}
.footer_info p{
    font-size: 18px;
    margin-bottom: 0;
}
.footer_info p a{
    color: #dc4545;
}
.footer_info::after{
    content: "";
    display: block;
    width: 1px;
    height: 150px;
    background-color: #B2B2B2;
    position: absolute;
    top: 0;
    left: -50px;
}
@media screen and (max-width: 768px){
    .footer_info{
        margin: 0;
    }
    .footer_info::after{
        display: none;
    }
    .footer_logo img{
        width: 120px;
    }
    .footer_logo a p span{
        font-size: 25px;
    }
}
.footer_sns{
    /* position: relative; */
    line-height: 0;
}
/* .footer_content_top .footer_sns::after{
    content: "";
    display: block;
    width: 1px;
    height: 80px;
    background-color: #B2B2B2;
    position: absolute;
    top: -18px;
    left: -43px;
} */
@media screen and (max-width: 850px){
    .footer_content_top .footer_sns::after{
        top: 0;
        bottom: 0;
    }
}
@media screen and (max-width: 582px){
    .footer_content_top .footer_sns::after{
        display: none;
    }
}
.footer_nav{
    display: flex;
    justify-content: space-around;
}
.footer_nav li a span{
    color: #dc4561;
}
@media screen and (max-width: 856px){
    .footer_nav{
        display: block;
    }
    .footer_nav li{
        margin-bottom: 10px;
    }
}
.footer_bottom_line{
    font-size: 1.4rem;
    color: #fff;
    height: 60px;
    background-color: #008674;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 582px){
    .footer_bottom_line{
        font-size: 1.2rem;
        height: 32px;
    }    
}
/* footer Waves ---- */
.footerwaves {
    position:relative;
    width: 100%;
    height:15vh;
    margin-bottom:-7px;
    min-height:100px;
    max-height:150px;
}  
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/* ここまでfooter Waves ---- */
/*------------------- ここまでfooter -------------------*/

/*------------------- ページ共通 -------------------*/
.main_container{
    margin: 98px 0 200px;
    overflow: hidden;
}
@media screen and (max-width: 582px){
    .main_container{
        margin: 98px 0 120px;
    }    
}
.main_inner{
    max-width: 1896px;
    margin: 0 auto;
}
.content{
    padding-top: 200px;
    margin: 0 auto;
}
@media screen and (max-width: 768px){
    .content{
        padding-top: 100px;
    }    
}
.ttl{
    font-size: 2.4rem;
    color: #fff;
    width: fit-content;
    padding: 8px 30px 8px 23vw;
    opacity: 0;
    position: relative;
}
@media screen and (max-width: 582px){
    .ttl{
        font-size: 2rem;
        padding: 4px 18px 4px 18vw;
    }        
}
.ttl::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #008674;
    transform: scale(0, 1);
    transition: transform .3s .1s cubic-bezier(0.42, 0, 0.9, 0.47);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.ttl.display_in.active{ /* js */
    opacity: 1;
}
.ttl.display_in.active::before{ /* js */
    transform-origin: left top;
    transform: scale(1,1);
}
.sub_ttl{
    font-size: 3.3rem;
    margin-bottom: 20px;
}
@media screen and (max-width: 582px){
    .sub_ttl{
        font-size: 2.6rem;
        margin-bottom: 10px;
    }            
}
/* ボタン ---- */
.btn a{
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.2rem;
    display: inline-block;
    width: 152px;
    padding: 14px 0;
    border-radius: 4px;
    opacity: 1;
}
@media screen and (max-width: 768px){
    .btn a{
        font-size: 1.4rem;
        width: 122px;
    }
}
.btn a span{
    display:inline-block;
    transition: .5s;
}
a:hover span{
    transform: rotateX(360deg);
}
.btn_1 a{
    color: #fff;
    background-color: #B2B2B2;
}
.btn_2 a{
    color: #fff;
    background-color: #333;
}
.btn_3 a{
    color: #22c5af;
    background-color: #fff;
    border: solid 1px #22c5af;
}
.staff_btn a{
    background-color: #00000094;
}
.btn .site{
    width: 200px;
    display: block;
    margin: 0 auto;
}
.btn_4 a{
    color: #fff;
    border: solid 1px #fff;
}
/* ここまでボタン ---- */
/* 上に戻るボタン ---- */
.top_btn{
    font-size: 14px;
    width: fit-content;
    opacity: 0;
    transition: .7s;
    position: fixed;
    top: 60%;
    right: 13px;
    z-index: 999;
}
.top_btn::after{
    content: "";
    display: block;
    width: 1px;
    height: 76px;
    background-color: #333;
    position: absolute;
    bottom: -84px;
    right: 6px;
}
/* ここまで上に戻るボタン ---- */
/* SNSアイコン ---- */
a.sns_ico{
    display: inline-block;
    opacity: 1;
    line-height: 0;
}
a.sns_ico::before{
    content: "";
    width: 90%;
    height: 10px;
    position: absolute;
    top: 100%;
    left: 5%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    z-index: -1;
    opacity: 0;
    transition: .3s;
}
a.sns_ico:hover{
    transform: translateY(-7px);
}
a.sns_ico:hover::before{
    transform: translateY(7px);
    opacity: 1;
}
/* ここまでSNSアイコン ---- */
/*------------------- ここまでページ共通 -------------------*/

/*------------------- topページ -------------------*/
/* TOPファーストビュー ----*/
.top_fw_wrap{
    width: 100%;
    height: calc(100vh - 116px);
    position: relative;
    top: 116px;
}
@media screen and (max-width: 768px){
    .top_fw_wrap{
        height: calc(100vh - 83.4px);
        top: 83.4px;
    }
}
@media screen and (max-width: 582px){
    .top_fw_wrap{
        height: calc(100vh - 66.4px);
        top: 50px;
    }
}
.top_fwslide{
    position: relative;
    width: 100vw;
    height: 100vh;
    opacity: 1;
    object-fit: cover;
}
.top_fwslide::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: #00867494;
}
.top_fwslide video{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: translate(-50%, -50%);
}
.top_fw_wrap p{
    backdrop-filter: blur(25px);
    font-size: 3.2rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 10%;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity .4s,transform .4s;
}
.top_fw_wrap p span{
    font-size: 24px;
}
@media screen and (max-width: 768px){
    .top_fw_wrap p{
        font-size: 2.6rem;
        writing-mode: vertical-rl;
        top: 20%;
        left: 60%;
    }    
}
.top_fw_wrap p.display_in.active{ /* js */
    opacity: 1;
    transform: translateX(0px);
}
.top_fw_wrap p::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #ffffff96;
    transition: .5s .3s;
}
.top_fw_wrap p.display_in.active::before{ /* js */
    transform: translateX(100%);
}
/* ここまでTOPファーストビュー ----*/
/* TOP共通 ---- */
.top_ttl{
    font-size: 6rem;
    color: #B2B2B2;
}
@media screen and (max-width: 984px){
    .top_ttl{
        font-size: 4rem;
    } 
}
@media screen and (max-width: 984px){
    .top_ttl{
        font-size: 3.4rem;
    } 
}
.top_ttl span{
    color: #BC1616;
}
/* ここまでTOP共通 ---- */
.top_content01_02{
    display: flex;
    justify-content: center;
    position: relative;
}
@media screen and (max-width: 984px){
    .top_content01_02{
        display: block;
    }   
}
.top_flex_r img{
    width: fit-content;
}
@media screen and (max-width: 984px){
    .top_flex_r{
        height: 340px;
    }
    .top_flex_r img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }   
}
.top_flex_l{
    max-width: 50%;
    background-color: #fafafa;
    padding: 76px 46px;
    margin-top: 80px;
    margin-left: -80px;
    position: relative;
    z-index: 60;
}
@media screen and (max-width: 984px){
    .top_flex_l{
        max-width: 84%;
        padding: 25px 15px;
        margin-top: -90px;
        margin-left: 0;
    } 
}
.top_txtbox{
    max-width: 1100px;
}
.top_ttl01_02{
    position: absolute;
    top: -54px;
}
@media screen and (max-width: 984px){
    .top_ttl01_02{
        position: static;
        margin-bottom: 10px;
    } 
}
.top_flex_l .btn{
    transform: translate(0, 44px);
}
@media screen and (max-width: 984px){
    .top_flex_l .btn{
        transform: translate(0, 16px);
    } 
}
.top_content01_02_reverse{
    flex-direction: row-reverse;
}
.top_content01_02_reverse .top_flex_l{
    margin-left: 0;
    margin-right: -80px;
}
@media screen and (max-width: 984px){
    .top_content01_02_reverse .top_flex_l{
        margin-right: 0;
        margin-left: auto;
    } 
}
.top_content01_02_reverse .top_txtbox{
    padding-right: 0;
    padding-left: 10%;
}
@media screen and (max-width: 984px){
    .top_content01_02_reverse .top_txtbox{
        padding-left: 0;
    } 
}
.top_content01_02_reverse .top_ttl01_02{
    left: auto;
}
.top_content01_02_reverse .top_flex_l .btn{
    text-align: end;
}
.top_content03{
    width: 100%;
    height: 470px;
    background: url(../images/top03.jpg) left center / cover no-repeat;
    background-position: top;
    position: relative;
}
.top_content03_box{
    text-align: center;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(0, -50%);
}
@media screen and (max-width: 1365px){
    .top_content03_box{
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
        background-color: #ffffff9e;
        padding: 40px 15px;
        width: 100%;
    }    
}
.top_content03_box p{
    margin-top: 32px;
    color: #6b6b6b;
}
.top_content03_box .btn{
    margin-top: 52px;
}
.top_content04{
    padding: 0 15px 25px;
    /* background-image: url(../images/top04.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
}
.top_ttl04_05{
    text-align: center;
    /* color: #fff; */
}
.top_recruitcard_box {
    max-width: 936px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 46px;
}
@media screen and (max-width: 984px){
    .top_recruitcard_box {
        justify-content: center;
    }    
}
.top_recruitcard{
    margin: 0 34px 68px;
    position: relative;
    filter: drop-shadow(3px 3px 8px #C5D3E3);
}
@media screen and (max-width: 984px){
    .top_recruitcard{
        margin: 0 34px 26px;
        max-width: 340px;
    }
}
.top_recruitcard p{
    width: 400px;
    font-size: 3.6rem;
    color: #fff;
    margin-bottom: 0;
    margin-left: 20px;
    position: absolute;
    top: 30%;
}
.top_recruitcard img{
    border-radius: 14px;
}
@media screen and (max-width: 984px){
    .top_recruitcard p{
        font-size: 2.4rem;
    }    
}
.top_content04 .btn{
    text-align: center;
}
/* .top_content04 .btn a{
    color: #fff;
    border: solid 1px #ffffff;
} */
.top_content05 .btn{
    text-align: center;
    margin-top: 68px;
}

/*------------------- ここまでtopページ -------------------*/

/* リクルートボタン(ぐるぐる)_____________________________ */
.rec_btn{
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
}
.rec_btn .round{
    animation: 12s linear infinite rotation1;
}
@keyframes rotation1{
    0%{ transform:rotate(0);}
    100%{ transform:rotate(360deg); }
}
.rec_btn .logo_inner{
    position: absolute;
    top: 15%;
    left: 16%;
}
.rec_btn a{
    display: block;
    position: relative;
}
.rec_btn a::after{
    /* display: none; */
    position: absolute;
    line-height: 0.8;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.rec_btn .entry_icon:hover::after{
    display: block;
    content: "entry";
    font-size: 27px;
    color: #bf2929;
}
.top_tel{
    font-size: 1.4rem;
    text-align: center;
    background-color: #ffffffbd;
    border: 2px solid #006834;
    border-radius: 10px;
    padding: 8px 16px;
}
.top_tel span{
    font-weight: 500;
    color: #006834;
}
@media screen and (max-width: 768px){
    .rec_btn{
        width: 65px;
        bottom: 8px;
        right: 10px;
        flex-direction: column;
    }
    .rec_btn .logo_inner{
        width: 56px;
        top: 10%;
        left: 8%;
    }
    .top_tel{
        font-size: 1.2rem;
        padding: 3px;
    }
    .pc{
        display: none;
    }
}
/*------------------- TOP以外のfw -------------------*/
.otherpage_fw{
    width: 100%;
    height: calc(100vh - 116px);
    position: relative;
    top: 116px;
    overflow: hidden;
    background: url(../images/other_fw.jpg) center center / cover no-repeat;
}
@media screen and (max-width: 768px){
    .otherpage_fw{
        height: calc(100vh - 83.4px);
        top: 83.4px;
    }
}
@media screen and (max-width: 582px){
    .otherpage_fw{
        height: calc(100vh - 66.4px);
        top: 66.4px;
    }
}
.otherpage_fw .main_ttl,
.singlepage_fw .main_ttl{
    font-size: 4rem;
    color: #fff;
    position: absolute;
    top: 68%;
    left: 65vw;
    opacity: 0;
    transform: translate(20px,20px);
    transition: opacity .4s,transform .4s;
}
@media screen and (max-width: 768px){
    .otherpage_fw .main_ttl,
    .singlepage_fw .main_ttl{
        left: 54vw;
    }
}
@media screen and (max-width: 582px){
    .otherpage_fw .main_ttl,
    .singlepage_fw .main_ttl{
        font-size: 3rem;
        left: 20px;
    }
    .singlepage_fw02 .main_ttl,
    .singlepage_fw04 .main_ttl{
        left: unset;
        right: 20px;
    }
}
.otherpage_fw .main_ttl.display_in.active,
.singlepage_fw .main_ttl.display_in.active{ /* js */
    opacity: 1;
    transform: translate(0px);
}
.otherpage_fw span,
.singlepage_fw span{
    font-size: 2.4rem;
    color: #BC1616;
    display: block;
}
/*------------------- ここまでTOP以外のfw -------------------*/

/*------------------- 弊社についてページ -------------------*/

.about_main_container{
    margin-bottom: 0;
}
.about_content{
    max-width: 946px;
    padding: 0 15px;
    margin: 88px auto 0;
}
@media screen and (max-width: 768px){
    .about_content{
        margin: 40px auto 0;
    }            
}
.about_txtbox01{
    max-width: 520px;
}
.about01_imgbox{
    display: flex;
    margin-top: 60px;
}
@media screen and (max-width: 820px){
    .about01_imgbox{
        margin-top: 22px;
    }        
}
.about01_imgbox_r{
    margin-left: 14px;
    transform: translateY(-124px);
    position: relative;
    z-index: -1;
}
@media screen and (max-width: 820px){
    .about01_imgbox_r{
        margin-left: 8px;
        transform: translateY(-46px);
    }    
}
.about01_imgbox_r div:first-child{
    margin-bottom: 8px;
}
@media screen and (max-width: 820px){
    .about01_imgbox_r div:first-child{
        margin-bottom: 0;
    }        
}
.flex_box{
    display: flex;
    justify-content: space-between;
    transform: translateY(-120px);
}
@media screen and (max-width: 820px){
    .flex_box{
        transform: translateY(-45px);
        margin-left: 0;
    }
    .flex_box div{
        margin: 5px;
    }     
}
.about_content02{
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 820px){
    .about_content02{
        justify-content: start;
        position: relative;
    }            
}
.about_info{
    margin-right: 130px;
}
@media screen and (max-width: 820px){
    .about_info{
        margin-right: 0;
    }
    .about_content02 div{
        max-width: 170px;
        position: absolute;
        top: 0;
        right: 5%;
        z-index: -1;
        opacity: 0.5;
    }          
}
@media screen and (max-width: 582px){
    .about_content02 div{
        max-width: 120px;
        top: -80px;
    }          
}
.about_info th{
    font-weight: normal;
    text-align: start;
    padding: 10px 50px 10px 0;
    border-bottom: dashed 1px #ccc;
}
@media screen and (max-width: 582px){
    .about_info th{
        padding: 0 30px 20px 0;
    }              
}
.about_info td{
    padding-left: 30px;
    padding-bottom: 10px;
    border-bottom: dashed 1px #ccc;
    border-left: dashed 1px #ccc;
}
@media screen and (max-width: 582px){
    .about_info td{
        padding-bottom: 20px;
    }                 
}
.about05_imgbox{
    width: fit-content;
    margin-left: auto;
    position: relative;
}
.about05_img{
    text-align: end;
    margin-right: 70px;
    position: relative;
}
@media screen and (max-width: 982px){
    .about05_img{
        margin-right: 0;
    }                         
}
.about05_imgbox p{
    font-size: 4rem;
    line-height: 1.2;
    text-align: end;
    margin: 0;
    position: absolute;
    left: -200px;
    bottom: 0;
}
.about05_imgbox p span{
    font-size: 20px;
}
@media screen and (max-width: 982px){
    .about05_imgbox p{
        font-size: 3rem;
        right: 340px;
    }                           
}
@media screen and (max-width: 582px){
    .about05_imgbox p{
        font-size: 6vw;
        bottom: -10px;
        right: 0;
        backdrop-filter: blur(30px);
    }                           
}
.about_content04{
    margin-bottom: 90px;
}
.google_map_content{
    margin-top: 88px;
}
@media screen and (max-width: 768px){
    .google_map_content{
        margin-top: 40px;
    }                
}
.google_map{
    width: fit-content;
    background-color: #008674;
    border-radius: 0 14px 14px 0;
    line-height: 0;
}
.google_map iframe{
    background-color: #3c3939;
    max-width: 90vw;
    padding: 14px 14px 0 0;
    border-radius: 0 14px 14px 0;
    margin: 14px 14px 0 0;
}
@media screen and (min-width: 1400px){
    .google_map iframe{
        width: 55vw;
    }
}
.google_map_content p{
    text-align: end;
    padding-right: 36px;
    margin-right: 15px;
    border-bottom: solid 1px #333;
    position: relative;
    z-index: -1;
}
@media screen and (max-width: 1063px){
    .google_map_content p{
        opacity: 0;
    }
}
.google_map_content p:nth-child(2){
    max-width: 1120px;
    transform: translateY(-340px);
}
.google_map_content p:nth-child(3){
    max-width: 1194px;
    transform: translateY(-320px);
}
.google_map_content p:last-child{
    max-width: 1200px;
    transform: translateY(-280px);
}
@media screen and (min-width: 1367px){
    .google_map_content p:nth-child(2){
        max-width: 74vw;
    }
    .google_map_content p:nth-child(3){
        max-width: 86vw;
    }
    .google_map_content p:last-child{
        max-width: 80vw;
    }
}
/*------------------- ここまで弊社についてページ -------------------*/

/*------------------- ㈲KIDで働く魅力ページ -------------------*/
.content_service03{
    padding-top: 100px;
}
.service_content{
    width: 100%;
    max-width: 1300px;
    padding: 0 ;
    margin: 0 auto;
}
.service02_box{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 40px;
}
@media screen and (max-width: 930px){
    .service02_box{
        padding: 22px;
    }
}
@media screen and (max-width: 768px){
    .service02_box{
        flex-direction: column-reverse;
        align-items: start;
        padding: 20px 15px;
    }
    .service02_box div:first-child{
        align-self: end;
    }  
    .rev{
        flex-direction: column;
    }   
}
.service02_box img{
    max-width: none;
}
@media screen and (max-width: 768px){
    .service02_box img{
        max-width: 100%;
    }          
}
.service_txtbox02{
    max-width: 560px;
    margin-right: 38px;
    margin-left: 38px;
}
.right_non{
    margin-left: 0;
}
@media screen and (max-width: 768px){
    .service_txtbox02{
        margin-right: 0;
        margin-left: 0;
    }          
}
.service_txtbox02 .sub_ttl{
    font-size: 2.5rem;
    font-weight: bold;
}
.service_txtbox02 .sub_ttl span{
    font-size: 3rem;
}
.service_ttl03{
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    margin: 0 0 50px 0;
}
@media screen and (max-width: 768px){
    .service_ttl03{
        font-size: 1.8rem;
    } 
}
.service_ttl03::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fafafa;
    transition: .5s;
}
.service_ttl03.display_in.active::before{ /* js */
    transform: translateY(100%);
}
@media screen and (max-width: 768px){
    .service_ttl03::after{
        height: 88px;
        top: 46px;
    }                   
}
.service_ttl03.display_in.active::after{ /* js */
    opacity: 1;
    transform: translateY(0px);
}
.service_txtbox03{
    width: 95%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
.service_txtbox03 .item{
    position: relative;
    width: 47%;
    height: 400px;
    overflow: hidden;
    margin: 10px 1.5%;
}
.service_txtbox03 .item p{
    font-size: 3rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    backdrop-filter: blur(5px);
    background-color: #ffffff75;
}
.service_txtbox03 .item img{
    display: block;
}
@media screen and (max-width: 768px){
    .service_txtbox03 .item p{
        font-size: 16px;
        top: unset;
        text-align: start;
    }
    .service_txtbox03 .item{
        height: 250px;
    }
}
.display_in {
    top: 46%;
    /* left: 1%; */
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 2s, transform 2s;
  }
  .service_txtbox03.display_in.active {
    opacity: 1;
    transform: translateY(0);
  }
.display_in {
    opacity: 0;
    transform: translateY(50px);
  }
 .display_in.active {
    opacity: 1;
    transform: translateY(0px);
    transition: all ease 0.2s;
  }
  .display_in.active.tf02 {
    opacity: 1;
    transform: translateY(0px);
    transition: all ease 0.8s;
  }
 .display_in.active.tf03 {
    opacity: 1;
    transform: translateY(0px);
    transition: all ease 1s;
  }
 .display_in.active.tf04 {
    opacity: 1;
    transform: translateY(0px);
    transition: all ease 1.5s;
  }
.service_txtbox03.display_in.active{ /* js */
    opacity: 1;
    transform: translateY(0px);
}
/* 求人バナー ___________________________*/
.service_content04{
    background: url(../images/top01.jpg) center center / cover no-repeat;
}
.service_txtbox04{
    background-color: #05351682;
    font-size: 2rem;
    text-align: center;
    color: #fff;
    padding: 98px 0;
}
.service_txtbox04 h2{
    font-size: 3rem;
    margin-bottom: 10px;
}
.service_txtbox04 p{
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
@media screen and (max-width: 768px){
    .service_txtbox04{
        font-size: 1.8rem;
    }
    .service_txtbox04 p{
        width: 95%;
    }                            
}
.service_txtbox04 .btn{
    margin-top: 40px;
}
/*------------------- ここまで事業紹介ページ -------------------*/


/* スタッフカードホバー時、拡大と写真チェンジ ---- */
.staff_box:hover .staff{
    transform-origin: center bottom;
	transform: scale(1.04);
    filter: drop-shadow(3px 3px 8px #C5D3E3);
}
.staff_box:hover .staff img:first-child{
    display: none;
}
.staff_box:hover .staff img:last-child{
	display: block; /* inline-blockにすると.staff img{margin-top: -64px;}効く */
}
.staff_box:hover p:last-child{
	color: #34AFA0;
}
/* ここまでスタッフカードホバー時---- */
/*------------------- ここまで社員紹介ページ -------------------*/

/*------------------- 採用情報ページ -------------------*/
.recruit_single_content00 .recruit_single_inner00{
    max-width: 1100px;
    justify-content: space-around;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto 0;
}
.recruit_single_content00 .recruit_single_inner00 .item{
    width: 30%;
    padding: 1rem;
    border: 5px solid #6dbc1b;
    border-radius: 8px;
    margin: 0.5rem;
}
.recruit_single_content00 .recruit_single_inner00 .item p{
    width: 90%;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 3px solid #6dbc1b;
    padding: 10px 0;
    margin: 0 auto;
}
.recruit_single_content00 .recruit_single_inner00 .item .no_line{
    border-bottom: 0;
}
.recruit_single_content00 .recruit_single_inner00 .ble{
    border: 5px solid #3b5b48;
}
.recruit_single_content00 .recruit_single_inner00 .ble p{
    border-bottom: 3px solid #3b5b48;
}
.recruit_single_content00 .recruit_single_inner00 .item img{
    padding-top: 15px;
}
.recruit_content01{
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    margin: 88px auto 0;
}
@media screen and (max-width: 768px){
    .recruit_content01{
        margin-top: 40px;
    }
    .recruit_single_content00 .recruit_single_inner00 .item p{
        width: 98%;
        font-size: 14px;
        line-height: normal;
        height: 65px;
        line-height: normal;
    }                                         
}
@media screen and (max-width: 990px){
    .recruit_content01{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}
.recruit_content02_03 p{
    width: 95%;
    font-size: 24px;
    text-align: start;
    margin: 30px auto 0;
}
.recruit_recruitcard{
    max-width: 300px;
    background-color: #fff;
    filter: drop-shadow(3px 3px 8px #C5D3E3);
    border-radius: 14px;
    margin: 0 14px;
    position: relative;
}
@media screen and (max-width: 990px){
    .recruit_recruitcard{
        max-width: 284px;
        margin-top: 28px;
    }  
}
.recruit_recruitcard img{
    border-radius: 14px 14px 0 0;
}
.recruit_recruitcard::before{
    content: "";
    display: block;
    position: absolute;
    bottom: 20px;
    right: 45px;
    margin: auto;
    width: 18px;
    height: 1px;
    background: #B2B2B2;
    transition: .2s;
}
.recruit_recruitcard:hover::before{
    right: 33px;
    width: 32px;
}
.recruit_recruitcard::after{
    content: "";
    display: block;
    position: absolute;
    bottom: 16px;
    right: 44px;
    margin: auto;
    width: 8px;
    height: 8px;
    border-right: 1px solid #B2B2B2;
    border-top: 1px solid #B2B2B2;
    transform: rotate(45deg);
    transition: .2s;
}
.recruit_recruitcard:hover::after {
    right: 32px;
}
.recruit_recruitcard_neme{
    font-size: 3.6rem;
    color: #fff;
    margin-bottom: 0;
    margin-left: 20px;
    position: absolute;
    top: 12%;
    backdrop-filter: blur(3px);
}
@media screen and (max-width: 1153px){
    .recruit_recruitcard_neme{
        font-size: 2.4rem;
    }         
}
.recruitcard_txtbox{
    padding: 6% 8%;
    margin: 0;
}
@media screen and (max-width: 1153px){
    .recruitcard_txtbox{
        padding: 15px;
    }    
}
.rec_slide{
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
.recruit_slide .rec_wrap{
    width: 100%;
    display: flex;
    justify-content: center;
}
.recruit_slide .rec_wrap .item{
    position: relative;
}
.recruit_slide .rec_wrap .item .rec_txt p{
    color: #333;
    position: absolute;
    top: 55%;
    left: 10%;
    width: 68%;
    text-align: start;
    font-size: 1.5rem;
    font-weight: 400;
    backdrop-filter: blur(3px);
}
.recruit_slide .rec_wrap .item02 .rec_txt p{
    left: 22%;
}
.recruit_slide .rec_wrap .item02{
    margin-left: -60px;
}
.recruit_slide .rec_wrap .item p{
    width: 100%;
    position: absolute;
    color: #4e673e;
    font-size: 2.5rem;
    font-weight: bold;
    top: 0;
    left: 14%;
}
.recruit_single_box01 tr td iframe{
    width: 100%;
}
@media screen and (max-width: 768px){
    .recruit_content02_03 p{
        font-size: 16px;
    }
    .recruit_slide .rec_wrap .item p{
        left: 0;
        font-size: 1.6rem;
    }
    .recruit_slide .rec_wrap .item02{
        margin-left: 0;
    }
    .recruit_slide .rec_wrap .item .rec_txt p{
        width: 95%;
        top: 100%;
        left: 0;
        font-size: 1rem;
    }
}
.staff{
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 80px auto 10px;
}
.staff img{
    border-radius: 50%;
}
.staff .txt{
    width: 60%;
    max-width: 600px;
    margin-left: 50px;
    margin-right: 50px;
}
.staff .txt h2{
    font-size: 30px;
    margin-bottom: 20px;
}
.staff .txt p{
    font-size: 18px;
}
@media screen and (max-width: 768px){
    .content_staff{
        padding-top: 210px;
    }
    .staff{
        width: 100%;
        flex-direction: column;
        position: relative;
        margin-bottom: 300px;
    }
    .clm{
        margin-bottom: 200px;
    }
    .staff img{
        width: 100%;
        height: auto;
    }
    .staff .txt{
        position: absolute;
        width: 100%;
        margin-left: 0;
        background-color: #ffffffa3
        ;
        top: 70%;
    }
}
.recruit_slide{
    background-color: #f9f9f9;
    padding: 90px 15px;
    margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 768px){
    .recruit_slide{
        padding: 50px 15px;
    }    
}
/* 応募フォーム ---- */
.entry_content{
    max-width: 960px;
    margin: 88px auto 0;
    padding: 0 15px;
}
@media screen and (max-width: 768px){
    .entry_content{
        margin: 40px auto 0;
    }                                                       
}
.entry_content table{
    width: 100%;
    border-collapse: collapse;
    word-break: break-all;
    margin-bottom: 80px;
}
#recruitrecruit_05 table tbody tr{
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 1em;
}
.entry_content table tbody tr th{
    width: 29%;
    font-weight: 500;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #B2B2B2;
    padding: 20px 50px 20px 0;
}
.entry_content table tbody tr th .must{
    float: right;
    width: 55px;
    color: #fff;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 500;
    background: #e22929;
    text-align: center;
}
.entry_content table tbody tr td{
    font-size: 1.3rem;
    text-align: left;
    vertical-align: middle;
    position: relative;
    border-bottom: 1px solid #B2B2B2;
    padding: 28px 0 28px 58px;
}
@media screen and (max-width: 768px){
    .entry_content table tbody tr td{
        padding: 20px 0 20px 10px;
    }
    .entry_content table tbody tr th{
        padding: 15px 20px 15px 0;
    }
}
.entry_content table tbody tr td::before{
    position: absolute;
    left: 0;
    top: 27px;
    width: 1px;
    bottom: 27px;
    background: #B2B2B2;
    content: "";
}
.entry_content .info01{
    display: flex;
    justify-content: center;
}
.entry_content .info01 .info02 input{
    color: #fff;
    width: 152px;
    font-size: 1.6rem;
    cursor: pointer;
    background: #BC1616;
    margin: 68px auto 0;
    padding: 16px 40px;
    border-radius: 4px;
}
.entry_content .wpcf7-form-control,
.entry_content .wpcf7-text{
    width: 100%;
    height: 60px;
    color: #413b3b;
    font-size: 1.3rem;
    padding: 5px 10px 5px 23px;
    box-sizing: border-box;
    background: #efefef;
    border: 1px solid #efefef;
    border-radius: 4px;
}
.entry_content .wpcf7-textarea{
    height: 200px;
}
.entry_content .wpcf7 form .submit p input{
    font-size: 24px;
    color: #FFF;
    background-color: #465440;
    width: 200px;
    padding: 0.5em 0;
    border: 0;
    transition: all ease 0.3s;
}
.entry_content .wpcf7 form .submit input:hover{
    opacity: .5;
    transition: all ease 0.3s;
}
.entry_content .wpcf7 form .submit p{
    text-align: center;
    margin-left: 48px;
}
/* ここまで応募フォーム ---- */
/*------------------- ここまで採用情報ページ -------------------*/

/*------------------- 個別ページ -------------------*/
/* fw ---- */
.singlepage_fw{
    width: 100%;
    height: 500px;
    position: relative;
    top: 116px;
} 
.singlepage_fw01{
    background: url(../images/recruit_fw01.jpg) top / cover no-repeat;
}
.singlepage_fw02{
    background: url(../images/recruit_fw02.jpg) bottom / cover no-repeat;
}
.singlepage_fw03{
    background: url(../images/recruit_fw03.jpg) bottom / cover no-repeat;
}
.singlepage_fw04{
    background: url(../images/recruit_fw04.jpg) top / cover no-repeat;
}
@media screen and (max-width: 768px){
    .singlepage_fw{
        top: 50px;
    }
}
/* ここまでfw ---- */
.single_main_container{
    margin: 0 0 200px;
}
/*------------------- ここまで個別ページ -------------------*/

/*------------------- 採用個別ページ -------------------*/
.recruit_img_wrap{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    margin-bottom: -50px;
}
.recruit_img_wrap img{
    display: block;
    width: 28%;
}
.recruit_single_content01{
    max-width: 1078px;
    padding: 0 15px;
    margin: 0 auto;
}
@media screen and (max-width: 768px){
    .recruit_single_content01{
        padding: 0 10px;
    }
}
.recruit_single_inner01{
    background-color: #fff;
    padding: 60px 60px 80px;
}
@media screen and (max-width: 768px){
    .recruit_single_inner01{
        background-color: #fff;
        padding: 20px 15px 40px;
    }                                                           
}
.recruit_single_about{
    font-size: 2rem;
    padding-bottom: 40px;
    background-image: linear-gradient(90deg, #1f8e15 15%, #B2B2B2 15%);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: bottom;
}
@media screen and (max-width: 768px){
    .recruit_single_about{
        font-size: 1.6rem;
        padding-bottom: 20px;
    }                                                               
}
.recruit_single_box01{
    margin: 10px auto 0;
}
table.recruit_single_box01{
    border-collapse: collapse;
    border-spacing: 0;
}
.recruit_single_box01 th{
    text-align: start;
    vertical-align: top;
    padding: 24px 8vw 32px 0;
    border-bottom: solid 1px #B2B2B2;
}
@media screen and (max-width: 768px){
    .recruit_single_box01 th{
        padding: 24px 8vw 32px 0;
    }                                                                  
}
.recruit_single_box01 td{
    max-width: 706px;
    padding: 25px 0;
    border-bottom: solid 1px #B2B2B2;
}
@media screen and (max-width: 768px){
    .recruit_single_box01 td{
        max-width: 210px;
        padding: 24px 0;
    }                                                                      
}
.recruit_single_box01 span{
    display: block;
    position: relative;
}
.recruit_single_box01 span:not(:first-child){
    margin-top: 28px;
}
.recruit_single_box01 span::before{
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background-color: #B2B2B2;
    position: absolute;
    top: 9px;
    left: -19px;
}
.single_main_container .btn{
    text-align: center;
    margin-top: 40px;
}
table.recruit_single_box01 iframe{
    width: 100%;
}
/*------------------- ここまで採用個別ページ -------------------*/

/*------------------- お問合せページ -------------------*/
/* お問い合せフォーム ----*/
/* 電話番号追加----- */
.contact_tel{
    display: flex;
    justify-content: center;
    margin-top: 88px;
}
.contact_tel a{
    color: #dc4545;
    font-size: 5rem;
}
.contact_tel img{
    display: block;
    width: 40%;
    max-width: 300px;
    height: auto;
}
@media screen and (max-width: 768px){
    .contact_tel{
        margin: 88px 10px 0 10px;
    }
    .contact_tel a{
        font-size: 3.2rem;
    }
}
/* ここまで追加------ */
.contact_box{
    max-width: 700px;
    padding: 0 15px;
    margin: 88px auto 0;
}
.contact_box input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
.contact_box input.wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel,
.contact_box textarea.wpcf7-form-control.wpcf7-textarea{
    width: 100%;
    height: 60px;
    margin-bottom: 30px;
    border: solid 1px #B2B2B2;
}
.contact_box textarea.wpcf7-form-control.wpcf7-textarea{
    height: 200px;
}
.contact_box form p a{
    display: block;
    text-align: center;
    cursor: pointer;
    width: fit-content;
    color: #f00;
    padding: 0;
    border-radius: 4px;
    margin: 0 auto;
    font-size: 1.8rem;
    border: 0;
}
.contact_box .wpcf7 form .submit input{
    font-size: 24px;
    color: #FFF;
    background-color: #c90505;
    width: 200px;
    padding: 0.5em 0;
    border: 0;
    transition: all ease 0.3s;
}
.contact_box .wpcf7 form .submit input:hover{
    opacity: .5;
    transition: all ease 0.3s;
}
.contact_box .wpcf7 form .submit p{
    text-align: center;
    margin-left: 48px;
}
/* ここまでお問い合せフォーム ----*/
/*------------------- ここまでお問合せページ -------------------*/

/*------------------- プライバシーポリシーページ -------------------*/
.privacypolicy_content{
    max-width: 860px;
    padding: 0 15px;
    margin: 88px auto 0;
}
.privacypolicy_content h2{
    font-size: 2rem;
}
.privacypolicy_content p{
    margin-bottom: 40px;
}
/*------------------- ここまでプライバシーポリシーページ -------------------*/

/*------------------- プライバシーポリシーチェックボックスCSS　フォーム共通 -------------------*/
.privacypolicy_checkbox{
    text-align: center;
    margin-top: 50px;
 }
 .privacypolicy_checkbox_ttl{
    font-size: 2rem;
    font-weight: bold;
 }
 @media screen and (max-width: 540px) {
    .privacypolicy_checkbox_ttl{
        font-size: 1.6rem;
    }
 }
 .privacypolicy_checkbox a{
    color: #949494;
    text-decoration: underline;
 }
 /*------------------- ここまでプライバシーポリシーチェックボックスCSS　フォーム共通 -------------------*/ 

 /*------------------- 送信完了ページ -------------------*/
 .sendcompletely_container{
    padding: 100px 0 230px;
    margin: 0;
    background: url(../images/sendcompletely_bg.jpg) center center / cover no-repeat;
 }
.sendcompletely_content{
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 0 15px;
    margin: 0 auto;
    backdrop-filter: blur(3px);
}
.sendcompletely_content h2{
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 30px;
}
.sendcompletely_content p{
    color: #fff;
}
.sendcompletely_content a{
    color: #145606;
    text-decoration: underline;
}
.sendcompletely01_img{
    width: fit-content;
    height: fit-content;
    line-height: 0;
}
/*------------------- ここまで送信完了ページ -------------------*/

/*------------------- js -------------------*/
/* 画面に現れたら下からふわっと表示 ----*/
.top_flex_l.display_in,
.top_content03.display_in,
.top_ttl04_05.display_in,
.about_content.display_in,
.google_map_content.display_in,
.service_content.display_in,
.staff_content.display_in,
.recruit_content02_03.display_in,
.entry_content.display_in,
.recruit_single_content01.display_in,
.contact_tel.display_in,
.conact_box.display_in,
.privacypolicy_content.display_in{ 
    opacity: 0;
    transform: translateY(80px);
    transition: opacity .1s .2s,transform .5s .2s;
}
.top_flex_l.display_in{
    transition: opacity .1s .6s,transform .5s .6s;
}
.top_flex_l.display_in.active,
.top_content03.display_in.active,
.top_ttl04_05.display_in.active,
.about_content.display_in.active,
.google_map_content.display_in.active,
.service_content.display_in.active,
.staff_content.display_in.active,
.recruit_content02_03.display_in.active,
.entry_content.display_in.active,
.recruit_single_content01.display_in.active,
.contact_tel.display_in.active,
.conact_box.display_in.active,
.privacypolicy_content.display_in.active{
    opacity: 1;
    transform: translateY(0px);
}
/* ここまで画面に現れたらふわっと表示 ----*/

/* TOPページ　横からシュッと表示 ----*/
.top_flex_r.display_in,
.top_content01_02_reverse .top_flex_r.display_in{
    transform: translateX(-100%);
    transition: transform .5s .4s;
}
.top_content01_02_reverse .top_flex_r.display_in{
    transform: translateX(100%);
}
.top_flex_r.display_in.active,
.top_content01_02_reverse .top_flex_r.display_in.active{
    transform: translateX(0px);
}
/* ここまでTOPページ　横からシュッと表示 ----*/

/* 画面に現れたら上からスタスタ表示 ----*/
.top_recruitcard.display_in,
.recruit_recruitcard.display_in{
    opacity: 0;
    transform: translateY(-20px);
}
.top_recruitcard01.display_in,
.recruit_recruitcard01.display_in{
    transition: opacity .2s .4s, transform .2s .4s;
}
.top_recruitcard02.display_in,
.recruit_recruitcard02.display_in{
    transition: opacity .2s .6s, transform .2s .6s;
}
.top_recruitcard03.display_in,
.recruit_recruitcard03.display_in{
    transition: opacity .2s .8s, transform .2s .8s;
}
.top_recruitcard04.display_in,
.recruit_recruitcard04.display_in{
    transition: opacity .2s 1.0s, transform .2s 1.0s;
}
.top_recruitcard.display_in.active,
.recruit_recruitcard.display_in.active{
    opacity: 1;
    transform: translateY(0px);
}
/* ここまで画面に現れたら上からスタスタ表示 ----*/

/*------------------- js -------------------*/