@charset "utf-8";

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

/*------------------- base -------------------*/
a:hover{opacity:0.7;}
a{
    cursor: pointer;
	text-decoration:none;
    color: #333;
}
p{
    line-height: 1.76;
    letter-spacing: 0.2rem;
    margin-bottom: 2.2rem;
}
@media screen and (max-width: 540px) {
    p{
        font-size: 1.4rem;
        line-height: 1.66;
    }
}
img{
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 768px) {
    br.sp_off_768{
        display: none;
    }
}
@media screen and (max-width: 540px) {
    br.sp_off{
        display: none;
    }
}

/*------------------- body -------------------*/
body{
	font-family: 'Noto Sans JP',sans-serif;
    font-weight: 300;
    font-style: normal;
	font-size: 1.6rem;
	color: #333;
}
@media screen and (max-width: 768px) {
    body{
        font-size: 1.5rem;
    }
}
/*------------------- ここまでbody -------------------*/

/*------------------- header -------------------*/
.header_container{
    width: 100%;  
    position: fixed;
    z-index: 70;
    top: 0;
    background: linear-gradient(360deg, #ffffffd6, #ffffff99);
}
.header_inner{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 14px 4px;
}
@media screen and (max-width: 768px) {
    .header_inner{
        display: none;
    }
}
.header_center_line{
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 16px 16px 0;
}
@media screen and (max-width: 768px){
    .header_center_line{
        justify-content: start;
    }
}
@media screen and (max-width: 540px){
    .header_center_line{
        padding: 10px 10px 0;
    }
}

.logo a:hover{
    opacity: 1;
}
.logo{
    font-size: 3rem;
    font-weight: bold;
}
@media screen and (max-width: 626px){
    .logo{
        width: 80%;
        font-size: 2.8rem;
    }
}
/* .tel{
    position: absolute;
    right: 0;
    padding-right: 20px;
}
@media screen and (max-width: 876px){
    .tel{
        width: 180px;
    }
}
@media screen and (max-width: 768px){
    .tel{
        display: none;
    }
}
.tel:hover{
    opacity: 1;
} */
.pc_menu{
    display: flex;
    justify-content: end;
}
.pc_menu .list_info{
    font-size: 1.8rem;
}
.pc_menu li{
    margin: 0 16px;
    position: relative;
}
@media screen and (max-width: 945px){
    .pc_menu li{
        margin: 0 1.4vw;
    }    
}
.pc_menu a{
    font-size: 1.8rem;
    color: #333;
    display: flex;
    align-items: center;
}
.accordion_parent{
    position: relative;
}
.accordion_box{
    width: max-content;
    background-color: #ffffffc7;
    padding: 8px 0;
    position: absolute;
    top: 112%;
    left: -50%;
    transform: translate(-50%,50%);
    transform: scaleY(0);
    opacity: 0;
    transform-origin: center top;
    transition: .4s;
}
.accordion_parent:hover .accordion_box{
    opacity: 1;
    transform: scaleY(1);
}
.accordion_box li{
    padding: 5px 0;
    margin: 0 20px;
}  
.accordion_box li:not(:last-child){
    border-bottom: dashed 1px #9193a8;
}   
.accordion_box a{
 color: #333;
}
.accordion_box a:hover{
    opacity: 1;
}   
.accordion_box a:hover span{
    color: #5285C5;
    font-weight: bold;
}   
/* ハンバーガーメニュー------------ */
.sp_hbg{
    display: none;
}
@media screen and (max-width: 768px) {
    .sp_hbg{
        display: block;
    }
}
.hbg_menu_btn{
    width: 30px;
    height: 16px;
    position: fixed;
    top: 31px;
    right: 24px;
	z-index: 90;
}
.hbg_menu_btn span{
	width: 100%;
	height: 2.4px;
	position: absolute;
	background-color: #413b3b;
}
.hbg_menu_btn span:first-of-type{
	top: 0;
}
.hbg_menu_btn span:nth-of-type(2){
	top: 50%;
}
.hbg_menu_btn span:last-of-type{
	top: 100%;
}
.hbg_menu_content{
	width: 100%;
	height: 100%;
	background-color: #306ab3;
    text-align: center;
	position: fixed;
	top: 0;
	z-index: 80;
    display: flex;
    flex-direction: column;
	transform: translateX(100%);
	transition: .6s;
    padding: 140px 0 10%;
}
.logo_hbg{
    position: absolute;
    top: 20px;
    left: 14px;
}
.logo_hbg img{
    display: block;
    margin: auto;
}
.logo_hbg a{
    display: flex;
    color: #fff;
    font-size: 3rem;
}
.hbg_menu_content nav{
	margin-bottom: 20px;
}
.sp_navitem{
	margin-bottom: 30px;
}
.sp_navitem a{
    color: #fff;
    font-size: 2rem;
}
.sp_navitem a:hover{
    opacity: 0.7;
}
.sp_navitem .list_info{
    color: #fff;
    font-size: 2rem;
}
.sp_accordion_parent{
    position: relative;
}
.sp_accordion_parent div{
    color: #fff;
    font-size: 2rem;
}
.sp_accordion_box{
    display: none;
    background-color: #4a76ad;
}
.sp_accordion_box li{
    padding: 10px 0;
}
.sp_accordion_btn{
    display: block;
    font-size: 1.6rem;
    color: #fff;
    position: absolute;
    top: 2px;
    right: 30%;
    transition: .6s;
    cursor: pointer;
}
.sp_accordion_btn.close{
    transform: rotate(180deg);
}
.sp_tel a{
    color: #fff;
}
/* ハンバーガーボタンクリック時------------ */
.hbg_menu_btn.active span:first-of-type{
	top: 30%;
	transform: rotate(45deg);
    background-color: #fff;
}
.hbg_menu_btn.active span:nth-of-type(2){
    display: none;
}
.hbg_menu_btn.active span:last-of-type{
    top: 30%;
	transform: rotate(-45deg);
    background-color: #fff;
}
.hbg_menu_content.active{
  	transform: translateY(0);
  	overflow-y: scroll;
}
.hbg_menu_content.active .logo_hbg,
.hbg_menu_content.active nav,
.hbg_menu_content.active .sp_tel{
    animation: hbg_slide 2s;
}
@keyframes hbg_slide {
    0% {
      transform: translateX(70px);
    }
    100% {
      transform: translateX(0);
    }
}
/*------------------- ここまでheader -------------------*/

/*------------------- footer -------------------*/
.footer_container{
    background-color: #fff;
    width: 100%; 
}
.footer_inner{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.footer_bottom_line{
    width: 100%;
    height: 40px;
    font-size: 1.2rem;
    background-color: #5285C5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .footer_bottom_line{
        font-size: 1.2rem;
    }
}
.footer_inner{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.footer_content{
    padding: 20px 0;
}
.footer_logo{
    text-align: center;
}
.footer_logo p{
    font-size: 3rem;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .footer_content{
        background-color: #f1f1f1;
    }
}
@media screen and (max-width: 540px) {
    .footer_menu{
        flex-direction: column;
    }
}
.footer_li_box{
    width: 80%;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}
.accordion_parent_a{
    line-height: unset;
}
@media screen and (max-width: 768px) {
    .footer_li_box{
        display: block;
        text-align: center;
    }
}
.footer_menu li{
    width: fit-content;
    line-height: 0.5;
    margin: 13px;
}
@media screen and (max-width: 768px) {
    .footer_menu li{
        line-height: 0.8;
        margin: 30px;
    }
}
@media screen and (max-width: 540px) {
    .footer_menu li{
        margin: 14px;
        font-size: 1.4rem;
        font-weight: normal;
    }
}
/*------------------- ここまでfooter -------------------*/

/*------------------- ページ共通 -------------------*/
.main_container{
    /* padding-bottom: 100px; */
    margin-top: 130px;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 540px) {
    .main_container{
        margin-top: 40px;
    }
}
.main_container::before{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-3;
	width:100%;
	height:100vh;
	background-repeat:no-repeat;
	background-position:50% 100%;
	background-image:url(../images/buck_1.png);
	background-size:cover;
}
.main_container_bg::before{
    top: 60px;
}
.content{
    padding: 0 14px;
}
.content:not(:last-child){
    margin-bottom: 200px;
}
@media screen and (max-width: 540px) {
    .content:not(:last-child){
        margin-bottom: 80px;
    }
}
.base_inner{
    max-width: 1200px;
    margin: 0 auto 100px;
}
.ttl{
    font-size: 3rem;
    text-align: center;
    width: fit-content;
    padding: 0 4% 60px 4%;
    margin: 0 auto;
    position: relative;
}
@media screen and (max-width: 540px) {
    .ttl{
        font-size: 2.4rem;
        padding-bottom: 30px;
    }
}
.ttl::after{
    content: '';
    display: block;
    width: 100%;
    height: 1.6px;
    position: absolute;
    background-color: #5285C5;
    bottom: 40%;
    left: 50%;
    transform: translate(-50%, 0);
}
.sub_ttl{
    font-size: 2.4rem;
    text-align: center;
}
@media screen and (max-width: 540px) {
    .sub_ttl{
        font-size: 1.8rem;
    }
}
.txt_box{
    max-width: 690px;
    padding: 0 14px;
    margin: 30px auto 0;
}
@media screen and (max-width: 540px) {
    .txt_box{
        margin: 10px auto 0;
    }
}
 .back_white{
    background-color: #f9f9f9ba;
    padding: 16px 0;
    box-shadow: 0 0 6px #ccc;
 }
 .white_long{
    padding-bottom: 128px;
 }
/* ボタン------------ */
.btn{
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 60px 0 4px;
    transition-duration: .4s;
}
@media screen and (max-width: 540px) {
    .btn{
        font-size: 1.5rem;
        margin: 40px 0 4px;

    }
}
.btn a{
    opacity: 1;
    margin: 18px 40px;
}
@media screen and (max-width: 540px) {
    .btn a{
        margin: 12px 40px;
    }
}
/* ボタン------------ */
.btn_white{
    width: 267px;
    color: #5285c5;
    background: #ffffffb6;
    border: 1px solid #5285c5;
    display: block;
    padding: 18px 24px;
    text-align: center;
}
@media screen and (max-width: 540px) {
    .btn_white{
        width: 230px;
        padding: 16px 24px;
    }
}
.btn_white:hover{
    color: #fff;
    background: #5285C5;
}

/* 求人バナー-------------------------------------- */
.recruit_banner{
    padding: 200px 0 56px;
    padding-left: 100px;
    background-image: url(../images/recruit_banner.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.recruit_banner p{
    font-size: 2.4rem;
    font-weight: bold;
}
.recruit_btn_wrap{
    display: flex;
    justify-content: flex-start;
}
.recruit_banner .btn{
    justify-content: unset;
    margin-left: 20px;
}
.recruit_banner .btn a{
    margin: 0;
}
.map iframe{
    width: 100%;
}
.info{
    background-image: url(../images/info_back.png);
    text-align: center;
    background-repeat:no-repeat;
	background-position:98% 100%;
    background-size: 15% 50%;
}
.info_item{
    padding: 20px 0;
}
.info_item p{
    margin: 0;
}
@media screen and (max-width: 990px) {
    .info{
        background-size: 27% 30%;
    }
    .recruit_banner{
        padding: 16px 0;
        padding-left: 16px;
        background-position: 40%, 0;
    }
    .recruit_btn_wrap{
        flex-direction: column;
    }
    .recruit_banner .btn{
        margin: 16px 8px;
    }
    .recruit_banner p{
        font-size: 1.8rem;
    }
}
/*------------------- ここまでページ共通 -------------------*/

/*------------------- topページ -------------------*/
.top_slide{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 540px) {
    .top_slide{
        height: 500px;
    }
}
.top_fw{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: top_fw 24s linear infinite;
}
.top_fw1{
    background: url(../images/top_fw1.jpg) center center / cover no-repeat;
    animation-delay: -2s;
}
.top_fw2{
    background: url(../images/top_fw2.jpg) center center / cover no-repeat;
    animation-delay: 6s;
}
.top_fw3{
    background: url(../images/top_fw3.jpg) center bottom / cover no-repeat;
    animation-delay: 14s;
}
@keyframes top_fw {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    4.16% {
        opacity: 1;
    }
    33.33% {
        opacity: 1;
    }
    41.66% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
    }
  }
@media screen and (max-width: 540px) {
    .top_fw1{
        background: url(../images/top_fw1.jpg) center top / cover no-repeat;

    }
}
.top_slide p{
    font-size: 2.6rem;
    background-color: #ffffff91;
    text-align: left;
    padding: 10px 10px 10px 3%;
    position: absolute;
    top: 69%;
    right: 0;
}
@media screen and (max-width: 540px) {
    .top_slide p{
        font-size: 2rem;
    }
}
.top_slide p span{
    color: #5185C5;
    font-weight: bold;
}
.photo_wrap{
    display: flex;
    justify-content: center;
    gap: 16px;
}
.photo_wrap_inner img{
    display: block;
    margin-bottom: 16px;
}
.top_content_txt{
    width: 70%;
    max-width: 800px;
    margin: auto;
}
.top_content_txt ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.top_content_txt ul li{
    width: 48%;
}
@media screen and (max-width: 990px) {
    .top_content_txt{
        width: 80%;
    }
    .top_content_txt ul li{
        width: 100%;
    }
}
/* TOPページ事業内容MENU---------------------------- */
.base_top_service{
    max-width: 1300px;
}
.service_item_wrap{
    margin: 100px 0 200px;
}
.last_service_item_wrap{
    margin-bottom: 0;
}
.service_item_wrap .top_service{
    display: flex;
    gap: 20px;
    background-color: #F9F9F9ba;
    padding: 20px 0;
}
.reverse{
    flex-direction: row-reverse;
}
.service_item_wrap .top_service img{
    display: block;
    margin-top: -100px;
}
.service_item_wrap .top_service .service_txt{
    width: 40%;
    margin: auto;
}
.service_item_wrap .top_service .service_btn a{
    display: block;
    text-align: center;
    width: 30px;
    border: 1px solid #ccc;
    margin-left: auto;
}
.service_item_wrap .top_service .service_txt h3{
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
}
@media screen and (max-width: 990px) {
    .service_item_wrap .top_service{
        flex-direction: column;
        padding: 38px 0;
    }
    .service_item_wrap .top_service .service_txt{
        width: 95%;
    }
}
/*------------------- ここまでtopページ -------------------*/

/*------------------- TOP以外のfw -------------------*/
.fw{
    width: 100%;
    height: 600px;
    background: url(../images/fw.jpg) center center / cover no-repeat;
    position: relative; 
}
@media screen and (max-width: 540px) {
    .fw{
        height: 400px;
    }
}
.main_ttl{
    font-size: 4rem;
    color: #fff;
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    text-shadow: -1px 0px 20px #1212126b;
}
/*------------------- ここまでTOP以外のfw -------------------*/

/*------------------- 会社概要ページ -------------------*/
.company_content{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    position: relative;
}
@media screen and (max-width: 768px) {
    .company_content{
        margin-top: 34px;
        flex-direction: column;
    }
}
@media screen and (max-width: 540px) {
    .owner_img{
        width: 200px;
    }
}
.company_content .txt_box{
    margin: 0;
}
.info_box{
    width: 100%;
    max-width: 900px;
}
.info_box table{
    border-collapse: collapse;
    border-spacing: 0;
}
@media screen and (max-width: 768px) {
    .info_box{
        max-width: 600px;
        padding: 0 20px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 540px) {
    .info_box{
        font-size: 1.5rem;
        padding: 0 10px;
    }
}
.info_box th{
    width: 34.5%;
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
    line-height: 1.9;
    border-bottom: 1px solid #707070;
    letter-spacing: 0.06em;
    padding: 16px 10px 16px 0;
}
@media screen and (max-width: 540px) {
    .info_box th{
        padding: 36px 30px 36px 0;
    }
}
.info_box td{
    width: 578px;
    color: #413b3b;
    border-bottom: 1px solid #707070;
    padding: 16px 0;
    text-align: left;
    vertical-align: middle;
    line-height: 1.9;
    letter-spacing: 0.06em;
}
.company2_img{
    align-self: flex-start;
    margin: -60px 0 0 -80px;
}
@media screen and (max-width: 924px) {
    .company2_img{
        align-self: auto;
        margin: 0;
        width: 116px;
        position: absolute;
        top: 77px;
        right: 0;
    }
}
@media screen and (max-width: 674px) {
    .companyt2_img{
        width: 37.037037vw;
        top: -100px;
        z-index: -1;
        opacity: 0.6;
    }
}
.company2_img img{
    width: 300px;
}
.map_box{
    margin-top: 80px;
    width: 100vw;
    height: 492px;
    margin: 80px calc(50% - 50vw) 0;
}
.map_box iframe{
    width: 100%;
}
/*------------------- ここまで会社概要ページ -------------------*/
/* 当社の魅力--------------------------- */
.about_last{
    background-image: url(../images/about_bcg.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 100px 0 300px;
}
.about_last p{
    width: 60%;
    font-size: 2rem;
    color: #fff;
    padding-left: 40px;
    text-shadow: 0 0 12px #333;
}
@media screen and (max-width: 786px) {
    .about_last{
        background-position: right top;
        padding: 32px 0 56px;
    }
    .about_last p{
        width: 70%;
        font-size: 1.6rem;
        margin-left: auto;
    }
}
/* 事業内容個別ページ-------------------- */
.service_btn{
    justify-content: flex-start;
}
.service_photo_wrap{
    position: relative;
    text-align: center;
}
.service_photo_wrap_inner{
    position: absolute;
    right: 10%;
    bottom: -25%;
}
.service_content_item{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.service_content_item img{
    width: 48%;
    box-shadow: 0 0 6px #ccc;
}
.service_content_item::after{
    content: "";
    display: block;
    width: 48%;
    height: 100%;
    background-color: #9bd6dedb;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: -1;
}
.service_item_wrap{
    margin: 100px 20px;
}
.service_item_wrap .reverse::after{
    left: unset;
    right: -20px;
}
.service_content_item .service_txt{
    width: 48%;
}
.service_content_item .service_txt h3{
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.service_info{
    width: 70%;
    font-size: 2.4rem;
    font-weight: bold;
    margin: 0 auto 50px;
}
/* 電力事業---------------------- */
.back_white_electric{
    padding-bottom: 140px;
}
/* 太陽光、スマートハウス-------------------- */
.sunlight_photo_wrap{
    text-align: center;
}
.sunlight_table{
    width: 70%;
    max-width: 800px;
    margin: auto;
}
@media screen and (max-width: 786px) {
    .sunlight_table{
        width: 90%;
    }
}
.sunlight_table tr th{
    width: 100%;
    display: block;
    text-align: left;
    font-size: 2rem;
    padding-left: 20px;
    position: relative;
    margin-bottom: 16px;
}
.sunlight_table tr th::before{
    content: "";
    display: block;
    width: 6px;
    height: 100%;
    background-color: #ffffff;
    border: 1px solid #5185C5;
    position: absolute;
    top: 0;
    left: 0;
}
.sunlight_table tr td{
    width: 100%;
    display: block;
    margin-bottom: 40px;
}
.sunlight_table02{
    width: 70%;
    max-width: 800px;
    margin: auto;    
}
@media screen and (max-width: 786px) {
    .sunlight_table02{
        width: 90%;
    }
}
.sunlight_table02 table tr th{
    width: 100%;
    display: block;
    text-align: left;
    padding-left: 32px;
    margin-bottom: 8px;
    position: relative;
}
.sunlight_table02 table tr th::before{
    content: "Q";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 6px;
    border: 1px solid #5185C5;
    color: #5185C5;
}
.sunlight_table02 table tr td{
    width: 100%;
    display: block;
    margin-bottom: 27px;
}
/* 沿革-------------------------------- */
.history_table{
    width: 50%;
    max-width: 800px;
    display: block;
    margin: auto;
}
@media screen and (max-width: 990px) {
    .history_table{
        width: 90%;
    }
}
.history_table table tbody tr th{
    position: relative;
    width: 100%;
    font-size: 2rem;
    display: block;
    text-align: left;
    padding-left: 20px;
}
.history_table table tbody tr th::before{
    content: "";
    display: block;
    width: 6px;
    height: 100%;
    background-color: #5185C5;
    position: absolute;
    top: 0;
    left: 0;
}
.history_table table tbody tr td{
    width: 100%;
    display: block;
    margin-bottom: 40px;
}
.history_content{
    width: 60%;
    color: #fff;
    background-color: #5285C5;
    padding: 27px 16px;
    box-shadow: 0 0 6px #ccc;
    margin: auto;
}

.history_content p{
    text-align: center;
}
.history_content li{
    padding-left: 40px;
}
@media screen and (max-width: 786px) {
    .history_content{
        width: 90%;
    }
    .history_content li{
        padding-left: 0;
    }
}
@media screen and (max-width: 786px) {
    .service_item_wrap {
        margin: 56px 20px;
    }
    .service_photo_wrap_inner{
        right: 0%;
        bottom: -38%;
    }
    .service_photo_wrap_inner img{
        width: 200px;
    }
    .white_long{
        padding-bottom: 0;
    }
    .service_content_item{
        flex-direction: column;
    }
    .service_content_item::after {
        width: 100%;
        height: 48%;
    }
    .service_content_item img {
        width: 100%;
    }
    .service_content_item .service_txt {
        width: 100%;
    }
    .service_content_item .service_txt h3 {
        font-size: 2.2rem;
    }
    .service_info {
        font-size: 2rem;
        width: 95%;
    }
}
/*------------------- 求人情報ページ -------------------*/
.recruit_main_ttl{
    top: 46%;
    left: 14%;
    width: fit-content;
    text-align: start;
    background-color: #5e5e6582;
    padding: 20px 100px 20px 50px;
}
.recruit_main_ttl span{
    display: block;
    font-size: 3rem;
    margin-left: -30px;
}
@media screen and (max-width: 900px) {
    .recruit_main_ttl{
        left: 10px;
        padding: 20px 20px 20px 50px;
    }
}
@media screen and (max-width: 540px) {
    .main_ttl{
        font-size: 3.2rem;
        padding: 20px;
        top: 50%;
    }
    .recruit_main_ttl span{
        font-size: 1.8rem;
        margin-left: 0;
    }
}
.recruit_content{
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .recruit_content{
        flex-direction: column;
    }
}
.recruit_l{
    max-width: 478px;
    margin-right: 30px;
}
@media screen and (max-width: 768px) {
    .recruit_l{
        margin-right: 0;
    }
}
.recruit_l :first-child{
    font-size: 4rem;
    margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
    .recruit_l :first-child{
        font-size: 2.4rem;
        margin-bottom: 34px;
    }
}
@media screen and (max-width: 768px) {
    .recruit_r{
        width: 300px;
    }
}
.recruit_r img{
    border: solid 1px #707070;
}
.entry_content{
    margin-top: 80px;
}
@media screen and (max-width: 540px) {
    .entry_content{
        margin-top: 34px;
    }
}
/* 応募フォーム------------ */


/*------------------- ここまで求人情報ページ -------------------*/

/*------------------- 求人個別ページ -------------------*/
.recruit_fw01{
    background: url(../images/recruit_fw01.jpg) center center / cover no-repeat;
}
.recruit_fw02{
    background: url(../images/recruit_fw02.jpg) center center / cover no-repeat;
}
.recruitment{
    margin-top: 80px;
}
@media screen and (max-width: 540px) {
    .recruitment{
        margin-top: 34px;
    }
}
.recruitment_box{
    font-size: 1.6rem;
    max-width: 800px;
    margin: 100px auto 0;
}
@media screen and (max-width: 540px) {
    .recruitment_box{
        margin: 40px auto 0;
    }
}
.recruitment_box th{
    padding-left: 40px;
    border-right: solid 1px #707070;
}
.recruitment_box td{
    padding-left: 30px;
}
@media screen and (max-width: 540px){
    .recruitment_box th{
        padding: 20px 0 20px 14px;
    }
    .recruitment_box td{
        padding: 20px 0 20px 14px;
    }
}
.recruitment_box tr:last-child th,
.recruitment_box tr:last-child td{
    border-bottom: 1px solid #707070;
}
/* 応募フォーム------------ */
.entry_content .form_table {
    width: 80%;
    max-width: 990px;
    border-collapse: collapse;
    word-break: break-all;
    margin: auto;
    margin-bottom: 34px;
}
.entry_content.form_table tbody tr{
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 1em;
}
.entry_content .form_table tbody tr th{
    width: 29%;
    font-weight: 500;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #707070;
    padding: 20px 50px 20px 8px;
}
@media screen and (max-width: 768px){
    .entry_content .form_table tbody tr th{
       width: 20%;
       font-size: 12px;
       padding: 1em;
    }
}
@media screen and (max-width: 540px){
    .entry_content .form_table tbody tr th{
       width: 100%;
       display: block;
       border-bottom: 0;
       padding: 8px 0 8px 0;
    }
}
.entry_content .form_table tbody tr th .must{
    width: 55px;
    color: #413b3b;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    background-color: #f27070;
    text-align: center;
}
@media screen and (max-width: 768px){
    .entry_content .form_table tbody tr th .must{
        float: none;
    }
}
.entry_content .form_table tbody tr td{
    font-size: 1.3rem;
    text-align: left;
    vertical-align: middle;
    position: relative;
    border-bottom: 1px solid #707070;
    padding: 28px 8px 28px 58px;
}
@media screen and (max-width: 768px){
    .entry_content .form_table tbody tr td{
       font-size: 12px;
       padding: 1em;
       padding-left: 1em;
    }
}
@media screen and (max-width: 540px){
    .entry_content .form_table tbody tr td{
        width: 100%;
        display: block;
        padding: 0 0 10px 0;
     }
}
.entry_content .form_table tbody tr td::before{
    position: absolute;
    left: 0;
    top: 27px;
    width: 1px;
    bottom: 27px;
    background: #707070;
    content: "";
}
@media screen and (max-width: 540px){
    .entry_content .form_table tbody tr td::before{
        display: none;
     }
}
.entry_content .form_table tbody p{
    margin: 0;
}
.entry_content .form_table tbody p label{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 540px) {
    .entry_content .form_table tbody p label{
        justify-content: start;
        align-items: start;
    }
}
.entry_content .wpcf7-text,
.entry_content .wpcf7-number,
.entry_content .wpcf7-select,
.entry_content .wpcf7-textarea{
    width: 100%;
    height: 58px;
    color: #413b3b;
    font-size: 1.3rem;
    padding: 5px 10px 5px 23px;
    box-sizing: border-box;
    background-color: #F5F3EE;
    border: 1px solid #F5F3EE;
    border-radius: 4px;
}
@media screen and (max-width: 540px) {
       .entry_content .wpcf7-text,
       .entry_content .wpcf7-number,
       .entry_content .wpcf7-select,
       .entry_content .wpcf7-textarea{
       font-size: 2.96296296vw;
    }
}
.entry_content .form_table tr:last-child .wpcf7-textarea{
    height: 200px;
}
.entry_content p input.wpcf7-submit{
    display: block;
    font-family: 'Noto Sans JP',sans-serif;
    font-size: 1.8rem;
    width: 200px;
    color: #333;
    background: transparent;
    border: 1px solid #707070;
    display: block;
    padding: 18px 24px;
    margin: 20px auto 0;
    text-align: center;
    transition: all ease .3s;
}
@media screen and (max-width: 540px){
    .entry_content p input.wpcf7-submit{
        font-size: 1.5rem;
        padding: 16px 24px;
    }
}
.entry_content p input.wpcf7-submit:hover{
    transform: scale(1.04);
    color: #fff;
    background: #5185c5;
    transition: all ease .3s;
}
/*------------------- ここまで求人個別ページ -------------------*/

/*------------------- お問い合わせページ -------------------*/
.contact_content{
    width: 70%;
    max-width: 990px;
    margin: auto;
    margin-top: 80px;
}
@media screen and (max-width: 540px) {
    .contact_content{
        width: 100%;
        margin-top: 34px;
    }
}
/* お問い合わせフォーム------------ */
.contact_content input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
.contact_content input.wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel,
.contact_content textarea.wpcf7-form-control.wpcf7-textarea{
    width: 100%;
    height: 50px;
    margin-top: 1px;
    margin-bottom: 30px;
    box-sizing: border-box;
}
.contact_content textarea.wpcf7-form-control.wpcf7-textarea{
    height: 200px;
}
.wpcf7 p{
    margin-bottom: 0;
}
.contact_content .wpcf7-form-control-wrap{
    margin: auto;
    width: 60%;
    display: block;
    padding-left: 100px;
}
label{
    display: block;
    margin-bottom: 20px;
}
.contact_content form input[type=submit]{
    display: block;
    font-family: 'Noto Sans JP',sans-serif;
    font-size: 1.8rem;
    width: 200px;
    color: #333;
    background: transparent;
    border: 1px solid #707070;
    display: block;
    padding: 18px 24px;
    margin: 20px auto 0;
    text-align: center;
}
@media screen and (max-width: 540px){
    .contact_content form input[type=submit]{
        font-size: 1.5rem;
        padding: 16px 24px;
    }
}
.contact_content form .wpcf7-submit:hover{
    transform: scale(1.04);
    color: #fff;
    background: #5185c5;
}
.wpcf7-list-item {
    margin: 0 0 0 20px;
}
/* プライバシーポリシーチェックボックスCSS　フォーム共通 */
.privacypolicy_checkbox{
    text-align: center;
}
.privacypolicy_checkbox_ttl{
    font-size: 2rem;
    font-weight: bold;
}
@media screen and (max-width: 540px){
    .privacypolicy_checkbox_ttl{
        font-size: 1.6rem;
    }
}
.privacypolicy_checkbox p{
    margin-bottom: 10px;
}
.privacypolicy_checkbox a{
    color: #949494;
    text-decoration: underline;
}

/*------------------- ここまでお問い合わせページ -------------------*/

/*------------------- お問い合わせ・応募完了ページ -------------------*/
.complete_bg{
    width: 100%;
    height: 80vh;
    background: url(../images/complete_bg.jpg) center center / cover no-repeat;
    padding: 0 14px;
}
.complete_box{
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.complete_box h1{
    font-size: 5rem;
}
.complete_box p{
    font-size: 2.4rem;
    margin: 20px 0 60px 0;
}
.complete_box a{
    font-size: 2.4rem;
    border-bottom: solid 1px #707070;
}
@media screen and (max-width: 540px) {
    .complete_box h1{
        font-size: 2.4rem;
    }
    .complete_box p{
        font-size: 1.8rem;
        margin: 10px 0 30px 0;
    }
    .complete_box a{
        font-size: 1.8rem;
    }    
}
/*------------------- ここまでお問い合わせ・応募完了ページ -------------------*/

/*------------------- 404ページ -------------------*/
.notfound_bg{
    background: url(../images/404_bg.jpg) center center / cover no-repeat;
}
@media screen and (max-width: 540px) {
    .notfound_bg{
        background-position: center left -250px;
    }       
}
.notfound_box{
    font-size: 2.4rem;
    width: max-content;
    background-color: #ffffff90;
    padding: 30px 8% 20px 4%;
    border: solid 1px #707070;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 540px) {
    .notfound_box{
        font-size: 1.8rem;
        padding: 30px 4% 20px 2%;
    }       
}
.notfound_box p{
    margin: 0;
}
.notfound_box a{
    color: #FF0000;
    border-bottom: solid 1px #FF0000;
}
/*------------------- ここまで404ページ ---------*/

/*------------------- プライバシーポリシーページ -------------------*/
.privacy_content{
    margin-top: 40px;
}
/*------------------- ここまでプライバシーポリシーページ -------------------*/
.sp_none{
    display: block;
}
.sp{
    display: none;
}
@media screen and (max-width: 990px) {
    .sp_none{
        display: none;
    }
    .sp{
        display: block;
    }
}
/*------------------- スクロールでふわっと表示（js） -------------------*/
.scroll_fade{
    opacity: 0;
	transform: translateY(40px);
	transition: opacity 1.5s, transform 1s;
}
.scroll_fade.active{
    opacity: 1;
	transform: translateY(0px);
}
/*------------------- ここまでスクロールでふわっと表示（js） -------------------*/