@charset "utf-8";


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

/*cssのリセット*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,
ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,
summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
}
html{
	margin-top: 0!important;
}
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
     display: block;
}
 
ul,ol {
    list-style: none;
}
 
blockquote,
q {
    quotes: none;
}
 
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
 
a{
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    transition: all .5s;
}

ins {
    text-decoration: none;
    color: #000;
    background-color: #ff9;
}
 
mark {
    font-weight: bold;
    font-style: italic;
    color: #000;
    background-color: #ff9;
}
 

abbr[title],
dfn[title] {
    cursor: help;
    border-bottom: 1px dotted;
}
 
table {
    border-spacing: 0;
    border-collapse: collapse;
}
 
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #ccc;
}
input[type="submit"],input[type="text"],input[type="email"],input[type="tel"],input[type="button"], input[type="reset"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
  }
  button{
    outline: none;
    padding: 0;
    appearance: none;
    background-color: transparent;
    border: none;

  }
html {
    font-size: 62.5%;
}
 
body {
    font-family: "Noto Sans JP", sans-serif;
    margin: 0;
    padding: 0;
    font-size:1.6rem;/* 16px*/
    color: #000000;
    line-height: 1.5;
}

img{
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
    vertical-align: bottom;
}


article{
    overflow: hidden;
}
@media screen and (max-width: 768px) {

	.inner{
	    /* width: 90%; */
	}
}

/*-----------------------
         header
-------------------------*/
header {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    z-index: 999999;
    background-color: #333333;
}
.sub_header{
	background-color: #fff;
}
header.change-color {
    /* background-color: #fff; */
    /* transition: all .3s; */
}

.header_inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 95%;
	max-width: 1284px;
	margin: 0 auto;
	height: 100%;
	column-gap: 25px;
}
@media screen and (min-width: 1500px) {
	
	.header_inner{
		margin: 0 auto;
	}
}
.header_logo{
	width: 30%;
	max-width: 198px;
}
.header_logo a{
	display: block;
}

.header_nav {
    width: 90%;
    max-width: 890px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
}
.header_link{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 24px;
	
}

.header_nav > ul{
	display: flex;
	justify-content: space-between;
	width: 56%;
	max-width: 485px;
	column-gap: 9px;
	align-items: center;
	text-align: center;
}
.header_nav ul > li a{
    display: block;
    font-size: clamp(14px, 1.41vw, 16px);
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.header_nav > ul li{
    font-size: clamp(14px, 1.41vw, 16px);
    color: #fff;
    font-weight: 500;
    text-align: center;
	cursor: pointer;
	position: relative;
}
.drop-menu:hover .drop-menu-list {
  opacity: 1; /* 不透明度を最大に */
  transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  visibility: visible; /* 下層メニューを表示 */
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}
.drop-menu-list {
  background-color: rgba(51, 51, 51, .8); /* ドロップダウンメニューの背景色 */
  left: 0;
  opacity: 0; /* 不透明度を最小に */
  position: absolute;
  top: 100%;
  transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  visibility: hidden; /* 下層メニューを非表示 */
  width: max-content;
  z-index: 1;
  padding-top: 12px;
}
.drop-menu-item {
  padding: 8px 25px 10px 10px;
}
.drop-menu-item a{
	text-align: left !important;
}
.sp_menu{
	display: none;
}
@media screen and (max-width: 1050px) {
    
	
	.header_logo {
	    width: 41%;
	    max-width: 200px;
	    min-width: 161px;
	    z-index: 999;
	}
	
    header{
		height: 56px;
		padding-top: 0;
	}
    .header_inner{
		align-items: center;
		margin: 0 auto;
	}
    .header_nav,.header_logo .pc_img{
    	display: none !important;
    }
    
    .sp_menu,.header_logo .sp_img{
        display: block;
    }
 
    .nav-menu {
        position: fixed;
        overflow-y: scroll;
        z-index: 99;
        width: 100%;
        top: 0;
        height: 100vh;
        display: none;
        background: #fff;
    }

	.g-menu{
		width: 80%;
		margin: 0 auto;
		margin-top: 137px;
	}
	 .nav-menu .header_link{
		 width: 95%;
		 margin: 0 auto;
		 justify-content: center;
		 margin-top: 80px;
		 column-gap: 15px;
		}
    .g-menu ul li a{
		font-family: 'Noto Serif JP', serif;
		text-align: center;
		display: block;
		font-size: 20px;
		font-weight: 500;
		color: #333333 !important;
		position: relative;
		padding-bottom: 28px;
		letter-spacing: .12em;
		}
	.g-menu ul li .sub_en{
		    font-family: "Noto Sans JP", sans-serif;
		display: block;
		font-size: 12px;
		font-weight: 300;
	}
	.g-menu ul li.sp-submenu > span{
		font-family: 'Noto Serif JP', serif;
		text-align: center;
		display: block;
		font-size: 20px;
		font-weight: 500;
		color: #333333 !important;
		position: relative;
		padding: 0 20px;
		padding-bottom: 22px;
		letter-spacing: .12em;
		width: fit-content;
		margin: 0 auto;
	} 
	.sp-menu-list{
		display: none;
	}
	.sp-menu-list a{
		display: block;
		color: #333333;
		padding-bottom: 15px;
	}
	.js-menu-list .js-menu-title::after {
	  content: '';
	  width: 10px;
	  height: 10px;
	  border-top: solid 2px #333333;
	  border-right: solid 2px #333333;
	  position: absolute;
	  right: 0;
	  top: 15%;
	  transform: rotate(135deg) translateX(-50%);
	}

}



@media screen and (max-width: 1050px) {
/* hamburger */
    .toggle {
        position: fixed;
        right: 18px;
        top: 14px;
        width: 52px;
        height: 52px;
        cursor: pointer;
        z-index: 999;
        display: block;
    }

   
        
    .toggle span {
        display: block;
	    position: absolute;
	    width: 34px;
	    height: 3px; /* borderの代わりにheightを使用 */
	    background: linear-gradient(178deg, rgba(19, 219, 168, 1) 0%, rgba(128, 243, 5, 1) 100%);
	    transition: .35s ease-in-out;
	    left: 50%;
	    transform: translateX(-50%);
	    border: none; /* borderを削除 */
    }

    .toggle span:nth-child(1) {
        top: 4.3px;
    }
    .toggle span:nth-child(2) {
        top: 13px;
        background: linear-gradient(178deg,rgba(19, 219, 168, 1) 0%, rgba(128, 243, 5, 1) 50%);
    }
    .toggle span:nth-child(3) {
        top: 22px;
		background: linear-gradient(178deg, rgba(19, 219, 168, 1) 0%, rgba(128, 243, 5, 1) 10%);
    }
    .toggle.active{
		background: linear-gradient(178deg, rgba(19, 219, 168, 1) 0%, rgba(128, 243, 5, 1) 100%);
		border-radius: 100%;
		width: 52px;
		height: 52px;
	}
    .toggle.active span:nth-child(1) {
        top: 28%;
        left: 45%;
        width: 30px;
        -webkit-transform: rotate(-45deg) translate(-50%,-50%);
        -ms-transform: rotate(-45deg) translate(-50%,-50%);
        transform: rotate(-45deg) translate(-50%,-50%);
        background: #fff;
    }
    .toggle.active span:nth-child(2),
    .toggle.active span:nth-child(3) {
        top: 72%;
        left: 41%;
		width: 30px;
        -webkit-transform: rotate(45deg) translate(-50%,-50%);
        -ms-transform: rotate(45deg) translate(-50%,-50%);
        transform: rotate(45deg) translate(-50%,-50%);
        background: #fff; 
    }
}

.sec_ttl{
	text-align: center;
	font-family: "Noto Serif JP", serif;
}

 .sec_ttl h2 {
	font-size: clamp(16px, 1.57vw, 20px);
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.sec_ttl img {
    max-width: 127px;
    vertical-align: middle;
}


.sp_br,.sp_img{
    display: none;
}

@media screen and (max-width: 768px) {

    .sp_br,.sp_img{
        display: block;
    }
    .pc_br,.pc_img{
        display: none;
    }
	.sec_ttl img {
	    max-width: 30px;
	    vertical-align: middle;
	}
}

.en_btn{
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
	width: 67%;
	max-width: 367px;
}

.en_cta{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48%;
	max-width: 176px;
	height: 48px;
	text-align: center;
	background: linear-gradient(178deg, rgba(19, 219, 168, 1) 0%, rgba(128, 243, 5, 1) 100%);
	font-size: clamp(14px, 1.41vw, 18px);
	color: #000000;
	font-weight: 500;
	border-radius: 100vw;
    overflow: hidden;
    position: relative;
}

.en_cta:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  transition: .5s;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 100%);
	transform: skewX(-45deg);
	animation: nyainy-btn 1.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) infinite;
}
@keyframes nyainy-btn {
	0% {
	left: -100%;
	}
	20% {
	left: 100%;
	}
	100% {
	left: 100%;
	}
}

@media screen and (max-width: 1050px) {
	
	.en_cta {
	    width: 100%;
	    margin: 0 auto;
	    max-width: 272px;
	    height: 49px;
	    font-size: 18px;
	}

	.nav-menu .en_btn{
		margin: 0 auto;
		max-width: none;
		row-gap: 19px;
		width: 100%;
		margin-top: 5px;
		flex-direction: column;
	}

}
/*-----------------------
         top
-------------------------*/
#maintop{
	background-image:url(../img/mv.jpg);
	background-size: cover;
	position: relative;
	background-position: bottom;
	padding-top: 65%;
}
.maintop_box{
	max-width: 1440px;
	position: absolute;
	top: 25%;
	left: 56%;
	width: 70%;
	transform: translate(-50%,-50%);
}
.maintop_box p{
	color: #fff;
	text-shadow: 0 1px 19px rgba(18, 84, 120, .97);
	font-size: clamp(28px, 2.82vw, 36px);
	letter-spacing: .12em;
	font-weight: 500;
	line-height: 1.91;
}

@media screen and (max-width: 768px) {

	#maintop{
		background-image:url(../img/mv_sp.jpg);
		padding-top: 170%;
	}
	.maintop_box {
	    max-width: 1440px;
	    position: absolute;
	    top: 40%;
	    left: 53%;
	    width: 90%;
	    transform: translate(-50%, -50%);
	}
	.maintop_box p{
		font-size: clamp(22px, 3.66vw, 28px);
	}

}

@media screen and (max-width: 479px) {

	#maintop{
		background-image:url(../img/mv_sp.jpg);
		padding-top: 216%;
	}
	.maintop_box {
	    max-width: 1440px;
	    position: absolute;
	    top: 19%;
	    left: 53%;
	    width: 90%;
	    transform: translate(-50%, -50%);
	}
	
}


/*-----------------------
         message
-------------------------*/
.message{
	padding-top: 88px;
}
.message .sec_ttl h2 {
    font-size: clamp(40px, 6.25vw, 80px);
}
.message .inner{
	width: 100%;
	max-width: 1297px;
	margin: 0 0 0 auto;
}

@media screen and (min-width: 1600px) {

	.message .inner{
		max-width: 1160px;
		margin: 0 auto;
	}
}

.message_fx{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}
.message_txt{
	position: relative;
	width: 48%;
	max-width: 613px;
	margin-right: -6%;
	z-index: 1;
	margin-bottom: -2%;
}
.message_img{
	width: 49%;
	max-width: 624px;
	position: relative;
	z-index: 0;
}
.message_txtbox{
	background-color: rgba(255, 88, 5, .8);
	color: #fff;
	padding: 35px 6.5%;
	margin-top: 32px;
}
.message_txt h3{
	font-size: clamp(22px, 2.188vw, 28px);
	color: #FF5805;
	letter-spacing: .06em;
	line-height: 1.57;
	margin-top: 54px;
	text-indent: -1em;
 	 padding-left: 1em;
}
.message_txtbox p {
    line-height: 2.2;
	font-weight: 500;
    font-size: clamp(16px, 1.41vw, 18px);
}

@media screen and (max-width: 768px) {
	
	.message_fx{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.message_txt{
		position: relative;
		width: 95%;
		max-width: 550px;
		margin-right: 0;
		margin-left: auto;
		z-index: 0;
		margin-bottom: -4%;
	}
	.message_img{
		margin-right: auto;
		width: 90%;
		max-width: 380px;
		position: relative;
		z-index: 1;
	}
	.message_txtbox {
	    padding: 25px 15px 35px;
	}
	.message_txtbox p{
	    line-height: 2;
	}
}
/*-----------------------
         business
-------------------------*/
.business{
	padding-top: 180px;
}
.business .sec_ttl{
	text-align: center;
}
.business .sec_ttl p{
	padding-top: 15px;
}

.business_col{
	width: 90%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 20px;
	max-width: 1170px;
	margin-top: 120px;
}
.business_col:first-child{
	margin-top: 64px;
}
.business_col:nth-child(odd){
	margin-left: auto;
}
.business_col:nth-child(even){
	flex-direction: row-reverse;
}
@media screen and (min-width: 1600px) {

	.business_col:nth-child(odd){
		margin-left: auto;
	}
	.business_col{
		margin: 120px auto 0;
	}
	
}

.business_txt{
	width: 42%;
	max-width: 480px;
}
.business_img{
	width: 54%;
	max-width: 620px;
}
.business_col span img{
	max-width: 35px;
	vertical-align: middle;
}
.business_col span{
	font-weight: bold;
	color: #FF5805;
	font-size: clamp(16px, 1.41vw, 18px);
}
.business_col span .big{
	font-size: clamp(16px, 1.57vw, 20px);
}
.business_txt h3{
	font-weight: 500;
	font-size: clamp(20px, 2.499999vw, 32px);
}
.business_txtbox p{
	line-height: 2;
    font-weight: 500;
	margin-top: 32px;
    font-size: clamp(16px, 1.41vw, 18px);
}
@media screen and (max-width: 768px) {

	.business {
	    padding-top: 120px;
	}
	.business_col{
		width: 100%;
		display: flex;
		flex-direction: column;
		row-gap: 20px;
		max-width: 550px;
		margin: 0 auto;
		margin-top: 80px;
	}
	.business_col:first-child{
		margin-top: 64px;
	}
	.business_col:nth-child(odd){
		margin-left: auto;
	}
	.business_col:nth-child(even){
		flex-direction: column;
	}
	.business_txt{
		width: 90%;
		max-width: 480px;
	}
	.business_img{
		width: 100%;
	}
}


/*-----------------------
        case
-------------------------*/


.case {
   background-image: url('../img/casebg.jpg');
	background-position: right;
   background-size: cover;
   padding: 80px 0 87px;
}
.case02 {
   padding: 80px 0 87px;
}
.case .sec_ttl img{
	max-width: 106px;
	margin-bottom: 17px;
}
.case_list{
	width: 90%;
	max-width: 1116px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 10px;
	row-gap: 10px;
	margin-top: 48px;
}
.case_list li{
	width: 32.5%;
	max-width: 364px;
	height: 284px;
	position: relative;
}
.case_list li img,.case_img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.case_txt{
	color: #fff;
	padding: 18.5px 33px;
	background-color: rgba(7, 29, 2, .8);
	position: absolute;
	bottom: 0;
	width: 100%;
}

.case_txt h3{
	font-size: clamp(16px, 1.41vw, 18px);
	font-weight: 500;
}

.case02 .case_list{
	width: 90%;
	max-width: 1116px;
	flex-wrap: wrap;
	column-gap: 12px;
	row-gap: 12px;
	margin-top: 48px;
}
.case02 .case_list li{
	width: 32.4%;
	max-width: 364px;
	height: 290px;
}

@media screen and (max-width: 1040px) {
	.case_list li{
		width: 32.4%;
		max-width: 357px;
		height: 214px;
		position: relative;
	}
}
@media screen and (max-width: 1000px) {
	.case02 .case_list li{
		width: 32.4%;
		max-width: 357px;
		height: 214px;
		position: relative;
	}
}
@media screen and (max-width: 768px) {

	.case_list{
		max-width: 550px;
		justify-content: space-between;
	}
	.case_list li{
		background-color: #D9D9D9;
		width: 48%;
		max-width: 425px;
	}
	.case02 .case_list li{
		width: 100%;
		max-width: 357px;
		height: 214px;
	}
	
}
@media screen and (max-width: 450px) {

	.case_list{
		justify-content: center;
		row-gap:15px;
	}
	.case_list li{
		width: 95%;
		max-width: 425px;
	}
	
}
/*-----------------------
         about
-------------------------*/
.about{
	background-image: url(../img/aboutbg.jpg);
	background-size: cover;
	padding: 84px 0 64px;
	margin-bottom: 0;
}
.about .sec_ttl{
	text-align: left;
	margin-bottom: 60px;
}
.about .sec_ttl img{
	max-width: 180px;
	margin-bottom: 15px;
}
.about .sec_ttl h2{
	font-size: 16px;
}
.about_fx{
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	width: 90%;
	max-width: 1080px;
	margin: 0 auto;
} 
.about_txt{
	width: 33%;
	max-width: 355px;
}
.about_img{
	width: 54%;
	max-width: 580px;
}
.about_txt p{
	color: #fff;
	font-size: 16px;
	font-weight:500;
	letter-spacing: .12em;
	line-height: 2;
}


@media screen and (max-width: 768px) {

	.about .sec_ttl h2 {
	    margin-bottom: 0;
	}
	.about_fx{
		flex-direction: column-reverse;
		align-items: center;
		row-gap: 50px;
		width: 90%;
		max-width: 1080px;
		margin: 0 auto;
	} 
	.about_txt{
		width: 100%;
		max-width: 550px;
	}
	.about_img{
		width: 100%;
		max-width: 580px;
	}
	.about .sec_ttl {
	    text-align: left;
	    margin-bottom: 30px;
	}
	.about_txt p{
		font-size: 14px;
	}
}
/*-----------------------
         recruit
-------------------------*/
.recruit_area{
	padding: 111px 0 104px;
	background-color: #fff;
}
.recruit .sec_ttl{
	text-align: center;
}
.recruit_area .sec_ttl p{
	color: #29AD09;
	letter-spacing: .12em;
	font-weight: bold;
	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(30px, 3.34vw, 40px);
	margin-bottom: 9px;
}
.recruit_area .sec_ttl h2{
	font-size: 16px;
	color: #333333;
	letter-spacing: .12em;
}

.recruit_link{
	max-width: 1405px;
	margin: 50px auto 0;
	display: flex;
	column-gap: 5px;
}
.r_cta{
	position: relative;
	display: block;
	width: 50%;
	height: 430px;
	background-image: url('../img/recruit_img01.png');
	background-size: cover;
	color: #fff;
	background-position: center;
}
.recruit_linktxt{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.r_cta h3{
	font-size: clamp(35px, 3.34vw, 48px);
	width: fit-content;
	letter-spacing: .12em;
	font-weight: bold;
	font-family: "Noto Serif JP", serif;
	position: relative;
	text-shadow: 0 0 6px rgba(0,0,0,.75);
}
.r_cta h3:before{
	content: '';
	display: inline-block;
	width: 120px;
	height: 4px;
	background-color: #fff;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
}

.r_cta02{
	background-image: url('../img/recruit_img02.jpg');

}

@media screen and (max-width: 768px) {
	.recruit_area {
	    padding: 70px 0 50px;
	    background-color: #fff;
	}
	.recruit_link{
		margin: 30px auto 0;
		flex-direction: column;
		max-width: 550px;
		row-gap: 5px;
	}
	.r_cta{
		position: relative;
		display: block;
		width: 100%;
		height: 180px;
	}
	.r_cta h3 {
	    font-size: 28px;
	}
	.r_cta h3:before{
		content: '';
		display: inline-block;
		width: 50px;
		height: 2px;
		background-color: #fff;
		position: absolute;
		bottom: -10px;
		left: 50%;
		transform: translateX(-50%);
	}
}
/*-----------------------
         basic
-------------------------*/

.basic_contents{
	padding: 95px 0 113px;
}
.basic_mv{
    height: 380px;
    position: relative;
    margin-top: 80px;
}


.basic_mv img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50%;
}
@media screen and (min-width: 1500px) {

	.basic_mv{
	    height: 550px;
	    position: relative;
	}
	.basic_mv img{
		object-position: bottom;
	}
}
.basic_ttl {
	position: absolute;
	top:62%;
	left: 50%;
	width: 80%;
	transform:translate(-50%,-50%);
	font-family: "Noto Serif JP", serif;
	background: linear-gradient(178deg,rgba(19, 219, 168, 1) 0%, rgba(128, 243, 5, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.basic_ttl h1{
	color: #fff;
	font-size: clamp(30px, 3.75vw, 48px);
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1.2;
	margin-top: 24px;
}

.basic_ttl p{
	width: fit-content;
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1;
	font-size: clamp(18px, 1.88vw, 24px);
	position: relative;
	background: linear-gradient(178deg,rgba(19, 219, 168, 1) 0%, rgba(128, 243, 5, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-right: 12px;
}
.basic_ttl p:after{
	content: '';
	display: inline-block;
	width: 280px;
	height:2px;
	background-color: #FFFFFF;
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (max-width: 1050px) {
	
	.basic_mv{
		margin-top: 56px;
	}
}
@media screen and (max-width: 768px) {
	.basic_mv{
	    height: 350px;
	    position: relative;
	}
	.guideline_mv{
	    height: 250px;
	    position: relative;
	}
	.guideline_mv img{
		object-position: 57%;
	}
	.basic_ttl {
		top:50%;
		left: 50%;
		width: 90%;
	}
	.basic_ttl p:after{
		width: 140px;
		height:1px;
	}
}



/*-----------------------
         会社紹介
-------------------------*/
.history{
	background-color: #fff;
	padding: 56px 0 80px;
}
.history .sec_ttl h2 {
    color: #333333;
}
.history .sec_ttl img {
    max-width: 192px;
}
.history dl{
	width: 90%;
	max-width: 800px;
	margin: 70px auto 0;
	display: flex;
	flex-wrap: wrap;
}
.history dt{
	width: 20%;
	max-width: 148px;
	color: #29AD09;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.77;
	letter-spacing: .12em;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #A3A3A3;
}
.history dd{
	width: 80%;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.77;
	letter-spacing: .12em;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #A3A3A3;
	color: #333333;
}
@media screen and (max-width: 768px) {

	.history dl{
		width: 90%;
		max-width: 800px;
		margin: 50px auto 0;
	}
	.history dt{
		width: 100%;
		max-width: none;
		font-size: 16px;
		padding-bottom:0;
		margin-bottom: 15px;
		border-bottom: none;
	}
	.history dd{
		width: 100%;
		font-size: 14px;
	}
}


.c_overview{
	background-color: #29AD09;
	padding: 80px 0 115px;
}
.c_overview .sec_ttl p{
	color: #fff;
	letter-spacing: .12em;
	font-weight: bold;
	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(30px, 3.34vw, 40px);
	margin-bottom: 9px;
}
.c_overview .sec_ttl h2{
	font-size: 16px;
	color: #fff;
	letter-spacing: .12em;
}
.c_overview_list{
	width: 90%;
	max-width: 900px;
	margin: 56px auto 0;
	padding: 70px 0 67px;
	background-color: #fff;
}
.c_overview_list dl{
	width: 95%;
	max-width: 752px;
	margin: 0 auto 0;
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
}
.c_overview_list dt{
	width: 25%;
	max-width: 186px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.77;
	letter-spacing: .12em;
	padding-bottom: 16px;
	margin-bottom: 24px;
	border-bottom: 1px solid #A3A3A3;
	color: #333333;
}
.c_overview_list dd{
	width: 75%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.77;
	letter-spacing: .12em;
	padding-bottom: 16px;
	margin-bottom: 24px;
	border-bottom: 1px solid #A3A3A3;
	color: #333333;
}
@media screen and (max-width: 768px) {

	.c_overview_list{
		width: 90%;
		max-width: 900px;
		margin: 56px auto 0;
		padding: 40px 0 ;
		background-color: #fff;
	}
	.c_overview_list dl{
		width: 90%;
	}
	.c_overview_list dt{
		width: 100%;
		max-width: none;
		font-size: 16px;
		padding-bottom:0;
		margin-bottom: 15px;
		border-bottom: none;
	}
	.c_overview_list dd{
		width: 100%;
		font-size: 14px;
	}
}


/*-----------------------
        募集要項
-------------------------*/

.guideline_page{
	background-color:#DEDEDE;
	padding-top: 83px;
}
.guideline_page .sec_ttl h2{
	color: #333333;
}
.guideline_fx{
	display: flex;
	justify-content: flex-end;
	width: 96%;
	max-width: 1627px;
	margin-left: auto;
}

@media screen and (min-width: 1550px) {
	.guideline_fx{
		margin:0 auto;
		justify-content: center;
	}

}

.guideline_fx_list{
	width: 49%;
	max-width: 664px;
	margin-top: 10%;
	z-index: 1;
}
.guideline_fx_list li{
	margin-top: 24px;
	color: #fff;
	padding: 25px 8.8%;
/* 	height: 194px; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: rgba(41, 173, 9, .95);
}
.guideline_fx_list li:first-child{
	margin-top: 0;
}
.guideline_fx_list li h3{
	font-size: clamp(20px, 2.1vw, 30px);
	font-weight: bold;
	line-height: 1;
	font-family: "Noto Serif JP", serif;
	padding-bottom: 20px;
	border-bottom: 1px solid #fff;
	position: relative;
	margin-bottom: 15px;
}
.guideline_fx_list li h3:before{
	content: '';
	display: inline-block;
	height: 32px;
	width:4px;
	vertical-align: bottom;
	margin-bottom: -4px;
	margin-right: 30px;
	background-color: #fff;
}

.guideline_fx_list li p{
	line-height: 2;
	font-size: 16px;
	font-weight: 500;
/* 	max-width: 413px; */
}
.guideline_fx .sec_ttl{
	width: 26%;
	max-width: 332px;
	margin-right: -2.8%;
}
.guideline_fx .sec_ttl img{
	max-width: 332px;
}
.guideline_fx_img{
	width: 50%;
	max-width: 630px;
	margin-top: 20px;
	margin-left: -12.5%;
	z-index: 0;
}

@media screen and (max-width: 768px) {

	.guideline_fx{
		flex-direction: column;
		justify-content: center;
		align-content: center;
		width: 96%;
		max-width: 1627px;
		margin: 0 auto;
		position: relative;
		padding-bottom: 150px;
	}

	.guideline_fx .sec_ttl{
		width: 100%;
		max-width: 232px;
		margin: 0 auto;
	}
	.guideline_fx_list {
	    width: 90%;
	    max-width: 550px;
	    margin: 0 auto;
	    margin-top: 10%;
	    z-index: 1;
	}
	.guideline_fx_list li{
		padding: 25px 20px;
		height: auto;
	}
	.guideline_fx_list li h3 {
	    padding-bottom: 15px;
		font-size: 17px;
	}
	.guideline_fx_list li h3:before {
	    height: 25px;
	    width: 3px;
	    margin-bottom: -4px;
	    margin-right: 10px;
	}
	.guideline_fx_list li p {
	    font-size: 14px;
		line-height: 1.87;
	}
	.guideline_fx_img {
	    width: 100%;
	    max-width: 280px;
	    margin-top: 20px;
	    margin-left: 0;
	    z-index: 0;
		position: absolute;
		right: 0;
		bottom: 0; 
	}
}


.guideline_contents{
	margin: 0 auto;
	margin-top: 76px;
	width: 90%;
	max-width: 1160px;
	    padding-bottom: 83px;
}

.guideline_contents ul li{
	background-color: #fff;
	padding: 64px 9.2%;
	margin-bottom: 32px;
}
.guideline_contents ul li h3{
	font-size: clamp(24px, 2.1vw, 30px);
    font-weight: 500;
	line-height: 1;
	padding-bottom: 20px;
	border-bottom: 1px solid #A3A3A3;
	position: relative;
	margin-bottom: 15px;
	color:#1D7906;
	letter-spacing: .12em;
}
.guideline_contents ul li h3:before{
	content: '';
	display: inline-block;
	height: 44px;
	width:5px;
	vertical-align: bottom;
	margin-bottom: -10px;
	margin-right: 30px;
	background-color: #29AD09;
}
.guideline_contents ul li dl{
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
	column-gap: 23px;
}

.guideline_contents ul li dt{
	width: 13%;
	max-width: 124px;
	color: #29AD09;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.77;
	border-bottom: 2px solid #29AD09;
	padding-bottom: 24px;
	margin-bottom: 40px;
	letter-spacing: .12em;
}
.guideline_contents ul li dd{
	letter-spacing: .12em;
	width: 82.1%;
	max-width: 800px;
	line-height: 1.77;
	border-bottom: 1px solid #A3A3A3;
	padding-bottom: 24px;
	margin-bottom: 40px;
	font-size: 18px;
	font-weight: 500;
}
@media screen and (max-width: 768px) {

	.guideline_contents ul li {
	    padding: 64px 20px;
	    margin-bottom: 32px;
	}
	.guideline_contents ul li dt{
		width: 100%;
		max-width: none;
		font-size: 16px;
		border-bottom: 2px solid #29AD09;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
	.guideline_contents ul li dd{
		width: 100%;
		max-width: 800px;
		line-height: 1.77;
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 30px;
		font-size: 14px;
	}
	.guideline_contents ul li h3{
		font-size: 16px;
	}
	.guideline_contents ul li h3:before {
	    height: 30px;
	    width: 3px;
	    margin-bottom: -10px;
	    margin-right: 10px;
	}
}

.faq{
	padding-top: 105px;
}
.faq .sec_ttl p{
	color: #29AD09;
	letter-spacing: .12em;
	font-weight: bold;
	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(30px, 3.34vw, 40px);
	margin-bottom: 9px;
}
.faq .sec_ttl h2{
	font-size: 16px;
	color: #333333;
	letter-spacing: .12em;
}
.accordion{
	width: 90%;
	max-width: 920px;
	margin: 56px auto 140px;
}
.accordion-item{
	padding: 0 24px;
	border-top: 1px solid #A3A3A3;
}
.accordion-item:last-child{
	border-bottom: 1px solid #A3A3A3;
}
.accordion-title {
	color: #333333;
	font-size: 16px;
	letter-spacing:.06em;
	line-height: 1.875;
	font-weight: 500;
	cursor: pointer;
	padding: 24px 8% 32px 0;
	display: flex;
	align-items: baseline;
	column-gap: 26px;
}
.accordion-title span,
.accordion-content span{
	color: #fff;
	font-size: clamp(18px, 1.88vw, 24px);
	font-weight: 500;
	width: 48px;
	height: 48px;
	border-radius: 100%;
	background-color: #29AD09;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 5px;
	flex-shrink: 0;
}
.accordion-content span{
	padding-bottom: 2px;
	background-color: #1D7906;
}
.accordion-content .fx{
	display: flex;
	align-items: baseline;
	column-gap: 26px;
	padding-right: 8%;
}
.accordion-content {
  display: none;
  padding-bottom: 24px;
  margin-left: 40px;
}
.accordion-content p {
  color: #1D7906;
  font-size: 16px;
	letter-spacing:.06em;
	line-height: 1.875;
  font-weight: 500;
}
@media screen and (max-width: 768px) {

	.accordion-item{
		padding: 0;
	}
	.accordion-content {
	    margin-left: 15px;
	}
	.accordion-content p {
	  font-size: 14px;
	}
	.accordion-content .fx{
	  column-gap: 15px;
	}
	.accordion-title span,
	.accordion-content span{
		font-size: 15px;
		width: 35px;
		height: 35px;
	}
	.accordion-title {
	  font-size: 15px;
	  padding: 25px 8% 25px 0;
	  column-gap: 10px;
	}
	.fx_block .accordion-item:last-child{
		margin-bottom: 0;
	}

}
/* 矢印 */
.accordion-title {
  position: relative;
}
/* 縦線 */
.accordion-title::before {
  background: #29AD09; /* 線の色 */
  content: "";
  height: 4px; /* 線の太さ */
  position: absolute;
  right: 0;
  top: 50%; /* 線の位置を縦中央に */
  transform: rotate(90deg); /* 線を縦に */
  transition: transform .3s ease-in-out;
  width: 30px; /* 線の幅 */
}
/* 横線 */
.accordion-title::after {
  background: #29AD09; /* 線の色 */
  content: "";
  height: 4px; /* 線の太さ */
  position: absolute;
  right: 0;
  top: 50%; /* 線の位置を縦中央に */
  transition: opacity .3s ease-in-out;
  width: 30px; /* 線の幅 */
}
/* 縦線(クリック後) */
.accordion-title.open::before {
  transform: rotate(180deg);
}
/* 横線(クリック後) */
.accordion-title.open::after {
  opacity: 0;
}
@media screen and (max-width: 768px) {

	/* 縦線 */
	.accordion-title::before {
	  right:0;
	  height: 2px;
	  width: 22px;
	}
	/* 横線 */
	.accordion-title::after {
	  right: 0;
	  height: 2px;
	  width: 22px;
	}

}
/*-----------------------
     エントリーフォーム
-------------------------*/
.form_contents{
	padding: 97px 0 20px;
}
.form_p{
	text-align: center;
	font-size: clamp(16px, 1.57vw, 20px);
    font-weight: 500;
    letter-spacing: .12em;
}

.required,.any{
	display: inline-block;
	line-height: 1;
	font-size: 16px;
	font-weight: 500;
	padding: 6px 13.5px;
	border-radius: 24px;
}
.any{
	background-color: #A1A1A1;
	color: #fff;
}
.required{
	background-color: #FF5805;
	color: #fff;
}
.flee-form{
	margin-top: 90px;
	display: flex;
	flex-wrap: wrap;
}
.flee-form dt{
	width: 28%;
	max-width: 290px;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.77;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #FFBB99;
}

.flee-form dd{
	width: 72%;
	max-width: 740px;
	padding: 0 24px 0 32px;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #FFBB99;
}
.flee-form dt.last,
.flee-form dd:last-child{
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}



input[type="text"],
input[type="email"],
input[type="tel"],
textarea,select,
.wpcf7-date{
	font-size: 16px;
	font-weight: 500;
	padding: 10px 15px 10px 25px;
	width: 100%;
	max-width: 680px;
	height: 48px;
	border: none;
	background-color: #E8E8E8;
	line-height: 1.3;
	border-radius: 8px;
}
textarea{
	height: 209px;
}

.wpcf7-submit {
	border: none;
    font-size: clamp(16px, 1.57vw, 20px);
    display: block;
    width: 100%;
    font-weight: bold;
	letter-spacing: .12em;
    cursor: pointer;
}
.form_btn{
    position: relative;
    width: 90%;
    max-width: 430px;
    margin: 0 auto;
    margin-top: 70px;
}
.form_btn:after {
    content: '';
    display: inline-block;
    width: 24%;
    max-width: 105px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.wpcf7-spinner{
	display: none !important;
}


@media screen and (max-width: 768px) {
	
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea{
		font-size: 14px;
		padding: 10px 16px;
		max-width: none;
		height: 40px;
	}
	textarea{
		height: 150px;
		margin-top: 20px;
	}
	.required,.any{
		font-size: 12px;
		padding: 4px 11.5px;
	}
	.flee-form dt{
		width: 100%;
		max-width: none;
		font-weight: bold;
		font-size: 16px;
		line-height: 1.77;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		column-gap: 10px;
		padding-bottom: 0;
		margin-bottom: 20px;
		border-bottom: none;
	}
	.flee-form dd{
		width: 100%;
		max-width: none;
		padding: 0 ;
		padding-bottom: 20px;
		margin-bottom: 40px;
		border-bottom: 1px solid #FFBB99;
	}
	
	
}

input[type="text"]::placeholder ,
input[type="email"]::placeholder ,
input[type="tel"]::placeholder ,
.wpcf7-select::first-child ,
textarea::placeholder{
	font-size: 14px;
	font-weight: 500;
  color: #9C9C9C;
}
/* Microsoft Edge */
input[type="text"]::-ms-input-placeholder ,
input[type="email"]::-ms-input-placeholder ,
input[type="tel"]::-ms-input-placeholder ,
textarea::-ms-input-placeholder {
	font-size: 14px;
	font-weight: 500;
  color: #9C9C9C;
}


/* Internet Explorer */
input[type="text"]:-ms-input-placeholder ,
input[type="email"]:-ms-input-placeholder ,
input[type="tel"]:-ms-input-placeholder ,
textarea:-ms-input-placeholder {
	font-size: 14px;
	font-weight: 500;
  color: #9C9C9C;
}

/*-----------------------
	 サンクスページ
-------------------------*/

.thanks_mv{
	display: none;
}
.thanks_contents{
	max-width: 704px;
	margin: 80px auto 0;
	padding: 154px 0 20px;
}
.thanks_ttl{
	text-align: center;
	margin-bottom: 56px;
	color: #FF5805;
}
.thanks_ttl h2{
	font-weight: bold;
	line-height: 1;
	letter-spacing: .12em;
	font-size: clamp(16px, 2.499999vw, 32px);
}
.thanks_ttl p{
	font-weight: 500;
	line-height: 1;
	letter-spacing: .12em;
	margin-bottom: 32px;
    font-size: clamp(16px, 1.57vw, 20px);
}
.thanks_contents p{
	font-weight: 500;
	line-height: 2;
	font-size: 16px;
}
.back_btn{
	width: 95px;
	margin: 0 auto;
}
.back_btn a{
	color: #3A3A3A;
	display: inline-block;
	font-weight: bold;
	width: 95px;
	border-bottom: 1px solid #FF5805;
	font-size: clamp(16px, 1.57vw, 20px);
	margin-top: 106px;
	position: relative;
	padding-bottom: 10px;
}
.back_btn a:before {
  content: '';
  width: 27px;
  height: 27px;
  background: #FFBB99;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 11px;
  margin: auto;
}
.back_btn a:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 12px;
  margin: auto;
}
@media screen and (max-width: 790px) {

	.thanks_contents{
		max-width: 550px;
		margin: 75px auto 0;
		padding: 154px 0 20px;
	}
	.thanks_contents p{
		font-size: 14px;
	}
	.thanks_ttl p{
		font-weight: 500;
		line-height: 1;
		letter-spacing: .12em;
		margin-bottom: 15px;
	    font-size: 20px;
	}
}
/*-----------------------
         footer
-------------------------*/
footer{
	background-color: #333333;
	padding: 64px 0 12px;
}
.footer_fx{
	width: 95%;
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	padding-bottom: 72px;
}

.footer_L{
	width: 35%;
	max-width: 365px;
}
.footer_L p{
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    line-height: 1.68;
}
.footer_L .f_logo{
	display: block;
	max-width: 340px;
	margin-bottom: 50px;
}
.footer_L dl{
	display: flex;
	flex-wrap:wrap; 
	column-gap:40px;
}
.footer_L dt{
	width: 20%;
	max-width: 77px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .12em;
	line-height: 2;
}
.footer_L dd{
	margin-bottom: 25px;
	font-size: 14px;
	font-weight: 600;
	line-height: 2;
	letter-spacing: .12em;
}
.footer_R{
	width: 62%;
	max-width: 490px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.footer_R > ul{
	width: 100%;
	display: flex;
	justify-content: space-between;
	column-gap: 15px;
}
.footer_R .drop-menu-list {
    background-color: rgba(51, 51, 51, .8);
	left: auto;
    right: -28px;
}
.footer_R ul li a{
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
	letter-spacing: .06em;
}

.footer_R .en_btn {
    column-gap: 10px;
    width: 67%;
    max-width: 367px;
	margin-top: 54px;
	margin-left: auto;
}
.policy,.corporate{
	display: inline-block;
	padding-bottom: 5px;
	font-size: 14px;
	border-bottom: 1px solid #fff;
}
.corporate{
	margin-top: 19%;
}
.policy{
	margin-top: 30px;
}
.insta{
	display: block;
	width: 35px;
}
@media screen and (max-width: 768px) {
	.insta {
	    display: block;
	    width: 30px;
		margin: 30px auto 0;
	}
	.footer_fx{
		flex-direction: column;
		width: 90%;
	}
	.footer_L .f_logo {
	    max-width: 200px;
	}
	.footer_L{
		width: 100%;
		max-width: none;
	}
	.footer_L dl{
		column-gap: 7px;
		max-width: 400px;
	}
	.footer_L dt{
		width: 24%;
		max-width: 77px;
		font-size: 14px;
	}
	.footer_L dd{
		width: 75%;
		margin-bottom: 25px;
		font-size: 14px;
	}
	.footer_R {
	    width: 100%;
	    max-width: none;
	    align-items: flex-start;
	}
	.footer_R ul {
	    width: 100%;
	    max-width: 300px;
	    margin: 0 auto;
	    column-gap: 15px;
	    flex-wrap: wrap;
		justify-content: center;
	    row-gap: 20px;
	}
	.footer_R .drop-menu-list{
		width: 130px;
		left: auto;
		right: -66px;
	}
	.footer_R .drop-menu-item {
	    padding: 8px 10px 10px 10px;
	}
	.footer_R ul li a ,
	.footer_R .drop-menu {
	    font-size: 14px;
	}
	.footer_R .en_btn {
	    column-gap: 10px;
	    width: 100%;
	    max-width: 367px;
		margin: 0 auto;
	    margin-top: 14px;
	}
	.footer_R .en_cta{
		margin-top: 20px;
		font-size: 16px;
		height: 45px;
	}
	.policy,.corporate {
	    display: block;
		margin: 0 auto;
	    font-size: 14px;
	}
	.corporate{
	    margin-top: 19%;
	}
	.policy{
		margin-top: 30px;
	}
}
small{
	display: block;
	text-align:center;
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	letter-spacing: .12em;
	margin-top: 16px;
}





/*-----------------------
        中途採用
-------------------------*/
#job_main01{
	position: relative;
	margin-top: 80px;
}
@media screen and (max-width: 1050px) {
	#job_main01{
		position: relative;
		margin-top: 56px;
	}
}


#job_main01 .job_main_txt {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78%;
    max-width: 638px;
}
#job_main01 .job_main_txt img{
	width: 56%;
	max-width: 355px;
	display: block;
}
#job_main01 .job_main_txt p{
	display: inline-block;
	line-height: 1;
	padding: 3px 55px 5px 56px;
	font-weight: bold;
	font-family: "Noto Serif JP", serif;
	font-size: clamp(42px, 4.38vw, 56px);
	background: linear-gradient(178deg,rgba(19, 219, 168, 1) 0%, rgba(128, 243, 5, 1) 100%);
}
#job_main01 .job_main_txt p span{
	display: inline-block;
	letter-spacing: -.3em;
}
#job_main01 .job_main_txt h1{
	position:relative;
	margin-bottom: 13px;
	font-size: 30px;
	font-weight: bold;
	margin-left: 80px;
	font-family: "Noto Serif JP", serif;
	background: linear-gradient(178deg,rgba(19, 219, 168, 1) 0%, rgba(128, 243, 5, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#job_main01 .job_main_txt h1:after{
	content: '';
	display: inline-block;
	width: 375px;
	height:2px;
	background-color: #FFFFFF;
	position: absolute;
	right: 17px;
	top: 50%;
	transform: translateY(-50%);
}
#job_main01 .job_main_txt h1:before{
	content: '';
	display: inline-block;
	width: 63px;
	height:2px;
	background-color: #FFFFFF;
	position: absolute;
	left: -77px;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (max-width: 768px) {

	#job_main01 .job_main_txt {
	    position: absolute;
	    top: 45%;
	    left: 50%;
	    width: 94%;
	    max-width: 372px;
		text-align: center;
	}
	#job_main01 .job_main_txt p {
		font-size: 36px;
		padding: 8px 20px 8px 13px;
	}
	#job_main01 .job_main_txt h1{
		margin-bottom: 13px;
		font-size: 22px;
		margin-left: 0;
		text-align: center;
	}
	#job_main01 .job_main_txt h1:after {
	    width: 112px;
	    height: 1px;
	    right: 0;
	    top: 57%;
	}
	#job_main01 .job_main_txt h1:before {
	    width: 112px;
	    height: 1px;
	    top: 57%;
	    left: 0;
	}
	#job_main01 .job_main_txt img {
	    width: 62%;
	    max-width: 210px;
	    display: block;
	}
	
}
.job_business{
	position: relative;
	padding: 84px 0 72px;
	background-color: #fff;
}
.job_business .sec_ttl {
	width: 17%;
	position: relative;
	z-index: 1;
}
.job_business .sec_ttl img {
    max-width: 127px;
}
.job_business::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 610px;
    background-color: #29AD09;
    z-index: 0;
}


.job_business_col{
	width: 70%;
	max-width: 700px;
}

.job_business_fx{
	width: 90%;
	margin: 0 auto;
	max-width: 1092px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	column-gap: 16px;
}
.job_business_col ul li{
	padding: 0 5.518% 0 5.518%;
	height: 260px;
	background-image: url('../img/jobs_01.png');
	background-size: cover;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	row-gap: 5px;
	margin-bottom: 20px;
}
.job_business_col ul li:nth-of-type(1){
	padding-top: 3%;
}
.job_business_col ul li:nth-of-type(2){
	background-image: url('../img/jobs_02.png');
	row-gap: 32px;
	padding-top: 2%;
}
.job_business_col ul li:nth-of-type(3){
	background-image: url('../img/jobs_03.png');
	row-gap: 32px;
	padding-top: 2%;
}
.job_business_col ul li:nth-of-type(4){
	background-image: url('../img/jobs_04.png');
	row-gap: 30px;
	padding-top: 2%;
}
.job_business_col ul li:nth-of-type(5){
	background-image: url('../img/jobs_05.png');
	row-gap: 30px;
	padding-top: 2%;
}

.job_business_col ul li img{
	position: absolute;
	top: 15px;
	left: 11px;
	width: 25%;
	max-width: 130px;
}
.job_business_col ul li h3{
	font-weight: bold;
	letter-spacing: .06em;
	line-height: 1.5;
	font-size: clamp(18px, 1.88vw, 24px);
}
.job_business_col ul li p{
	font-weight: 500;
	letter-spacing: .06em;
	font-size: 16px;
	line-height: 2;
}

@media screen and (max-width: 768px) {

	.job_business {
	    padding: 60px 0 80px;
	}
	.job_business .inner {
	    max-width: 550px;
	    padding: 0;
	    width: 90%;
	}
	.job_business::before {
	    max-height: 1110px;
	}
	
	.job_business .sec_ttl {
	    width: 100%;
	}
	.job_business_fx{
		row-gap: 50px;
		width: 100%;
		        justify-content: center;
	}
	.job_business_col{
		width: 90%;
		max-width: 700px;
	}
	.job_business_col ul li img {
	    position: absolute;
	    top: 10px;
	    left: 5px;
	    width: 25%;
	    max-width: 80px;
	}
	.job_business_col ul li {
	    width: 100%;
	    max-width: none;
	    padding: 0 13px;
	    height: 175px;
	}
	.job_business_col ul li p {
	    font-size: 13px;
	    line-height: 1.7;
	    margin-top: 15px;
	}
	
	.job_business_col ul li:nth-of-type(1),
	.job_business_col ul li:nth-of-type(2),
	.job_business_col ul li:nth-of-type(3),
	.job_business_col ul li:nth-of-type(4),
	.job_business_col ul li:nth-of-type(5){
		 row-gap: 0;
		padding-top: 0;
	}
}


.working{
	padding-top: 210px;
}
.working .sec_ttl{
	text-align: center;
}
.working p{
	margin-top: 20px;
}
.working_box{
	margin-top: 75px;
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	row-gap: 32px;
	flex-wrap: wrap;
}
.working_box li{
	width: 48.5%;
	max-width: 510px;
}
.working_img{
	border-radius: 8px;
}
.working_txt{
	border-radius: 8px;
	width: 90%;
	max-width: 450px;
	margin-left: 8px;
	margin-top: -23%;
	position: relative;
	padding: 30px 20px 25px;
	background-color: rgba(255,255,255,.9);
	z-index: 1;
}
.working_txt_ttl{
	display: flex;
	column-gap:15px;
/* 	align-items: center; */
	margin-bottom: 25px;
}
.working_txt_ttl span{
    font-size: clamp(43px, 4.38vw, 56px);
    font-weight: bold;
	color: #FF5805;
	line-height: 1;
}
.working_txt_ttl h3{
    font-size: clamp(16px, 1.57vw, 20px);
    font-weight: bold;
	color: #FF5805;
	line-height: 1.6;
}
.working_txt p{
	font-size: 16px;
	line-height: 1.875;
	font-weight: 500;
}

@media screen and (max-width: 768px) {

	.working {
	    padding-top: 90px;
	}
	.working_box{
		margin-top: 75px;
		flex-direction: column;
		align-items: center;
		column-gap: 20px;
		row-gap: 32px;
		flex-wrap: wrap;
	}
	.working_box li{
		width: 100%;
		max-width: 400px;
	}
	.working_txt {
	    width: 95%;
	}
	.working_txt p {
	    font-size: 14px;
	}
}


.job_number{
	padding: 83px 0 105px;
	background-color: #29AD09;
}
.job_number .sec_ttl{
	text-align: center;
	color: #fff;
}
.job_number .sec_ttl img{
	max-width: 203px;
	margin-bottom: 10px;
}
.job_number_box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 90%;
	max-width: 1132px;
	margin: 85px auto 0;
	column-gap: 20px;
	row-gap: 105px;
}
.job_number_box li{
	width: 29.5%;
	max-width: 320px;
	padding-bottom: 24px;
	border-bottom: 2px solid #FFFFFF;
	color: #fff;
	display: flex;
}
.job_number_fx{
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.job_number_img02{
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: relative;
}

.job_number_img img{
	max-width: 139px;
}
/*  li:nth-of-type(1)  */
.job_number_box li:nth-of-type(1) .job_number_fx{
	column-gap: 9px; 
}
/*  li:nth-of-type(2)  */
.job_number_box li:nth-of-type(2) .job_number_img img{
	max-width: 188px;
}
.job_number_box li:nth-of-type(2) p.txtsmall{
	margin-top: 15px;
}


/*  li:nth-of-type(3)  */
.job_number_txt{
	flex-shrink: 0;
} 
.job_number_box li:nth-of-type(3) img{
	max-width: 120px;
	margin-right: 22px;
}
.job_number_box li:nth-of-type(3) .txtbig04{
	margin-top: 5px;
}
.job_number_box li:nth-of-type(3) p:nth-of-type(2){
	margin-top: 25px;
}
.job_number_box li:nth-of-type(3) .txtbig04{
	margin-top: 5px;
}
.job_number_box li:nth-of-type(3){
	display: flex;
	position: relative;
}
.job_number_box li:nth-of-type(3) p.ttl03{
	position: absolute;
	top: -30%;
	left: 100%;
	transform: translateX(-50%);
	width: 100%;
	letter-spacing: .12em;
}

/*  li:nth-of-type(4)  */
.job_number_box li:nth-of-type(4){
	padding-bottom: 7px;
}
.job_number_box li:nth-of-type(4) p.ttl03{
	position: absolute;
	top: -30%;
	left: 100%;
	transform: translateX(-50%);
	width: 100%;
	letter-spacing: .12em;
	word-break: keep-all;
}
.job_number_box li:nth-of-type(4) .job_number_img img{
	max-height: 124px;
}

.job_number_box li:nth-of-type(4) p.txtsmall{
	margin-bottom: 8px;
	margin-left: 2px;
}
.job_number_box li:nth-of-type(4) .job_number_fx{
	column-gap: 14px;
}

/*  li:nth-of-type(5)  */
.job_number_box li:nth-of-type(5) {
    padding-bottom: 7px;
    display: block;
}
.job_number_box li:nth-of-type(5) > p{
	text-align: center;
	line-height: 1.2;
}
.job_number_box li:nth-of-type(5) img{
	max-height: 150px;
}

.job_number_box li:nth-of-type(5) p.txtsmall{
	margin-top: 10px;
}

.job_number_box li:nth-of-type(5) .job_number_fx{
	column-gap: 19px; 
}
.job_number_box li:nth-of-type(5) p:first-child{
	margin-bottom: 10px;
}
.job_number_box li:nth-of-type(5) p.txtbig:last-child{
	text-align: right;
	margin-right: -23%;
	margin-top: 7px;
}
/*  li:nth-of-type(6)  */
.job_number_box li:nth-of-type(6) .job_number_img img{
	max-width: 117px;
}
.job_number_box li:nth-of-type(6)  .txtbig04{
	margin-top: 36%;
}
.job_number_box li:nth-of-type(6) .job_number_txt p{
		text-align: center;
	}
/*  li:nth-of-type(7)  */
.job_number_box li:nth-of-type(7) .job_number_img img{
	max-width: 113px;
	margin-right: 25px;
}
.job_number_box li:nth-of-type(7) .txtbig04{
	margin: 12px 0 8px 0;
}
.job_number_box li:nth-of-type(7) p:last-child{
	font-size:15px;
}

/*  li:nth-of-type(8)  */
.job_number_box li:nth-of-type(8) .job_number_img img{
	max-width: 113px;
	margin-right: 15px;
}
.job_number_box li:nth-of-type(8) .txtbig04{
	margin-top: 34px;
}
/*  li:nth-of-type(9)  */
.job_number_box li:nth-of-type(9){
	position: relative;
}
.job_number_box li:nth-of-type(9) p:first-child{
	font-size: clamp(16px, 1.88vw, 24px);
}
.job_number_box li:nth-of-type(9) img{
	max-width: 113px;
	margin-right: 20px;
}
.job_number_box li:nth-of-type(9) .txtbig04{
	margin-top: 8px;
}
.job_number_box li:nth-of-type(9) p.ttl03{
	position: absolute;
	top: -21%;
	left: 59%;
	transform: translateX(-50%);
	width: 100%;
	letter-spacing: .12em;
	font-size:clamp(14px, 1.57vw, 20px);
}
.job_number_box li:nth-of-type(9) p:last-child{
	font-size:15px;
	margin-top: 10px;
}


.job_number_box li p{
	font-size: clamp(14px, 1.57vw, 20px);
	font-weight: 500;
	line-height:1;
	letter-spacing: .04em;
}
.job_number_box li p.txtsmall{
    font-weight: 500;
	font-size: clamp(14px, 1.41vw, 18px);
}
.job_number_box li p.txtbig{
	font-size: clamp(14px, 1.88vw, 24px);
	font-weight: 500;
}
.job_number_box li .txtbig02{
	display: inline-block;
		margin-top: 8px;
	font-size: clamp(30px, 3.75vw, 48px);
    font-weight: bold;
	line-height:1;
}
.job_number_box li .txtbig03{
	font-size: clamp(35px, 4.38vw, 58px);
	line-height: 1;
	font-weight: bold;
}
.job_number_box li .txtbig04{
	display: inline-block;
	font-size: clamp(38px, 5vw, 64px);
	font-weight: bold;
	line-height: .9;
}
.job_number_box .right{
	text-align: right;
	margin-top: 12px;
}


@media screen and (max-width: 790px) {
	.job_number_box li:nth-of-type(6) .txtbig04 {
	    margin-top: 25px;
	}
	.job_number_box li:nth-of-type(5) p.txtsmall {
	    margin-top: 10px;
	}
	.job_number_box li:nth-of-type(4) p.txtsmall {
	    margin-top: 15px;
	}
	.job_number_box{
		justify-content: center;
		width: 95%;
		max-width: 450px;
		row-gap: 55px;
		column-gap: 15px;
		margin-top: 60px;
	}
	.job_number_box li {
	    width: 47%;
	    max-width: 320px;
	    padding-bottom: 15px;
	    display: flex;
	}
	.job_number_box li p.ttl03 {
	    top: -60%;
	}

	.job_number_box li:nth-of-type(2) .job_number_img img {
	    max-width: 88px;
		margin-right: 10px;
	}
	/*  li:nth-of-type(3)  */
	.job_number_box li:nth-of-type(3) img {
	    max-width: 70px;
	    margin-right: 10px;
	}
	
	.job_number_img02:nth-of-type(2) img{
		width: 60%;
	}
	/*  li:nth-of-type(4)  */
	.job_number_box li:nth-of-type(4) .job_number_img img {
	    max-height: 60px;
	}
	.job_number_box li:nth-of-type(6) .job_number_img img {
	    min-width: 50px;
	}
	/*  li:nth-of-type(5)  */
	.job_number_box li:nth-of-type(5) .job_number_fx {
	    column-gap: 9px;
	}
	.job_number_box li:nth-of-type(5) > p{
		margin-bottom:0;
	}
	.job_number_box li:nth-of-type(5) > p span{
		font-size: 10px;
	}
	.job_number_box li:nth-of-type(5) img{
	    max-width: 150px;
	}
	.job_number_box li:nth-of-type(5) p.txtbig:last-child {
	    text-align: right;
	    margin-right: 0;
	    margin-top: 7px;
	}
	/*  li:nth-of-type(7)  */
	.job_number_box li:nth-of-type(7) .job_number_img img{
		max-width: 50px;
		margin-right: 25px;
	}
	.job_number_box li:nth-of-type(7) p:last-child{
		font-size:12px;
	}
	/*  li:nth-of-type(8)  */
	.job_number_box li:nth-of-type(8) .txtbig04 {
	    margin-top: 35px;
	}
	.job_number_box li:nth-of-type(8) .job_number_img img {
	    max-width: 50px;
	}
	/*  li:nth-of-type(9)  */
	.job_number_box li:nth-of-type(9) img {
	    max-width: 60px;
	    margin-right: 7px;
	}
	.job_number_box li:nth-of-type(9) p.ttl03 {
	    position: absolute;
	    top: -39%;
	}
	.job_number_box li:nth-of-type(9) p:last-child {
        font-size: 10px;
        margin-top: 5px;
    }
	.job_number_box li:nth-of-type(9) {
		width: 51%;
	}
}

.culture{
	position: relative;
	padding-top: 95px;
	padding-bottom: 119px;
	background-color: #fff;
}
.culture::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 87.5%;
    max-width: 1257px;
    /* padding-top: 53%; */
    height: 765px;
    background-image: url('../img/culture_bg.png');
    background-size: cover;
    z-index: 0;
}
@media screen and (min-width: 1600px) {

	.culture::before {
		width: 86.5%;
		max-width: 1350px;
	}
}
@media screen and (min-width: 1800px) {

	.culture::before {
		max-width: 1450px;
	}
}
@media screen and (min-width: 2000px) {

	.culture::before {
		max-width: 1550px;
	}
}
@media screen and (min-width: 2200px) {

	.culture::before {
		max-width: 1640px;
	}
}
@media screen and (min-width: 2400px) {

	.culture::before {
		max-width: 1740px;
	}
}
@media screen and (min-width: 2600px) {

	.culture::before {
		max-width: 1840px;
	}
}
@media screen and (min-width: 2800px) {

	.culture::before {
		max-width: 1940px;
	}
}
@media screen and (min-width: 3000px) {

	.culture::before {
		max-width: 2040px;
	}
}
.culture_area{
	width: 90%;
	max-width: 1144px;
	margin: 0 auto;
}
.culture .sec_ttl{
	text-align: left;
	position: relative;
    z-index: 1;
}
.culture .sec_ttl img{
	max-width: 255px;
	margin-bottom: 20px;
}
.culture_slider{
	margin-top: 56px;
}
.culture_slider .slick-slide{
	margin: 0 15px !important;
}
.culture_col{
	max-width: 380px;
	    height: 530px;
    margin-bottom: 15px;
	background-color:#fff;
	padding: 18px;
	box-shadow: 0 2px 18px rgba(0,0,0,.25);
}
.culture_col_txt img{
	max-width: 100px;
	display: block;
	margin: 0 auto;
}
.culture_col_txt span{
	font-size: clamp(30px, 3.75vw, 48px);
	font-weight: bold;
	color: #29AD09;
	line-height: 1;
}
.culture_col_txt h3{
	font-size: clamp(16px, 1.57vw, 20px);
	text-align: center;
	font-weight: bold;
	color: #29AD09;
	line-height: 1;
	margin-top: 40px;
}

.culture_col_txt p{
	font-size: clamp(14px, 1.25vw, 16px);
	font-weight: bold;
	color: #333333;
	line-height: 1.62;
	width: 95%;
	margin: 0 auto;
	margin-top: 23px;
}
.culture_slider .slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  width: 8%;
  max-width: 80px;
  z-index: 1;
}
.culture_slider .prev-arrow {
  left: -30px;
}
.culture_slider .next-arrow {
  right: -30px;
}
@media screen and (max-width: 940px) {

	.culture_col{
		max-width: 380px;
		height: 540px;
	}
}

@media screen and (max-width: 768px) {

	.culture_slider .culture_col{
		width: 95%;
		max-width: 340px;
		height: 485px;
		margin:0 auto;
	}
	.culture_slider .slide-arrow {
	  bottom: 0;
	  cursor: pointer;
	  margin: auto;
	  position: absolute;
	  top: 0;
	  width: 100%;
	  max-width: 50px;
	  z-index: 1;
	}
	.culture_slider .prev-arrow {
	  left: -10px;
	}
	.culture_slider .next-arrow {
	  right: -10px;
	}
	.culture::before {
	    width: 100%;
	    padding-top: 10;
	    height: 100%;
	}
	
}


.job_interview{
	padding-top: 80px;
}
.job_interview .sec_ttl{
	text-align: center;
}
.job_interview .sec_ttl h2{
	margin-bottom: 20px;
}
.job_interview .interview_area{
	margin-top: 65px;
	width: 100%;
}
.job_interview .interview_area img{
	height: auto;
}
.job_interview .interview_name h2 {
    display: block;
    padding: 7.4% 8%;
	font-weight: 500;
    font-size: 16px;
    letter-spacing: .12em;
}


.morebtn{
	  overflow: hidden;
	margin: 72px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 314px;
	height: 62px;
	background: linear-gradient(178deg, rgba(19, 219, 168, 1) 0%, rgba(128, 243, 5, 1) 100%);
	border-radius: 4px;
	text-align:center;
	font-weight: bold;
	font-size: clamp(16px, 1.57vw, 20px);
	color: #2E2E2E;
	letter-spacing: .06em;
	position: relative;
	    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}


.morebtn02 {
    margin: 72px 0 0;
	background: #fff;
}
.morebtn:before{
	content: "";
	display: inline-block;
	border: 2px solid #2E2E2E;
	border-radius: 4px;
	width: 98%;
	max-width: 308px;
	height: 56px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.morebtn:after{
	content: "";
	display: inline-block;
	margin-left: 10px;
	width: 45px;
	height: 12px;
	border-bottom: 2px solid #2E2E2E;
	border-right: 3px solid #2E2E2E;
	position: absolute;
	right: 30px;
	top:  48%;
	transform: translateY(-50%) skew(45deg);
}


/* キラッと光る */
.flash_btn {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
	height: 100%;
    overflow: hidden;
	z-index: 1;
}
.flash_btn:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  transition: .5s;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 100%);
	transform: skewX(-45deg);
	animation: nyainy-btn 1.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) infinite;
}
@keyframes nyainy-btn {
	0% {
	left: -100%;
	}
	20% {
	left: 100%;
	}
	100% {
	left: 100%;
	}
}
@media screen and (max-width: 790px) {

	.job_interview .interview_name h2 {
	    font-size: 13px;
	}
	.morebtn{
		max-width: 270px;
	}
	.morebtn:before{
		max-width:270px;
	}
}

.job_entry{
	padding-top: 160px;
	padding-bottom: 20px;
}
.job_entry .sec_ttl{
	text-align: center;
}
.job_entry .sec_ttl h2{
	margin-bottom: 20px;
}

.interview_area .sec_ttl img {
    max-width: 270px;
    margin-bottom: 10px;
}
.interview_top .sec_ttl img {
    max-width: 332px;
    margin-bottom: 10px;
}
.interview_area .sec_ttl h2{
	color: #333333;
}
.interview_area {
	background-color: #fff;
	padding: 74px 0;
}
.interview_top {
	background-color: #fff;
	padding: 80px 0 90px;
}
.interview_col{
	width:90%;
	max-width: 1008px;
	margin: 83px auto 0;
	display: flex;
	justify-content: space-between;
	column-gap: 15px;
	position: relative;
}
.interview_top .interview_col{
	width:90%;
	max-width: 1248px;
	margin: 72px auto 0;
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
	position: relative;
}
.interview_col .numtxt {
    position: absolute;
    top: 0;
    left: 0;
}

.interview_col .numtxt::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 97px;
    height: 108px;
    background-image: url(../img/triangle.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.interview_col .numtxt span{
	display: inline-block;
	font-size:36px;
	font-weight: bold;
	color: #fff;
	line-height: 1;
	position: relative;
	z-index: 2;
	padding: 14px 0 0 8px;
}
.interview_area li{
	width: 32%;
	max-width: 320px;
	position:relative;
}
.interview_top li{
	width: 24%;
	max-width: 300px;
	position:relative;
}
.interview_top li a{
	display: block;
	width: 100%;
	height: 100%;
}
.interview_col_txt{
	margin-top: 9px;
}
.interview_col_txt p{
	font-size:16px;
	font-weight: bold;
	line-height: 2;
	letter-spacing: .06em;
}
.interview_col_txt h3{
	font-size:18px;
	font-weight: bold;
	line-height: 1.77;
	letter-spacing: .06em;
}

@media screen and (max-width: 790px) {

	.interview_col{
		width:90%;
		max-width: 1008px;
		margin: 83px auto 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		row-gap: 40px;
		position: relative;
	}

	.interview_area li{
		width: 100%;
		max-width: 320px;
		position:relative;
	}
}


#job_main02{
	position: relative;
	margin-top: 80px;
}
@media screen and (max-width: 1050px) {
	#job_main02{
		position: relative;
		margin-top: 56px;
	}
}


#job_main02 .job_main_txt {
    position: absolute;
    top: 54%;
    left: 31.5%;
    transform: translate(-50%, -50%);
    width: 56%;
    max-width: 622px;
}
#job_main02 .job_main_txt img{
	width: 55%;
    max-width: 310px;
    display: block;
    margin-left: auto;
}
#job_main02 .job_main_txt p{
	display: inline-block;
	line-height: 1;
	padding: 2px 20px 5px;
	font-weight: bold;
	font-family: "Noto Serif JP", serif;
	font-size: clamp(40px, 4.38vw, 56px);
	background: linear-gradient(178deg,rgba(19, 219, 168, 1) 0%, rgba(128, 243, 5, 1) 100%);
}
#job_main02 .job_main_txt p span{
	display: inline-block;
	letter-spacing: -.3em;
}
#job_main02 .job_main_txt h1{
	position:relative;
	margin-bottom: 13px;
	font-size: clamp(24px, 2.1vw, 30px);
	font-weight: bold;
	font-family: "Noto Serif JP", serif;
	background: linear-gradient(178deg,rgba(19, 219, 168, 1) 0%, rgba(128, 243, 5, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#job_main02 .job_main_txt h1:after{
	content: '';
	display: flex;
	width: 65%;
	max-width: 400px;
	height:2px;
	background-color: #FFFFFF;
	position: absolute;
	left: 55%;
	top: 50%;
	transform: translate(-50%,-50%);
}
@media screen and (max-width: 768px) {

	#job_main02 .job_main_txt {
	    position: absolute;
	    top: 45%;
	    left: 50%;
	    width: 94%;
	    max-width: 372px;
	}
	#job_main02 .job_main_txt p {
		font-size: 36px;
		padding: 8px 20px 8px 13px;
	}
	#job_main02 .job_main_txt h1:after {
	    max-width: 216px;
	    height: 2px;
	    left: 60%;
	    top: 57%;
	}
	#job_main02 .job_main_txt img {
	    width: 62%;
	    max-width: 310px;
	    display: block;
	    margin-left: auto;
	}
	
}



.working02 {
    padding-top: 80px;
}

.job_description{
	background-color: #29AD09;
	padding: 85px 0 80px;
}
.sec_ttl img {
    max-width: 186px;
    margin-bottom: 10px;
}
.job_description .inner {
    max-width: 1180px;
}
.job_description .sec_ttl{
	text-align: center;
}
.job_description .sec_ttl h2{
	margin-bottom: 20px;
}
.job_des_list{
	margin-top: 97px;
}
.job_des_list li{
	background-color: #fff;
	padding: 43px 0 67px;
}
.job_des_list li:not(:last-child){
	margin-bottom: 40px;
}
.job_des_ttl{
	text-align: center;
	color: #333333;
}
.job_des_ttl h3{
	    font-weight: bold;
	    letter-spacing: .12em;
	    font-size: clamp(22px, 2.5vw, 32px);
	    line-height: 1.75;
	    font-family: "Noto Serif JP", serif;
}
.job_des_ttl img{
	max-width: 50px;
	vertical-align: middle;
}
.job_des_fx{
	width: 95%;
	max-width: 960px;
	display: flex;
	justify-content: space-between;
	column-gap: 15px;
	margin: 45px auto 0;
}
.job_des_img{
	width: 41%;
	max-width: 390px;
}
.job_des_txt{
	width: 54%;
	max-width: 516px;
}
.job_des_txt h4{
	letter-spacing: .12em;
	font-size: clamp(16px, 1.41vw, 18px);
	width: 147px;
	text-align: center;
	background-color: #29AD09;
	color: #fff;
	border-radius: 8px;
	line-height: 1;
	padding: 12px 0;
	margin-bottom: 24px;
	font-weight: 500;
}
.job_des_txt p{
	font-size: 16px;
	line-height: 1.875;
	letter-spacing: .12em;
	font-weight: 500;
	color: #3A3A3A;
}
.job_des_txt p:not(:last-child){
	margin-bottom: 35px;
}
.job_des_imgbox{
	margin: 32px auto 0;
	width: 95%;
	max-width: 961px;
}
.job_des_imgbox_ttl{
	position: relative;
	
}
.job_des_imgbox_ttl h3{
	font-weight: bold;
	letter-spacing: .12em;
	color: #29AD09;
	position: relative;
	font-size: clamp(22px, 2.5vw, 28px);
	background-color: #fff;
	display: inline-block;
	padding-right: 33px;
	z-index: 1;
}
.job_des_imgbox_ttl p{
	font-size: 16px;
	padding-left: 55px;
	color:#333333;
	font-weight: bold;
}
.job_des_imgbox_ttl:after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    left: 0;
    top: 34%;
    transform: translateY(-50%);
    z-index: 0;
}
.job_des_img_list{
	display: flex;
	column-gap: 12px;
	margin: 32px auto 0;
}
.job_des_img_list img{
	width: 33%;
	max-width: 310px;
}


@media screen and (max-width: 768px) {

	.job_description .inner {
	    max-width: 550px;
	    padding: 0;
	    width: 90%;
	}
	.job_des_list {
	    margin-top: 70px;
	}
	.job_des_list li {
	    padding: 30px 0 40px;
	}

	.job_des_ttl img{
		max-width: 30px;
		vertical-align: middle;
	}
	.job_des_fx{
		width: 95%;
		max-width: 914px;
		flex-direction: column;
		align-items: center;
		row-gap: 30px;
		margin: 35px auto 0;
	}
	.job_des_img{
		width: 90%;
		max-width: 280px;
	}
	.job_des_txt{
		width: 95%;
		max-width: none;
	}
	.job_des_txt p{
		font-size: 14px;
		line-height: 1.8;
	}
	.job_des_txt p:not(:last-child){
		margin-bottom: 25px;
	}
	.job_des_img_list {
	    width: 100%;
	    max-width: 852px;
	    column-gap: 5px;
	    margin-top: 10px;
	}
	
	.job_des_img_list img {
	    width: 32.5%;
	    max-width: none;
	}
	.job_des_imgbox_ttl h3{
		padding-right: 15px;
	}
	.job_des_imgbox_ttl p{
		font-size: 14px;
		padding-left: 38px;
	}
}

.job_des_area{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1040px;
	position: relative;
	margin-top: 70px;
}
.job_des_area > li:nth-of-type(1),
.job_des_area > li:nth-of-type(3){
	width: 32%;
	max-width: 326px;
	background-color: #fff;
	text-align: center;
	height: 420px;
	border-radius: 8px;
	margin-top: 32px;
}
.job_des_area > li:nth-of-type(2){
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    width: 45%;
    max-width: 459px;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.arrow_icon{
	width: 16%;
	max-width: 72px;
	position: absolute;
	top: 53%;
	transform: translate(-50%,-50%);
}
.arrow01{
	left: 3%;
}
.arrow02{
	left: 100%;
}
.job_des_area > li:nth-of-type(2)::before{
    transform: skewX(-10deg);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: -1;
    border-left: 14px solid #EDEDED;
    border-right: 14px solid #EDEDED;
    border-radius: 8px;
}
.job_des_area > li:nth-of-type(2) .logo_box{
	width: 80%;
	max-width: 270px;
	margin: 0 auto;
}
.job_des_area > li:nth-of-type(2) .logo_box img:last-child{
	margin-top: 28px;
}
.des_area_box h3{
	background-color: #FF5805;
	color: #fff;
	font-size: clamp(16px, 1.41vw, 18px);
	font-weight: 500;
	letter-spacing: .12em;
	position: relative;
	padding: 15.5px 0;
	border-radius: 8px;
}
.des_area_box h3 span{
	font-size: clamp(19px, 2.5vw, 32px);
	font-weight: bold;
}
.des_area_box h3 span.weight{
	font-weight: 500;
}
.job_des_area > li:nth-of-type(2) .des_area_box h3{
	background-color: transparent;
	margin: 0 auto;
	padding-left: 10%;
	width: 99%;
}
.job_des_area > li:nth-of-type(3) .des_area_box h3{
	padding-left: 16%;
}
.job_des_area > li:nth-of-type(2) .des_area_box h3::before{
    transform: skewX(-10deg) translateX(-50%);
    content:
    "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 57%;
    background-color: #FF5805;
    width: 96%;
    /* max-width: 436px; */
    z-index: -1;
    border-radius: 8px;
}
.job_des_area > li:nth-of-type(1) .des_area_txt,
.job_des_area > li:nth-of-type(3) .des_area_txt{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 342px;
}
.job_des_area > li:nth-of-type(2) .des_area_txt{
	margin: 50px 6% 33px 0;
	margin: 0 6% 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 390px;
}
.job_des_area > li:nth-of-type(1) .des_area_txt{
	margin: 0 12% 0 0;
}
.job_des_area > li:nth-of-type(3) .des_area_txt{
	margin: 0 -5% 0 0;
}
.des_area_txt h4{
	background-color: #fff;
	position: relative;
	display: inline-block;
	width: fit-content;
	margin: 44px auto 0;
	color: #FF5805;
	letter-spacing: .12em;
	font-weight: bold;
	font-size: 18px;
}
.des_area_txt h4:after,
.des_area_txt h4:before{
	content: '';
	display: inline-block;
	width: 143px;
	height: 1px;
	background-color: #3A3A3A;
	position: absolute;
	top: 50%;
}
.des_area_txt h4:after{
	right: 120%;
}
.des_area_txt h4:before{
	left: 120%;
}
.des_area_txt ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	max-width: 250px;
	margin: 25px auto 0;
	column-gap: 25px;
	row-gap: 14px;
}
.des_area_txt ul li{
	font-weight: bold;
	font-size: 16px;
}

@media screen and (max-width: 980px) {
	
	.job_des_area > li:nth-of-type(1) .des_area_box h3::before{
	    left: 59%;
	    width: 94%;
	}
	.des_area_txt h4:after,
	.des_area_txt h4:before{
		width: 100px;
	}
}

@media screen and (max-width: 768px) {
	.arrow_icon{
		width: 22%;
		max-width: 72px;
		position: absolute;
		top: auto;
		transform: translate(-50%,-50%) rotate(90deg);
		z-index: 1;
	}
	.arrow01{
		left: 50%;
		top: 34.5%;
	}
	.arrow02{
		left: 50%;
		top: 65%;
	}
	.job_des_area{
		flex-direction: column;
		align-items: center;
		justify-content: center;
		column-gap: 10px;
		row-gap: 55px;
		margin-top: 50px;
	}
	
	/* job_des_area > li:nth-of-type(1) */
	
	.job_des_area > li:nth-of-type(2){
	    width: 100%;
	    max-width: 330px;
	    position: static;
	    top: 0;
	    left: 50%;
	    transform: none;
	    margin: 0 auto;
	    background-color: #fff;
	    border-radius: 8px;
	}
	.job_des_area > li:nth-of-type(2) .logo_box {
	    width: 80%;
	    max-width: 200px;
	}
	.job_des_area > li:nth-of-type(2) .logo_box img:last-child {
	    margin-top: 10px;
	}
	.job_des_area > li:nth-of-type(2)::before,
	.job_des_area > li:nth-of-type(2) .des_area_box h3::before{
		content: none;
	}
	.job_des_area > li:nth-of-type(2) .des_area_box h3 {
	    padding-left: 0;
	    background-color: #FF5805;
	    width: 100%;
	}
	.job_des_area > li:nth-of-type(2) .des_area_box h3::before {
        left: 58%;
        width: 93%;
        max-width: 330px;
    }
	.job_des_area > li:nth-of-type(2) .des_area_txt {
		margin: 0;
		height: 280px;
	}

	.des_area_txt h4{
		margin: 30px auto 0;
		color: #FF5805;
		letter-spacing: .12em;
		font-weight: bold;
		font-size: 18px;
	}
	.des_area_txt h4:after,
	.des_area_txt h4:before{
		width: 90px;
	}
	.des_area_txt ul li {
	    font-size: 14px;
	}
	.job_des_area > li:nth-of-type(1) .des_area_box h3,
	.job_des_area > li:nth-of-type(3) .des_area_box h3{
	    padding-left: 0;
	}
	
	.job_des_area > li:nth-of-type(1), .job_des_area > li:nth-of-type(3) {
	    width: 100%;
	    max-width: 326px;
	    border-radius: 8px;
	    margin-top: 0;
	}
	.job_des_area > li:nth-of-type(1) .des_area_txt,
	.job_des_area > li:nth-of-type(3) .des_area_txt{
	    margin: 0;
	}
}


.job_interview02 .sec_ttl{
	text-align: left;
}
.job_interview02 .interview_area02 {
    margin-top: 30px;
	align-items: flex-start;
}
.job_interview02 .interview_area02 li:nth-of-type(1){
    margin-top: 9.14%;
}
.job_interview02 .interview_area02 li:nth-of-type(3){
    margin-top: -6.25%;
}
.job_interview02 .morebtn{
	margin: -8% 0 0 auto;
}
.job_entry02 {
    padding-top: 220px;
    padding-bottom: 20px;
}
@media screen and (max-width: 790px) {

	.job_interview02 .interview_area02 li:nth-of-type(1){
	    margin-top: 0;
	}
	.job_interview02 .interview_area02 li:nth-of-type(3){
	    margin-top: 0;
	}
	.job_interview02 .morebtn{
		margin: 75px auto 0;
	}
	.job_entry02 {
	    padding-top: 120px;
	    padding-bottom: 20px;
	}
}

.onedaywork{
	background-color: #F5FBF4;
	padding: 80px 0 96px;
}
.onedaywork .inner {
    max-width: 1180px;
}
.onedaywork .sec_ttl{
	text-align: center;
	color: #fff;
}
.onedaywork .sec_ttl h2{
	color: #333333;
}
.onedaywork .sec_ttl p{
	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(30px, 3.75vw, 48px);
	font-weight: bold;
	margin-bottom: 13px;
	line-height: 1;
	color: #29AD09;
	letter-spacing: .06em;
}
.schedule{
	background-color: #fff;
	padding: 69px 0 74px;
	max-width: 1040px;
	margin: 0 auto;
	margin-top: 64px;
	border: 1px solid #000000;
	position: relative;
}
.schedule h3{
	text-align: center;
	font-size: clamp(16px, 1.57vw, 20px);
	letter-spacing: .12em;
	background-color: #29AD09;
	color: #fff;
	position: absolute;
	padding: 8px 40px;
	left: -3px;
	top: -2.5%;
}
.schedule table{
	width: 90%;
	max-width: 928px;
	margin: 0 auto 0;
}
.schedule table ,.schedule td, .schedule th {
	border-collapse: collapse;
}
.schedule td, .schedule th {
	padding: 3px;
	height: 67px;
	vertical-align: middle;
}

.schedule tr:nth-of-type(7) td,
.schedule tr:nth-of-type(9) td,
.schedule tr:nth-of-type(12) td{
	background-color: rgba(249, 236, 1, .5);
	font-size: clamp(16px, 1.57vw, 20px);
	color: #FF5E5E;
	font-weight: bold;
	text-align: center;
	letter-spacing: .12em;
}

.tbl_txt {
	width: 90%;
	max-width: 195px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px 8.5%;
}
.tbl_txt p{
	font-weight: 500;
	text-align: center;
	font-size: clamp(14px, 1.57vw, 16px);
}
.c_blue{
	background-color: rgba(0, 170, 255, .4);
}
.c_blue02{
	background-color: rgba(37, 248, 72, .4);
}
.c_blue03{
	background-color: rgba(37, 248, 192, .4);
}
.txt_or{
	color: #333333;
	background-color: #E1F5E0;
	font-weight: bold;
	font-size: clamp(14px, 1.57vw, 20px);
	letter-spacing: .12em;
	width: 285px;
	border-bottom: 1px solid #000000;
	border-right: 1px solid #000000;
	font-family: "Noto Serif JP", serif;
}


.schedule td{
	position: relative;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
}
.schedule td:last-child,
.txt_or:last-child{
	border-right: none;
}
.schedule th.orng,td.orng{
	background-color: #D1FFE4;
	font-size: clamp(16px, 1.41vw, 18px);
	font-weight: 500;
	letter-spacing: .12em;
	border-right: 2px solid #000000;
	border-bottom: 1px solid #000000;
	width: 80px;
	text-align: left;
	padding-left: 15px;
}
.r_line{
	border-right: 1px solid #000000 !important; 
}
@media screen and (max-width: 768px) {

	.schedule_box{
		overflow-x: auto;
		padding-right: 30px;
	}
	.schedule table{
		width: 600px;
		margin: 0;
		overflow-X: scroll;
	}
	.onedaywork .inner {
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }
	.schedule {
	    background-color: #fff;
	    padding: 60px 10px 78px 30px;
	    margin-top: 60px;
	    max-width: 650px;
	}
	.schedule h3{
	    font-size: clamp(16px, 1.57vw, 20px);
	    padding: 8px 25px;
	}
	.txt_or {
	    width: 180px;
	}
	.schedule th.orng, td.orng{
		width: 70px;
		padding-left: 10px;
	}
}

.training_schedule{
	margin-top: 72px;
	border: 1px solid #000000;
	border-top-color: #29AD09;
	background-color: #fff;
	padding: 44px 0 47px;
	position: relative;
	z-index: 1;
}
.training_schedule h3 {
    text-align: center;
    font-size: clamp(16px, 1.57vw, 20px);
    letter-spacing: .12em;
    background-color: #29AD09;
    color: #fff;
    position: absolute;
    padding: 8px 40px;
    left: 0;
    top: -7%;
}
.training_schedule_box{
	width: 95%;
	max-width: 1107px;
	margin: 0 auto;
}
.training_schedule_box h4{
	font-size: clamp(16px, 1.57vw, 20px);
	font-weight: 500;
	margin-bottom: 25px;
	letter-spacing: .12em;
	color: #000000;
}

@media screen and (max-width: 768px) {

	.training_schedule_box{
		padding-right: 0;
		overflow-x: auto;
	}
	.schedule_boxarea{
		width: 750px;
	}
	.training_schedule h3{
		padding: 8px 20px;
	}
	.training_schedule {
	    padding: 44px 0 27px;
	}

}
.guideline{
	background-color: #E8E8E8;
	padding: 80px 0 90px;
}
.guideline .inner{
	max-width: 1180px;
}
.guideline .sec_ttl img{
	max-width: 220px;
	margin-bottom:10px; 
}
.guideline .sec_ttl h2{
	color: #333333;
}
.guideline_list{
	background-color: #fff;
	margin-top: 48px;
	padding: 110px 0 58px;
}
.guideline_list dl{
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	max-width: 947px;
	margin: 0 auto;
	column-gap: 22px;
}
.guideline_list dt{
	width: 13%;
	max-width: 124px;
	border-bottom: 2px solid #29AD09;
	padding-bottom: 20px;
	margin-bottom: 40px;
	color: #29AD09;
	line-height: 1.77;
	font-size: clamp(14px, 1.41vw, 18px);
}
.guideline_list dt:nth-of-type(7),
.guideline_list dd:last-child{
	margin-bottom: 0;
}
.guideline_list dd{
	width: 82.5%;
	max-width: 800px;
	padding-left: 9px;
	border-bottom: 1px solid #A3A3A3;
	padding-bottom: 20px;
	margin-bottom: 40px;
	color: #333333;
	line-height: 1.77;
	font-size: clamp(14px, 1.41vw, 18px);
}

@media screen and (max-width: 768px) {
	
	.guideline .inner {
	    max-width: 550px;
	    padding: 0;
	    width: 90%;
	}
	.guideline_list {
	    margin-top: 48px;
	    padding: 60px 0 58px;
	}
	.guideline_list dd,.guideline_list dt{
		width: 100%;
		max-width: none;
		padding-bottom: 15px;
		padding-left: 0;
	}
	.guideline_list dt{
		margin-bottom:0;
		border: none;
	}
}


/*-----------------------
	    インタビュー
-------------------------*/
.interview_area02{
	width: 70%;
	max-width: 1008px;
	margin: 0 auto;
	padding: 172px 0 140px;
	position: relative;
}
.interview_icon{
	position: absolute;
	max-width: 630px;
	top: 5%;
    left: 10%;
	width: 62%;
	transform: translate(-50%, -50%) ;
}
.interview_txt{
	line-height: 1.77;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .06em;
}
.interview_area02 .interview_col {
    width: 100%;
    max-width: 1008px;
    margin: 65px auto 0;
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
    column-gap: 24px;
	row-gap: 64px;
    position: relative;
}
.interview_area02 li {
    width: 31%;
    max-width: 320px;
    position: relative;
}
.interview_area02 ul:after {
    content: "";
    display: block;
    width: 31%; 
    height: 0;
}
.interview_area02 .interview_col_txt p {
    color: #29AD09;
}

.interview_col_img {
	object-fit: cover;
    height: 400px;
    overflow: hidden;
	position: relative;
}

@media screen and (min-width: 768px) {
	.interview_col_img img{
		width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%);
        transition: .3s ease;
    }
}
/* .interview_col_img:before{
	content: '';
	background: rgba(0, 0, 0, .35);
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
	transition: all .5s;
}
.interview_col_img:hover::before{
	background: transparent;
} */
.interview_col_img img:hover{
	background: transparent;
	filter: none;
}
@media screen and (max-width: 1050px) {
	.interview_col_img {
	    height: 280px;
	}
}
@media screen and (max-width: 1000px) {

	.interview_area02{
		width: 80%;
	}
	.interview_icon {
	    position: absolute;
	    max-width: 630px;
	    top: 6%;
	    left: 21%;
	    width: 62%;
	}
	.interview_area02 li {
	    width: 30.1%;
	    max-width: 320px;
	    position: relative;
	}
	.interview_area02 ul:after {
	    content: "";
	    display: block;
	    width: 30.1%; 
	    height: 0;
	}
}
@media screen and (max-width: 790px) {
	.interview_area02{
		width: 90%;
		padding: 130px 0 140px;
	}
	.interview_col_img {
	    height: 380px;
	}
	.interview_icon {
	    position: absolute;
	    max-width: 330px;
	    top: 1%;
	    left: 35%;
	    width: 76%;
	}
	.interview_area02 li {
	    width: 100%;
	    max-width: 320px;
	    position: relative;
	}
	.interview_area02 ul:after {
	    content: "";
	    display: block;
	    width: 100%; 
	    height: 0;
	}
}
/*-----------------------
	 インタビュー詳細
-------------------------*/
.interview_page{
	position: relative;
	padding: 86px 0 97px;
	margin-top: 80px;
}
.interview_page::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-right: 37.45vw solid transparent;
    border-top: 37.45vw solid #FF5805;   /* 好みで色を変えてください */
	z-index: -1;
}

.in_midashi{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	column-gap: 15px;
}

.in_midashi_img{
	width: 59%;
	max-width: 604px;
}
.in_midashi_txt{
	width: 38%;
	max-width: 395px;
	position: relative;
}
.in_midashi_txt .ornge_txt{
	position: absolute;
	left: 33%;
	bottom: 100%;
	width: 131%;
	max-width: 515px;
	transform: translateX(-50%);
	margin-bottom: 35px;
}
.in_midashi_txt .ornge_txt p{
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	padding: 6px 16px;
	font-size: clamp(16px, 1.57vw, 20px);
	font-weight: 900;
	line-height: 2.4;
	background-color: #FF5805;
	color: #fff;
}
.in_midashi_txt h2{
	font-weight: 900;
	font-size: clamp(18px, 1.88vw, 24px);
	line-height: 1.33;
	margin-bottom: 9px;
}
.in_midashi_txt h2 span{
	font-size: clamp(16px, 1.57vw, 20px);
}
.in_midashi_txt .sub_txt{
	font-weight: bold;
	font-size: 16px;
	line-height: 1.81;
	color: rgba(99, 99, 99, .8);
}

@media screen and (max-width: 768px)  {

	.in_midashi{
		flex-direction: column;
		align-items: center;
		row-gap: 20px;
	}
	.in_midashi_img{
		width: 90%;
		max-width: 350px;
	}
	.in_midashi_txt{
		width: 90%;
		max-width: 395px;
		margin: 0 auto;
		position: relative;
	}
	.in_midashi_txt .ornge_txt{
		position: static;
		width: 100%;
		max-width: 515px;
		transform: none;
		margin-bottom: 20px;
	}
	.in_midashi_txt .ornge_txt p{
		padding: 2px 10px;
		font-size: clamp(16px, 1.57vw, 20px);
		font-weight: 900;
		line-height: 2;
	}

}
.interview_faq{
	margin-top: 80px;
}
.interview_faq dt{
	color: #FF5805;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 500;
	border-bottom: 1px solid #FFBB99;
	padding-bottom: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	column-gap: 14px;
}
.interview_faq dt span,
.interview_faq dd span{
	font-size: clamp(18px, 1.88vw, 24px);
	font-weight: bold;
	display: inline-block;
}
.interview_faq dd{
	margin-bottom: 56px;
	color: #3A3A3A;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 500;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 14px;
}
.interview_faq dd:last-child{
	margin-bottom: 0;
}
.interview_faq p{
	width: 95%;
}
.interview_faq img{
	width: 100%;
	max-width: 400px;
	display: block;
	margin: 46px auto 0;
}
@media screen and (max-width: 790px)  {

	.interview_faq dt{
		align-items: baseline;
	}
	.interview_faq p{
		width: 89%;
		font-size: 14px;
	}
	.interview_faq img{
		max-width:280px;
		margin: 30px auto 0;
	}
	.interview_page{
		position: relative;
		padding: 86px 0 97px;
		margin-top: 75px;
	}
	.interview_faq dd{
		margin-bottom: 40px;
	}
}

.in_message{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	column-gap: 15px;
	margin-top: 72px;
}
.in_message_img{
	width: 36%;
	max-width: 368px;
}
.in_message_txt{
	width: 62%;
	max-width: 638px;
	border: 2px solid #FF5805;
	border-radius: 16px;
	padding: 4.32% 5.19% 2.88% 3.8466%;
	position: relative;
}
.in_message_txt h3{
	font-weight: 900;
	font-size: clamp(19px, 2.5vw, 32px);
	color : #FF5805;
	letter-spacing: .12em;
	background-color: #fff;
	position: absolute;
	bottom: 91%;
	left: -13px;
}
.in_message_txt h3 span{
	display: inline-block;
	font-weight: bold;
	font-size: clamp(10px, 1.25vw, 16px);
	margin-left: 15px;
	margin-right: 24px;
}
.in_message_txt p{
	font-weight: 500;
	font-size: clamp(14px, 1.25vw, 16px);
	line-height: 2;
}

@media screen and (max-width: 768px)  {

	.in_message{
		flex-direction: column;
		align-items: center;
		row-gap: 35px;
		margin-top: 72px;
	}
	.in_message_img{
		width: 90%;
		max-width: 340px;
	}
	.in_message_txt{
		width: 95%;
		max-width: 638px;
		border: 2px solid #FF5805;
		border-radius: 16px;
		padding: 20px 15px;
		position: relative;
	}
	.in_message_txt h3{
		bottom: 95%;
		left: -13px;
	}
	.in_message_txt h3 span{
		font-size: clamp(10px, 1.25vw, 16px);
		margin-left: 5px;
		margin-right: 4px;
	}
}