@charset "utf-8";
/**
/* 共通 CSS
----------------------------------------------- */
/*　　アニメーション　　*/
.decoration-text-container{
	position: absolute;
	left:  0;
	bottom: 0;
}
.decoration-text-container .decoration-text{
	display: flex;
	font-family: "Poppins", sans-serif;
	color: #FCFCFC;
	font-size: 9.5rem;
	font-weight: 500;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
}
.decoration-text-container .decoration-text div:first-child {
	-webkit-animation: loopLeft1 80s -40s linear infinite;
	animation: loopLeft1 80s -40s linear infinite;
}
.decoration-text-container .decoration-text div:last-child {
	-webkit-animation: loopLeft2 80s linear infinite;
	animation: loopLeft2 80s linear infinite;
}
@-webkit-keyframes loopLeft1 {
	0% {
		-webkit-transform: translateX(100%);
			transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
	}
}
@keyframes loopLeft2 {
	0% {
		-webkit-transform: translateX(0);
			transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-200%);
			transform: translateX(-200%);
	}
}
@media only screen and (max-width: 767px) {
	.decoration-text-container{
		bottom: 0.625rem;
	}
	.decoration-text-container .decoration-text{
		font-size: 4.75rem;
	}
}
/*　　見出し　　*/
.guide-ttl{
	position: relative;
}
.guide-ttl.border::before,
.guide-ttl.border::after{
	position: absolute;
	content: '';
	height: 2px;
	bottom: -1rem;
}
.guide-ttl.border::before{
	background: #C5D9E5;
	width: 4.75rem;
	left: 0;
}
.guide-ttl.border::after{
	background: #2986AF;
	width: 2.375rem;
	left: 2.375rem;
}
.guide-ttl.border.center::before{
	left: 50%;
	transform: translateX(-50%);
}
.guide-ttl.border.center::after{
	left: calc(50% + 1.25rem);
	transform: translateX(-50%);
}
.guide-ttl .roma{
	font-family: "Poppins", sans-serif;
	font-size: 5.375rem;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
}
.guide-ttl h2{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.46;
	letter-spacing: 0.03em;
}
.guide-ttl.center h2{
	margin-top: -2.125rem;
}
@media only screen and (max-width: 767px) {
	.guide-ttl.border::before,
	.guide-ttl.border::after{
		height: 1px;
		bottom: -0.75rem;
	}
	.guide-ttl.border::before{
		width: 2.375rem;
	}
	.guide-ttl.border::after{
		width: 1.1875rem;
		left: 1.1875rem;
	}
	.guide-ttl.border.center::after{
		left: calc(50% + 0.59375rem);
	}
	.guide-ttl .roma{
		font-size: 2.6875rem;
	}
	.guide-ttl h2{
		font-size: 1rem;
	}
	.guide-ttl.center h2{
		margin-top: -1.25rem;
	}
}
/*　　アニメーション　　*/
.js-inview{
	opacity: 0;
	transition: 1.5s;
}
.js-inview.active{
	opacity: 1;
}
/**
/* トップページ CSS
----------------------------------------------- */
/*　　MV　　*/
.mv-view{
	position: relative;
	background: url(../img/top/mv.png) no-repeat right top;
	background-size: cover;
	height: 100vh;
}
.mv-view .view-box{
	position: absolute;
	color: #FFFFFF;
	top: calc(50% + 6rem);
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
}
.mv-view .view-box .roma{
	font-family: "Poppins", sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 1rem;
}
.mv-view .view-box .text{
	font-size: 2.8125rem;
	font-weight: 700;
	line-height: 1.35;
}
.mv-view .view-box .text img{
	width: 26.875rem;
	margin-left: -1rem;
}
.mv-view .view-scroll{
	position: absolute;
	bottom: -8.5rem;
	right: 4rem;
	z-index: 1000;
}
.mv-view .view-scroll a{
	display: block;
	font-family: "Poppins", sans-serif;
	color: #000000;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.25;
	writing-mode: vertical-lr;
	border-left: 1px solid #9AA9AD;
	padding-left: 0.375rem;
	padding-bottom: 15rem;
}
.mv-view .decoration-text-container{
	bottom: 5.5rem;
}
.mv-view .decoration-text-container .decoration-text{
	color: rgb(252, 252, 252, 0.58);
	font-weight: 200;
}
@media only screen and (max-width: 767px) {
	.mv-view{
		background: url(../img/top/sp_mv.png) no-repeat right top;
		background-size: cover;
	}
	.mv-view .view-box{
		top: calc(50% + 1.875rem);
	}
	.mv-view .view-box .roma{
		font-size: 1rem;
		margin-bottom: 0.75rem;
	}
	.mv-view .view-box .text{
		font-size: 1.875rem;
	}
	.mv-view .view-box .text img{
		width: 18.4375rem;
		margin-left: -0.625rem;
	}
	.mv-view .view-scroll{
		bottom: 7.5rem;
		right: 1rem;
	}
	.mv-view .view-scroll a{
		font-size: 0.8125rem;
		padding-left: 0.375rem;
		padding-bottom: 6.4375rem;
	}
	.mv-view .decoration-text-container{
		bottom: 8.5rem;
	}
}
/*　　About us　　*/
.front-about{
	padding: 8.5rem 0 6.5rem 0;
}
.front-about::before{
	position: absolute;
	content: "";
	background: url(../img/top/about_bg.png) no-repeat center;
	background-size: cover;
	width: 95%;
	max-width: 1628px;
	height: 36.75rem;
	top: 8.5rem;
	right: 0;
}
.front-about .about-box{
	background: #0042D8;
	background: linear-gradient(135deg,rgba(0, 206, 255, 1) 0%, rgba(0, 66, 216, 1) 100%);
	color: #ffffff;
	width: 90%;
	max-width: 650px;
	position: relative;
	margin-top: -19.75rem;
	z-index: 1000;
	padding: 4.375rem 6rem 6.25rem 6rem;
}
.front-about .about-box::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: -2rem;
	left: 2rem;
	border: 2px solid rgba(255, 255, 255, .6);
}
.front-about .about-box::after{
	position: absolute;
	content: "";
	background: url(../img/top/about_bg2.png) no-repeat center;
	background-size: cover;
	width: 7.5rem;
	height: 6.0625rem;
	top: 1.25rem;
	right: -2.5rem;
}
.front-about .about-box .roma{
	position: relative;
	font-family: "Poppins", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 3rem;
}
.front-about .about-box .roma::after{
	position: absolute;
	background: #FFFFFF;
	content: '';
	width: 1.5rem;
	left: 0;
	height: 1px;
	bottom: -1rem;
}
.front-about .about-box .text{
	font-size: 1.8125rem;
	font-weight: 700;
	line-height: 1.78;
	letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
	.front-about{
		padding: 2rem 0 2.25rem 0;
	}
	.front-about::before{
		background: url(../img/top/sp_about_bg.png) no-repeat left top;
		background-size: cover;
		width: 110%;
		height: 12.5rem;
		top: 2rem;
		right: 0;
	}
	.front-about .about-box{
		width: 100%;
		max-width: 100%;
		margin-top: -10rem;
		padding: 2rem 2rem 2.5rem 2rem;
	}
	.front-about .about-box::before{
		top: -0.75rem;
		left: 0.75rem;
	}
	.front-about .about-box::after{
		width: 3.75rem;
		height: 3.03125rem;
		top: 1rem;
		right: -0.75rem;
	}
	.front-about .about-box .roma{
		margin-bottom: 1.5rem;
	}
	.front-about .about-box .roma::after{
		width: 0.75rem;
		bottom: -0.5rem;
	}
	.front-about .about-box .text{
		font-size: 1.0625rem;
	}
}
/*　　当社の強み　　*/
.front-strength{
	padding: 0 0 6.5rem 0;
}
.front-strength::before{
	position: absolute;
	content: "";
	background: url(../img/top/strength_bg.jpg) no-repeat center;
	background-size: cover;
	width: 80%;
	max-width: 1340px;
	height: 36.75rem;
	bottom: 0;
	left: 0;
}
.front-strength .bg-roma{
	position: absolute;
	left: 0;
	bottom: 6rem;
	height: 43.4375rem;
	font-family: "Poppins", sans-serif;
	color: #ffffff;
	font-size: 5.375rem;
	font-weight: 500;
	line-height: 1.35;
	text-transform: uppercase;
	writing-mode: vertical-lr;
}
.front-strength .inner-wrap{
	position: relative;
	background: #ffffff;
	max-width: 1600px;
}
.front-strength .inner-wrap::before{
	content: "";
	top: 0;
	left: 0;
	border-bottom: 4rem solid transparent;
	border-left: 4rem solid #04A1F3;
	position: absolute;
	z-index: 100;
}
.front-strength .inner-wrap::after{
	content: "";
	bottom: 0;
	right: 0;
	border-top: 4rem solid transparent;
	border-right: 4rem solid #04A1F3;
	position: absolute;
	z-index: 100;
}
.front-strength .box{
	max-width: 1200px;
	margin: 0 auto;
	padding: 5.3125rem 2rem 7rem 2rem;
}
.front-strength .guide-ttl{
	margin-bottom: 5rem;
}
.front-strength .guide-ttl .roma{
	color: #EDEDED;
}
.front-strength .strength-list{
	column-gap: 3rem;
	row-gap: 4rem;
}
.front-strength .strength-list .strength-items{
	width: calc(33.3333% - 2rem);
}
.front-strength .strength-list .strength-items .imageArea{
	height: 16rem;
	margin-bottom: 1.5rem;
}
.front-strength .strength-list .strength-items .no{
	font-family: "Poppins", sans-serif;
	color: #04A1F3;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.16;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
.front-strength .strength-list .strength-items h3{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.front-strength{
		padding: 0 0 2.25rem 0;
	}
	.front-strength::before{
		width: 90%;
		height: 10rem;
	}
	.front-strength .bg-roma{
		display: none;
	}
	.front-strength .inner-wrap{
		width: calc(100% - 1.5rem);
	}
	.front-strength .inner-wrap::before{
		border-bottom: 2rem solid transparent;
		border-left: 2rem solid #04A1F3;
	}
	.front-strength .inner-wrap::after{
		border-top: 2rem solid transparent;
		border-right: 2rem solid #04A1F3;
	}
	.front-strength .box{
		padding: 2rem 0.75rem 2.5rem 0.75rem;
	}
	.front-strength .guide-ttl{
		margin-bottom: 1.75rem;
	}
	.front-strength .strength-list{
		column-gap: 0.75rem;
		row-gap: 1.75rem;
	}
	.front-strength .strength-list .strength-items{
		width: calc(50% - 0.375rem);
	}
	.front-strength .strength-list .strength-items .imageArea{
		height: 7.1875rem;
		margin-bottom: 0.5rem;
	}
	.front-strength .strength-list .strength-items .no{
		font-size: 0.875rem;
		margin-bottom: 0.25rem;
	}
	.front-strength .strength-list .strength-items h3{
		font-size: 1.0625rem;
	}
}
/*　　事業内容　　*/
.front-business{
	padding: 6.625rem 0 7.5rem 0;
}
.front-business .bg-roma{
	position: absolute;
	right: 0;
	bottom: 7.5rem;
	height: 47.4375rem;
	font-family: "Poppins", sans-serif;
	color: #ffffff;
	font-size: 5.375rem;
	font-weight: 500;
	line-height: 1.35;
	text-transform: uppercase;
	writing-mode: vertical-lr;
}
.front-business .inner{
	max-width: 1040px;
}
.front-business .guide-ttl{
	margin-bottom: 4rem;
}
.front-business .guide-ttl .roma{
	color: #ffffff;
}
.front-business h3{
	text-align: center;
	margin-bottom: 7.5rem;
}
.front-business h3 span{
	position: relative;
	display: inline-block;
	font-size: 2.375rem;
	font-weight: 700;
	line-height: 1.65;
	letter-spacing: 0.08em;
	padding: 0 8.5rem;
}
.front-business h3 span:before,
.front-business h3 span:after{
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 5.5rem;
	height: 1px;
	background-color: #9CB1C1;
}
.front-business h3 span:before{
	left: 0;
}
.front-business h3 span:after{
	right: 0;
}
.front-business .box{
	background: linear-gradient(90deg, #F2F2F2 0%, #F2F2F2 15%, #FFFFFF 15%, #FFFFFF 100%);
}
.front-business .box .imageArea{
	position: relative;
	width: 43%;
	top: -3.5rem;
}
.front-business .box .contentArea{
	width: 57%;
	display: flex;
	flex-direction: column;
	padding: 3.5rem;
}
.front-business .box .contentArea h4{
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 1rem;
}
.front-business .box .contentArea p{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
}
.front-business .box .block_btn{
	text-align: right;
	margin-top: auto;
}
@media only screen and (max-width: 767px) {
	.front-business{
		padding: 2.5rem 0;
	}
	.front-business .bg-roma{
		display: none;
	}
	.front-business .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.front-business h3{
		margin-bottom: 3.25rem;
	}
	.front-business h3 span{
		font-size: 1.25rem;
		padding: 0;
	}
	.front-business h3 span:before,
	.front-business h3 span:after{
		content: none;
	}
	.front-business .box{
		background: #FFFFFF;
	}
	.front-business .box .imageArea{
		width: 100%;
		top: -1.5rem;
		text-align: center;
	}
	.front-business .box .imageArea img{
		width: 80%;
	}
	.front-business .box .contentArea{
		width: 100%;
		text-align: center;
		padding: 1rem 1.3125rem 1.75rem 1.3125rem;
	}
	.front-business .box .contentArea h4{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.front-business .box .contentArea p{
		font-size: 0.9375rem;
	}
	.front-business .box .block_btn{
		text-align: center;
		margin-top: 1.5rem;
	}
}
/*　　施工事例　　*/
.front-case{
	background: #DFE7EB;
	padding: 4rem 0 3.5rem 0;
}
.front-case .guide-ttl{
	margin-bottom: 3.5rem;
}
.front-case .guide-ttl .roma{
	color: #ffffff;
}
.front-case h3{
	text-align: center;
	margin-bottom: 3.5rem;
}
.front-case h3 span{
	position: relative;
	display: inline-block;
	font-size: 2.375rem;
	font-weight: 700;
	line-height: 1.65;
	letter-spacing: 0.08em;
	padding: 0 8.5rem;
}
.front-case h3 span:before,
.front-case h3 span:after{
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 5.5rem;
	height: 1px;
	background-color: #9CB1C1;
}
.front-case h3 span:before{
	left: 0;
}
.front-case h3 span:after{
	right: 0;
}
.front-case .block_btn{
	margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
	.front-case{
		padding: 2.5rem 0;
	}
	.front-case .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.front-case h3{
		margin-bottom: 1.25rem;
	}
	.front-case h3 span{
		font-size: 1.25rem;
		padding: 0;
	}
	.front-case h3 span:before,
	.front-case h3 span:after{
		content: none;
	}
	.front-case .block_btn{
		margin-top: 2rem;
	}
}
/*　　求人　　*/
.front-recruit{
	padding: 7rem 0 3.4375rem 0;
}
.front-recruit .recruit-grid{
	position: relative;
}
.front-recruit .imageArea{
	width: 80%;
	max-width: 1460px;
	height: 38.75rem;
}
.front-recruit .imageArea img{
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.front-recruit .contentArea{
	background: #0042D8;
	background: linear-gradient(135deg,rgba(0, 206, 255, 1) 0%, rgba(0, 66, 216, 1) 100%);
	color: #ffffff;
	width: 55%;
	max-width: 960px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	padding: 3.5rem 4.5rem;
}
.front-recruit .contentArea .box{
	position: relative;
	max-width: 25.625rem;
}
.front-recruit .contentArea .box::after{
	position: absolute;
	content: "";
	background: url(../img/top/about_bg2.png) no-repeat center;
	background-size: cover;
	width: 7.5rem;
	height: 6.0625rem;
	top: -6rem;
	right: -5rem;
}
.front-recruit .contentArea .roma{
	font-family: "Poppins", sans-serif;
	font-size: 4.6875rem;
	font-weight: 300;
	line-height: 1.4;
}
.front-recruit .contentArea h2{
	font-size: 1.8125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.04em;
	margin-bottom: 2rem;
}
.front-recruit .contentArea .text{
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.04em;
}
.front-recruit .contentArea .block_btn{
	margin-top: 2.5rem;
}
.front-recruit .decoration-text-container{
	bottom: auto;
	top: 54%;
	transform: translateY(-50%);
}
.front-recruit .decoration-text-container .decoration-text{
	color: rgb(252, 252, 252, 0.6);
	font-weight: 200;
}
@media only screen and (max-width: 767px) {
	.front-recruit{
		padding: 2.5rem 0 1.5rem 0;
	}
	.front-recruit .imageArea{
		width: 100%;
		height: 17.5rem;
	}
	.front-recruit .contentArea{
		width: calc(100% - 1.5rem);
		position: relative;
		right: -0.75rem;
		top: auto;
		transform: translateY(0%);
		z-index: 10;
		padding: 1.5rem;
		margin-top: -7rem;
	}
	.front-recruit .contentArea .box{
		max-width: 100%;
	}
	.front-recruit .contentArea .box::after{
		width: 3.75rem;
		height: 3.03125rem;
		top: -0.25rem;
		right: -0.25rem;
	}
	.front-recruit .contentArea .roma{
		font-size: 2.75rem;
	}
	.front-recruit .contentArea h2{
		font-size: 1.25rem;
		margin-bottom: 1.25rem;
	}
	.front-recruit .contentArea .text{
		font-size: 0.9375rem;
	}
	.front-recruit .contentArea .block_btn{
		margin-top: 1.5rem;
	}
	.front-recruit .decoration-text-container{
		bottom: auto;
		top: 8.5rem;
		transform: translateY(0%);
	}
}
/*　　お知らせ　　*/
.front-news{
	padding: 3.4375rem 0 16.25rem 0;
}
.front-news .guide-ttl{
	margin-bottom: 3.5rem;
}
.front-news .guide-ttl .roma{
	color: #ffffff;
}
.front-news .block_btn{
	margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
	.front-news{
		padding: 1.5rem 0 9.375rem 0;
	}
	.front-news .guide-ttl{
		margin-bottom: 2.25rem;
	}
	.front-news .block_btn{
		margin-top: 1.75rem;
	}
	.front-news .decoration-text-container{
		bottom: 0.5rem;
	}
}
/**
/* 下層ページ共通 CSS
----------------------------------------------- */
/*　　ページヘッダー　　*/
.page-view{
	background: url(../img/page-view.jpg) no-repeat;
	background-size: cover;
	margin-top: 6rem;
	padding: 1.5rem 0 2rem 0;
}
.page-view .view-ttl{
	color: #ffffff;
}
.page-view .view-ttl .roma{
	font-family: "Poppins", sans-serif;
	font-size: 5.375rem;
	font-weight: 200;
	line-height: 1.396;
	text-transform: uppercase;
}
.page-view .view-ttl h1{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.03em;
	margin-top: -0.75rem;
}
@media only screen and (max-width: 767px) {
	.page-view{
		margin-top: 3.75rem;
		padding: 1.5rem 0 1.875rem 0;
	}
	.page-view .view-ttl .roma{
		font-size: 2.6875rem;
	}
	.page-view .view-ttl h1{
		font-size: 1rem;
		margin-top: -0.375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.page-view{
		margin-top: 5rem;
	}
}
/**
/* 会社案内 CSS
----------------------------------------------- */
.company-wrap{
	background: #FFFFFF;
}
/*　　メッセージ　　*/
.message-guide{
	padding: 4.5rem 0 7.5rem 0;
}
.message-guide .inner-wrap{
	max-width: 1360px;
}
.message-guide .contentArea{
	position: relative;
	width: 62%;
	padding: 0 5rem 0 4.5rem;
}
.message-guide .contentArea::before,
.message-guide .contentArea::after{
	position: absolute;
	content: '';
}
.message-guide .contentArea::before{
	background: url(../img/company/message-l.png) no-repeat;
	background-size: cover;
	width: 9.375rem;
	height: 5.875rem;
	left: -9.35rem;
	bottom: 1.75rem;
}
.message-guide .contentArea::after{
	background: url(../img/company/message-r.png) no-repeat;
	background-size: cover;
	width: 7.5rem;
	height: 6.0625rem;
	right: -1.875rem;
	top: 0;
}
.message-guide .contentArea .roma{
	position: relative;
	font-family: "Poppins", sans-serif;
	color: #04A1F3;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.16;
	text-transform: uppercase;
	margin-bottom: 4rem;
}
.message-guide .contentArea .roma::after{
	position: absolute;
	background: #04A1F3;
	content: '';
	width: 1.5rem;
	left: 0;
	height: 1px;
	bottom: -1rem;
}
.message-guide .contentArea .comment h2{
	font-size: 3.125rem;
	font-weight: 700;
	line-height: 1.26;
	margin-bottom: 2.5rem;
}
.message-guide .contentArea .comment p{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.11;
	letter-spacing: 0.04em;
	margin-bottom: 3rem;
}
.message-guide .contentArea .comment .name{
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.04em;
	margin-bottom: 0;
}
.message-guide .contentArea .comment .name span{
	font-size: 1.125rem;
	margin-right: 2rem;
}
.message-guide .imageArea{
	width: 38%;
}
@media only screen and (max-width: 767px) {
	.message-guide{
		padding: 2.5rem 0 2.5rem 0;
	}
	.message-guide .contentArea{
		width: 100%;
		padding: 0 0 2rem 0;
	}
	.message-guide .contentArea::before{
		width: 6.375rem;
		height: 3.875rem;
		left: -0.35rem;
		bottom: -3.25rem;
	}
	.message-guide .contentArea::after{
		width: 5rem;
		height: 4.0625rem;
		right: -0.875rem;
		top: 0;
	}
	.message-guide .contentArea .roma{
		font-size: 1rem;
		text-align: center;
		margin-bottom: 3rem;
	}
	.message-guide .contentArea .roma::after{
		width: 1.125rem;
		bottom: -0.75rem;
		left: 50%;
		transform: translateX(-50%);
	}
	.message-guide .contentArea .comment h2{
		font-size: 1.375rem;
		text-align: center;
		margin-bottom: 1.5rem;
	}
	.message-guide .contentArea .comment p{
		font-size: 0.9375rem;
		line-height: 2;
		margin-bottom: 1.5rem;
	}
	.message-guide .contentArea .comment .name{
		font-size: 1rem;
	}
	.message-guide .contentArea .comment .name span{
		font-size: 0.9375rem;
		margin-right: 1rem;
	}
	.message-guide .imageArea{
		width: 100%;
	}
}
/*　　行動指針　　*/
.guidelines-guide{
	background: url(../img/company/guidelines_bg.jpg) no-repeat;
	background-size: cover;
	padding: 4rem 0;
}
.guidelines-guide .inner{
	background: #FFFFFF;
	padding: 4rem 2.5rem 4.5rem 2.5rem;
}
.guidelines-guide .guide-ttl{
	margin-bottom: 4.5rem;
}
.guidelines-guide .guide-ttl .roma{
	color: #EDEDED;
}
.guidelines-guide .contentArea p{
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.04em;
	text-align: center;
}
.guidelines-guide .contentArea p:not(:last-child){
	margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
	.guidelines-guide{
		padding: 2rem 0;
	}
	.guidelines-guide .inner{
		padding: 3rem 2rem 2.5rem 2rem;
	}
	.guidelines-guide .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.guidelines-guide .contentArea p{
		font-size: 1rem;
		text-align: left;
	}
	.guidelines-guide .contentArea p:not(:last-child){
		margin-bottom: 1.5rem;
	}
}
/*　　会社概要　　*/
.company-guide{
	background: #F2F2F2;
	padding: 5rem 0 16.875rem 0;
}
.company-guide .guide-ttl{
	width: 40%;
}
.company-guide .guide-ttl .roma{
	color: #FFFFFF;
}
.company-guide .company-tbl{
	width: 60%;
	max-width: 45rem;
	margin-top: 2rem;
}
.company-guide .company-tbl th,
.company-guide .company-tbl td{
	font-size: 1rem;
	line-height: 1.56;
	letter-spacing: 0.06em;
	border-bottom: 1px solid #E2E2E2;
	padding: 1.875rem 0;
}
.company-guide .company-tbl tr:first-child th,
.company-guide .company-tbl tr:first-child td{
	border-top: 1px solid #E2E2E2;
}
.company-guide .company-tbl th{
	width: 13.75rem;
	font-weight: 700;
}
.company-guide .company-tbl td{
	font-weight: 400;
}
@media only screen and (max-width: 767px) {
	.company-guide{
		padding: 3.5rem 0 8rem 0;
	}
	.company-guide .guide-ttl{
		width: 100%;
		text-align: center;
	}
	.company-guide .guide-ttl h2{
		margin-top: -1.25rem;
	}
	.company-guide .guide-ttl::before{
		left: 50%;
		transform: translateX(-50%);
	}
	.company-guide .guide-ttl::after{
		left: calc(50% + 0.59375rem);
		transform: translateX(-50%);
	}
	.company-guide .company-tbl{
		width: 100%;
		max-width: 100%;
		margin-top: 3rem;
	}
	.company-guide .company-tbl th,
	.company-guide .company-tbl td{
		font-size: 0.9375rem;
		padding: 1.25rem 0;
	}
	.company-guide .company-tbl th{
		width: 8.25rem;
	}
}
/**
/* 事業内容ページ CSS
----------------------------------------------- */
/*　　メッセージ　　*/
.service-wrap .head-guide{
	padding: 4.5rem 0 7.5rem 0;
}
.service-wrap .head-guide .imageArea{
	width: 48%;
}
.service-wrap .head-guide .contentArea{
	width: 52%;
	max-width: 43.5rem;
	padding: 0 3.5rem;
}
.service-wrap .head-guide .contentArea h2{
	font-size: 3.125rem;
	font-weight: 700;
	line-height: 1.26;
	margin-bottom: 1rem;
}
.service-wrap .head-guide .contentArea .roma{
	font-family: "Poppins", sans-serif;
	color: #04A1F3;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.16;
	margin-bottom: 2rem;
}
.service-wrap .head-guide .contentArea .text{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.04em;
}
@media only screen and (max-width: 1024px) {
	.service-wrap .head-guide .head-grid{
		align-items: flex-start;
	}
}
@media only screen and (max-width: 767px) {
	.service-wrap .head-guide{
		padding: 2.5rem 0 3.5rem 0;
	}
	.service-wrap .head-guide .imageArea{
		width: 100%;
	}
	.service-wrap .head-guide .contentArea{
		width: 100%;
		max-width: 100%;
		padding: 1.5rem 1.5rem 0 1.5rem;
	}
	.service-wrap .head-guide .contentArea h2{
		font-size: 1.5rem;
		text-align: center;
	}
	.service-wrap .head-guide .contentArea .roma{
		font-size: 0.9375rem;
		margin-bottom: 1rem;
	}
	.service-wrap .head-guide .contentArea .text{
		font-size: 0.9375rem;
	}
}
/*　　提供サービス　　*/
.provided-guide{
	background: #DFE7EB;
	padding: 3.25rem 0 16.25rem 0;
}
.provided-guide .guide-ttl{
	margin-bottom: 4.625rem;
}
.provided-guide .guide-ttl .roma{
	color: #FFFFFF;
}
.provided-guide .box{
	background: #FFFFFF;
	padding: 2.5rem;
}
.provided-guide .box .imageArea{
	width: 43%;
}
.provided-guide .box .contentArea{
	width: 57%;
	padding-left: 2.5rem;
}
.provided-guide .box .contentArea h3{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.65;
	border-bottom: 1px solid #04A1F3;
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
}
.provided-guide .box .contentArea p{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.68;
}
.provided-guide .decoration-text-container{
	bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.provided-guide{
		padding: 3rem 0px 8.25rem;
	}
	.provided-guide .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.provided-guide .box{
		padding: 1.25rem;
	}
	.provided-guide .box .imageArea{
		width: 100%;
		margin-bottom: 1rem;
	}
	.provided-guide .box .contentArea{
		width: 100%;
		padding-left: 0;
	}
	.provided-guide .box .contentArea h3{
		font-size: 1.125rem;
		text-align: center;
		padding-bottom: 0.675rem;
		margin-bottom: 0.675rem;
	}
	.provided-guide .box .contentArea p{
		font-size: 0.9375rem;
	}
	.provided-guide .decoration-text-container{
		bottom: 0.5rem;
	}
}
/*　　私たちの強み　　*/
.strength-guide{
	padding: 4.5rem 0 6rem 0;
}
.strength-guide .guide-ttl{
	margin-bottom: 4rem;
}
.strength-guide .guide-ttl .roma{
	color: #FFFFFF;
}
.strength-guide h3{
	text-align: center;
	margin-bottom: 3.5rem;
}
.strength-guide h3 span{
	position: relative;
	display: inline-block;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.65;
	letter-spacing: 0.08em;
	padding: 0 8.5rem;
}
.strength-guide h3 span:before,
.strength-guide h3 span:after{
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 5.5rem;
	height: 1px;
	background-color: #9CB1C1;
}
.strength-guide h3 span:before{
	left: 0;
}
.strength-guide h3 span:after{
	right: 0;
}
.strength-guide .strength-list{
	column-gap: 3rem;
	row-gap: 3rem;
}
.strength-list .strength-items{
	width: calc(33.3333% - 2rem);
}
.strength-list .strength-items .imageArea{
	height: 16rem;
}
.strength-list .strength-items .imageArea img{
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.strength-list .strength-items .no{
	text-align: center;
}
.strength-list .strength-items .no span{
	display: inline-block;
	background: #F2F2F2;
	width: 3.875rem;
	height: 3.875rem;
	font-family: "Poppins", sans-serif;
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 3.875rem;
	text-align: center;
	border-radius: 100%;
	margin-top: -2rem;
}
.strength-list .strength-items h4{
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}
.strength-list .strength-items .text{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.625;
}
@media only screen and (max-width: 767px) {
	.strength-guide{
		padding: 3rem 0 4rem 0;
	}
	.strength-guide .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.strength-guide h3{
		margin-bottom: 1.5rem;
	}
	.strength-guide h3 span{
		font-size: 1.25rem;
		line-height: 1.45;
		padding: 0 3rem;
	}
	.strength-guide h3 span:before,
	.strength-guide h3 span:after{
		width: 2rem;
	}
	.strength-guide .strength-list{
		column-gap: 0;
		row-gap: 2rem;
	}
	.strength-list .strength-items{
		width: 100%;
	}
	.strength-list .strength-items .imageArea{
		height: 13rem;
	}
	.strength-list .strength-items .no span{
		width: 2.875rem;
		height: 2.875rem;
		font-size: 1.375rem;
		line-height: 2.875rem;
		margin-top: -1.5rem;
	}
	.strength-list .strength-items h4{
		font-size: 1.125rem;
		text-align: center;
		margin-bottom: 0.5rem;
	}
	.strength-list .strength-items .text{
		font-size: 0.9375rem;
	}
}
/*　　施工事例　　*/
.service-wrap .case-slide-guide{
	background: #0094D8;
	background: linear-gradient(135deg,rgba(0, 148, 216, 1) 0%, rgba(0, 172, 196, 1) 100%);
	padding: 4rem 0;
}
.service-wrap .case-slide-guide .guide-ttl{
	margin-bottom: 4rem;
}
.service-wrap .case-slide-guide .guide-ttl.border::before{
	background: #7AC6F4;
}
.service-wrap .case-slide-guide .guide-ttl.border::after{
	background: #FFFFFF;
}
.service-wrap .case-slide-guide .guide-ttl .roma{
	color: #55C0DD;
}
.service-wrap .case-slide-guide .guide-ttl h2{
	color: #FFFFFF;
}
.service-wrap .case-slide-guide .block_btn{
	margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
	.service-wrap .case-slide-guide{
		padding: 3rem 0;
	}
	.service-wrap .case-slide-guide .guide-ttl{
		margin-bottom: 3rem;
	}
	.service-wrap .case-slide-guide .block_btn{
		margin-top: 2rem;
	}
}
/*　　いただいた信頼の言葉　　*/
.voice-guide{
	padding: 5rem 0 16.375rem 0;
}
.voice-guide .guide-ttl{
	margin-bottom: 3.5rem;
}
.voice-guide .guide-ttl .roma{
	color: #FFFFFF;
}
.voice-guide .p-text{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.04em;
	text-align: center;
	margin-bottom: 4.375rem;
}
.voice-guide .voice-list{
	column-gap: 3rem;
	row-gap: 3rem;
}
.voice-guide .voice-list .voice-items{
	width: calc(33.3333% - 2rem);
	display: flex;
    flex-direction: column;
	background: #FFFFFF;
	padding: 1px 1.5rem 1.5rem 1.5rem;
}
.voice-guide .voice-list .voice-items .icon{
	text-align: center;
	margin-top: -1.875rem;
	margin-bottom: 1rem;
}
.voice-guide .voice-list .voice-items .icon img{
	width: 6.0625rem;
}
.voice-guide .voice-list .voice-items .text{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.65;
	letter-spacing: 0.04em;
	margin-bottom: 1rem;
}
.voice-guide .voice-list .voice-items .name{
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.04em;
	margin-top: auto;
}
@media only screen and (max-width: 767px) {
	.voice-guide{
		padding: 3.5rem 0 8rem 0;
	}
	.voice-guide .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.voice-guide .p-text{
		font-size: 0.9375rem;
		margin-bottom: 3.5rem;
	}
	.voice-guide .voice-list{
		column-gap: 0;
		row-gap: 2rem;
	}
	.voice-guide .voice-list .voice-items{
		width: 100%;
		padding: 1px 1.5rem 1.5rem 1.5rem;
	}
	.voice-guide .voice-list .voice-items .icon{
		margin-top: -1.375rem;
		margin-bottom: 0.625rem;
	}
	.voice-guide .voice-list .voice-items .icon img{
		width: 5.0625rem;
	}
	.voice-guide .voice-list .voice-items .text{
		font-size: 0.9375rem;
		margin-bottom: 0.625rem;
	}
	.voice-guide .voice-list .voice-items .name{
		font-size: 0.9375rem;
	}
}
/**
/* 施工事例 CSS
----------------------------------------------- */
/*　　一覧　　*/
.case-wrap .case-guide{
	padding: 4.5rem 0 20.8125rem 0;
}
.case-guide .case-list{
	column-gap: 1.5rem;
	row-gap: 2rem;
}
.case-guide .case-list .case-items{
	width: calc(25% - 1.125rem);
	background: #FFFFFF;
	padding: 0.5rem;
}
.case-list .case-items .imageArea{
	position: relative;
	height: 8.75rem;
	overflow: hidden;
	margin-bottom: 0.5rem;
}
.case-list .case-items .imageArea img{
	height: 100%;
	width: 100%;
	object-fit:cover;
	transition: .5s ease-in-out;
}
.case-list .case-items .imageArea img:hover{
	transform: scale(1.1);
}
.case-list .case-items .category{
	display: inline-block;
	color: #7B7B7B;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.04em;
}
.case-list .case-items .category span{
	display: inline-block;
}
.case-list .case-items .category span + span{
	margin-left: 0.625rem;
}
.case-list .case-items .ttl{
	color: #2B2B2B;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.04em;
	margin-bottom: 0.5rem;
}
.case-slider .case-items{
	background: #FFFFFF;
	padding: 1rem 1rem 1.5rem 1rem;
	margin: 0 0.75rem;
}
.case-slider .case-items .imageArea{
	position: relative;
	height: 12.375rem;
	overflow: hidden;
	margin-bottom: 1rem;
}
.case-slider .case-items .imageArea img{
	height: 100%;
	width: 100%;
	object-fit:cover;
	transition: .5s ease-in-out;
}
.case-slider .case-items .imageArea img:hover{
	transform: scale(1.1);
}
.case-slider .case-items .category{
	display: inline-block;
	color: #7B7B7B;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.04em;
}
.case-slider .case-items .category span{
	display: inline-block;
}
.case-slider .case-items .category span + span{
	margin-left: 0.625rem;
}
.case-slider .case-items .ttl{
	color: #2B2B2B;
	font-size:1.375rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.04em;
	margin-bottom: 0.375rem;
}
.case-slider .case-items .more_btn{
	margin-top: 1rem;
}
.case-slider .case-items .more_btn li{
	display: inline-block;
	width: 100%;
	max-width: 18.75rem;
}
.case-slider .case-items .more_btn li a{
	position: relative;
	display: block;
	background: #FFFFFF;
	color: #073760;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	border: 1px solid #073760;
	padding: 0.5rem;
}
.case-slider .case-items .more_btn li a:hover{
	opacity: 1;
}
.case-slider .case-items .more_btn li a::after{
	position: absolute;
	background: url(../img/icon/arrow_b2.png) no-repeat;
	background-size: cover;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.34375rem;
	height: 0.375rem;
	right: 2rem;
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.case-slider .case-items .more_btn li a:hover::after{
	right: 1.5rem;
}
.case-slider .slide-arrow{
	cursor: pointer;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 3.5rem;
	z-index: 100;
	filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.16));
}
.case-slider .prev-arrow{
	left: 14%;
}
.case-slider .next-arrow{
	right: 14%;
}
@media only screen and (max-width: 767px) {
	.case-wrap .case-guide{
		padding: 2.5rem 0 10rem 0;
	}
	.case-guide .case-list{
		column-gap: 0;
		row-gap: 1rem;
	}
	.case-guide .case-list .case-items{
		width: 100%;
	}
	.case-list .case-items .imageArea{
		height: 11.75rem;
	}
	.case-list .case-items .category span + span{
		margin-left: 0.325rem;
	}
	.case-list .case-items .ttl{
		font-size: 0.9375rem;
	}
	.case-slider .case-items{
		padding: 0.875rem 0.875rem 1rem 0.875rem;
		margin: 0 0.5rem;
	}
	.case-slider .case-items .imageArea{
		height: 9rem;
		margin-bottom: 0.875rem;
	}
	.case-slider .case-items .category{
		font-size: 0.8125rem;
	}
	.case-slider .case-items .category span + span{
		margin-left: 0.325rem;
	}
	.case-slider .case-items .ttl{
		font-size: 0.9375rem;
		margin-bottom: 0.25rem;
	}
	.case-slider .case-items .more_btn{
		margin-top: 1rem;
	}
	.case-slider .case-items .more_btn li{
		width: 90%;
	}
	.case-slider .case-items .more_btn li a{
		font-size: 0.9375rem;
	}
	.case-slider .case-items .more_btn li a:hover{
		opacity: 1;
	}
	.case-slider .case-items .more_btn li a::after{
		right: 1.25rem;
		width: 1.125rem;
		height: 0.3125rem;
	}
	.case-slider .case-items .more_btn li a:hover::after{
		right: 1.25rem;
	}
	.case-slider .slide-arrow{
		width: 1.75rem;
	}
	.case-slider .prev-arrow{
		left: 0.75rem;
	}
	.case-slider .next-arrow{
		right: 0.75rem;
	}
}
/*　　詳細　　*/
.case-single{
	padding: 4.5rem 0 14rem 0;
}
.case-single-grid{
	padding-bottom: 6rem;
}
.case-single-grid article{
	background: #FFFFFF;
	max-width: 1360px;
	padding: 5rem 2.5rem;
}
.case-single-grid article .case-inner{
	max-width: 1200px;
	margin: 0 auto;
}
.case-single-grid .case-body{
	width: 37%;
	max-width: 22.5rem;
	padding-right: 3rem;
}
.case-single-grid .case-body h2{
	color: #2B2B2B;
	font-size: 1.625rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 1rem;
}
.case-single-grid .case-body .category{
	margin-bottom: 1.5rem;
}
.case-single-grid .case-body .category span{
	display: inline-block;
	color: #AAAAAA;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.04em;
}
.case-single-grid .case-body .category span + span{
	margin-left: 0.625rem;
}
.case-single-grid .case-body .case-comment p{
	color: #000000;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 2;
}
.case-single-grid .case-body .case-tbl{
	margin-top: 3.375rem;
}
.case-single-grid .case-body .case-tbl th,
.case-single-grid .case-body .case-tbl td{
	color: #2B2B2B;
	line-height: 1.45;
	letter-spacing: 0.06em;
	border-bottom: 1px solid #E2E2E2;
}
.case-single-grid .case-body .case-tbl tr:first-child th,
.case-single-grid .case-body .case-tbl tr:first-child td{
	border-top: 1px solid #E2E2E2;
}
.case-single-grid .case-body .case-tbl th{
	width: 6.875rem;
	font-size: 0.9375rem;
	font-weight: 700;
	padding: 1rem 0;
}
.case-single-grid .case-body .case-tbl td{
	font-size: 0.875rem;
	font-weight: 400;
	padding: 1rem;
}
.case-single-grid .case-gallery{
	width: 63%;
}
.case-gallery .main-gallery{
	position: relative;
}
.case-gallery .slick-slide img{
	width: 100%;
}
.case-gallery .main-gallery .prev-arrow,
.case-gallery .main-gallery .next-arrow{
	position: absolute;
	top: calc(50% - 1.25rem);
	background-color: #9F9F9F;
	width: 2.5rem;
	height: 2.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.case-gallery .main-gallery .next-arrow{
	right: -1.25rem;
}
.case-gallery .main-gallery .prev-arrow{
	left: -1.25rem;
}
.case-gallery .main-gallery .next-arrow::after,
.case-gallery .main-gallery .prev-arrow::after{
	font-family: "Font Awesome 5 Free";
	color: #fff;
	font-size: 1.125rem;
	font-weight: 900;
}
.case-gallery .main-gallery .next-arrow::after{
	content: '\f054';
}
.case-gallery .main-gallery .prev-arrow::after{
	content: '\f053';
}
.case-gallery .gallery-thumbnail{
	margin-top: 1.5rem;
}
.case-gallery .gallery-thumbnail .slick-track{
	transform: unset !important;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	width: 100% !important;
	column-gap: 1.25rem;
}
.case-gallery .gallery-thumbnail .slick-track:before,
.case-gallery .gallery-thumbnail .slick-track:after{
	content: none;
}
.case-gallery .gallery-thumbnail .swiper-wrapper{
	display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	column-gap: 0.625rem;
	row-gap: 0.625rem;
}
.case-gallery .gallery-thumbnail .slick-img{
	width: calc(20% - 1rem) !important;
	height: 5.3125rem;
	opacity: 0.5;
}
.case-gallery .gallery-thumbnail .slick-img.slick-current{
	opacity: 1;
}
.case-gallery .gallery-thumbnail .slick-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.case-single-grid .block_btn{
	margin-top: 4.5rem;
}
@media only screen and (max-width: 767px) {
	.case-single{
		padding: 2.5rem 0 8rem 0;
	}
	.case-single-grid{
		padding-bottom: 3.5rem;
	}
	.case-single-grid article{
		padding: 2rem 1.5rem;
	}
	.case-single-grid .case-body{
		width: 100%;
		max-width: 100%;
		padding-right: 0;
		margin-bottom: 2rem;
	}
	.case-single-grid .case-body h2{
		font-size: 1.25rem;
		margin-bottom: 0.5rem;
	}
	.case-single-grid .case-body .category{
		margin-bottom: 1rem;
	}
	.case-single-grid .case-body .category span + span{
		margin-left: 0.625rem;
	}
	.case-single-grid .case-body .case-comment p{
		font-size: 0.875rem;
	}
	.case-single-grid .case-body .case-tbl{
		margin-top: 1.5rem;
	}
	.case-single-grid .case-body .case-tbl th{
		width: 4.875rem;
		font-size: 0.875rem;
	}
	.case-single-grid .case-body .case-tbl td{
		font-size: 0.8125rem;
	}
	.case-single-grid .case-gallery{
		width: 100%;
	}
	.case-gallery .main-gallery .prev-arrow,
	.case-gallery .main-gallery .next-arrow{
		top: calc(50% - 0.75rem);
		width: 1.5rem;
		height: 1.5rem;
	}
	.case-gallery .main-gallery .next-arrow{
		right: -0.75rem;
	}
	.case-gallery .main-gallery .prev-arrow{
		left: -0.75rem;
	}
	.case-gallery .main-gallery .next-arrow::after,
	.case-gallery .main-gallery .prev-arrow::after{
		font-size: 0.75rem;
	}
	.case-gallery .gallery-thumbnail{
		margin-top: 0.5rem;
	}
	.case-gallery .gallery-thumbnail .slick-track{
		column-gap: 0.3125rem;
	}
	.case-gallery .gallery-thumbnail .swiper-wrapper{
		column-gap: 0.625rem;
		row-gap: 0.625rem;
	}
	.case-gallery .gallery-thumbnail .slick-img{
		width: calc(20% - 0.25rem) !important;
		height: 2.3125rem;
	}
	.case-single-grid .block_btn{
		margin-top: 2.5rem;
	}
}
/*　　その他の事例　　*/
.case-others-grid{
	background: #DFE7EB;
	padding: 3.5rem 0;
}
.case-others-grid .guide-ttl{
	margin-bottom: 3.5rem;
}
.case-others-grid .guide-ttl .roma{
	color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
	.case-others-grid{
		padding: 1.5rem 0 2rem 0;
	}
	.case-others-grid .guide-ttl{
		margin-bottom: 2.5rem;
	}
}
/**
/* 採用情報ページ CSS
----------------------------------------------- */
/*　　採用メッセージ　　*/
.recruit-wrap .head-guide{
	padding-top: 4.5rem;
}
.recruit-wrap .head-grid{
	background: url(../img/recruit/message_bg.jpg) no-repeat;
	background-size: cover;
	padding: 4.5rem 0;
}
.recruit-wrap .head-grid .inner{
	background: rgb(255, 255, 255, 0.85);
	max-width: 968px;
	padding: 6.25rem 2.5rem 8rem 2.5rem;
}
.recruit-wrap .head-grid .guide-ttl{
	margin-bottom: 3rem;
}
.recruit-wrap .head-grid .guide-ttl .roma{
	color: #FFFFFF;
}
.recruit-wrap .head-grid .contentArea h3{
	font-size: 2.625rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 1rem;
}
.recruit-wrap .head-grid .contentArea .roma{
	font-family: "Poppins", sans-serif;
	color: #04A1F3;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.16;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 2.5rem;
}
.recruit-wrap .head-grid .contentArea .text{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2;
	text-align: center;
	letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
	.recruit-wrap .head-guide{
		padding-top: 2.5rem;
	}
	.recruit-wrap .head-grid{
		background: url(../img/recruit/sp_message_bg.jpg) no-repeat;
		background-size: cover;
		padding: 1.5rem 0;
	}
	.recruit-wrap .head-grid .inner{
		padding: 3.5rem 1.5rem 3rem 1.5rem;
	}
	.recruit-wrap .head-grid .guide-ttl{
		margin-bottom: 2rem;
	}
	.recruit-wrap .head-grid .contentArea h3{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.recruit-wrap .head-grid .contentArea .roma{
		font-size: 0.9375rem;
		margin-bottom: 1.5rem;
	}
	.recruit-wrap .head-grid .contentArea .text{
		font-size: 0.9375rem;
		text-align: left;
	}
}
/*　　漫画　　*/
.job-comics-guide{
	padding: 4.8125rem 0 3.75rem 0;
}
@media only screen and (max-width: 767px) {
	.job-comics-guide{
		padding: 2rem 0 1.75rem 0;
	}
}
/*　　募集職種　　*/
.job-vacancies-guide{
	padding: 3.75rem 0 6rem 0;
}
.job-vacancies-guide .guide-ttl{
	margin-bottom: 4.625rem;
}
.job-vacancies-guide .guide-ttl .roma{
	color: #FFFFFF;
}
.job-vacancies-guide .job-vacancies-list{
	column-gap: 2rem;
	row-gap: 2rem;
}
.job-vacancies-list .job-vacancies-items{
	background: #F7F7F7;
	width: calc(50% - 1rem);
	max-width: 23rem;
	border: 1px solid #D5DDE2;
	border-radius: 1rem;
	padding: 1.5rem 1.5rem 2.5rem 1.5rem;
}
.job-vacancies-list .job-vacancies-items .imageArea{
	height: 10rem;
	margin-bottom: 1.5rem;
}
.job-vacancies-list .job-vacancies-items .imageArea img{
	width: 100%;
	height: 100%;
	object-fit:cover;
	border-radius: 0.5rem;
}
.job-vacancies-list .job-vacancies-items h3{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 0.5rem;
}
.job-vacancies-list .job-vacancies-items .text{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.625;
}
@media only screen and (max-width: 767px) {
	.job-vacancies-guide{
		padding: 2.75rem 0 3rem 0;
	}
	.job-vacancies-guide .guide-ttl{
		margin-bottom: 2.625rem;
	}
	.job-vacancies-guide .job-vacancies-list{
		column-gap: 0;
		row-gap: 1rem;
	}
	.job-vacancies-list .job-vacancies-items{
		width: 100%;
		max-width: 100%;
		border-radius: 0.5rem;
		padding: 1.125rem 1.125rem 1.5rem 1.125rem;
	}
	.job-vacancies-list .job-vacancies-items .imageArea{
		height: 12rem;
		margin-bottom: 1rem;
	}
	.job-vacancies-list .job-vacancies-items h3{
		font-size: 1.125rem;
		margin-bottom: 0.375rem;
	}
	.job-vacancies-list .job-vacancies-items .text{
		font-size: 0.9375rem;
	}
}
/*　　現場からのリアルな声　　*/
.job-voice-guide{
	background: #DFE7EB;
	padding: 4.625rem 0 5.75rem 0;
}
.job-voice-guide .guide-ttl{
	margin-bottom: 4rem;
}
.job-voice-guide .guide-ttl .roma{
	color: #F0F4F7;
}
.job-voice-guide .voice-list .voice-items:not(:last-child){
	margin-bottom: 2rem;
}
.job-voice-guide .voice-list .voice-items:nth-child(even){
	webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.job-voice-guide .voice-list .voice-items .icon{
	width: 5rem;
}
.job-voice-guide .voice-list .voice-items .bubble{
	position: relative; 
	background: #FFFFFF;
	width: calc(100% - 7.75rem);
	max-width: 39.3125rem;
	border-radius: 1rem;
	padding: 2rem 2.5rem;
}
.job-voice-guide .voice-list .voice-items:nth-child(odd) .bubble{
	margin-left: 2.5rem;
}
.job-voice-guide .voice-list .voice-items:nth-child(even) .bubble{
	margin-right: 2.5rem;
}
.job-voice-guide .voice-list .voice-items .bubble:after{
	content: "";
	display: inline-block;
	position: absolute;
	top: calc(50% - 0.625rem);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
.job-voice-guide .voice-list .voice-items:nth-child(odd) .bubble:after{
	left: -1.375rem;
	border: 0.5rem solid transparent;
	border-right: 1.25rem solid #FFFFFF;
}
.job-voice-guide .voice-list .voice-items:nth-child(even) .bubble:after{
	right: -1.375rem;
	border: 0.5rem solid transparent;
	border-left: 1.25rem solid #FFFFFF;
}
.job-voice-guide .voice-list .voice-items .text{
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 0.5rem;
}
.job-voice-guide .voice-list .voice-items .name{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
	.job-voice-guide{
		padding: 3.5rem 0 3rem 0;
	}
	.job-voice-guide .guide-ttl{
		margin-bottom: 3rem;
	}
	.job-voice-guide .voice-list .voice-items:not(:last-child){
		margin-bottom: 1rem;
	}
	.job-voice-guide .voice-list .voice-items .icon{
		width: 4rem;
	}
	.job-voice-guide .voice-list .voice-items .bubble{
		width: calc(100% - 4.5rem);
		/* max-width: 39.3125rem; */
		border-radius: 0.5rem;
		padding: 1rem 1.25rem;
	}
	.job-voice-guide .voice-list .voice-items:nth-child(odd) .bubble{
		margin-left: 1.5rem;
	}
	.job-voice-guide .voice-list .voice-items:nth-child(even) .bubble{
		margin-right: 1.5rem;
	}
	.job-voice-guide .voice-list .voice-items .text{
		font-size: 0.9375rem;
		margin-bottom: 0.5rem;
	}
	.job-voice-guide .voice-list .voice-items .name{
		font-size: 0.875rem;
	}
}
/*　　募集要項　　*/
.job-description-guide{
	padding: 6.5rem 0 8rem 0;
}
.job-description-guide .guide-ttl{
	margin-bottom: 5.5rem;
}
.job-description-guide .guide-ttl .roma{
	color: #FFFFFF;
}
.job-description-guide .description-box{
	background: #FFFFFF;
	padding: 6rem 4rem;
}
.job-description-guide .job-description-tbl{
	max-width: 840px;
	margin: 0 auto;
}
.job-description-guide .job-description-tbl th,
.job-description-guide .job-description-tbl td{
	font-size: 1rem;
	line-height: 1.56;
	letter-spacing: 0.06em;
	border-bottom: 1px solid #E2E2E2;
	padding: 1.875rem 2.5rem;
}
.job-description-guide .job-description-tbl tr:first-child th,
.job-description-guide .job-description-tbl tr:first-child td{
	border-top: 1px solid #E2E2E2;
}
.job-description-guide .job-description-tbl th{
	background: #FAFAFA;
	width: 12.5rem;
	font-weight: 700;
}
.job-description-guide .job-description-tbl td{
	font-weight: 400;
}
@media only screen and (max-width: 767px) {
	.job-description-guide{
		padding: 3.5rem 0 4rem 0;
	}
	.job-description-guide .guide-ttl{
		margin-bottom: 3rem;
	}
	.job-description-guide .description-box{
		padding: 2rem 1.5rem;
	}
	.job-description-guide .job-description-tbl tr:first-child td {
		border-top: none;
	}
	.job-description-guide .job-description-tbl th,
	.job-description-guide .job-description-tbl td{
		display: block;
		font-size: 0.9375rem;
		padding: 1.125rem;
	}
	.job-description-guide .job-description-tbl th{
		width: 100%;
	}
}
/**
/* ニュースページ CSS
----------------------------------------------- */
/*　　一覧　　*/
.news-guide{
	padding: 4.5rem 0 20.8125rem 0;
}
.news-list .news-items{
	margin-bottom: 0.5rem;
}
.news-list .news-items a{
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: #FFFFFF;
	padding: 3.5rem 3rem 3.5rem 2.5rem;
}
.news-list .news-items dt{
	width: 15rem;
	display: flex;
	align-items: baseline;
}
.news-list .news-items .date{
	font-family: "Poppins", sans-serif;
	color: #D5D5D5;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
}
.news-list .news-items .category{
	margin-left: 2rem;
}
.news-list .news-items .category span{
	display: inline-block;
	color: #09253C;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25;
	border: 1px solid #BCBCBC;
	padding: 0.125rem 0.625rem;
}
.news-list .news-items dd{
	position: relative;
	width: calc(100% - 15rem);
	color: #09253C;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	padding-right: 2.5rem;
}
.news-list .news-items a dd::after{
	content: "";
	position: absolute;
	background: url(../img/icon/arrow_g.png) no-repeat center;
	background-size: contain;
	width: 2.25rem;
	height: 0.625rem;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.news-list .news-items a:hover dd::after{
	background: url(../img/icon/arrow_b2.png) no-repeat center;
	background-size: contain;
	right: -1rem;
}
@media only screen and (max-width: 767px) {
	.news-guide{
		padding: 2.5rem 0 10rem 0;
	}
	.news-list .news-items{
		margin-bottom: 0.5rem;
	}
	.news-list .news-items a{
		padding: 1.25rem 1.75rem 1.25rem 1.25rem;
	}
	.news-list .news-items dt{
		width: 100%;
		margin-bottom: 0.5rem;
	}
	.news-list .news-items .date{
		font-size: 0.875rem;
	}
	.news-list .news-items .category{
		margin-left: 0.875rem;
	}
	.news-list .news-items .category span{
		font-size: 0.75rem;
		padding: 0.125rem 0.25rem;
	}
	.news-list .news-items dd{
		width: 100%;
		font-size: 0.9375rem;
		padding-right: 2rem;
	}
	.news-list .news-items a dd::after{
		width: 1.5rem;
		height: 0.40625rem;
	}
}
/*　　詳細　　*/
.single-guide{
	padding: 4.5rem 0 20.8125rem 0;
}
.single-guide article{
	background: #FFFFFF;
	padding: 6.25rem;
}
.single-guide .entry-header{
	border-bottom: 1px solid #D0D0D0;
	margin-bottom: 2.5rem;
	padding-bottom: 1.5rem;
}
.single-guide .entry-header .category{
	margin-bottom: 1rem;
}
.single-guide .entry-header .category span{
	display: inline-block;
	color: #09253C;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25;
	border: 1px solid #BCBCBC;
	padding: 0.125rem 0.625rem;
}
.single-guide .entry-dete .dete{
	font-family: "Montserrat", sans-serif;
	color: #000000;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.1em;
	margin-right: 1rem;
}
.single-guide .entry-dete .dete span{
	display: inline-block;
	width: 1rem;
	margin-right: 0.5rem;
}
.single-guide .entry-header h2{
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 1.35;
	margin-bottom: 1rem;
}
.single-guide .entry-body h2{
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}
.single-guide .entry-body h3{
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}
.single-guide .entry-body h4{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}
.single-guide .entry-body p{
	color: #000000;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2.3;
	margin-bottom: 2rem;
}
.single-guide .entry-body p:last-child{
	margin-bottom: 0;
}
.single-guide .entry-body p img{
	margin: 0.5rem 0;
}
.single-guide .entry-body ol{
	list-style: decimal;
	margin-left: 1.25rem;
	margin-bottom: 2rem;
}
.single-guide .entry-body ul{
	list-style: disc;
	margin-left: 1.25rem;
	margin-bottom: 2rem;
}
.single-guide .entry-body ol li,
.single-guide .entry-body ul li{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.875;
}
.single-guide .entry-body figure{
	margin: 0.5rem 0;
}
.single-guide .entry-body figcaption{
	font-size: 90%;
}
.alignleft {
	display: inline;
	float: left;
}
.alignright {
	display: inline;
	float: right;
}
.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}
blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
	margin: 0 1rem 0 0;
}
blockquote.alignright,
.wp-caption.alignright,
img.alignright {
	margin: 0 0 0 1rem;
}
blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
	clear: both;
}
.single-guide .page-nav{
	padding: 0 6.25rem;
	margin-top: 3.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(33.3333% - 10rem);
}
.single-guide .page-nav ul .nav__item--prev a{
	position: relative;
	padding-left: 2.8125rem;
}
.single-guide .page-nav ul .nav__item--next a{
	position: relative;
	padding-right: 2.8125rem;
}
.single-guide .page-nav ul .nav__item--prev a span,
.single-guide .page-nav ul .nav__item--next a span{
	color: #646464;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.45;
}
.single-guide .page-nav ul .nav__item--prev a::before,
.single-guide .page-nav ul .nav__item--next a::before,
.single-guide .page-nav ul .nav__item--prev a::after,
.single-guide .page-nav ul .nav__item--next a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.single-guide .page-nav ul .nav__item--prev a::before,
.single-guide .page-nav ul .nav__item--next a::before{
	background: #9F9F9F;
	width: 1.75rem;
	height: 1.75rem;
}
.single-guide .page-nav ul .nav__item--prev a::before{
	left: 0;
}
.single-guide .page-nav ul .nav__item--next a::before{
	right: 0;
}
.single-guide .page-nav ul .nav__item--prev a::after,
.single-guide .page-nav ul .nav__item--next a::after{
	background: url(../img/icon/arrow_w2.png) center center no-repeat;
	background-size: cover;
	width: 1rem;
	height: 1rem;
}
.single-guide .page-nav ul .nav__item--prev a::after{
	left: 0.375rem;
}
.single-guide .page-nav ul .nav__item--next a::after{
	right: 0.375rem;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.single-guide .page-nav ul .return_btn{
	width: 20rem;
}
.single-guide .page-nav ul .return_btn .btn{
	position: relative;
	display: block;
	background: #073760;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	padding: 1rem 1.5rem;
}
.single-guide .page-nav ul .return_btn .btn::after{
	background: url(../img/icon/arrow_w.png) center center no-repeat;
	background-size: cover;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.34375rem;
	height: 0.375rem;
	right: 2rem;
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.single-guide .page-nav ul .return_btn .btn:hover{
	opacity: 1;
}
.single-guide .page-nav ul .return_btn .btn:hover::after{
	right: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.single-guide{
		padding: 2.5rem 0 10rem 0;
	}
	.single-guide article{
		padding: 2rem 1.5rem;
	}
	.single-guide .entry-header{
		margin-bottom: 1.5rem;
		padding-bottom: 1rem;
	}
	.single-guide .entry-header .category{
		margin-bottom: 0.875rem;
	}
	.single-guide .entry-header .category span{
		font-size: 0.75rem;
		padding: 0.125rem 0.25rem;
	}
	.single-guide .entry-header h2{
		font-size: 1.375rem;
		margin-bottom: 0.5rem;
	}
	.single-guide .entry-body h2{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.single-guide .entry-body h3{
		font-size: 1.125rem;
		margin-bottom: 1rem;
	}
	.single-guide .entry-body h4{
		font-size: 1.0625rem;
		margin-bottom: 1rem;
	}
	.single-guide .entry-body p{
		font-size: 0.9375rem;
		line-height: 2;
		margin-bottom: 1.25rem;
	}
	.single-guide .entry-body ol{
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-body ul{
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-body ol li,
	.single-guide .entry-body ul li{
		font-size: 0.9375rem;
	}
	.single-guide .page-nav{
		padding: 0;
		margin-top: 3.5rem;
	}
	.single-guide .page-nav ul .nav__item--prev,
	.single-guide .page-nav ul .nav__item--next{
		width: auto;
	}
	.single-guide .page-nav ul .nav__item--prev a span,
	.single-guide .page-nav ul .nav__item--next a span{
		font-size: 0.9375rem;
	}
	.single-guide .block_btn{
		text-align: center;
		margin-top: 2rem;
	}
}
/**
/* お問い合わせページ CSS
----------------------------------------------- */
.contact-guide{
	padding: 4.5rem 0 19.8125rem 0;
}
.contact-guide .tel-box{
	max-width: 800px;
	column-gap: 8rem;
	align-items: center;
	margin: 0 auto 2rem auto;
	border: 1px solid #9B9B9B;
	padding: 2.5rem;
}
.contact-guide .tel-box .tel-items{
	position: relative;
	width: calc(50% - 4rem);
}
.contact-guide .tel-box .tel-items:last-child::after{
	background: #C6C6C6;
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	left: -4rem;
	top: 50%;
	transform: translateY(-50%);
}
.contact-guide .tel-box .tel-items .ttl{
	color: #000000;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}
.contact-guide .tel-box .tel-items .tel-btn li a{
	font-family: "Poppins", sans-serif;
	color: #000000;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 1.25;
}
.contact-guide .tel-box .tel-items .tel-btn li a span{
	margin-right: 0.75rem;
}
.contact-guide .tel-box .tel-items .tel-btn li a span img{
	width: 1.625rem;
}
.contact-guide .tel-box .tel-items .hours{
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.25;
	margin-top: 0.5rem;
}
.contact-guide .p-text{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.85;
	letter-spacing: 0.06em;
	margin-bottom: 3rem;
}
.contact-guide .form-box{
	background: #FFFFFF;
	padding: 1.5rem 4rem;
	margin-bottom: 4rem;
}
.form-box table th,
.form-box table td{
	padding: 2rem 0;
	vertical-align: middle;
	border-bottom: 1px solid #EBEBEB;
}
.form-box table tr:last-child th,
.form-box table tr:last-child td{
	border-bottom: none;
}
.form-box table th{
	width: 18.125rem;
	color: #2B2B2B;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.35;
}
.form-box table th span{
	display: inline-block;
	color: #dc3232;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.25;
	margin-left: 1rem;
}
.form-box table td{
	color: #2B2B2B;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.35;
}
.form-box table td ul.flex{
	column-gap: 1.5rem;
}
.form-box table td ul.flex li{
	width: calc(50% - 0.75rem);
}
.form-box table td ul.flex li span.text{
	display: inline-block;
	margin-bottom: 0.5rem;
}
.form-box table td .note{
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.25;
	margin-top: 0.625rem;
}
.form-grid .privacy-text{
	color: #333333;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.68;
	letter-spacing: 0.02em;
	text-align: center;
}
input[type="date"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select{
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #CECECE;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.35;
	padding: 1rem;
}
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: 10.75rem;
}
.wpcf7-list-item {
	display: inline-block;
	line-height: 1.65;
	margin: 0;
}
.wpcf7-spinner{
	display: none;
}
.form-grid .acceptance-text{
	color: #272426;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	margin-top: 2.5rem;
}
.form-grid .acceptance{
	transform: scale(1.5);
	border: 1px solid #AFAFAF !important;
}
.form-grid .acceptance-text .wpcf7-list-item-label{
	margin-left: 1rem;
}
.form-captcha{
	margin-top: 2.5rem;
}
.submit_btn{
	text-align: center;
	margin-top: 2rem;
}
.submit_btn li{
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 20rem;
}
.submit_btn li::after{
	background: url(../img/icon/arrow_w.png) center center no-repeat;
	background-size: cover;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.34375rem;
	height: 0.375rem;
	right: 2rem;
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.submit_btn li:hover::after{
	right: 1.5rem;
}
input[type="submit"] {
	display: block;
	width: 100%;
	background: #073760;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	cursor: pointer;
	padding: 1rem 1.5rem;
}
@media only screen and (max-width: 767px) {
	.contact-guide{
		padding: 2.5rem 0 8.8125rem 0;
	}
	.contact-guide .tel-box{
		max-width: 100%;
		column-gap: 0;
		border: none;
		margin: 0 auto 2rem auto;
		padding: 0;
	}
	.contact-guide .tel-box .tel-items{
		width: 100%;
	}
	.contact-guide .tel-box .tel-items:last-child{
		background: #ffffff;
		padding: 1.25rem 1.75rem;
	}
	.contact-guide .tel-box .tel-items:last-child::after{
		content: none;
	}
	.contact-guide .tel-box .tel-items .ttl{
		background: #073760;
		color: #FFFFFF;
		font-size: 1rem;
		line-height: 1.35;
		padding: 0.625rem;
	}
	.contact-guide .tel-box .tel-items .tel-btn li a{
		position: relative;
		display: block;
		font-size: 1.25rem;
		text-align: center;
		border: 1px solid #BABABA;
		border-radius: 3rem;
		padding: 0.875rem 1rem;
	}
	.contact-guide .tel-box .tel-items .tel-btn li a span{
		margin-right: 0.5rem;
	}
	.contact-guide .tel-box .tel-items .tel-btn li a span img{
		width: 1.125rem;
	}
	.contact-guide .tel-box .tel-items .tel-btn li a::after{
		content: "";
		position: absolute;
		background: url(../img/icon/arrow_b.png) no-repeat center;
		background-size: contain;
		width: 1.34375rem;
		height: 0.375rem;
		right: 1.25rem;
		top: 50%;
		transform: translateY(-50%);
	}
	.contact-guide .tel-box .tel-items .hours{
		font-size: 0.8125rem;
		text-align: center;
		margin-top: 0.5rem;
	}
	.contact-guide .p-text{
		font-size: 0.875rem;
		margin-bottom: 2rem;
	}
	.contact-guide .form-box{
		padding: 1rem 1.5rem;
		margin-bottom: 2.5rem;
	}
	.form-box table th,
	.form-box table td{
		display: block;
	}
	.form-box table th{
		width: 100%;
		font-size: 0.9375rem;
		border-bottom: none;
		padding: 1.25rem 0 0 0;
	}
	.form-box table th span{
		font-size: 0.75rem;
		margin-left: 1rem;
	}
	.form-box table td{
		font-size: 0.875rem;
		padding: 0.625rem 0 1.125rem 0;
	}
	.form-box table td ul.flex{
		column-gap: 0.5rem;
	}
	.form-box table td ul.flex li{
		width: calc(50% - 0.25rem);
	}
	.form-box table td ul.flex li span.text{
		margin-bottom: 0.25rem;
	}
	.form-box table td .note{
		font-size: 0.75rem;
		margin-top: 0.375rem;
	}
	.form-grid .privacy-text{
		font-size: 0.875rem;
	}
	input[type="date"],
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="url"],
	textarea,
	select{
		font-size: 0.875rem;
		padding: 1rem;
	}
	textarea{
		height: 10.75rem;
	}
	.form-grid .acceptance-text{
		font-size: 0.9375rem;
		margin-top: 2rem;
	}
	.form-grid .acceptance-text .wpcf7-list-item-label{
		margin-left: 0.5rem;
	}
	.form-captcha{
		margin-top: 2rem;
	}
	.submit_btn{
		margin-top: 1.5rem;
	}
	.submit_btn li{
		max-width: 17rem;
	}
	.submit_btn li::after{
		right: 1.25rem;
		width: 1.125rem;
		height: 0.3125rem;
	}
	.submit_btn li:hover::after{
		right: 1.25rem;
	}
	input[type="submit"] {
		font-size: 0.9375rem;
		padding: 0.75rem;
	}
}
/*　　プライバシーポリシー　　*/
.contact-guide .privacy-box{
	background: #FFFFFF;
	border: 1px solid #BABABA;
	padding: 2.5rem;
	margin-top: 2.5rem;
}
.contact-guide .privacy-box h3{
	color: #1C1C1C;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 2rem;
}
.contact-guide .privacy-box .box{
	height: 13.125rem;
	overflow-y: scroll;
}
.contact-guide .privacy-box .box dl:not(:last-child){
	margin-bottom: 1.875rem;
}
.contact-guide .privacy-box .box dl dt{
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.03em;
	margin-bottom: 0.625rem;
}
.contact-guide .privacy-box .box dl dd{
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.73;
	letter-spacing: 0.03em;
}
@media only screen and (max-width: 767px) {
	.contact-guide .privacy-box{
		padding: 2rem 1.5rem;
		margin-top: 1.5rem;
	}
	.contact-guide .privacy-box h3{
		font-size: 1rem;
		margin-bottom: 1.25rem;
	}
	.contact-guide .privacy-box .box{
		height: 9.125rem;
	}
	.contact-guide .privacy-box .box dl:not(:last-child){
		margin-bottom: 1.125rem;
	}
	.contact-guide .privacy-box .box dl dt{
		font-size: 0.9375rem;
		margin-bottom: 0.375rem;
	}
	.contact-guide .privacy-box .box dl dd{
		font-size: 0.875rem;
	}
}
/**
/* 共通ブロック CSS
----------------------------------------------- */
/*　　お問い合わせナビ　　*/
.contens-contact-guide{
	background: url(../img/contact_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 3rem 0;
}
.contens-contact-guide h2{
	color: #ffffff;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
	text-align: center;
	text-shadow: 0px 0px 10px #1B7CAF;
	margin-bottom: 1rem;
}
.contens-contact-guide .text{
	color: #ffffff;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.68;
	text-align: center;
	text-shadow: 0px 0px 10px #1B7CAF;
	margin-bottom: 2rem;
}
.contens-contact-guide .contact-grid{
	background: #ffffff;
	column-gap: 6rem;
	padding: 3rem;
}
.contens-contact-guide .contact-grid .contact-items{
	position: relative;
	width: calc(50% - 3rem);
	text-align: center;
}
.contens-contact-guide .contact-items:first-child::after{
	background: #C6C6C6;
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	right: -3rem;
	top: 50%;
	transform: translateY(-50%);
}
.contens-contact-guide .contact-items h3{
	position: relative;
	color: #000000;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.06em;
	margin-bottom: 3rem;
}
.contens-contact-guide .contact-items h3::after{
	content: "";
	position: absolute;
	background: #04A1F3;
	width: 4.75rem;
	height: 3px;
	right: 50%;
	bottom: -1.5rem;
	transform: translateX(50%);
}
.contens-contact-guide .contact-items .tel-btn li a{
	font-family: "Poppins", sans-serif;
	color: #000000;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 1.25;
}
.contens-contact-guide .contact-items .tel-btn li a span{
	margin-right: 0.75rem;
}
.contens-contact-guide .contact-items .tel-btn li a span img{
	width: 1.625rem;
}
.contens-contact-guide .contact-items .hours{
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.25;
	margin-top: 0.5rem;
}
.contens-contact-guide .contact-btn{
	margin-top: 3.5rem;
}
.contens-contact-guide .contact-btn li{
	display: inline-block;
	width: 100%;
	max-width: 18.375rem;
}
.contens-contact-guide .contact-items .contact-btn li a{
	position: relative;
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	border: 2px solid #000000;
	border-radius: 3rem;
	padding: 0.9375rem 2rem;
}
.contens-contact-guide .contact-items .contact-btn li a::after{
	content: "";
	position: absolute;
	background: url(../img/icon/arrow_b.png) no-repeat center;
	background-size: contain;
	width: 1.34375rem;
	height: 0.375rem;
	right: 1.625rem;
	top: 50%;
	transform: translateY(-50%);
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.contens-contact-guide .contact-items .contact-btn li a:hover{
	opacity: 1;
}
.contens-contact-guide .contact-items .contact-btn li a:hover::after{
	right: 1rem;
}
@media only screen and (max-width: 767px) {
	.contens-contact-guide{
		background: url(../img/sp_contact_bg.jpg) no-repeat center;
		background-size: cover;
		padding: 1.75rem 0 2.25rem 0;
	}
	.contens-contact-guide h2{
		font-size: 1.4375rem;
		margin-bottom: 0.75rem;
	}
	.contens-contact-guide .text{
		font-size: 0.875rem;
		line-height: 1.42;
		text-align: left;
		margin-bottom: 1.25rem;
	}
	.contens-contact-guide .contact-grid{
		column-gap: 0;
		padding: 0;
	}
	.contens-contact-guide .contact-grid .contact-items{
		width: 100%;
		text-align: center;
	}
	.contens-contact-guide .contact-items:first-child::after{
		content: none;
	}
	.contens-contact-guide .contact-items h3{
		background: #073760;
		color: #FFFFFF;
		font-size: 1rem;
		line-height: 1.35;
		margin-bottom: 0;
		padding: 0.5rem;
	}
	.contens-contact-guide .contact-items h3::after{
		content: none;
	}
	.contens-contact-guide .contact-items .items-inner{
		padding: 1.25rem 1.75rem;
	}
	.contens-contact-guide .contact-items .tel-btn li{
		display: inline-block;
		width: 100%;
		max-width: 17.875rem;
	}
	.contens-contact-guide .contact-items .tel-btn li a{
		position: relative;
		display: block;
		font-size: 1.25rem;
		border: 1px solid #BABABA;
		border-radius: 3rem;
		padding: 0.875rem 1rem;
	}
	.contens-contact-guide .contact-items .tel-btn li a span{
		margin-right: 0.5rem;
	}
	.contens-contact-guide .contact-items .tel-btn li a span img{
		width: 1.125rem;
	}
	.contens-contact-guide .contact-items .tel-btn li a::after{
		content: "";
		position: absolute;
		background: url(../img/icon/arrow_b.png) no-repeat center;
		background-size: contain;
		width: 1.34375rem;
		height: 0.375rem;
		right: 1.25rem;
		top: 50%;
		transform: translateY(-50%);
	}
	.contens-contact-guide .contact-items .hours{
		font-size: 0.8125rem;
	}
	.contens-contact-guide .contact-btn{
		margin-top: 0;
	}
	.contens-contact-guide .contact-btn li{
		max-width: 17.875rem;
	}
	.contens-contact-guide .contact-items .contact-btn li a{
		font-size: 0.875rem;
		border: 1px solid #BABABA;
		border-radius: 3rem;
		padding: 1rem;
	}
	.contens-contact-guide .contact-items .contact-btn li a::after{
		right: 1.25rem;
	}
	.contens-contact-guide .contact-items .contact-btn li a:hover::after{
		right: 1.25rem;
	}
}
/**
/* エラー CSS
----------------------------------------------- */
.error-guide{
	padding: 4.5rem 0 11.8125rem 0;
}
.error-guide .entry p{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.68;
	text-align: center;
}
.error-guide .entry .error_url{
	padding: 3rem 0;
}
.error-guide .entry .block_btn{
	margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
	.error-guide{
		padding: 2.5rem 0 8rem 0;
	}
	.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;
	}
}
