@charset "utf-8";
/**
/* 共通 CSS
----------------------------------------------- */
/*　　アニメーション　　*/
.fadeIn{
	opacity: 0;
	-webkit-transition: opacity 0.5s ease-out 0.5s;
	transition: opacity 0.5s ease-out 0.5s;
}
.fadeIn.active{
	opacity: 1;
}
.fadeInLeft{
	opacity: 0;
	-webkit-transform: translateX(-10rem);
	transform: translateX(-10rem);
	-webkit-transition: transform 0.5s ease-out 0.5s, opacity 0.5s ease-out 0.5s;
	transition: transform 0.5s ease-out 0.5s, opacity 0.5s ease-out 0.5s;
}
.fadeInLeft.active{
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.fadeInRight{
	opacity: 0;
	-webkit-transform: translateX(10rem);
	transform: translateX(10rem);
	-webkit-transition: transform 0.5s ease-out 0.5s, opacity 0.5s ease-out 0.5s;
	transition: transform 0.5s ease-out 0.5s, opacity 0.5s ease-out 0.5s;
}
.fadeInRight.active{
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
/*　　色・フォント　　*/
.bg_gray{
	background: #F8F8F8;
}
.bg_white{
	background: #FFFFFF;
}
.c-blue{
	color: #007DE8;
}
.c-white{
	color: #FFFFFF;
}
.roma{
	font-family: "Mohave", sans-serif;
}
/*　　見出し　　*/
.guide-ttl{
	position: relative;
	margin-bottom: 1.5rem;
}
.guide-ttl h2{
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.45;
}
.guide-ttl h3{
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.45;
}
.guide-ttl .roma{
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}
.guide-ttl .roma.dot{
	position: relative;
	padding-left: 2rem;
	margin-bottom: 0.5rem;
}
.guide-ttl .roma.dot::before{
	position: absolute;
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	left: 0;
	top: 0.875rem;
	border-radius: 100%;
}
.guide-ttl .roma.dot.c-blue::before{
	background: #007DE8;
}
.guide-ttl .roma.dot.c-white::before{
	background: #FFFFFF;
}
@media only screen and (max-width: 767px) {
	.guide-ttl{
		margin-bottom: 1.5rem;
	}
	.guide-ttl h2{
		font-size: 1.25rem;
	}
	.guide-ttl h3{
		font-size: 1.25rem;
	}
	.guide-ttl .roma{
		font-size: 1.25rem;
	}
	.guide-ttl .roma.dot{
		padding-left: 1rem;
		margin-bottom: 0.375rem;
	}
	.guide-ttl .roma.dot::before{
		width: 0.5rem;
		height: 0.5rem;
		top: 0.125rem;
	}
}
.p-text{
	position: relative;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2.6;
}
@media only screen and (max-width: 767px) {
	.p-text{
		font-size: 0.9375rem;
		line-height: 1.865;
	}
}
/*　　btn　　*/
.recruit_nav{
	column-gap: 1.5rem;
	margin-top: 3rem;
}
.recruit_nav li{
	width: calc(50% - 0.75rem);
}
.recruit_nav li.recruit_btn,
.recruit_nav li.job_description_btn{
	background: #007DE8;
}
.recruit_nav li.interview_btn,
.recruit_nav li.contact_btn{
	background: #003F76;
}
.recruit_nav li a{
	position: relative;
	display: flex;
	align-items: center;
	color: #FFFFFF;
}
.recruit_nav li a::after{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 2rem;
	height: 2rem;
}
.recruit_nav li.recruit_btn a::after,
.recruit_nav li.job_description_btn a::after{
	background: url(../img/icon/arrow_w2.svg) no-repeat;
	background-size: cover;
}
.recruit_nav li.interview_btn a::after,
.recruit_nav li.contact_btn a::after{
	background: url(../img/icon/arrow_w.svg) no-repeat;
	background-size: cover;
}
.recruit_nav li .thumbnail{
	width: 32%;
	overflow: hidden;
}
.recruit_nav li .thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}
.recruit_nav li a:hover .thumbnail img{
	transform: scale(1.1);
}
.recruit_nav li .ttlArea{
	width: 68%;
	padding: 1.5rem 1rem 1.5rem 1rem;
}
.recruit_nav li .ttlArea .ttl{
	font-size: 1.4375rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 0.75rem;
}
.recruit_nav li .ttlArea .roma{
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1;
}
@media only screen and (max-width: 767px) {
	.recruit_nav{
		column-gap: 0;
		row-gap: 0.75rem;
		padding: 0 0.5rem;
		margin-top: 1.5rem;
	}
	.recruit_nav li{
		width: 100%;
	}
	.recruit_nav li a::after{
		width: 1.5rem;
		height: 1.5rem;
	}
	.recruit_nav li .thumbnail{
		width: 30%;
		height: 8rem;
	}
	.recruit_nav li .ttlArea{
		width: 70%;
		padding: 0 0 0 0.9375rem;
	}
	.recruit_nav li .ttlArea .ttl{
		font-size: 0.9375rem;
		margin-bottom: 0.3125rem;
	}
	.recruit_nav li .ttlArea .roma{
		font-size: 1.5rem;
	}
}
/**
/* トップページ CSS
----------------------------------------------- */
/*　　MV　　*/
.fv-view{
	position: relative;
	background: url(../img/top/fv.png) center;
	background-size: cover;
	padding: 10.875rem 0 7.875rem 0;
}
.fv-view .view-box{
	color: #FFFFFF;
}
.fv-view .view-box .p-roma{
	font-size: 6.25rem;
	font-weight: 600;
	line-height: 0.925;
}
.fv-view .view-box .bg-text{
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 1rem;
}
.fv-view .view-box .p-text{
	font-size: 1.4375rem;
	font-weight: 400;
	line-height: 1.5;
}
.fv-view .view_nav{
	column-gap: 1.5rem;
	max-width: 1016px;
	margin: 0 auto;
	margin-top: 4rem;
}
.fv-view .view_nav li{
	width: calc(50% - 0.75rem);
}
.fv-view .view_nav li a{
	position: relative;
	display: flex;
	align-items: center;
	background: #FFFFFF;
}
.fv-view .view_nav li a::after{
	position: absolute;
	background: url(../img/icon/arrow_b.svg) no-repeat;
	background-size: cover;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 2rem;
	height: 2rem;
}
.fv-view .view_nav li a:hover{
	background: #007DE8;
}
.fv-view .view_nav li .thumbnail{
	width: 32%;
	overflow: hidden;
}
.fv-view .view_nav li .thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}
.fv-view .view_nav li a:hover .thumbnail img{
	transform: scale(1.1);
}
.fv-view .view_nav li .ttlArea{
	width: 68%;
	padding: 1.5rem 1rem 1.5rem 1rem;
}
.fv-view .view_nav li .ttlArea .ttl{
	color: #000000;
	font-size: 1.4375rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 0.75rem;
}
.fv-view .view_nav li a .ttlArea .roma{
	color: #007DE8;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1;
}
.fv-view .view_nav li a:hover .ttlArea .ttl,
.fv-view .view_nav li a:hover .ttlArea .roma{
	color: #FFFFFF;
}
.fv-view .view_nav li a:hover::after{
	background: url(../img/icon/arrow_w.svg) no-repeat;
	background-size: cover;
}
@media only screen and (max-width: 767px) {
	.fv-view{
		background: url(../img/top/sp_fv.png) center right;
		background-size: cover;
		padding: 22.875rem 0 2.5rem 0;
	}
	.fv-view .view-box .roma{
		font-size: 2.25rem;
		margin-bottom: 1.25rem;
	}
	.fv-view .view-box .bg-text{
		font-size: 1.5rem;
		margin-bottom: 0.5rem;
	}
	.fv-view .view-box .p-text{
		font-size: 0.9375rem;
	}
	.fv-view .view_nav{
		column-gap: 0;
		row-gap: 0.75rem;
		padding: 0 0.5rem;
		margin-top: 1.5rem;
	}
	.fv-view .view_nav li{
		width: 100%;
	}
	.fv-view .view_nav li a::after{
		width: 1.5rem;
		height: 1.5rem;
	}
	.fv-view .view_nav li .thumbnail{
		width: 30%;
		height: 7rem;
	}
	.fv-view .view_nav li .ttlArea{
		width: 70%;
		padding: 1rem 0 0 0.9375rem;
	}
	.fv-view .view_nav li .ttlArea .ttl{
		font-size: 0.9375rem;
		margin-bottom: 0.3125rem;
	}
	.fv-view .view_nav li a .ttlArea .roma{
		font-size: 1.5rem;
	}
}
/*　　会社について　　*/
.front-company{
	padding: 7rem 0;
}
.front-company::after{
	position: absolute;
	background: url(../img/top/bg_blue.png) center right;
	background-size: cover;
	left: 0;
	top: 0;
	bottom: 0;
	content: "";
	width: 40%;
	max-width: 740px;
	height: 100%;
	z-index: -1;
}
.front-company .imageArea{
	width: 50%;
}
.front-company .contentArea{
	width: 50%;
	padding-left: 5rem;
}
.front-company .block_btn{
	margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
	.front-company{
		padding: 2.5rem 0 1.5rem 0;
	}
	.front-company::after{
		content: none;
	}
	.front-company .imageArea{
		position: relative;
		width: calc(100% + 2.5rem);
		text-align: right;
		margin: 0 -1.25rem;
		padding: 1.25rem 0;
	}
	.front-company .imageArea::after{
		position: absolute;
		background: url(../img/top/bg_blue.png) top right;
		background-size: cover;
		left: -2rem;
		top: 0;
		bottom: 0;
		content: "";
		width: 80%;
		height: 100%;
		z-index: -1;
	}
	.front-company .imageArea img{
		width: 90%;
	}
	.front-company .contentArea{
		width: 100%;
		padding-top: 2.5rem;
		padding-left: 0;
	}
	.front-company .guide-ttl{
		margin-bottom: 1rem;
	}
	.front-company .block_btn{
		text-align: center;
		margin-top: 1.5rem;
	}
}
/*　　事業紹介 　*/
.front-business{
	padding: 7rem 0 9rem 0;
}
.front-business::after{
	position: absolute;
	background: url(../img/top/business_bg.jpg) center right;
	background-size: cover;
	left: 0;
	top: 0;
	bottom: 0;
	content: "";
	width: 70%;
	max-width: 1260px;
	height: 100%;
	z-index: -1;
}
.front-business .imageArea{
	width: 50%;
}
.front-business .contentArea{
	position: relative;
	display: flex;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	width: 50%;
	max-width: 41.15rem;
	padding: 0 3.5rem 0 3rem;
}
.front-business .guide-ttl{
	margin-bottom: 2.5rem;
}
.front-business .block_btn{
	margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
	.front-business{
		padding: 2rem 0 2.5rem 0;
	}
	.front-business::after{
		top: auto;
		width: 100%;
		max-width: 100%;
		height: 26rem;
	}
	.front-business .imageArea{
		width: calc(100% - 2rem);
		margin: 0 auto;
	}
	.front-business .contentArea{
		width: 100%;
		max-width: 100%;
		padding: 2.5rem 1.25rem 0 1.25rem;
	}
	.front-business .guide-ttl{
		margin-bottom: 1rem;
	}
	.front-business .block_btn{
		text-align: center;
		margin-top: 1.5rem;
	}
}
/*　　製品情報　　*/
.front-product{
	padding: 5.5rem 0 6.5rem 0;
}
.front-product .front-product-container{
	background: #007DE8;
	background: linear-gradient(145deg,rgba(0, 125, 232, 1) 0%, rgba(0, 63, 116, 1) 100%);
	width: 96%;
	max-width: 1662px;
	margin: 0 auto;
	padding: 5rem 0 4rem 0;
}
.front-product .front-product-container .guide-ttl{
	-webkit-justify-content: flex-end;
    justify-content: flex-end;
	align-items: baseline;
	margin-bottom: 1rem;
}
.front-product .front-product-container .guide-ttl .roma{
	margin-bottom: 0;
}
.front-product .front-product-container .guide-ttl h2{
	margin-right: 1.5rem;
}
.front-product .front-product-container .p-text{
	margin-bottom: 2rem;
}
.front-product .cards-container .card .card__thumbnail{
	background: #FFFFFF;
	border: 0.625rem solid #006CD8;
	height: 18.75rem;
	padding: 2rem;
	overflow: hidden;
}
.front-product .cards-container .card .card__thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}
.front-product .cards-container .card .card__thumbnail:hover img{
	transform: scale(1.1);
}
.front-product .cards-container .card .ttl{
	margin-top: 1rem;
}
.front-product .cards-container .card .ttl a{
	display: block;
	color: #FFFFFF;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
}
.front-product .block_btn{
	margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
	.front-product{
		padding: 3rem 0;
	}
	.front-product .front-product-container{
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		padding: 3.5rem 0 3.5rem 0;
	}
	.front-product .front-product-container .guide-ttl .roma{
		width: 100%;
		margin-bottom: 0.5rem;
	}
	.front-product .front-product-container .guide-ttl h2{
		width: 100%;
		margin-right: 0;
	}
	.front-product .front-product-container .p-text{
		margin-bottom: 1.25rem;
	}
	.front-product .cards-container{
		padding: 0 1.25rem;
	}
	.front-product .cards-container .card .card__thumbnail{
		border: 0.3125rem solid #006CD8;
		padding: 1.5rem;
	}
	.front-product .cards-container .card .ttl a{
		font-size: 1.125rem;
	}
}
/*　　採用情報　　*/
.front-recruit{
	padding: 3.5rem 0 3.75rem 0;
}
.front-recruit::after{
	position: absolute;
	background: url(../img/top/recruit_bg.png) center left;
	background-size: cover;
	right: 0;
	top: 0;
	content: "";
	width: 98%;
	max-width: 1800px;
	height: 25.9375rem;
	z-index: -1;
}
@media only screen and (max-width: 767px) {
	.front-recruit{
		padding: 3rem 0 1.875rem 0;
	}
	.front-recruit::after{
		background: url(../img/top/sp_recruit_bg.png) center left;
		background-size: cover;
		right: 0;
		top: 0;
		width: calc(100% + 6.75rem);
		height: 23rem;
	}
}
/*　　お知らせ / ブログ　　*/
.front-news{
	padding: 3.75rem 0 5.5rem 0;
}
.front-news .guide-ttl{
	-webkit-justify-content: flex-end;
    justify-content: flex-end;
	align-items: baseline;
	margin-bottom: 1rem;
}
.front-news .guide-ttl h2{
	margin-right: 1.5rem;
}
.front-news .guide-ttl .roma{
	margin-bottom: 0;
}
.front-news .front-news-container{
	margin-top: 2rem;
}
.front-news .jstabs{
	display: flex;
	column-gap: 1.5rem;
	margin-bottom: 2rem;
}
.front-news .jstabs .js-tab-btn{
	position: relative;
	width: 11.5rem;
	display: block;
	color: #B7B7B7;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
	cursor: pointer;
	border-bottom: 1px solid #D6D6D6;
	padding-bottom: 1rem;
}
.front-news .jstabs .js-tab-btn::after{
	background: #007DE8;
	position: absolute;
	content: "";
	vertical-align: middle;
	width: 0;
	height: 1px;
	bottom: -1px;
	left: 0;
	transition: width 0.3s ease;
}
.front-news .jstabs .js-tab-btn:hover,
.front-news .jstabs .js-tab-btn.current{
	color: #007DE8;
}
.front-news .jstabs .js-tab-btn:hover::after,
.front-news .jstabs .js-tab-btn.current::after{
	width: 100%;
}
.front-news .js-tab-contents{
	display: none;
}
.front-news .js-tab-contents.current{
	display: block;
}
.front-news .block_btn{
	margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
	.front-news{
		padding: 1.875rem 0 3.5rem 0;
	}
	.front-news .guide-ttl{
		margin-bottom: 1rem;
	}
	.front-news .guide-ttl h2{
		width: 100%;
		margin-right: 0;
	}
	.front-news .guide-ttl .roma{
		width: 100%;
		margin-bottom: 0.5rem;
		/* margin-bottom: 0; */
	}
	.front-news .front-news-container{
		margin-top: 2rem;
	}
	.front-news .jstabs{
		column-gap: 0.5rem;
		margin-bottom: 2rem;
	}
	.front-news .jstabs .js-tab-btn{
		width: calc(50% - 0.5rem);
		font-size: 0.875rem;
		padding-bottom: 0.875rem;
	}
	.front-news .news-container .card{
		margin-right: 0.75rem;
	}
	.front-news .block_btn{
		margin-top: 2rem;
	}
}
/**
/* 下層ページ共通 CSS
----------------------------------------------- */
/*　　ページヘッダー　　*/
.page-view{
	position: relative;
}
.page-view .view-img{
	width: 100%;
	height: 36.0625rem;
}
.page-view .view-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-view .view-box{
	position: absolute;
	max-width: 1534px;
	top: 57%;
	right: 50%;
	transform: translate(50%, -50%);
}
.page-view .view-ttl{
	color: #FFFFFF;
}
.page-view .view-ttl h1{
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.45;
}
.page-view .view-ttl .roma{
	font-size: 5rem;
	font-weight: 500;
	line-height: 1.4;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
	.page-view .view-img{
		height: 18rem;
	}
	.page-view .view-img img{
		object-position: 40% center;
	}
	.page-view .view-ttl h1{
		font-size: 1.25rem;
	}
	.page-view .view-ttl .roma{
		font-size: 3rem;
		line-height: 1.125;
		margin-bottom: 0.5rem;
	}
}
.page-wrap,
.archive-wrap,
.single-wrap{
	padding: 6.5rem 0 10rem 0;
}
@media only screen and (max-width: 767px) {
	.page-wrap,
	.archive-wrap,
	.single-wrap{
		padding: 3.5rem 0 5rem 0;
	}
}
/*　　カード　　*/
.cards-container.grid-cols-2{
	column-gap: 1.5rem;
	row-gap: 3rem;
}
.cards-container.grid-cols-3{
	column-gap: 1.5rem;
	row-gap: 4.0625rem;
}
.cards-container .card{
	display: flex;
	flex-direction: column;
}
.cards-container.grid-cols-2 .card{
	width: calc(50% - 0.75rem);
}
.cards-container.grid-cols-3 .card{
	width: calc(33.3333% - 1rem);
}
@media only screen and (max-width: 767px) {
	.cards-container.grid-cols-2{
		column-gap: 0;
		row-gap: 1.5rem;
	}
	.cards-container.grid-cols-3{
		column-gap: 0;
		row-gap: 2.5rem;
	}
	.cards-container.grid-cols-2 .card,
	.cards-container.grid-cols-3 .card{
		width: 100%;
	}
}
/**
/* 会社情報 CSS
----------------------------------------------- */
/*　　社長メッセージ　　*/
.message-guide{
	padding-bottom: 3.375rem;
}
.message-guide .inner-wrap{
	width: 96%;
    max-width: 1415px;
}
.message-guide .bg-roma{
	width: 11.25rem;
	color: #D6E7F3;
	font-size: 11.25rem;
	font-weight: 600;
	line-height: 1;
	writing-mode: vertical-rl;
}
.message-guide .message-container{
	width: calc(100% - 11.25rem);
	padding-left: 5rem;
}
.message-guide .guide-ttl{
	margin-bottom: 4rem;
	margin-left: -14rem;
}
.message-container .contentArea{
	width: 63%;
}
.message-container .contentArea .p-text{
	font-size: 1.125rem;
	line-height: 2.3;
}
.message-container .imageArea{
	width: 25%;
}
.message-container .name{
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.25;
	margin-top: 1.5rem;
}
.message-container .name span{
	font-family: "Noto Serif JP", serif;
	font-size: 1.875rem;
	font-weight: 500;
}
@media only screen and (max-width: 1420px) {
	.message-container .contentArea{
		width: 68%;
		padding-right: 2rem;
	}
	.message-container .name{
		text-align: center;
	}
	.message-container .name span{
		display: block;
	}
}
@media only screen and (max-width: 767px) {
	.message-guide{
		padding-bottom: 3.375rem;
	}
	.message-guide .inner-wrap{
		position: relative;
		width: calc(100% - 2rem);
	}
	.message-guide .bg-roma{
		position: absolute;
		width: auto;
		font-size: 2.25rem;
		left: -1rem;
	}
	.message-guide .message-container{
		width: 100%;
		padding-left: 0;
	}
	.message-guide .guide-ttl{
		margin-bottom: 1.5rem;
		margin-left: 0;
	}
	.message-container .contentArea{
		width: 100%;
		padding-right: 0;
	}
	.message-container .contentArea .p-text{
		font-size: 0.9375rem;
		line-height: 1.875;
	}
	.message-container .imageArea{
		width: 100%;
		text-align: center;
		margin-bottom: 2rem;
	}
	.message-container .imageArea img{
		width: 80%;
	}
	.message-container .name{
		font-size: 1rem;
		margin-top: 1.5rem;
	}
	.message-container .name span{
		display: inline-block;
		font-size: 1.375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.message-guide .message-container{
		padding-left: 2.5rem;
	}
}
/*　　会社概要　　*/
.company-guide{
	position: relative;
	padding: 6rem 0 7.5rem 0;
}
.company-guide::before{
	position: absolute;
	background: #F2F6F9;
	content: "";
	width: 98%;
	max-width: 1756px;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
}
.company-guide .guide-ttl{
	margin-bottom: 4rem;
}
.company-tbl tr th,
.company-tbl tr td{
	font-size: 1rem;
	line-height: 1.5;
	vertical-align: middle;
}
.company-tbl tr th{
	width: 11.5rem;
	font-weight: 500;
	border-bottom: 1px solid #1466C6;
	padding: 2rem 0.875rem;
}
.company-tbl tr:first-child th{
	border-top: 1px solid #1466C6;
}
.company-tbl tr td{
	border-bottom: 1px solid #D8D8D8;
	padding: 2rem 1.5rem;
}
.company-tbl tr:first-child td{
	border-top: 1px solid #D8D8D8;
}
.company-guide .map-container{
	margin-top: 5.5rem;
}
.map-container .map{
	line-height: 0;
}
.map-container .map iframe{
	height: 25.5rem;
}
.map-container .map-link{
	margin-top: 2rem;
}
.map-container .map-link li a{
	position: relative;
	display: inline-block;
	color: #000000;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.25;
	text-decoration: underline;
}
.map-container .map-link li a::after{
	position: absolute;
	background: url(../img/icon/arrow_b.svg) no-repeat;
	background-size: cover;
	top: 50%;
	transform: translateY(-50%);
	right: -2rem;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 1.5rem;
	height: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.company-guide{
		padding: 4.5rem 0 3rem 0;
	}
	.company-guide .guide-ttl{
		margin-bottom: 2rem;
	}
	.company-tbl tr th,
	.company-tbl tr td{
		font-size: 0.9375rem;
	}
	.company-tbl tr th{
		width: 7.5rem;
		padding: 1.25rem 0.875rem;
	}
	.company-tbl tr td{
		padding: 1.25rem 1rem;
	}
	.company-guide .map-container{
		margin-top: 2.5rem;
	}
	.map-container .map iframe{
		height: 14.5rem;
	}
	.map-container .map-link{
		margin-top: 2rem;
	}
	.map-container .map-link li a{
		font-size: 0.9375rem;
	}
	.map-container .map-link li a::after{
		right: -1.5rem;
		width: 1.125rem;
		height: 1.125rem;
	}
}
/*　　キャラクター紹介　　*/
.character-guide{
	padding: 9.5rem 0 10rem 0;
}
.character-container .character-items{
	position: relative;
	border: 4px solid #D6E7F3;
	padding: 3.5rem 4.5rem;
	border-radius: 1.5rem;
}
.character-container .character-items:not(:last-child){
	margin-bottom: 3rem;
}
.character-container .character-items .character-icon{
	width: 16.125rem;
}
.character-container .character-items .character-icon img{
	width: 16.125rem;
}
.character-container .character-items .contentArea{
	width: calc(100% - 16.125rem);
	padding-right: 4rem;
}
.character-container .character-items h3{
	position: relative;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 3.5rem;
}
.character-container .character-items h3::after{
	position: absolute;
	content: "";
	background: #027DE8;
	width: 7rem;
	height: 2px;
	left: 0;
	bottom: -1rem;
}
.character-container .character-items h4{
	font-size: 1.625rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 1rem;
}
.character-container .character-items .p-text{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2;
}
@media only screen and (max-width: 767px) {
	.character-guide{
		padding: 2.5rem 0 3rem 0;
	}
	.character-container .character-items{
		border: 2px solid #D6E7F3;
		padding: 3rem 1.5rem 2rem 1.5rem;
		border-radius: 1rem;
	}
	.character-container .character-items:not(:last-child){
		margin-bottom: 1.5rem;
	}
	.character-container .character-items .character-icon{
		width: 100%;
		margin-bottom: 1.5rem;
	}
	.character-container .character-items .character-icon img{
		width: 11.125rem;
	}
	.character-container .character-items .contentArea{
		width: 100%;
		padding-right: 0;
	}
	.character-container .character-items h3{
		font-size: 1.5rem;
		text-align: center;
		margin-bottom: 2.5rem;
	}
	.character-container .character-items h3::after{
		width: 4rem;
		height: 2px;
		left: 50%;
		transform: translateX(-50%);
	}
	.character-container .character-items h4{
		font-size: 1.25rem;
		text-align: center;
		margin-bottom: 0.625rem;
	}
	.character-container .character-items .p-text{
		font-size: 0.9375rem;
		line-height: 1.865;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.character-container .character-items{
		padding: 3.5rem;
	}
	.character-container .character-items .contentArea{
		padding-right: 2.5rem;
	}

}
/*　　沿革　　*/
.history-guide .history-container{
	background: url(../img/bg_blue.jpg) no-repeat center;
	background-size: cover;
	width: 96%;
	max-width: 1662px;
	margin: 0 auto;
	padding: 7.5rem 0;
}
.history-guide .guide-ttl{
	margin-bottom: 2.5rem;
}
.history-tbl{
	position: relative;
	padding-left: 3.8125rem;
}
.history-tbl::before{
	position: absolute;
	background: #FFFFFF;
	content: "";
	width: 1px;
	height: calc(100% - 2.85rem);
	left: 0;
	top: 1.25rem;
}
.history-tbl dl{
	position: relative;
	display: flex;
}
.history-tbl dl::before{
	position: absolute;
	background: #FFFFFF;
	content: "";
	width: 0.75rem;
	height: 0.75rem;
	left: -4.125rem;
	top: 0.9375rem;
	border-radius: 100%;
}
.history-tbl dl:not(:last-child){
	margin-bottom: 2rem;
}
.history-tbl dl dt{
	width: 4.375rem;
	font-family: "Mohave", sans-serif;
	color: #FFFFFF;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.35;
}
.history-tbl dl dd{
	width: calc(100% - 4.375rem);
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 2;
	padding-left: 3.875rem;
}
@media only screen and (max-width: 767px) {
	.history-guide .history-container{
		width: 100%;
		padding: 4.5rem 0.5rem 3.5rem 0.5rem;
	}
	.history-guide .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.history-tbl{
		padding-left: 1.75rem;
	}
	.history-tbl::before{
		height: calc(100% - 3.5rem);
		top: 1.25rem;
	}
	.history-tbl dl{
		display: flex;
	}
	.history-tbl dl::before{
		width: 0.625rem;
		height: 0.625rem;
		left: -2rem;
		top: 0.75rem;
	}
	.history-tbl dl:not(:last-child){
		margin-bottom: 1rem;
	}
	.history-tbl dl dt{
		width: 3.375rem;
		font-size: 1.875rem;
	}
	.history-tbl dl dd{
		width: calc(100% - 3.375rem);
		font-size: 0.9375rem;
		line-height: 1.875;
		padding-left: 1.875rem;
	}
}
/**
/* 事業紹介 CSS
----------------------------------------------- */
/*　　ページトップ　　*/
.business-head-guide{
	padding-bottom: 7.5rem;
}
.business-head-guide .figure{
	width: 40%;
}
.business-head-guide .contentArea{
	width: 52%;
}
.business-head-guide .guide-ttl{
	margin-bottom: 3rem;
}
.business-head-guide .contentArea .p-text{
	font-size: 1.125rem;
	line-height: 2.33;
}
@media only screen and (max-width: 767px) {
	.business-head-guide{
		padding-bottom: 3.5rem;
	}
	.business-head-guide .figure{
		width: 100%;
		text-align: center;
		margin-bottom: 2.5rem;
	}
	.business-head-guide .figure img{
		width: 18rem;
	}
	.business-head-guide .contentArea{
		width: 100%;
	}
	.business-head-guide .guide-ttl{
		text-align: center;
		margin-bottom: 1.25rem;
	}
	.business-head-guide .contentArea .p-text{
		font-size: 0.9375rem;
		line-height: 1.875;
	}
}
/*　　主な業務内容　　*/
.business-guide{
	position: relative;
	padding: 6.875rem 0 7.5rem 0;
}
.business-guide::before{
	position: absolute;
	background: url(../img/business/business_bg.jpg) no-repeat center;
	background-size: cover;
	content: "";
	width: 98%;
	max-width: 1756px;
	height: 35.625rem;
	right: 0;
	top: 0;
}
.business-guide .guide-ttl{
	margin-bottom: 5.9375rem;
}
.business-guide .link_btn li a{
	position: relative;
	display: inline-block;
	color: #FFFFFF;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.25;
	text-decoration: underline;
	padding-right: 2.5rem;
}
.business-guide .link_btn li a::after{
	position: absolute;
	background: url(../img/icon/arrow_b.svg) no-repeat;
	background-size: cover;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 1.5rem;
	height: 1.5rem;
}
.business-guide .business-container{
	column-gap: 6.25rem;
}
.business-container.grid-cols-2 .card{
	width: calc(50% - 3.125rem);
}
.business-container .business-items:nth-child(2){
	margin-top: 4.75rem;
}
.business-container .business-items .imageArea{
	position: relative;
	margin-bottom: 2rem;
}
.business-container .business-items .no{
	position: absolute;
	top: -2rem;
	left: 0;
	background: #007DE8;
	font-family: "Mohave", sans-serif;
	color: #FFFFFF;
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 1;
	font-style: italic;
	padding: 0.5rem 1rem 0.125rem 1rem;
}
.business-container .business-items .no span{
	display: inline-block;
	font-size: 2.5rem;
	margin-left: 0.25rem;
}
.business-container .business-items .ttl{
	color: #1466C6;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}
.business-container .business-items .p-text{
	font-size: 1.125rem;
	line-height: 2;
}
@media only screen and (max-width: 767px) {
	.business-guide{
		padding: 5.875rem 0 3.5rem 0;
	}
	.business-guide::before{
		width: 100%;
		height: 20.625rem;
		right: 0;
		top: 0;
	}
	.business-guide .guide-ttl{
		margin-bottom: 4.9375rem;
	}
	.business-guide .link_btn li a{
		font-size: 0.9375rem;
		padding-right: 2rem;
	}
	.business-guide .link_btn li a::after{
		width: 1.125rem;
		height: 1.125rem;
	}
	.business-guide .business-container{
		column-gap: 0;
	}
	.business-container.grid-cols-2 .card{
		width: 100%;
		padding: 0 1rem;
	}
	.business-container .business-items:nth-child(2){
		margin-top: 2.75rem;
	}
	.business-container .business-items .imageArea{
		margin-bottom: 1.5rem;
	}
	.business-container .business-items .no{
		top: -1.5rem;
		font-size: 1.25rem;
		padding: 0.5rem 1rem 0.125rem 1rem;
	}
	.business-container .business-items .no span{
		font-size: 1.875rem;
	}
	.business-container .business-items .ttl{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.business-container .business-items .p-text{
		font-size: 0.9375rem;
		line-height: 1.75;
	}
}
/*　　KMCTグループとの連携　　*/
.business-group-guide{
	position: relative;
	padding: 7.5rem 0;
}
.business-group-guide::before{
	position: absolute;
	background: url(../img/business/bg_blue.png) no-repeat center right;
	background-size: cover;
	content: "";
	width: 98%;
	max-width: 1756px;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
}
.business-group-guide .figure{
	width: 42%;
}
.business-group-guide .contentArea{
	width: 45%;
}
.business-group-guide .guide-ttl{
	margin-bottom: 2rem;
}
.business-group-guide .p-text{
	font-size: 1.125rem;
	line-height: 1.875;
}
.business-group-guide .list{
	margin-top: 2rem;
}
.business-group-guide .list li{
	display: flex;
	align-items: baseline;
	border: 1px solid #FFFFFF;
	padding: 1rem 1.5rem;
}
.business-group-guide .list li + li{
	margin-top: 2rem;
}
.business-group-guide .list li span{
	display: block;
	background: #000000;
	width: 2rem;
	height: 2rem;
	font-family: "Mohave", sans-serif;
	color: #FFFFFF;
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 2.35rem;
	font-style: italic;
	text-align: center;
}
.business-group-guide .list li .ttl{
	width: calc(100% - 2rem);
	font-size: 1.4375rem;
	font-weight: 400;
	line-height: 1.825;
	padding-left: 1rem;
}
.business-group-guide .block_btn{
	margin-top: 3rem;
}
.business-group-guide .block_btn li{
	max-width: 26.6875rem;
}
.business-group-guide .block_btn li .btn{
	background: #FFFFFF;
	border: 1px solid #FFFFFF;
}
.business-group-guide .block_btn li .btn:hover{
	background: transparent;
	color: #FFFFFF;
}
.business-group-guide .block_btn li .btn:hover::after{
	background: url(../img/icon/arrow_w.svg) no-repeat;
	background-size: cover;
}
@media only screen and (max-width: 767px) {
	.business-group-guide{
		padding: 3.5rem 0;
	}
	.business-group-guide::before{
		background: #007DE8;
		width: 100%;
		height: calc(100% - 12rem);
		top: 12rem;
	}
	.business-group-guide .figure{
		width: 100%;
		text-align: center;
		margin-bottom: 3rem;
	}
	.business-group-guide .figure img{
		width: 14rem;
	}
	.business-group-guide .contentArea{
		width: 100%;
	}
	.business-group-guide .guide-ttl{
		text-align: center;
		margin-bottom: 1rem;
	}
	.business-group-guide .p-text{
		font-size: 0.9375rem;
		line-height: 1.75;
	}
	.business-group-guide .list{
		margin-top: 2rem;
	}
	.business-group-guide .list li{
		padding: 0.5rem 1rem;
	}
	.business-group-guide .list li + li{
		margin-top: 2rem;
	}
	.business-group-guide .list li span{
		font-size: 1.25rem;
	}
	.business-group-guide .list li .ttl{
		width: calc(100% - 2rem);
		font-size: 1.125rem;
		line-height: 1.5;
		padding-left: 0.875rem;
	}
	.business-group-guide .block_btn{
		margin-top: 2.5rem;
	}
	.business-group-guide .block_btn li{
		max-width: 22.6875rem;
	}
}
/*　　サービス業務　　*/
.business-service-guide{
	padding-top: 7.5rem;
}
.business-service-guide .p-text{
	font-size: 1.125rem;
	line-height: 1.75;
	margin-bottom: 3.5rem;
}
.business-service-container{
	position: relative;
	padding: 6rem 0 7.5rem 0;
}
.business-service-container::before{
	position: absolute;
	background: #F2F6F9;
	content: "";
	width: 98%;
	max-width: 1756px;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
}
.business-service-list .service-items{
	width: 33.3333%;
	text-align: center;
	padding: 0 5rem;
}
.business-service-list .service-items:not(:last-child){
	border-right: 1px solid #D6D6D6;
}
.business-service-list .service-items .icon{
	margin-bottom: 1.5rem;
}
.business-service-list .service-items .icon img{
	width: 6.25rem;
}
.business-service-list .service-items p{
	font-size: 1.4375rem;
	font-weight: 500;
	line-height: 1.825;
}
.business-service-guide .block_btn{
	margin-top: 3.5rem;
}
.business-service-guide .block_btn li{
	max-width: 30.5625rem;
}
@media only screen and (max-width: 767px) {
	.business-service-guide{
		padding-top: 5.5rem;
	}
	.business-service-container::before{
		width: 100%;
	}
	.business-service-guide .p-text{
		font-size: 0.9375rem;
		text-align: left;
		line-height: 1.75;
		margin-bottom: 3.5rem;
	}
	.business-service-container{
		padding: 1rem 0;
	}
	.business-service-list .service-items{
		width: 100%;
		padding: 3rem 0;
	}
	.business-service-list .service-items:not(:last-child){
		border-right: none;
		border-bottom: 1px solid #D6D6D6;
	}
	.business-service-list .service-items .icon{
		margin-bottom: 1rem;
	}
	.business-service-list .service-items .icon img{
		width: 4.25rem;
	}
	.business-service-list .service-items p{
		font-size: 1.125rem;
		line-height: 1.75;
	}
	.business-service-guide .block_btn{
		margin-top: 3.5rem;
	}
	.business-service-guide .block_btn li{
		max-width: 20.5625rem;
	}
}
/**
/* 製品情報 CSS
----------------------------------------------- */
/*　　一覧　　*/
.product-wrap .product-nav{
	column-gap: 1.5rem;
	row-gap: 1.5rem;
	margin-bottom: 4.5rem;
}
.product-wrap .product-nav li{
	width: calc(25% - 1.125rem);
	max-width: 18rem;
}
.product-wrap .product-nav li a{
	display: block;
	color: #D6D6D6;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	border: 1px solid #D6D6D6;
	padding: 1.5rem;
}
.product-wrap .product-nav li a:hover,
.product-wrap .product-nav li a.current{
	color: #007DE8;
	border: 1px solid #027DE8;
}
.product-container .cards-container.grid-cols-3{
	row-gap: 3.5rem;
}
.product-container .card{
	border: 1px solid #D6D6D6;
	padding: 1.5rem;
}
.product-container .card .card__thumbnail{
	position: relative;
	height: 15.125rem;
	overflow: hidden;
	margin-bottom: 1.5rem;
}
.product-container .card .card__thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}
.product-container .card .card__thumbnail:hover img{
	transform: scale(1.1);
}
.product-container .card .card__body{
	border-bottom: 1px solid #D6D6D6;
	padding-bottom: 2rem;
	margin-bottom: 1.5rem;
}
.product-container .card .ttl{
	font-size: 1.4375rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 0.5rem;
}
.product-container .card .category a{
	color: #A0A0A0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.45;
}
.product-container .card .more_btn{
	text-align: right;
	margin-top: auto;
}
.product-container .card .more_btn li a{
	position: relative;
	display: inline-block;
	color: #000000;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.25;
	padding-right: 2.5rem;
}
.product-container .card .more_btn li a::after{
	position: absolute;
	background: url(../img/icon/arrow_b.svg) no-repeat;
	background-size: cover;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 1.5rem;
	height: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.product-wrap .product-nav{
		column-gap: 0.5rem;
		row-gap: 0.5rem;
		margin-bottom: 2.5rem;
	}
	.product-wrap .product-nav li{
		width: calc(50% - 0.25rem);
		max-width: calc(50% - 0.25rem);
	}
	.product-wrap .product-nav li a{
		font-size: 0.9375rem;
		padding: 1rem 0.5rem;
	}
	.product-container .cards-container.grid-cols-3{
		row-gap: 1.5rem;
	}
	.product-container .card{
		padding: 1rem;
	}
	.product-container .card .card__thumbnail{
		height: 12.125rem;
		margin-bottom: 1.25rem;
	}
	.product-container .card .card__body{
		padding-bottom: 1.5rem;
		margin-bottom: 1rem;
	}
	.product-container .card .ttl{
		font-size: 1.25rem;
		margin-bottom: 0.25rem;
	}
	.product-container .card .category a{
		font-size: 0.9375rem;
	}
	.product-container .card .more_btn li a{
		font-size: 0.9375rem;
		padding-right: 2rem;
	}
	.product-container .card .more_btn li a::after{
		width: 1.125rem;
		height: 1.125rem;
	}
}
/*　　詳細　　*/
.product-single .l-side{
	width: 18rem;
}
.product-single .l-side ul li{
	border-bottom: 1px solid #D6D6D6;
	padding: 2rem 0;
}
.product-single .l-side ul li:first-child{
	border-top: 1px solid #D6D6D6;
}
.product-single .l-side .js-accordion-title{
	position: relative;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.5;
	cursor: pointer;
	padding-right: 2rem;
}
.product-single .l-side .js-accordion-title::after{
	position: absolute;
	background: url(../img/icon/arrow_b.svg) no-repeat;
	background-size: cover;
	top: calc(50% - 0.75rem);
	right: 0;
	content: "";
	vertical-align: middle;
	width: 1.5rem;
	height: 1.5rem;
}
.product-single .l-side .js-accordion-title.open::after{
	transform: rotate(90deg);
}
.product-single .l-side .nav{
	display: none;
	margin-top: 2.5rem;
}
.product-single .l-side .nav li{
	border-bottom: none;
	padding: 0;
}
.product-single .l-side .nav li:first-child{
	border-top: none;
}
.product-single .l-side .nav li + li{
	margin-top: 1.5rem;
}
.product-single .l-side .nav li a{
	color: #000000;
	font-size: 1.1875rem;
	font-weight: 400;
	line-height: 1.35;
}
@media only screen and (max-width: 767px) {
	.product-single .l-side{
		width: 100%;
		margin-bottom: 3.5rem;
	}
	.product-single .l-side ul li{
		padding: 1.5rem 0;
	}
	.product-single .l-side .js-accordion-title{
		font-size: 1rem;
		padding-right: 2rem;
	}
	.product-single .l-side .js-accordion-title::after{
		top: calc(50% - 0.625rem);
		width: 1.25rem;
		height: 1.25rem;
	}
	.product-single .l-side .nav{
		margin-top: 1rem;
	}
	.product-single .l-side .nav li + li{
		margin-top: 0.5rem;
	}
	.product-single .l-side .nav li a{
		font-size: 0.9375rem;
	}
}
.product-single .product-container{
	width: calc(100% - 18rem);
	padding-left: 4rem;
}
.product-single .product-container h2{
	font-size: 2.0625rem;
	font-weight: 700;
	line-height: 1.45;
	border-left: 0.25rem solid #003F76;
	margin-bottom: 2rem;
	padding-left: 1.75rem;
}
.product-container .product-body .imageArea{
	width: 50%;
}
.product-container .product-body .contentArea{
	width: 50%;
	padding-left: 3rem;
}
.product-container .product-body .contentArea p{
	font-size: 1rem;
	font-weight: 400;
}
.product-container .product-size{
	margin-top: 2.875rem;
}
.product-container .product-size h3{
	font-size: 1.4375rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 1.5rem;
}
.product-container .product-tbl{
	border: 1px solid #DDDDDD;
}
.product-tbl thead tr th{
	background: #F4F4F4;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.5;
	border-right: 1px solid #DDDDDD;
	padding: 1rem 1.5rem;
}
.product-tbl tbody tr td{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: right;
	border-right: 1px solid #DDDDDD;
	border-bottom: 1px dashed #DDDDDD;
	padding: 1rem 1.5rem;
}
.product-single .block_btn{
	width: 100%;
	margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
	.product-single .product-container{
		width: 100%;
		padding-left: 0;
	}
	.product-single .product-container h2{
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
		padding-left: 1rem;
	}
	.product-container .product-body .imageArea{
		width: 100%;
		margin-bottom: 1.5rem;
	}
	.product-container .product-body .contentArea{
		width: 100%;
		padding-left: 0;
	}
	.product-container .product-body .contentArea p{
		font-size: 0.9375rem;
	}
	.product-container .product-size{
		margin-top: 2.875rem;
	}
	.product-container .product-size h3{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.product-tbl thead tr th{
		font-size: 1rem;
		padding: 0.625rem;
	}
	.product-tbl tbody tr td{
		font-size: 0.9375rem;
		padding: 0.625rem;
	}
	.product-single .block_btn{
		margin-top: 3rem;
	}
}
/**
/* 採用について CSS
----------------------------------------------- */
/*　　ページトップ　　*/
.recruit-head-guide{
	padding-bottom: 6rem;
}
.recruit-head-guide .guide-ttl{
	margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
	.recruit-head-guide{
		padding-bottom: 3rem;
	}
	.recruit-head-guide .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.recruit-head-guide .p-text{
		text-align: left;
	}
}
/*　　はじめに　　*/
.recruit-wrap .about-guide{
	padding: 5rem 0;
}
.recruit-wrap .about-guide::after{
	position: absolute;
	background: url(../img/recruit/about_bg.png) center left;
	background-size: cover;
	right: 0;
	top: 0;
	bottom: 0;
	content: "";
	width: 98%;
	max-width: 1440px;
	height: 100%;
	z-index: -1;
}
.recruit-wrap .about-guide .imageArea{
	width: 50%;
}
.recruit-wrap .about-guide .contentArea{
	width: 50%;
	padding-left: 5rem;
}
.recruit-wrap .about-guide .block_btn{
	margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
	.recruit-wrap .about-guide{
		padding: 2rem 0;
	}
	.recruit-wrap .about-guide::after{
		width: calc(100% + 16.75rem);
	}
	.recruit-wrap .about-guide .imageArea{
		width: 100%;
		margin-bottom: 2rem;
	}
	.recruit-wrap .about-guide .contentArea{
		width: 100%;
		padding-left: 0;
	}
	.recruit-wrap .about-guide .block_btn{
		text-align: center;
		margin-top: 1.5rem;
	}
}
/*　　「できた」が増える毎日　　*/
.contat-nav-guide{
	padding: 7rem 0 7.5rem 0;
}
.contat-nav-guide .contat-nav{
	column-gap: 1.5rem;
	margin-top: 2.5rem;
}
.contat-nav-guide .contat-nav li{
	position: relative;
	width: calc(50% - 0.75rem);
}
.contat-nav-guide .contat-nav li::before{
	position: absolute;
	right: 0;
	bottom: 0;
	content: "";
	width: 100%;
	height: 16.25rem;
	z-index: -1;
}
.contat-nav-guide .contat-nav li.job_content_btn::before{
	background: #007DE8;
}
.contat-nav-guide .contat-nav li.interview_btn::before{
	background: #003F76;
}
.contat-nav-guide .contat-nav li a{
	display: block;
	color: #FFFFFF;
	padding: 0 1.5rem 2rem 1.5rem;
}
.contat-nav-guide .contat-nav li .ttlArea{
	position: relative;
}
.contat-nav-guide .contat-nav li .ttlArea::after{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 2rem;
	height: 2rem;
}
.contat-nav-guide .contat-nav li.job_content_btn .ttlArea::after{
	background: url(../img/icon/arrow_w2.svg) no-repeat;
	background-size: cover;
}
.contat-nav-guide .contat-nav li.interview_btn .ttlArea::after{
	background: url(../img/icon/arrow_w.svg) no-repeat;
	background-size: cover;
}
.contat-nav-guide .contat-nav li .thumbnail{
	overflow: hidden;
	margin-bottom: 1.5rem;
}
.contat-nav-guide .contat-nav li .thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}
.contat-nav-guide .contat-nav li a:hover .thumbnail img{
	transform: scale(1.1);
}
.contat-nav-guide .contat-nav li .ttl{
	font-size: 1.4375rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 0.75rem;
}
.contat-nav-guide .contat-nav li .roma{
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1;
}
@media only screen and (max-width: 767px) {
	.contat-nav-guide{
		padding: 4rem 0 3.5rem 0;
	}
	.contat-nav-guide .p-text{
		text-align: left;
	}
	.contat-nav-guide .contat-nav{
		column-gap: 0;
		row-gap: 1.75rem;
		margin-top: 2.5rem;
	}
	.contat-nav-guide .contat-nav li{
		width: 100%;
	}
	.contat-nav-guide .contat-nav li::before{
		height: 10.25rem;
	}
	.contat-nav-guide .contat-nav li a{
		padding: 0 1rem 1rem 1rem;
	}
	.contat-nav-guide .contat-nav li .ttlArea::after{
		width: 1.5rem;
		height: 1.5rem;
	}
	.contat-nav-guide .contat-nav li .thumbnail{
		margin-bottom: 1.5rem;
	}
	.contat-nav-guide .contat-nav li .ttl{
		font-size: 0.9375rem;
		margin-bottom: 0.3125rem;
	}
	.contat-nav-guide .contat-nav li .roma{
		font-size: 1.5rem;
	}
}
/*　　社員寮／福利厚生について　　*/
.employee-nav-guide{
	background: #007DE8;
}
.employee-nav-guide .imageArea{
	width: 50%;
}
.employee-nav-guide .imageArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.employee-nav-guide .contentArea{
	width: 50%;
	max-width: 41.15rem;
	padding: 4.5rem 2.5rem 4rem 3rem;
}
@media only screen and (max-width: 767px) {
	.employee-nav-guide .imageArea{
		width: 100%;
	}
	.employee-nav-guide .contentArea{
		width: 100%;
		max-width: 100%;
		padding: 3rem 1.5rem;
	}
}
/*　　募集要項　　*/
.job_description-nav-guide{
	padding-top: 7.5rem;
}
.job_description-nav-guide .guide-ttl{
	-webkit-justify-content: flex-end;
    justify-content: flex-end;
	align-items: baseline;
	margin-bottom: 2.5rem;
}
.job_description-nav-guide .guide-ttl .roma{
	margin-bottom: 0;
}
.job_description-nav-guide .guide-ttl h2{
	margin-right: 1.5rem;
}
.job-nav-container .job-nav-items{
	position: relative;
	border: 1px solid #D6D6D6;
	border-radius: 1rem;
	padding: 1.5rem 4rem 1.5rem 2rem;
}
.job-nav-container .job-nav-items:not(:last-child){
	margin-bottom: 2rem;
}
.job-nav-container .job-nav-items::before{
	position: absolute;
	content: "";
	vertical-align: middle;
	width: 0;
	height: 0;
	top: 0;
	bottom: 0;
	right: 0.75rem;
	margin: auto;
	border-style: solid;
	border-top: 0.625rem solid transparent;
	border-bottom: 0.625rem solid transparent;
	border-right: 0;
	z-index: 1;
}
.job-nav-container .new-graduate::before{
	border-left: 0.75rem solid #007de8;
}
.job-nav-container .mid-career::before{
	border-left: 0.75rem solid #003F76;
}
.job-nav-container .job-nav-items::after{
	position: absolute;
	background: #F0F0F0;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 2.5rem;
	height: 100%;
	border-radius: 0 1rem 1rem 0;
}
.job-nav-container .job-nav-items a{
	color: #000000;
	display: flex;
	webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	align-items: center;
}
.job-nav-container .job-nav-items .caption{
	position: absolute;
	top: 0;
	left: 0;
	color: #FFFFFF;
	font-size: 1.4375rem;
	font-weight: 700;
	line-height: 1.25;
	border-radius: 1rem 0 1rem 0;
	padding: 1rem 1.5rem;
}
.job-nav-container .new-graduate .caption{
	background: #007DE8;
}
.job-nav-container .mid-career .caption{
	background: #003F76;
}
.job-nav-container .job-nav-items .thumbnail{
	width: 30%;
	border-radius: 0.5rem;
	overflow: hidden;
}
.job-nav-container .job-nav-items .thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}
.job-nav-container .job-nav-items a:hover .thumbnail img{
	transform: scale(1.1);
}
.job-nav-container .job-nav-items .contentArea{
	width: 70%;
	padding-right: 2rem;
}
.job-nav-container .job-nav-items .ttl{
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 1rem;
}
.job-nav-container .job-nav-items .description-list{
	column-gap: 1.25rem;
	row-gap: 1rem;
	margin-top: 2rem;
}
.job-nav-container .job-nav-items .description-list dl{
	display: flex;
	align-items: baseline;
	width: calc(50% - 0.625rem);
}
.job-nav-container .job-nav-items .description-list dl dt{
	background: #F2F2F2;
	width: 6.25rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	border-radius: 1rem;
	padding: 0.5rem;
}
.job-nav-container .job-nav-items .description-list dl dd{
	width: calc(100% - 6.25rem);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.45;
	padding-left: 0.5rem;
}
.job-nav-container .job-nav-items .p-text{
	line-height: 2;
}
@media only screen and (max-width: 767px) {
	.job_description-nav-guide{
		padding-top: 4.5rem;
	}
	.job_description-nav-guide .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.job_description-nav-guide .guide-ttl .roma{
		width: 100%;
		margin-bottom: 0.5rem;
	}
	.job_description-nav-guide .guide-ttl h2{
		width: 100%;
		margin-right: 0;
	}
	.job-nav-container .job-nav-items{
		padding: 4rem 3rem 1.5rem 1rem;
	}
	.job-nav-container .job-nav-items:not(:last-child){
		margin-bottom: 1.25rem;
	}
	.job-nav-container .job-nav-items::before{
		right: 0.625rem;
		border-top: 0.5rem solid transparent;
		border-bottom: 0.5rem solid transparent;
	}
	.job-nav-container .new-graduate::before{
		border-left: 0.5rem solid #007de8;
	}
	.job-nav-container .mid-career::before{
		border-left: 0.75rem solid #003F76;
	}
	.job-nav-container .job-nav-items::after{
		width: 2rem;
	}
	.job-nav-container .job-nav-items a{
		display: block;
	}
	.job-nav-container .job-nav-items .caption{
		font-size: 1rem;
		padding: 0.75rem 1.125rem;
	}
	.job-nav-container .job-nav-items .thumbnail{
		width: 100%;
		margin-bottom: 1.25rem;
	}
	.job-nav-container .job-nav-items .contentArea{
		width: 100%;
		padding-right: 0;
	}
	.job-nav-container .job-nav-items .ttl{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.job-nav-container .job-nav-items .description-list{
		column-gap: 0;
		row-gap: 1rem;
		margin-top: 1.25rem;
	}
	.job-nav-container .job-nav-items .description-list dl{
		width: 100%;
	}
	.job-nav-container .job-nav-items .description-list dl dt{
		width: 5.25rem;
		font-size: 0.875rem;
		padding: 0.375rem;
	}
	.job-nav-container .job-nav-items .description-list dl dd{
		width: calc(100% - 5.25rem);
		font-size: 0.875rem;
		padding-left: 0.5rem;
	}
	.job-nav-container .job-nav-items .p-text{
		line-height: 1.75;
	}
}
/*　　スタッフインタビュー　　*/
.recruit-wrap .interview-guide{
	padding-top: 8.5rem;
}
.recruit-wrap .interview-guide .p-text{
	line-height: 2;
	margin-bottom: 2.5rem;
}
.recruit-wrap .interview-guide .block_btn{
	margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
	.recruit-wrap .interview-guide{
		padding-top: 4.5rem;
	}
	.recruit-wrap .interview-guide .p-text{
		line-height: 1.75;
		margin-bottom: 2rem;
	}
}
/**
/* 仕事内容紹介 CSS
----------------------------------------------- */
/*　　ページトップ　　*/
.job-content-head-guide{
	position: relative;
	padding: 6.875rem 0 5.75rem 0;
}
.job-content-head-guide::before{
	position: absolute;
	background: url(../img/job-content/page-head_bg.jpg) no-repeat center;
	background-size: cover;
	content: "";
	width: 100%;
	max-width: 1760px;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
}
.job-content-head-guide .inner-wrap{
	width: 96%;
	max-width: 1682px;
}
.job-content-head-guide .image-l{
	position: relative;
	width: 21%;
}
.job-content-head-guide .image-l img{
	position: absolute;
	bottom: 0;
}
.job-content-head-guide .image-r{
	width: 23%;
}
.job-content-head-guide .contentArea{
	width: 52%;
	max-width: 39rem;
}
.job-content-head-guide .guide-ttl{
	text-align: center;
	margin-bottom: 4rem;
}
.job-content-head-guide .guide-ttl h2{
	display: inline-block;
	text-align: left;
}
.job-content-head-guide .contentArea .p-text{
	font-size: 1.125rem;
	line-height: 2.33;
}
@media only screen and (max-width: 767px) {
	.job-content-head-guide{
		padding: 4.5rem 0 2.75rem 0;
	}
	.job-content-head-guide .inner-wrap{
		width: calc(100% - 2rem);
	}
	.job-content-head-guide .image-l{
		width: 45%;
	}
	.job-content-head-guide .image-r{
		width: 50%;
	}
	.job-content-head-guide .contentArea{
		width: 100%;
		max-width: 100%;
		margin-bottom: 2rem;
	}
	.job-content-head-guide .guide-ttl{
		margin-bottom: 2rem;
	}
	.job-content-head-guide .contentArea .p-text{
		font-size: 0.9375rem;
		line-height: 1.875;
	}
}
/*　　主な仕事内容　　*/
.job-work-guide{
	position: relative;
	padding: 7.6875rem 0 15.625rem 0;
}
.job-work-guide::before{
	position: absolute;
	content: "";
	background: url(../img/job-content/logo_bg.png) no-repeat center;
	background-size: cover;
	width: 51.75rem;
	height: 64.0625rem;
	right: -5.5rem;
	top: 9.875rem;
}
.job-work-guide .guide-ttl{
	margin-bottom: 4rem;
}
.job-work-guide .guide-ttl h2{
	position: relative;
	padding-left: 2rem;
}
.job-work-guide .guide-ttl h2::before{
	position: absolute;
	content: "";
	background: #007DE8;
	width: 0.5rem;
	height: 0.5rem;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 100%;
}
.job-work-container .job-work-items{
	align-items: flex-start;
}
.job-work-container .job-work-items:not(:last-child){
	margin-bottom: 4rem;
}
.job-work-container .job-work-items .imageArea{
	width: 50%;
}
.job-work-container .job-work-items .contentArea{
	position: relative;
	background: #FFFFFF;
	width: 55%;
	margin-left: -5%;
	top: 5.5rem;
	padding: 6rem 4.5rem 4.5rem 4.5rem;
}
.job-work-container .job-work-items .no{
	position: absolute;
	top: 0;
	background: #007DE8;
	font-family: "Mohave", sans-serif;
	color: #FFFFFF;
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 1;
	font-style: italic;
	padding: 0.5rem 1rem 0.125rem 1rem;
}
.job-work-container .job-work-items .no span{
	display: inline-block;
	font-size: 2.5rem;
	margin-left: 0.25rem;
}
.job-work-container .job-work-items h3{
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 2rem;
}
.job-work-container .job-work-items .comment p{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2;
}
@media only screen and (max-width: 767px) {
	.job-work-guide{
		padding: 4.6875rem 0 2.625rem 0;
	}
	.job-work-guide::before{
		width: 15.75rem;
		height: 19.0625rem;
		right: -2.5rem;
		top: 3.875rem;
	}
	.job-work-guide .guide-ttl{
		margin-bottom: 2rem;
	}
	.job-work-guide .guide-ttl h2{
		padding-left: 1.5rem;
	}
	.job-work-guide .guide-ttl h2::before{
		width: 0.375rem;
		height: 0.375rem;
	}
	.job-work-container .job-work-items:not(:last-child){
		margin-bottom: 0.5rem;
	}
	.job-work-container .job-work-items .imageArea{
		width: 90%;
	}
	.job-work-container .job-work-items .contentArea{
		width: 95%;
		margin-left: 5%;
		top: -1.5rem;
		padding: 3.5rem 1.5rem 2.5rem 1.5rem;
	}
	.job-work-container .job-work-items .no{
		font-size: 1.25rem;
		padding: 0.5rem 1rem 0.125rem 1rem;
	}
	.job-work-container .job-work-items .no span{
		font-size: 1.875rem;
	}
	.job-work-container .job-work-items h3{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.job-work-container .job-work-items .comment p{
		font-size: 0.9375rem;
		line-height: 1.875;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.job-work-guide{
		padding: 7.6875rem 0 10.625rem 0;
	}
	.job-work-guide::before{
		width: 45.75rem;
		height: 57.0625rem;
	}
	.job-work-container .job-work-items .contentArea{
		top: 2.5rem;
		padding: 6rem 2.5rem 2.5rem 2.5rem;
	}
}
/*　　ナビ　　*/
.job-content-nav-guide .job-content-nav-container{
	background: url(../img/bg_blue.jpg) no-repeat center;
	background-size: cover;
	width: 96%;
	max-width: 1662px;
	margin: 0 auto;
	padding: 7.5rem 0;
}
.job-content-nav-container .job-content-nav-items{
	column-gap: 5rem;
}
.job-content-nav-container .job-content-nav-items:nth-child(odd){
	webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.job-content-nav-container .job-content-nav-items:not(:last-child){
	border-bottom: 1px solid #FFFFFF;
	margin-bottom: 5rem;
	padding-bottom: 5rem;
}
.job-content-nav-container .job-content-nav-items .imageArea{
	width: 50%;
}
.job-content-nav-container .job-content-nav-items .contentArea{
	width: calc(50% - 5rem);
}
.job-content-nav-container .job-content-nav-items h3{
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 2rem;
}
.job-content-nav-container .job-content-nav-items .p-text{
	font-size: 1.125rem;
	line-height: 1.875;
}
@media only screen and (max-width: 767px) {
	.job-content-nav-guide .job-content-nav-container{
		width: 100%;
		padding: 4.5rem 0.5rem 3.5rem 0.5rem;
	}
	.job-content-nav-container .job-content-nav-items{
		column-gap: 0;
	}
	.job-content-nav-container .job-content-nav-items:not(:last-child){
		margin-bottom: 2.5rem;
		padding-bottom: 2.5rem;
	}
	.job-content-nav-container .job-content-nav-items .imageArea{
		width: 100%;
		margin-bottom: 2rem;
	}
	.job-content-nav-container .job-content-nav-items .contentArea{
		width: 100%;
	}
	.job-content-nav-container .job-content-nav-items h3{
		font-size: 1.275rem;
		margin-bottom: 1rem;
	}
	.job-content-nav-container .job-content-nav-items .p-text{
		font-size: 0.9375rem;
	}
}
/**
/* はじめに(高校生・保護者・先生へ) CSS
----------------------------------------------- */
/*　　ページトップ　　*/
.introduction-head-guide{
	padding-bottom: 2.5rem;
}
.introduction-head-guide .imageArea{
	height: 21.25rem;
}
.introduction-head-guide .imageArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.introduction-head-guide .introduction-head-container{
	margin-top: -14rem;
}
.introduction-head-guide .guide-ttl{
	margin-bottom: 5rem;
}
.introduction-head-guide .box{
	background: #FFFFFF;
	padding: 4rem 6.5rem;
}
.introduction-head-guide .box .p-text{
	font-size: 1.4375rem;
}
@media only screen and (max-width: 767px) {
	.introduction-head-guide{
		padding-bottom: 1.5rem;
	}
	.introduction-head-guide .imageArea{
		height: 14.25rem;
	}
	.introduction-head-guide .introduction-head-container{
		margin-top: -10rem;
	}
	.introduction-head-guide .guide-ttl{
		margin-bottom: 3rem;
	}
	.introduction-head-guide .box{
		padding: 3rem 1.75rem 2rem 1.75rem;
	}
	.introduction-head-guide .box .p-text{
		font-size: 1.0625rem;
		text-align: left;
	}
}
/*　　神奈川県・秦野市ってどんなところ？　　*/
.place-guide{
	padding: 3rem 0;
	margin-bottom: 10rem;
}
.place-guide::after{
	position: absolute;
	background: url(../img/top/bg_blue.png) center right;
	background-size: cover;
	left: 0;
	top: 0;
	bottom: 0;
	content: "";
	width: 40%;
	max-width: 41.25rem;
	height: 100%;
	z-index: -1;
}
.place-guide .imageArea{
	width: 50%;
	margin-left: -10%;
}
.place-guide .imageArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.place-guide .contentArea{
	width: 60%;
	padding-left: 4rem;
}
@media only screen and (max-width: 767px) {
	.place-guide{
		padding: 1.5rem 0 3.5rem 0;
		margin-bottom: 0;
	}
	.place-guide::after{
		content: none;
	}
	.place-guide .imageArea{
		position: relative;
		width: calc(100% + 2.5rem);
		text-align: right;
		margin: 0 -1.25rem;
		padding: 1.25rem 0 1.5rem 0;
	}
	.place-guide .imageArea::after{
		position: absolute;
		background: url(../img/top/bg_blue.png) top right;
		background-size: cover;
		left: -2rem;
		top: 0;
		bottom: 0;
		content: "";
		width: 80%;
		height: 100%;
		z-index: -1;
	}
	.place-guide .imageArea img{
		width: 90%;
	}
	.place-guide .contentArea{
		width: 100%;
		padding-top: 2.5rem;
		padding-left: 0;
	}
	.place-guide .block_btn{
		text-align: center;
		margin-top: 1.5rem;
	}
}
/*　　保護者の皆さま、先生方へ　　*/
.introduction-message-guide .message-container{
	background: url(../img/introduction/message_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 5rem 0;
}
.introduction-message-guide .message-container .bg-text{
	font-size: 1.1875rem;
	font-weight: 700;
	line-height: 1.57;
	margin-top: 1.5rem;
}
.introduction-message-guide .nav-container li{
	width: 50%;
}
.introduction-message-guide .nav-container li a{
	display: block;
	color: #FFFFFF;
	text-align: center;
	padding: 4rem 3rem;
}
.introduction-message-guide .nav-container li a:hover{
	opacity: 0.8;
}
.introduction-message-guide .nav-container li a .ttl{
	font-size: 1.4375rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 0.75rem;
}
.introduction-message-guide .nav-container li a .roma{
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1;
}
.introduction-message-guide .nav-container li.job-content a{
	background: #007DE8;
}
.introduction-message-guide .nav-container li.staff-interview a{
	background: #003F76;
}
@media only screen and (max-width: 767px) {
	.introduction-message-guide .message-container{
		padding: 4.5rem 0 3rem 0;
	}
	.introduction-message-guide .message-container .p-text{
		text-align: left;
	}
	.introduction-message-guide .message-container .bg-text{
		font-size: 1.0625rem;
	}
	.introduction-message-guide .nav-container li{
		width: 1000%;
	}
	.introduction-message-guide .nav-container li a{
		padding: 2.5rem 2rem 2.25rem 2rem;
	}
	.introduction-message-guide .nav-container li a .ttl{
		font-size: 0.9375rem;
		margin-bottom: 0.3125rem;
	}
	.introduction-message-guide .nav-container li a .roma{
		font-size: 1.5rem;
	}
}
/*　　KMCTグループ　　*/
.group-guide{
	padding: 7.5rem 0;
}
.group-guide .group-container .imageArea{
	width: 45%;
	height: 31.875rem;
}
.group-guide .group-container .imageArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.group-guide .group-container .contentArea{
	width: 55%;
	max-width: 44.25rem;
	padding: 0 3rem 0 3rem;
}
.group-guide .group-container .bg-text{
	font-size: 1.1875rem;
	font-weight: 700;
	line-height: 1.85;
	margin-top: 2rem;
}
.group-guide .group-container p .link{
	position: relative;
	display: inline-block;
	font-weight: 500;
	padding-right: 1rem;
}
.group-guide .group-container p .link::after{
	position: absolute;
	background: url(../img/icon/link_icon.svg) no-repeat;
	background-size: cover;
	top: 0.75rem;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 1.0625rem;
	height: 1.0625rem;
}
@media only screen and (max-width: 767px) {
	.group-guide{
		padding: 2.5rem 0 3.5rem 0;
	}
	.group-guide .group-container .imageArea{
		width: 100%;
		height: 13.875rem;
	}
	.group-guide .group-container .contentArea{
		width: 100%;
		max-width: 100%;
		padding: 2.5rem 1.875rem 0 1.875rem;
	}
	.group-guide .group-container .bg-text{
		font-size: 1.0625rem;
		margin-top: 1.5rem;
	}
	.group-guide .group-container p .link{
		padding-right: 1rem;
		margin-top: 1rem;
	}
	.group-guide .group-container p .link::after{
		top: 0.75rem;
		width: 1.0625rem;
		height: 1.0625rem;
	}
}
/*　　ページ下部　　*/
.introduction-bottom-guide{
	position: relative;
	padding-top: 4.5rem;
}
.introduction-bottom-guide::before{
	position: absolute;
	background: #FAFAFA;
	content: "";
	width: 100%;
	height: 27.5rem;
	left: 0;
	top: 0;
}
.introduction-bottom-guide .p-text{
	line-height: 2.0;
}
@media only screen and (max-width: 767px) {
	.introduction-bottom-guide{
		padding-top: 4rem;
	}
	.introduction-bottom-guide::before{
		height: 27.5rem;
	}
	.introduction-bottom-guide .p-text{
		line-height: 2.0;
	}
}
/**
/* 社員寮 / 福利厚生について CSS
----------------------------------------------- */
.employee-benefits-wrap ul.list li{
	position: relative;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5;
	padding-left: 1.75rem;
}
.employee-benefits-wrap ul.list li::before{
	position: absolute;
	background: url(../img/icon/arrow_b.svg) no-repeat;
	background-size: cover;
	top: 0.375rem;
	left: 0;
	content: "";
	vertical-align: middle;
	width: 1.0625rem;
	height: 1.0625rem;
}
.employee-benefits-wrap ul.list li + li{
	margin-top: 1.25rem;
}
@media only screen and (max-width: 767px) {
	.employee-benefits-wrap ul.list li{
		font-size: 0.9375rem;
		padding-left: 1.5rem;
	}
	.employee-benefits-wrap ul.list li::before{
		top: 0.3125rem;
		width: 1rem;
		height: 1rem;
	}
	.employee-benefits-wrap ul.list li + li{
		margin-top: 0.625rem;
	}
}
/*　　ページトップ　　*/
.employee-benefits-head-guide{
	padding-bottom: 7.5rem;
}
.employee-benefits-head-guide .contentArea{
	max-width: 945px;
	margin: 0 auto 4.5rem auto;
}
.employee-benefits-head-guide .guide-ttl{
	margin-bottom: 3rem;
}
.employee-benefits-head-guide .p-text{
	font-size: 1.125rem;
	line-height: 2.33;
}
.employee-benefits-head-guide .imageArea ul li{
	width: 33.3333%;
}
@media only screen and (max-width: 767px) {
	.employee-benefits-head-guide{
		padding-bottom: 3.5rem;
	}
	.employee-benefits-head-guide .contentArea{
		margin: 0 auto 1.5rem auto;
	}
	.employee-benefits-head-guide .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.employee-benefits-head-guide .p-text{
		font-size: 0.9375rem;
		line-height: 1.875;
		text-align: left;
	}
	.employee-benefits-head-guide .imageArea ul li{
		width: 100%;
	}
}
/*　　丹沢寮のご紹介　　*/
.dormitory-guide{
	position: relative;
	padding: 7.5rem 0;
}
.dormitory-guide::before{
	position: absolute;
	background: #F2F6F9;
	content: "";
	width: 98%;
	max-width: 1756px;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
}
.dormitory-guide .guide-ttl{
	margin-bottom: 3rem;
}
.dormitory-guide .guide-ttl h2{
	position: relative;
	padding-left: 2rem;
}
.dormitory-guide .guide-ttl h2::before{
	position: absolute;
	content: "";
	background: #007DE8;
	width: 0.5rem;
	height: 0.5rem;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 100%;
}
.dormitory-guide .imageArea{
	text-align: center;
}
.dormitory-guide .dormitory-tbl{
	margin-top: 4.5rem;
}
.dormitory-tbl tr th,
.dormitory-tbl tr td{
	font-size: 1rem;
	line-height: 1.5;
	vertical-align: middle;
}
.dormitory-tbl tr th{
	width: 11.5rem;
	font-weight: 500;
	border-bottom: 1px solid #1466C6;
	padding: 2rem 0.875rem;
}
.dormitory-tbl tr:first-child th{
	border-top: 1px solid #1466C6;
}
.dormitory-tbl tr td{
	border-bottom: 1px solid #D8D8D8;
	padding: 2rem 1.5rem;
}
.dormitory-tbl tr:first-child td{
	border-top: 1px solid #D8D8D8;
}
@media only screen and (max-width: 767px) {
	.dormitory-guide{
		padding: 4.5rem 0;
	}
	.dormitory-guide::before{
		width: 98%;
	}
	.dormitory-guide .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.dormitory-guide .guide-ttl h2{
		padding-left: 2rem;
	}
	.dormitory-guide .guide-ttl h2::before{
		width: 0.5rem;
		height: 0.5rem;
	}
	.dormitory-guide .dormitory-tbl{
		margin-top: 2.5rem;
	}
	.dormitory-tbl tr th,
	.dormitory-tbl tr td{
		font-size: 0.9375rem;
	}
	.dormitory-tbl tr th{
		width: 7.5rem;
		padding: 1.25rem 0.875rem;
	}
	.dormitory-tbl tr td{
		padding: 1.25rem 1rem;
	}
}
/*　　福利厚生について　　*/
.benefits-guide{
	padding: 7.5rem 0;
}
.benefits-guide .guide-ttl{
	margin-bottom: 2.5rem;
}
.benefits-guide .p-text{
	font-size: 1.125rem;
	line-height: 1.75;
}
.benefits-guide .imageArea{
	margin-top: 3.5rem;
}
.benefits-guide .imageArea ul li{
	width: 50%;
}
.benefits-guide .box{
	position: relative;
	background: #FFFFFF;
	width: calc(100% - 2rem);
	max-width: 1123px;
	padding: 2.5rem;
	column-gap: 3rem;
	margin: -4.25rem auto 0 auto;
}
.benefits-guide .box ul:nth-child(1){
	width: calc(55% - 1.5rem);
}
.benefits-guide .box ul:nth-child(2){
	width: calc(45% - 1.5rem);
}
@media only screen and (max-width: 767px) {
	.benefits-guide{
		padding: 4.5rem 0;
	}
	.benefits-guide .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.benefits-guide .p-text{
		font-size: 0.9375rem;
		text-align: left;
	}
	.benefits-guide .imageArea{
		margin-top: 1.5rem;
	}
	.benefits-guide .imageArea ul li{
		width: 100%;
	}
	.benefits-guide .box{
		width: calc(100% - 2rem);
		padding: 1.5rem;
		column-gap: 0;
		row-gap: 0.625rem;
		margin: -4.25rem auto 0 auto;
	}
	.benefits-guide .box ul:nth-child(1){
		width: 100%;
	}
	.benefits-guide .box ul:nth-child(2){
		width: 100%;
	}
}
/*　　アクセス　　*/
.dormitory-access-guide{
	position: relative;
	padding-top: 5.5rem;
}
.dormitory-access-guide::before{
	position: absolute;
	background: #007DE8;
	content: "";
	width: 98%;
	max-width: 1572px;
	height: 27.5rem;
	left: 0;
	top: 0;
}
.dormitory-access-container{
	column-gap: 5.5rem;
}
.dormitory-access-container .contentArea{
	width: calc(65% - 5.5rem);
}
.dormitory-access-container .guide-ttl{
	margin-bottom: 2.5rem;
}
.dormitory-access-container .guide-ttl h2{
	font-size: 2.125rem;
}
.dormitory-access-container .p-text{
	font-size: 1.125rem;
	line-height: 1.75;
}
.dormitory-access-container .box{
	background: #FFFFFF;
	padding: 2.5rem 1rem 2.5rem 2.5rem;
	margin-top: 3rem;
}
.dormitory-access-container .imageArea{
	width: 50%;
	margin-right: -15%;
}
@media only screen and (max-width: 767px) {
	.dormitory-access-guide{
		padding-top: 4.5rem;
	}
	.dormitory-access-guide::before{
		height: 39.5rem;
	}
	.dormitory-access-container{
		column-gap: 5.5rem;
	}
	.dormitory-access-container .contentArea{
		width: 100%;
	}
	.dormitory-access-container .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.dormitory-access-container .guide-ttl h2{
		font-size: 1.125rem;
	}
	.dormitory-access-container .p-text{
		font-size: 0.9375rem;
	}
	.dormitory-access-container .box{
		padding: 1.5rem 1rem 1.5rem 1.5rem;
		margin-top: 2rem;
	}
	.dormitory-access-container .imageArea{
		width: 100%;
		margin-right: 0;
		margin-top: 2rem;
	}
}
/**
/* 募集要項 CSS
----------------------------------------------- */
.job_description-nav{
	margin-bottom: 4.5rem;
}
.job_description-nav ul{
	display: flex;
	column-gap: 1.5rem;
}
.job_description-nav ul li{
	width: calc(25% - 1.125rem);
	max-width: 18rem;
}
.job_description-nav ul li a{
	display: block;
	color: #D6D6D6;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	border: 1px solid #D6D6D6;
	padding: 1.5rem;
}
.job_description-nav ul li a:hover,
.job_description-nav ul li a.current{
	color: #007DE8;
	border: 1px solid #027DE8;
}
.job_description-body h2{
	background: #007DE8;
	background: linear-gradient(90deg,rgba(0, 125, 232, 1) 0%, rgba(0, 63, 116, 1) 100%);
	color: #FFFFFF;
	font-size: 2.0625rem;
	font-weight: 500;
	line-height: 1.35;
	padding: 1rem 2rem;
	margin-bottom: 2.5rem;
}
.job_description-body h3{
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.275;
	margin-bottom: 1.25rem;
}
.job_description-body .comment p{
	font-size: 1rem;
	font-weight: 400;
	line-height: 2.6;
}
.job_description-body .job_description-tbl{
	border: 1px solid #D6D6D6;
	margin-top: 3rem;
}
.job_description-tbl th,
.job_description-tbl td{
	font-size: 1rem;
	line-height: 1.5625;
	border-bottom: 1px solid #D6D6D6;
}
.job_description-tbl th{
	background: #F7F7F7;
	width: 11.5rem;
	font-weight: 500;
	padding: 2rem 2rem 2rem 2.5rem;
}
.job_description-tbl td{
	padding: 2rem 3rem;
}
@media only screen and (max-width: 767px) {
	.job_description-nav{
		margin-bottom: 2.5rem;
	}
	.job_description-nav ul{
		column-gap: 0.5rem;
	}
	.job_description-nav ul li{
		width: calc(50% - 0.25rem);
		max-width: calc(50% - 0.25rem);
	}
	.job_description-nav ul li a{
		font-size: 0.9375rem;
		padding: 1rem 0.5rem;
	}
	.job_description-body h2{
		font-size: 1.25rem;
		padding: 1rem 1rem;
		margin-bottom: 2rem;
	}
	.job_description-body h3{
		font-size: 1.375rem;
		margin-bottom: 1rem;
	}
	.job_description-body .comment p{
		font-size: 0.9375rem;
		line-height: 1.865;
	}
	.job_description-body .job_description-tbl{
		margin-top: 2rem;
	}
	.job_description-tbl th,
	.job_description-tbl td{
		font-size: 0.9375rem;
	}
	.job_description-tbl th{
		width: 7rem;
		padding: 1.25rem 1rem;
	}
	.job_description-tbl td{
		padding: 1.25rem 1rem;
	}
}
/**
/* お知らせ / ブログ / インタビュー CSS
----------------------------------------------- */
/*　　一覧　　*/
.category-nav{
	display: flex;
	column-gap: 1.5rem;
	margin-bottom: 4.5rem;
}
.category-nav li{
	width: calc(25% - 1.125rem);
}
.category-nav li a{
	position: relative;
	display: block;
	color: #B7B7B7;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
	border-bottom: 1px solid #D6D6D6;
	padding-bottom: 1rem;
}
.category-nav li a::after{
	background: #007DE8;
	position: absolute;
	content: "";
	vertical-align: middle;
	width: 0;
	height: 1px;
	bottom: -1px;
	left: 0;
	transition: width 0.3s ease;
}
.category-nav li a:hover,
.category-nav li a.current{
	color: #007DE8;
}
.category-nav li a:hover::after,
.category-nav li a.current::after{
	width: 100%;
}
.news-container .card .card__thumbnail{
	position: relative;
	height: 13.75rem;
	overflow: hidden;
	margin-bottom: 1rem;
}
.news-container .card .category{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.news-container .card .category span{
	display: inline-block;
	background: #007DE8;
	color: #FFFFFF;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.45;
	padding: 0.5rem 1.5rem;
}
.news-container .card .card__thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}
.news-container .card .card__thumbnail:hover img{
	transform: scale(1.1);
}
.news-container .card .ttl{
	color: #000000;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.42;
	margin-bottom: 1.5rem;
}
.news-container .card .date{
	color: #C6C6C6;
	font-family: "Mohave", sans-serif;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.25;
}
@media only screen and (max-width: 767px) {
	.category-nav{
		-webkit-justify-content: center;
		justify-content: center;
		column-gap: 0.5rem;
		row-gap: 1.5rem;
		margin-bottom: 1.875rem;
	}
	.category-nav li{
		width: calc(50% - 0.5rem);
	}
	.category-nav li a{
		font-size: 0.875rem;
		padding-bottom: 0.875rem;
	}
	.news-container .card .card__thumbnail{
		height: 12.75rem;
		margin-bottom: 0.75rem;
	}
	.news-container .card .category span{
		padding: 0.5rem 0.75rem;
	}
	.news-container .card .ttl{
		font-size: 1rem;
		margin-bottom: 1rem;
	}
	.news-container .card .date{
		font-size: 0.875rem;
	}
}
/*　　詳細　　*/
.single-guide article{
	border-bottom: 1px solid #D6D6D6;
	padding-bottom: 4rem;
}
.single-guide .entry-header{
	border-bottom: 1px solid #D6D6D6;
	padding-bottom: 2rem;
	margin-bottom: 3rem;
}
.single-guide .entry-header .category{
	margin-bottom: 1rem;
}
.single-guide .entry-header .category span{
	display: inline-block;
	background: #007DE8;
	color: #FFFFFF;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.45;
	padding: 0.5rem 1.5rem;
}
.single-guide .entry-header h2{
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 1.125rem;
}
.single-guide .entry-header .date{
	color: #C6C6C6;
	font-family: "Mohave", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
}
.single-guide .entry-body figure{
	margin-bottom: 3.5rem;
}
.single-guide .entry-body h2{
	background: #FAFAFA;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 1.285;
	border-left: 0.25rem solid #007DE8;
	padding: 0.5rem 1.5rem;
	margin-bottom: 1.5rem;
}
.single-guide .entry-body h3{
	position: relative;
	font-size: 1.4375rem;
	font-weight: 500;
	line-height: 1.56;
	padding-left: 2.375rem;
	margin-bottom: 1.5rem;
	margin-top: 4rem;
}
.single-guide .entry-body h3::before{
	position: absolute;
	content: "";
	background: url(../img/icon/h3_icon.svg) no-repeat center;
	background-size: cover;
	width: 1.375rem;
	height: 1.375rem;
	top: 0.5rem;
	left: 0;
	margin: auto;
	vertical-align: middle;
}
.single-guide .entry-body h4{
	font-size: 1.1875rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 1.5rem;
	margin-top: 4rem;
}
.single-guide .entry-body p{
	font-size: 1rem;
	font-weight: 400;
	line-height: 2.25;
}
.single-guide .entry-body p:not(:last-child){
	margin-bottom: 3rem;
}
.single-guide .entry-body ul.wp-block-list{
	margin: 4rem 0;
}
.single-guide .entry-body ul.wp-block-list:not(:last-child){
	margin: 4rem 0;
}
.single-guide .entry-body ul.wp-block-list li{
	position: relative;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.65;
	padding-left: 2.5rem;
}
.single-guide .entry-body ul.wp-block-list li::before{
	content: '';
	background: url(../img/icon/check_b.svg) no-repeat center;
	background-size: cover;
	width: 1.5rem;
	height: 1.5rem;
	position: absolute;
	left: 0;
	top: 0.125rem;
}
.single-guide .entry-body ul.wp-block-list li:not(:last-child){
	margin-bottom: 1rem;
}
.single-guide .entry-body ol.wp-block-list{
	counter-reset: item;
}
.single-guide .entry-body ol.wp-block-list{
	margin: 4rem 0 0 0;
}
.single-guide .entry-body ol.wp-block-list:not(:last-child){
	margin: 4rem 0;
}
.single-guide .entry-body ol.wp-block-list li{
	position: relative;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.65;
	padding-left: 1.5rem;
}
.single-guide .entry-body ol.wp-block-list li::before{
	content: counter(item);
	counter-increment: item;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0.125rem;
	font-family: "Mohave", sans-serif;
	color: #007DE8;
	font-size: 1.4375rem;
	font-weight: 700;
	line-height: 1.25;
}
.single-guide .entry-body ol.wp-block-list li:not(:last-child){
	margin-bottom: 1rem;
}
.single-guide .entry-body .wp-block-quote{
	position: relative;
	background: #FAFAFA;
	padding: 1.5rem 1.5rem 1.5rem 4rem;
}
.single-guide .entry-body .wp-block-quote::before{
	content: '';
	position: absolute;
	background: url(../img/icon/quote.jpg) no-repeat center;
	background-size: contain;
	width: 2.5rem;
	height: 2.5rem;
	left: 0;
	top: 0;
}
.single-guide .entry-body .wp-block-quote p{
	line-height: 1.625;
	margin-bottom: 0;
}
.single-guide .page-nav{
	margin-top: 5rem;
}
.single-guide .page-nav ul{
	width: 100%;
	display: flex;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.single-guide .page-nav ul .nav__item--prev,
.single-guide .page-nav ul .nav__item--next{
	width: calc(50% - 12.25rem);
}
.single-guide .page-nav ul .nav__item--prev a,
.single-guide .page-nav ul .nav__item--next a{
	display: flex;
	align-items: center;
	column-gap: 1rem;
	color: #000000;
}
.single-guide .page-nav ul .nav__item--next a{
	-webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.single-guide .page-nav ul .nav__item--prev a i,
.single-guide .page-nav ul .nav__item--next a i{
	width: 2.375rem;
	height: 2.375rem;
	font-size: 0.875rem;
	line-height: 2.375rem;
	text-align: center;
	border: 1px solid #D6D6D6;
}
.single-guide .page-nav ul .nav__item--prev a span,
.single-guide .page-nav ul .nav__item--next a span{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
}
.single-guide .page-nav ul .return_btn{
	width: 24.5rem;
}
.single-guide .page-nav ul .return_btn .btn{
	position: relative;
	display: block;
	background: #FFFFFF;
	color: #292929;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.35;
	border: 1px solid #D6D6D6;
	padding: 1.5rem 3rem;
}
.single-guide .page-nav ul .return_btn .btn::after{
	position: absolute;
	background: url(../img/icon/arrow_b.svg) no-repeat;
	background-size: cover;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 1.5rem;
	height: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.single-guide article{
		padding-bottom: 2.5rem;
	}
	.single-guide .entry-header{
		padding-bottom: 1.5rem;
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-header .category{
		margin-bottom: 0.875rem;
	}
	.single-guide .entry-header .category span{
		font-size: 0.75rem;
		padding: 0.375rem 0.875rem;
	}
	.single-guide .entry-header h2{
		font-size: 1.375rem;
		margin-bottom: 1rem;
	}
	.single-guide .entry-header .date{
		font-size: 0.875rem;
	}
	.single-guide .entry-body figure{
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-body h2{
		font-size: 1.25rem;
		padding: 0.5rem 1rem;
		margin-bottom: 1rem;
	}
	.single-guide .entry-body h3{
		font-size: 1.125rem;
		padding-left: 1.875rem;
		margin-bottom: 1rem;
		margin-top: 2rem;
	}
	.single-guide .entry-body h3::before{
		width: 1rem;
		height: 1rem;
		top: 0.5rem;
	}
	.single-guide .entry-body h4{
		font-size: 1rem;
		margin-bottom: 1rem;
		margin-top: 2rem;
	}
	.single-guide .entry-body p{
		font-size: 0.9375rem;
		line-height: 1.875;
	}
	.single-guide .entry-body p:not(:last-child){
		margin-bottom: 2rem;
	}
	.single-guide .entry-body ul.wp-block-list{
		margin: 4rem 0;
	}
	.single-guide .entry-body ul.wp-block-list:not(:last-child){
		margin: 2rem 0;
	}
	.single-guide .entry-body ul.wp-block-list li{
		font-size: 0.9375rem;
		padding-left: 1.65rem;
	}
	.single-guide .entry-body ul.wp-block-list li::before{
		width: 1.125rem;
		height: 1.125rem;
		top: 0.5rem;
	}
	.single-guide .entry-body ul.wp-block-list li:not(:last-child){
		margin-bottom: 0.5rem;
	}
	.single-guide .entry-body ol.wp-block-list{
		margin: 2rem 0 0 0;
	}
	.single-guide .entry-body ol.wp-block-list:not(:last-child){
		margin: 4rem 0;
	}
	.single-guide .entry-body ol.wp-block-list li{
		font-size: 0.9375rem;
		padding-left: 1.125rem;
	}
	.single-guide .entry-body ol.wp-block-list li::before{
		top: 0.25rem;
		font-size: 1.125rem;
	}
	.single-guide .entry-body ol.wp-block-list li:not(:last-child){
		margin-bottom: 0.5rem;
	}
	.single-guide .entry-body .wp-block-quote{
		padding: 1rem 1rem 1rem 3rem;
	}
	.single-guide .entry-body .wp-block-quote::before{
		width: 2rem;
		height: 2rem;
	}
	.single-guide .page-nav{
		margin-top: 2rem;
	}
	.single-guide .page-nav ul{
		column-gap: 1rem;
	}
	.single-guide .page-nav ul .nav__item--prev,
	.single-guide .page-nav ul .nav__item--next{
		width: calc(50% - 0.5rem);
	}
	.single-guide .page-nav ul .nav__item--prev a,
	.single-guide .page-nav ul .nav__item--next a{
		column-gap: 0.5rem;
	}
	.single-guide .page-nav ul .nav__item--prev a i,
	.single-guide .page-nav ul .nav__item--next a i{
		width: 1.75rem;
		height: 1.75rem;
		font-size: 0.75rem;
		line-height: 1.75rem;
	}
	.single-guide .page-nav ul .nav__item--prev a span,
	.single-guide .page-nav ul .nav__item--next a span{
		font-size: 0.875rem;
	}
	.single-guide .page-nav ul .nav__item--news{
		display: none;
	}
	.single-guide .block_btn{
		text-align: center;
		margin-top: 2rem;
	}
}
/**
/* お問い合わせページ CSS
----------------------------------------------- */
.contact-wrap .page-head-guide{
	padding-bottom: 5rem;
}
.contact-wrap .tel-box{
	text-align: center;
	border: 1px solid #D6D6D6;
	padding: 3.5rem 3rem 3rem 3rem;
}
.contact-wrap .tel-box h3{
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 0.5rem;
}
.contact-wrap .tel-box .tel_btn{
	margin-top: 1rem;
}
.contact-wrap .tel-box .tel_btn li a{
	display: flex;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	color: #007DE8;
	font-family: "Mohave", sans-serif;
	font-size: 3.625rem;
	font-weight: 700;
	line-height: 1;
}
.contact-wrap .tel-box .tel_btn li a span{
	color: #000000;
	font-size: 2.5rem;
	font-weight: 600;
	margin-right: 1rem;
}
.contact-wrap .tel-box .hours{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.125;
}
.contact-wrap .tel-box .charge{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
	margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.contact-wrap .page-head-guide{
		padding-bottom: 3rem;
	}
	.contact-wrap .tel-box{
		padding: 1.5rem 1.25rem 1.5rem 1.25rem;
	}
	.contact-wrap .tel-box h3{
		font-size: 1.25rem;
	}
	.contact-wrap .tel-box .tel_btn{
		margin-top: 1rem;
	}
	.contact-wrap .tel-box .tel_btn li a{
		font-size: 2.625rem;
	}
	.contact-wrap .tel-box .tel_btn li a span{
		font-size: 1.5rem;
		margin-right: 0.58rem;
	}
	.contact-wrap .tel-box .hours{
		font-size: 0.9375rem;
	}
	.contact-wrap .tel-box .charge{
		font-size: 0.9375rem;
		margin-top: 1rem;
	}
}
/*　　お問い合わせフォーム　　*/
.contact-guide{
	padding: 8rem 0;
}
.contact-guide h2{
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 1rem;
}
.contact-guide .form-box{
	margin-top: 4.5rem;
}
.form-box dl:not(:last-child){
	margin-bottom: 3.5rem;
}
.form-box dl dt{
	color: #1D1D1D;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.375;
	letter-spacing: 0.04em;
	margin-bottom: 1rem;
}
.form-box dl dt.required::after{
	position: relative;
	display: inline-block;
	content: "";
	background: #C40000;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 100%;
	top: -0.125rem;
	margin-left: 1.5rem;
}
.form-box dl dd{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
}
.form-box dl dd ul.flex{
	column-gap: 1.5rem;
}
.form-box dl dd ul.flex li{
	width: calc(50% - 0.75rem);
}
.form-box dl dd ul.flex li span.s-text{
	display: inline-block;
	color: #1D1D1D;
	font-weight: 500;
	margin-bottom: 0.5rem;
}
.form-box dl dd .note{
	color: #1D1D1D;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.35;
	margin-top: 0.5rem;
}
input[type="date"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select{
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #E0E0E0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.375;
	padding: 1.5rem;
}
input[type="date"]::placeholder,
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder{
	color: #8E8E8E;
}
input[type="date"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
textarea:-ms-input-placeholder{
	color: #8E8E8E;
}
input[type="date"]::-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="url"]::-ms-input-placeholder,
textarea::-ms-input-placeholder{
	color: #8E8E8E;
}
textarea{
	height: 16.25rem;
}
.wpcf7-list-item {
	display: inline-block;
	line-height: 1.65;
	margin: 0;
}
.wpcf7-radio .wpcf7-list-item{
	display: block;
}
.wpcf7-radio .wpcf7-list-item + .wpcf7-list-item{
	margin-top: 0.625rem;
}
.wpcf7-radio label{
	display: flex;
	align-items: center;
	column-gap: 1rem;
	width: fit-content;
	line-height: 1;
	cursor: pointer;
}
.wpcf7-radio input[type=radio]{
	appearance: none;
	position: relative;
	background-color: #FFFFFF;
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid #D6D6D6;
	border-radius: 9999px;
	cursor: pointer;
}
.wpcf7-radio input[type=radio]:checked::after{
	content: "";
	position: absolute;
	inset: 0;
	width: 1rem;
	height: 1rem;
	margin: auto;
	border-radius: 9999px;
	background-color: #007DE8;
}
.wpcf7-checkbox{
	display: flex;
	flex-wrap: wrap;
	column-gap: 1.5rem;
	row-gap: 1rem;
}
.wpcf7-checkbox .wpcf7-list-item{
	display: block;
	width: calc(50% - 0.75rem);
}
.wpcf7-checkbox label{
	display: flex;
	align-items: center;
	column-gap: 0.5rem;
	width: fit-content;
	line-height: 1;
	cursor: pointer;
}
.wpcf7-checkbox .wpcf7-list-item-label{
	width: calc(100% - 2.25rem);
}
input[type=checkbox]{
	appearance: none;
	position: relative;
	background: #FFFFFF;
	width: 1.75rem;
	height: 1.75rem;
	border: 1px solid #D6D6D6;
	border-radius: 0.25rem;
	cursor: pointer;
	margin: 0;
}
input[type=checkbox]:checked::after{
	content: "";
	position: absolute;
	top: 0.5rem;
	left: 0.35rem;
	width: 1rem;
	height: 0.5rem;
	border-bottom: 3px solid #007DE8;
	border-left: 3px solid #007DE8;
	transform: rotate(-45deg);
}
.wpcf7-spinner{
	display: none;
}
.form-captcha{
	text-align: center;
	margin-top: 2.5rem;
}
.submit_btn{
	text-align: center;
	margin-top: 2.5rem;
}
.submit_btn li{
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 24.5rem;
}
.submit_btn li::after{
	position: absolute;
	background: url(../img/icon/arrow_b.svg) no-repeat;
	background-size: cover;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 1.5rem;
	height: 1.5rem;
}
input[type="submit"] {
	display: block;
	width: 100%;
	background: #FFFFFF;
	color: #292929;
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: left;
	border: 1px solid #D6D6D6;
	padding: 1.5rem 3rem;
}
@media only screen and (max-width: 767px) {
	.contact-guide{
		padding: 3.5rem 0;
	}
	.contact-guide h2{
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
	.contact-guide .form-box{
		margin-top: 2.5rem;
	}
	.form-box dl:not(:last-child){
		margin-bottom: 2.5rem;
	}
	.form-box dl dt{
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}
	.form-box dl dt.required::after{
		width: 0.3125rem;
		height: 0.3125rem;
		/* top: -0.125rem; */
		margin-left: 1rem;
	}
	.form-box dl dd{
		font-size: 0.9375rem;
	}
	.form-box dl dd ul.flex{
		column-gap: 0.5rem;
	}
	.form-box dl dd ul.flex li{
		width: calc(50% - 0.25rem);
	}
	.form-box dl dd ul.flex li span.s-text{
		margin-bottom: 0.3125rem;
	}
	.form-box dl dd .note{
		font-size: 0.75rem;
		margin-top: 0.5rem;
	}
	input[type="date"],
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="url"],
	textarea,
	select{
		font-size: 0.9375rem;
		padding: 0.875rem;
	}
	textarea{
		height: 10.25rem;
	}
	.wpcf7-radio .wpcf7-list-item + .wpcf7-list-item{
		margin-top: 0.5rem;
	}
	.wpcf7-radio label{
		column-gap: 0.5rem;
	}
	.wpcf7-radio input[type=radio]{
		width: 1.25rem;
		height: 1.25rem;
	}
	.wpcf7-radio input[type=radio]:checked::after{
		width: 0.75rem;
		height: 0.75rem;
	}
	.wpcf7-checkbox{
		column-gap: 1.5rem;
		row-gap: 1rem;
	}
	.wpcf7-checkbox .wpcf7-list-item{
		width: calc(50% - 0.75rem);
	}
	.wpcf7-checkbox label{
		column-gap: 0.5rem;
	}
	.wpcf7-checkbox .wpcf7-list-item-label{
		width: calc(100% - 0.25rem);
	}
	input[type=checkbox]{
		width: 1.5rem;
		height: 1.5rem;
	}
	input[type=checkbox]:checked::after{
		top: 0.45rem;
		left: 0.25rem;
		width: 0.75rem;
		height: 0.375rem;
		border-bottom: 2px solid #007DE8;
		border-left: 2px solid #007DE8;
	}
	.form-captcha{
		margin-top: 2rem;
	}
	.submit_btn{
		margin-top: 2rem;
	}
	.submit_btn li{
		max-width: 20.375rem;
	}
	.submit_btn li::after{
		right: 1.25rem;
		width: 1.25rem;
		height: 1.25rem;
	}
	input[type="submit"] {
		font-size: 1rem;
		padding: 1.5rem;
	}
}
/*　　プライバシーポリシー　　*/
.contact-guide .privacy-box{
	margin-top: 3rem;
}
.contact-guide .privacy-box .acceptance-text{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.45;
	text-align: right;
	margin-top: 1.5rem;
}
.contact-guide .privacy-box .acceptance-text label{
	display: flex;
	align-items: center;
	column-gap: 1rem;
	width: fit-content;
	line-height: 1;
	cursor: pointer;
}
.contact-guide .privacy-box .privacy-text{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.56;
	text-align: center;
}
.contact-guide .privacy-box .box{
	height: 14.75rem;
	overflow-y: scroll;
	padding-right: 2.5rem;
	margin-top: 2rem;
}
.contact-guide .privacy-box .box .privacy-ttl{
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.03em;
	margin-bottom: 2rem;
}
.contact-guide .privacy-box .box p{
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.42;
	letter-spacing: 0.05em;
}
.contact-guide .privacy-box .box p:not(:last-child),
.contact-guide .privacy-box .box dl:not(:last-child){
	margin-bottom: 1.5rem;
}
.contact-guide .privacy-box .box dl dt{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}
.contact-guide .privacy-box .box dl dd{
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.42;
	letter-spacing: 0.05em;
}
.contact-guide .privacy-box .box dl dd .decimal{
	list-style: decimal;
	margin-left: 1.25rem;
}
.contact-guide .privacy-box .box dl dd .decimal li{
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.42;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
	.contact-guide .privacy-box{
		margin-top: 3rem;
	}
	.contact-guide .privacy-box .acceptance-text{
		font-size: 0.9375rem;
	}
	.contact-guide .privacy-box .acceptance-text label{
		column-gap: 0.5rem;
	}
	.contact-guide .privacy-box .privacy-text{
		font-size: 0.9375rem;
		text-align: left;
	}
	.contact-guide .privacy-box .box{
		height: 10.75rem;
		padding-right: 1.5rem;
	}
	.contact-guide .privacy-box .box .privacy-ttl{
		font-size: 1rem;
		margin-bottom: 1rem;
	}
	.contact-guide .privacy-box .box p{
		font-size: 0.8125rem;
	}
	.contact-guide .privacy-box .box p:not(:last-child),
	.contact-guide .privacy-box .box dl:not(:last-child){
		margin-bottom: 1rem;
	}
	.contact-guide .privacy-box .box dl dt{
		font-size: 0.9375rem;
		margin-bottom: 0.3125rem;
	}
	.contact-guide .privacy-box .box dl dd{
		font-size: 0.8125rem;
	}
	.contact-guide .privacy-box .box dl dd .decimal li{
		font-size: 0.8125rem;
	}
}
/*　　お問合わせ完了　　*/
.thanks-guide h2{
	font-family: "Noto Serif JP", serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.375;
	text-align: center;
	margin-bottom: 3rem;
}
.thanks-guide p{
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 2;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.thanks-guide h2{
		font-size: 1.375rem;
		margin-bottom: 2rem;
	}
	.thanks-guide p{
		font-size: 0.9375rem;
		line-height: 2;
	}
}
/**
/* 共通ブロック CSS
----------------------------------------------- */
/*　　お問い合わせナビ　　*/
.contens-contact-guide{
	background: url(../img/contens-contact_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 5rem 0 4.5rem 0;
}
.contens-contact-guide .guide-ttl{
	margin-bottom: 1rem;
}
.contens-contact-guide .guide-ttl .roma{
	font-size: 5.875rem;
}
.contens-contact-guide .p-text{
	font-weight: 500;
	line-height: 2;
}
.contens-contact-guide .btn-grid{
	column-gap: 1.5rem;
	margin-top: 2.5rem;
}
.contens-contact-guide .contact-btn{
	width: calc(50% - 0.75rem);
	max-width: 31rem;
}
.contens-contact-guide .contact-btn .contact a{
	background: #C40000;
	position: relative;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	align-items: center;
	font-family: "Mohave", sans-serif;
	color: #FFFFFF;
	font-size: 2.0625rem;
	font-weight: 500;
	line-height: 1.35;
	padding: 1.75rem 4rem 1.75rem 2rem;
}
.contens-contact-guide .contact-btn .contact a .icon{
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	width: 3.5rem;
	margin-right: 0.5rem;
}
.contens-contact-guide .contact-btn .contact a:hover .icon img.icon_w,
.contens-contact-guide .contact-btn .contact a .icon img.icon_r{
	display: none;
}
.contens-contact-guide .contact-btn .contact a:hover .icon img.icon_r{
	display: inline-block;
}
.contens-contact-guide .contact-btn .contact a:hover{
	background: #FFFFFF;
	color: #C40000;
}
.contens-contact-guide .description-btn{
	width: calc(50% - 0.75rem);
	max-width: 31rem;
}
.contens-contact-guide .description-btn li a{
	display: block;
	font-size: 1.4375rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	border: 2px solid #FFFFFF;
	padding: 2.35rem 1.5rem;
}
.contens-contact-guide .contact-items{
	padding: 1.5rem;
}
.contens-contact-guide .contact-items .tel-btn li a{
	display: flex;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	font-family: "Mohave", sans-serif;
	font-size: 3.625rem;
	font-weight: 700;
	line-height: 1;
}
.contens-contact-guide .contact-items .tel-btn li a span{
	font-size: 2.5rem;
	font-weight: 600;
	margin-right: 1rem;
}
.contens-contact-guide .contact-items .hours{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25;
}
.contens-contact-guide .contact-charge{
	border-right: 1px solid #FFFFFF;
	margin-right: 1.75rem;
	padding-right: 3.25rem;
}
.contens-contact-guide .contact-charge dl dt,
.contens-contact-guide .contact-charge dl dd{
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 400;
}
@media only screen and (max-width: 767px) {
	.contens-contact-guide{
		background: url(../img/sp_contens-contact_bg.jpg) no-repeat center;
		background-size: cover;
		padding: 2.5rem 0 3rem 0;
	}
	.contens-contact-guide .guide-ttl{
		margin-bottom: 0.875rem;
	}
	.contens-contact-guide .guide-ttl .roma{
		font-size: 2.9375rem;
	}
	.contens-contact-guide .p-text{
		font-weight: 400;
		line-height: 1.865;
		text-align: left;
	}
	.contens-contact-guide .btn-grid{
		column-gap: 0;
		margin-top: 1.75rem;
	}
	.contens-contact-guide .contact-btn{
		width: 100%;
		max-width: 100%;
		text-align: center;
	}
	.contens-contact-guide .contact-btn li{
		display: inline-block;
	    width: 100%;
	    max-width: 20.375rem;
	}
	.contens-contact-guide .contact-btn .contact{
		margin-top: 0.75rem;
	}
	.contens-contact-guide .contact-btn .contact a{
		font-size: 1.75rem;
		border: 1px solid #C40000;
		padding: 1.125rem 3rem 0.75rem 2rem;
	}
	.contens-contact-guide .contact-btn .contact a .icon{
		width: 2.25rem;
		margin-top: -0.25rem;
	}
	.contens-contact-guide .contact-btn .description a{
		display: block;
		font-size: 1.0625rem;
		font-weight: 500;
		line-height: 1.25;
		text-align: center;
		border: 1px solid #FFFFFF;
		padding: 1.45rem 1rem;
	}
	.contens-contact-guide .contact-btn .tel a{
		display: flex;
		align-items: center;
		-webkit-justify-content: center;
		justify-content: center;
		color: #FFFFFF;
		font-size: 1.0625rem;
		font-weight: 500;
		line-height: 1.25;
		border: 1px solid #FFFFFF;
		padding: 1.125rem 3rem 0.75rem 2rem;
	}
	.contens-contact-guide .contact-btn .tel a .icon{
		display: block;
		width: 2.25rem;
		margin-top: -0.25rem;
		margin-right: 0.75rem;
	}
	.contens-contact-guide .contact-charge{
		border-right: none;
		margin-right: 0;
		padding-right: 0;
		margin-bottom: 1.25rem;
	}
	.contens-contact-guide .contact-charge dl dt,
	.contens-contact-guide .contact-charge dl dd{
		font-size: 1rem;
		text-align: center;
	}
}
/**
/* エラー CSS
----------------------------------------------- */
.error-guide .entry p{
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.68;
	text-align: center;
}
.error-guide .entry .error_url{
	padding: 2rem 0;
}
.error-guide .entry .block_btn{
	margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
	.error-guide .entry p{
		font-size: 0.9375rem;
	}
	.error-guide .entry .error_url{
		padding: 1.5rem 0;
	}
	.error-guide .entry .block_btn{
		margin-top: 2rem;
	}
}
