@charset "utf-8";
/**
/* 共通 CSS
----------------------------------------------- */
/*　　見出し　　*/
.front-wrap .guide-ttl h2{
	color: #3c729b;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.front-wrap .guide-ttl .roma{
	font-family: "EB Garamond", serif;
	color: #0e205c;
	font-size: 3.75rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.625rem;
}
@media only screen and (max-width: 767px) {
	.front-wrap .guide-ttl h2{
		font-size: 0.9375rem;
	}
	.front-wrap .guide-ttl .roma{
		font-size: 2.75rem;
		margin-bottom: 0.375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-wrap .guide-ttl .roma{
		font-size: 3.5rem;
	}
}
/*　　アニメーション　　*/
.js-inview{
	opacity: 0;
	transition: 1.5s;
}
.js-inview.active{
	opacity: 1;
}
/**
/* トップページ CSS
----------------------------------------------- */
/*　　MV　　*/
.mv-view{
	position: relative;
	background-image: url(../img/top/mv.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 19.8125rem 0 26.25rem 0;
}
.mv-view .view-box p{
	color: #221a14;
	font-size: 3.125rem;
	letter-spacing: 0.05em;
	text-align: center;
	text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.6), -2px 2px 20px rgba(255, 255, 255, 0.6), 2px -2px 20px rgba(255, 255, 255, 0.6), -2px -2px 20px rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 767px) {
	.mv-view{
		padding: 10.8125rem 0 10.8125rem 0;
	}
	.mv-view .view-box p{
		font-size: 1.5rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.mv-view{
		padding: 11.8125rem 0 15.8125rem 0;
	}
	.mv-view .view-box p{
		font-size: 2.125rem;
	}
}
/*　　ご挨拶　　*/
.message-guide{
	position: relative;
	padding: 7rem 0 15.625rem 0;
	margin-top: -16.25rem;
	z-index: 1;
}
.message-guide::before,
.message-guide::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.message-guide::before{
	 background-color: #e3f4fb;
	 transform: skewY(350deg);
	 top: 8.35rem;
	 bottom: 8.75rem;
	 z-index: -1;
}
.message-guide::after{
	background-color: #0e205c;
	transform: skewY(354deg);
	top: 9.75rem;
	bottom: 6.75rem;
	z-index: -2;
}
.message-guide .guide-ttl{
	margin-bottom: 3.625rem;
}
.message-guide .comment p{
	color: #221a14;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 2.2;
	letter-spacing: 0.05em;
	text-align: center;
}
.message-guide .comment p:not(:last-child){
	margin-bottom: 1.875rem;
}
@media only screen and (max-width: 767px) {
	.message-guide{
		padding: 7rem 0 6.625rem 0;
		margin-top: -11.25rem;
	}
	.message-guide::before{
		top: 8rem;
		bottom: 2.75rem;
	}
	.message-guide::after{
		transform: skewY(355deg);
		top: 8.65rem;
		bottom: 2.5rem;
	}
	.message-guide .guide-ttl{
		margin-bottom: 2.25rem;
	}
	.message-guide .comment p{
		font-size: 1rem;
		/* text-align: left; */
	}
	.message-guide .comment p:not(:last-child){
		/* margin-bottom: 0.875rem; */
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.message-guide{
		padding: 7rem 0 14.625rem 0;
		margin-top: -14.25rem;
	}
	.message-guide::before{
		top: 8.35rem;
		bottom: 8.75rem;
	}
	.message-guide::after{
		top: 9rem;
		bottom: 7.75rem;
	}
	.message-guide .guide-ttl{
		margin-bottom: 3.625rem;
	}
	.message-guide .comment p{
		color: #221a14;
		font-size: 1.125rem;
		text-align: center;
	}
	.message-guide .comment p:not(:last-child){
		margin-bottom: 1.875rem;
	}
}
/*　　事業内容　　*/
.front-services-guide{
	padding: 2.25rem 0 3.875rem 0;
}
.front-services-guide .guide-ttl{
	margin-bottom: 3.3125rem;
}
.front-services-guide .services-list{
	column-gap: 2.5rem;
	row-gap: 2.1875rem;
}
.front-services-guide .services-list .services-items{
	position: relative;
	width: calc(50% - 1.25rem);
}
.front-services-guide .services-list .services-items::before,
.front-services-guide .services-list .services-items::after{
	position: absolute;
	bottom: 1.5rem;
	right: 2rem;
	height: 2px;
	background: #0e205c;
	content: '';
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.front-services-guide .services-list .services-items::before {
	width: 4rem;
	transform: translateY(-50%);
}
.front-services-guide .services-list .services-items::after {
	width: 0.875rem;
	transform: translateY(-50%) rotate(45deg);
	transform-origin: right center;
}
.front-services-guide .services-list .services-items a:hover{
	opacity: 1;
}
.front-services-guide .services-list .services-items:hover::before,
.front-services-guide .services-list .services-items:hover::after{
	right: 1.5rem;
}
.front-services-guide .services-list .services-items .imageArea{
	height: 100%;
	min-height: 21.875rem;
}
.front-services-guide .services-list .services-items .imageArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.front-services-guide .services-list .services-items .contentArea{
	position: absolute;
	width: 55%;
	right: 1.75rem;
	top: 2rem;
}
.front-services-guide .services-list .services-items h3{
	color: #0e205c;
	font-size: 1.625rem;
	line-height: 1.53;
	letter-spacing: 0.05em;
	margin-bottom: 1.625rem;
}
.front-services-guide .services-list .services-items h3 br{
	display: none;
}
.front-services-guide .services-list .services-items p{
	color: #0e162c;
	font-size: 1.125rem;
	line-height: 1.45;
	letter-spacing: 0.05em;
}
.front-services-guide .block_btn{
	margin-top: 3.4375rem;
}
@media only screen and (max-width: 767px) {
	.front-services-guide{
		padding: 2.875rem 0 2.875rem 0;
	}
	.front-services-guide .guide-ttl{
		margin-bottom: 1.875rem;
	}
	.front-services-guide .services-list{
		column-gap: 0;
		row-gap: 1.1875rem;
	}
	.front-services-guide .services-list .services-items{
		width: 100%;
	}
	.front-services-guide .services-list .services-items::before,
	.front-services-guide .services-list .services-items::after{
		bottom: 1rem;
		right: 1.5rem;
		height: 1px;
	}
	.front-services-guide .services-list .services-items:hover::before,
	.front-services-guide .services-list .services-items:hover::after{
		right: 1rem;
	}
	.front-services-guide .services-list .services-items::before {
		width: 3rem;
	}
	.front-services-guide .services-list .services-items::after {
		width: 0.625rem;
	}
	.front-services-guide .services-list .services-items .imageArea{
		min-height: 16.875rem;
	}
	.front-services-guide .services-list .services-items .contentArea{
		width: 60%;
		top: 1.5rem;
		right: 1.5rem;
	}
	.front-services-guide .services-list .services-items h3{
		font-size: 1.125rem;
		margin-bottom: 0.625rem;
	}
	.front-services-guide .services-list .services-items p{
		font-size: 0.9375rem;
	}
	.front-services-guide .block_btn{
		margin-top: 3.4375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-services-guide{
		padding: 0 0 10.875rem 0;
	}
	.front-services-guide .guide-ttl{
		margin-bottom: 3.3125rem;
	}
	.front-services-guide .services-list{
		column-gap: 1.5rem;
		row-gap: 1.5rem;
	}
	.front-services-guide .services-list .services-items{
		width: calc(50% - 1.25rem);
	}
	.front-services-guide .services-list .services-items .imageArea{
		min-height: 19.875rem;
	}
	.front-services-guide .services-list .services-items .contentArea{
		width: 55%;
		top: 1.5rem;
		right: 1.5rem;
	}
	.front-services-guide .services-list .services-items h3{
		font-size: 1.255rem;
		margin-bottom: 0.375rem;
	}
	.front-services-guide .services-list .services-items p{
		font-size: 1rem;
	}
}
/*　　会社案内　　*/
.front-company-guide{
	position: relative;
	padding: 3.1875rem 0 17.0625rem 0;
}
.front-company-guide::before,
.front-company-guide::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.front-company-guide::before{
	background-color: #e3f4fb;
	transform: skewY(8deg);
	top: 2.75rem;
	bottom: 8rem;
	z-index: -1;
}
.front-company-guide::after{
	background-color: #0e205c;
	transform: skewY(4deg);
	top: 3.75rem;
	bottom: 6.375rem;
	z-index: -2;
}
.front-company-guide .contentArea{
	width: 50%;
}
.front-company-guide .guide-ttl{
	margin-bottom: 2.8125rem;
}
.front-company-guide .comment p{
	color: #221a14;
	font-size: 1.125rem;
	line-height: 2;
}
.front-company-guide .block_btn{
	margin-top: 2.5rem;
	margin-left: 3.75rem;
}
.front-company-guide .imageArea{
	width: 50%;
	padding-left: 2.625rem;
}
.front-company-guide .slick-dots{
	bottom: -2.5rem;
}
.front-company-guide .slick-dots li{
	width: 0.75rem;
	height: 0.75rem;
	margin: 0 0.625rem;
}
.front-company-guide .slick-dots li button{
	width: 0.75rem;
	height: 0.75rem;
	padding: 0;
}
.front-company-guide .slick-dots li button:before{
	font-size: 0.75rem;
	line-height: 0.75rem;
	width: 0.75rem;
	height: 0.75rem;
	opacity: .25;
	color: #0e205c;
}
.front-company-guide .slick-dots li.slick-active button:before{
    opacity: 1;
    color: #0e205c;
}
@media only screen and (max-width: 767px) {
	.front-company-guide{
		padding: 6.1875rem 0 6.0625rem 0;
	}
	.front-company-guide::before{
		top: 2.75rem;
		bottom: 2rem;
	}
	.front-company-guide::after{
		top: 2.75rem;
		bottom: 1.375rem;
	}
	.front-company-guide .contentArea{
		width: 100%;
	}
	.front-company-guide .guide-ttl{
		margin-bottom: 1.8125rem;
	}
	.front-company-guide .comment p{
		font-size: 0.9375rem;
	}
	.front-company-guide .block_btn{
		text-align: center;
		margin-top: 2.5rem;
		margin-left: 0;
	}
	.front-company-guide .imageArea{
		width: 100%;
		padding-left: 0;
		margin-top: 1.5rem;
	}
	.front-company-guide .slick-dots{
		bottom: -2.5rem;
	}
	.front-company-guide .slick-dots li{
		width: 0.625rem;
		height: 0.625rem;
		margin: 0 0.375rem;
	}
	.front-company-guide .slick-dots li button{
		width: 0.625rem;
		height: 0.625rem;
	}
	.front-company-guide .slick-dots li button:before{
		font-size: 0.625rem;
		line-height: 0.625rem;
		width: 0.625rem;
		height: 0.625rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-company-guide{
		padding: 4.25rem 0 10.0625rem 0;
	}
	.front-company-guide::before{
		top: 3.75rem;
		bottom: 4rem;
	}
	.front-company-guide::after{
		top: 4rem;
		bottom: 3.375rem;
		z-index: -2;
	}
	.front-company-guide .contentArea{
		width: 50%;
	}
	.front-company-guide .guide-ttl{
		margin-bottom: 2.8125rem;
	}
	.front-company-guide .comment p{
		font-size: 1.125rem;
	}
	.front-company-guide .block_btn{
		margin-top: 2.5rem;
		margin-left: 3.75rem;
	}
	.front-company-guide .imageArea{
		width: 50%;
		padding-left: 2.625rem;
	}
}
/*　　スタッフ紹介　　*/
.front-staff-guide{
	background: #0e205c;
	padding: 8rem 0 4.75rem 0;
}
.front-staff-guide .guide-ttl{
	margin-bottom: 3.4375rem;
}
.front-staff-guide .guide-ttl h2{
	color: #a0cee2;
}
.front-staff-guide .guide-ttl .roma{
	color: #ffffff;
}
.front-staff-guide .staff-list{
	max-width: 1000px;
	margin: 0 auto;
}
.front-staff-guide .staff-list li{
	width: 20%;
}
.front-staff-guide .block_btn{
	margin-top: 4.5625rem;
}
@media only screen and (max-width: 767px) {
	.front-staff-guide{
		padding: 5rem 0 3.75rem 0;
	}
	.front-staff-guide .guide-ttl{
		margin-bottom: 1.875rem;
	}
	.front-staff-guide .staff-list li{
		width: 50%;
	}
	.front-staff-guide .block_btn{
		margin-top: 2.5625rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-staff-guide{
		padding: 8rem 0 4.75rem 0;
	}
	.front-staff-guide .guide-ttl{
		margin-bottom: 3.4375rem;
	}
	.front-staff-guide .block_btn{
		margin-top: 4.5625rem;
	}
}
/**
/* 下層ページ共通 CSS
----------------------------------------------- */
/*　　ページヘッダー　　*/
.page-view{
	background-color: #e3f4fb;
	margin-top: 4.5rem;
	padding: 6.25rem 0;
	margin-bottom: 6.375rem;
}
.page-view.staff,
.page-view.contact{
	margin-bottom: 0;
}
.page-view .view-ttl .roma{
	font-family: "EB Garamond", serif;
	font-size: 3.75rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform:capitalize;
	margin-bottom: 0.625rem;
}
.page-view .view-ttl h1{
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
	.page-view{
		margin-top: 4rem;
		padding: 3rem 0;
		margin-bottom: 3.375rem;
	}
	.page-view .view-ttl .roma{
		font-size: 2.75rem;
		margin-bottom: 0.375rem;
	}
	.page-view .view-ttl h1{
		font-size: 0.9375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.page-view{
		margin-top: 5rem;
		padding: 4.5rem 0;
		margin-bottom: 4.375rem;
	}
}
/*　　見出し　　*/
.page-guide .guide-ttl h2{
	color: #003f7e;
	font-size: 1.625rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.05em;
	border-bottom: 1px solid #ba932b;
	padding-left: 3.75rem;
	padding-bottom: 2.8125rem;
	margin-bottom: 2.8125rem;
}
.page-guide .guide-ttl h2 br{
	display: none;
}
.page-guide .contentArea h3{
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.05em;
	margin-bottom: 1.4375rem;
}
.page-guide .contentArea p{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6875;
	letter-spacing: 0.05em;
}
.page-guide .contentArea p:not(:last-child){
	margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
	.page-guide .guide-ttl h2{
		font-size: 1.375rem;
		padding-left: 0;
		padding-bottom: 1.25rem;
		margin-bottom: 1.25rem;
	}
	.page-guide .contentArea h3{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.page-guide .contentArea p{
		font-size: 0.9375rem;
	}
	.page-guide .contentArea p:not(:last-child){
		margin-bottom: 1.5rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.page-guide .guide-ttl h2{
		padding-left: 1.75rem;
		padding-bottom: 1.8125rem;
		margin-bottom: 1.8125rem;
	}
	.page-guide .contentArea h3{
		margin-bottom: 1.25rem;
	}
	.page-guide .contentArea p:not(:last-child){
		margin-bottom: 2rem;
	}
}
/**
/* 事業内容 CSS
----------------------------------------------- */
.services-guide{
	padding-bottom: 10.625rem;
}
.services-guide .services-nav{
	column-gap: 1.5rem;
	row-gap: 1.5rem;
	margin-bottom: 9.375rem;
}
.services-guide .services-nav li{
	position: relative;
	width: calc(16.666% - 1.25rem);
	height: 11rem;
	display: flex;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
	border: 1px solid #c3c3c3;
}
.services-guide .services-nav li a{
	display: block;
	color: #525252;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.05em;
}
.services-guide .services-nav li a span{
	position: absolute;
	bottom: 0.625rem;
	font-family: "EB Garamond", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform:capitalize;
	left: 50%;
    transform: translateX(-50%);
}
.services-guide .services-nav li a span::before{
	position: absolute;
	right: -1rem;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 0.4375rem;
	height: 0.25rem;
	border: 0.25rem solid transparent;
	border-top: 0.4375rem solid #525252;
	top: 0.375rem;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}
@media only screen and (max-width: 767px) {
	.services-guide{
		padding-bottom: 10.625rem;
	}
	.services-guide .services-nav{
		column-gap: 0.625rem;
		row-gap: 0.625rem;
		margin-bottom: 4.375rem;
	}
	.services-guide .services-nav li{
		width: calc(50% - 0.375rem);
		height: 7rem;
	}
	.services-guide .services-nav li a{
		font-size: 1.125rem;
	}
	.services-guide .services-nav li a span{
		bottom: 0.625rem;
		font-size: 0.9375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.services-guide{
		padding-bottom: 10.625rem;
	}
	.services-guide .services-nav{
		column-gap: 0.625rem;
		row-gap: 0.625rem;
		margin-bottom: 5.375rem;
	}
	.services-guide .services-nav li{
		width: calc(16.666% - 0.52rem);
		height: 9rem;
	}
	.services-guide .services-nav li a{
		font-size: 1.125rem;
	}
	.services-guide .services-nav li a span::before{
		right: -1rem;
		width: 0.4375rem;
		top: 0.375rem;
	}
}
.services-guide .services-list .services-items:not(:last-child){
	margin-bottom: 9.375rem;
}
.services-list .services-items .js-tab-ttl,
.services-list .services-items .js-tab-contents{
	display: none;
}
.services-list .services-items .js-tab-ttl.current,
.services-list .services-items .js-tab-contents.current{
	display: block;
}
.services-list .services-items .js-tab-contents.js-inview{
	transition: 0.5s;
}
.services-list .services-items .services-detail{
	padding-left: 3.75rem;
	margin-top: 4.375rem;
	column-gap: 2%;
}
.services-list .services-items .services-detail .services-detail-l{
	width: 48%;
}
.services-list .services-items .services-detail h3{
	position: relative;
	display: flex;
	align-items: center;
	color: #003f7e;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.05em;
	margin-bottom: 7.5rem;
}
.services-list .services-items .services-detail h3 span{
	font-family: "EB Garamond", serif;
	color: #003f7e;
	font-size: 3.75rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	margin-right: 1.125rem;
}
.services-list .services-items .services-detail h3::after{
	position: absolute;
	content: '';
	background: #c3c3c3;
	width: 25rem;
	height: 1px;
	left: 0;
	bottom: -3.125rem;
}
.services-list .services-items .services-detail .services-detail-r{
	width: 50%;
}
.services-list .services-items .services-detail .detail-img{
	margin-right: -12.5rem;
	max-width: 600px;
}
.services-list .services-items .services-detail .detail-img > img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.services-list .services-items .services-detail .comment{
	margin-top: 3.125rem;
}
.services-list .services-items .detail-nav .js-tab-btn{
	position: relative;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.05em;
	padding-left: 1.5rem;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	cursor: pointer;
}
.services-list .services-items .detail-nav .js-tab-btn::before{
	position: absolute;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 0.4375rem;
	height: 0.25rem;
	border: 0.25rem solid transparent;
	border-left: 0.4375rem solid #525252;
	top: 0.5rem;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
.services-list .services-items .detail-nav .js-tab-btn + .js-tab-btn{
	margin-top: 1.06rem;
}
.services-list .services-items .detail-nav .js-tab-btn span{
	font-family: "EB Garamond", serif;
	font-size: 1.375rem;
	font-weight: 400;
	line-height: 1;
	margin-right: 0.625rem;
}
.services-list .services-items .detail-nav .js-tab-btn:hover,
.services-list .services-items .detail-nav .js-tab-btn.current{
	color: #003f7e;
	font-weight: 600;
}
.services-list .services-items .detail-nav .js-tab-btn:hover::before,
.services-list .services-items .detail-nav .js-tab-btn.current::before{
	border-left: 0.4375rem solid #003f7e;
}
.services-list .services-items .services-case{
	margin-top: 5.625rem;
}
.services-list .services-items .services-case h3{
	position: relative;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.05em;
	margin-bottom: 5rem;
}
.services-list .services-items .services-case h3::after{
	position: absolute;
	content: '';
	background: #c3c3c3;
	width: 25rem;
	height: 1px;
	left: 0;
	bottom: -2.5rem;
}
.services-list .services-items .services-case .case-items:not(:last-child){
	margin-bottom: 3.75rem;
}
.services-list .services-items .services-case .ttl{
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.05em;
	border: 1px solid #c3c3c3;
	padding: 0.875rem 1.625rem;
}
.services-list .services-items .services-case .box{
	border: 1px solid #c3c3c3;
	padding-top: 1.25rem;
	margin-top: 1.875rem;
}
.services-list .services-items .services-case .box h4{
	width: 12.5rem;
	color: #fff;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.05em;
	padding: 0.625rem 1.25rem;
}
.services-list .services-items .services-case .box h4.red{
	background-image: url(../img/icon/ttl_red.png);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
}
.services-list .services-items .services-case .box h4.blue{
	background-image: url(../img/icon/ttl_blue.png);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
}
.services-list .services-items .services-case .box .list{
	padding: 1.875rem 1.625rem 1.875rem 4.25rem;
}
.services-list .services-items .services-case .box ul{
	list-style: none!important;
}
.services-list .services-items .services-case .box ul li{
	position: relative;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.05em;
	padding-left: 1.25rem;
}
.services-list .services-items .services-case .box ul li::before{
	position: absolute;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 0.4375rem;
	height: 0.25rem;
	border: 0.25rem solid transparent;
	border-left: 0.4375rem solid #525252;
	top: 0.5rem;
}
.services-list .services-items .services-case .box ul li + li{
	margin-top: 1.3rem;
}
@media only screen and (max-width: 767px) {
	.services-guide .services-list .services-items:not(:last-child){
		margin-bottom: 6.375rem;
	}
	.services-list .services-items .services-detail{
		padding-left: 0;
		margin-top: 3.375rem;
	}
	.services-list .services-items .services-detail .services-detail-l{
		width: 100%;
	}
	.services-list .services-items .services-detail h3{
		font-size: 1.125rem;
		margin-bottom: 4rem;
	}
	.services-list .services-items .services-detail h3 span{
		font-size: 2rem;
		margin-right: 0.5rem;
	}
	.services-list .services-items .services-detail h3::after{
		width: 20rem;
		bottom: -1.5rem;
	}
	.services-list .services-items .services-detail .services-detail-r{
		width: 100%;
		margin-top: 2rem;
	}
	.services-list .services-items .services-detail .detail-img{
		margin-right: -1.75rem;
		width: 100%;
	}
	.services-list .services-items .services-detail .comment{
		margin-top: 1.25rem;
	}
	.services-list .services-items .detail-nav .js-tab-btn{
		font-size: 0.9375rem;
		padding-left: 1.25rem;
	}
	.services-list .services-items .detail-nav .js-tab-btn + .js-tab-btn{
		margin-top: 1.06rem;
	}
	.services-list .services-items .detail-nav .js-tab-btn span{
		font-size: 1.375rem;
		margin-right: 0.625rem;
	}
	.services-list .services-items .detail-nav .js-tab-btn:hover::before,
	.services-list .services-items .detail-nav .js-tab-btn.current::before{
		border-left: 0.4375rem solid #003f7e;
	}
	.services-list .services-items .services-case{
		margin-top: 2rem;
	}
	.services-list .services-items .services-case h3{
		font-size: 1.125rem;
		margin-bottom: 2.5rem;
	}
	.services-list .services-items .services-case h3::after{
		width: 12rem;
		bottom: -1.125rem;
	}
	.services-list .services-items .services-case .case-items:not(:last-child){
		margin-bottom: 3.75rem;
	}
	.services-list .services-items .services-case .ttl{
		font-size: 1rem;
		padding: 0.625rem;
	}
	.services-list .services-items .services-case .box{
		padding-top: 1rem;
		margin-top: 1.25rem;
	}
	.services-list .services-items .services-case .box h4{
		width: 9.5rem;
		font-size: 1rem;
		padding: 0.625rem 1rem;
	}
	.services-list .services-items .services-case .box .list{
		padding: 1rem 1.25rem 1.5rem 1.25rem;
	}
	.services-list .services-items .services-case .box ul li{
		font-size: 0.875rem;
		padding-left: 1rem;
	}
	.services-list .services-items .services-case .box ul li::before{
		top: 0.375rem;
	}
	.services-list .services-items .services-case .box ul li + li{
		margin-top: 0.625rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.services-guide .services-list .services-items:not(:last-child){
		margin-bottom: 7.375rem;
	}
	.services-list .services-items .services-detail{
		padding-left: 1.75rem;
		margin-top: 3.375rem;
	}
	.services-list .services-items .services-detail h3{
		font-size: 1.25rem;
		margin-bottom: 5.5rem;
	}
	.services-list .services-items .services-detail h3 span{
		font-size: 3.25rem;
		margin-right: 0.625rem;
	}
	.services-list .services-items .services-detail h3::after{
		width: 20rem;
		bottom: -2rem;
	}
	.services-list .services-items .services-detail .services-detail-r{
		width: 50%;
	}
	.services-list .services-items .services-detail .detail-img{
		margin-right: -5rem;
		width: 100%;
	}
	.services-list .services-items .services-detail .comment{
		margin-top: 2.125rem;
	}
	.services-list .services-items .detail-nav .js-tab-btn + .js-tab-btn{
		margin-top: 1.06rem;
	}
	.services-list .services-items .services-case{
		margin-top: 3.625rem;
	}
	.services-list .services-items .services-case h3{
		font-size: 1.25rem;
		margin-bottom: 3.5rem;
	}
	.services-list .services-items .services-case h3::after{
		width: 16rem;
		bottom: -1.5rem;
	}
	.services-list .services-items .services-case .case-items:not(:last-child){
		margin-bottom: 3.75rem;
	}
	.services-list .services-items .services-case .ttl{
		font-size: 1.25rem;
		padding: 0.875rem 1rem;
	}
	.services-list .services-items .services-case .box h4{
		font-size: 1.25rem;
		padding: 0.625rem 1rem;
	}
	.services-list .services-items .services-case .box .list{
		padding: 1.5rem 1.5rem 1.5rem 2.25rem;
	}
}
/**
/* 会社概要 CSS
----------------------------------------------- */
.company-wrap{
	padding: 1.25rem 0 7rem 0;
}
.company-wrap .page-guide:not(:last-child){
	padding-bottom: 7rem;
}
.company-wrap .page-guide.greeting-guide{
	background: #e3f4fb;
	margin-bottom: 7rem;
	padding-top: 5rem;
}
@media only screen and (max-width: 767px) {
	.company-wrap{
		padding: 1.25rem 0 4rem 0;
	}
	.company-wrap .page-guide:not(:last-child){
		padding-bottom: 4.375rem;
	}
	.company-wrap .page-guide.greeting-guide{
		margin-bottom: 4.375rem;
		padding-top: 4.375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.company-wrap{
		padding: 1.25rem 0 7rem 0;
	}
	.company-wrap .page-guide:not(:last-child){
		padding-bottom: 6.375rem;
	}
}
/*　　トップ　　*/
.company-wrap .head-guide .contentArea h3{
	margin-bottom: 2.875rem;
}
@media only screen and (max-width: 767px) {
	.company-wrap .head-guide .contentArea h3{
		margin-bottom: 1.875rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.company-wrap .head-guide .contentArea h3{
		margin-bottom: 1.875rem;
	}
}
/*　　経営理念　　*/
.philosophy-guide .contentArea h3{
	color: #003f7e;
	margin-bottom: 3.0625rem;
}
@media only screen and (max-width: 767px) {
	.philosophy-guide .contentArea h3{
		margin-bottom: 1.875rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.philosophy-guide .contentArea h3{
		margin-bottom: 2.0625rem;
	}
}
/*　　法人概要　　*/
.company-tbl th,
.company-tbl td{
	color: #222;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.6875;
	letter-spacing: 0.05em;
	vertical-align: middle;
}
.company-tbl th{
	background: #525252;
	width: 11.25rem;
	color: #ffffff;
	text-align: center;
	border-bottom: 1px solid #ffffff;
	padding: 0.8125rem;
}
.company-tbl td{
	padding: 0.8125rem 0.8125rem 0.8125rem 2rem;
}
.company-tbl td ul li{
	display: inline-block;
}
.company-tbl td ul li + li{
	margin-left: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.company-tbl th,
	.company-tbl td{
		display: block;
		font-size: 0.9375rem;
	}
	.company-tbl th{
		width: 100%;
		padding: 0.625rem;
	}
	.company-tbl td{
		padding: 1rem 0.625rem;
	}
	.company-tbl td ul li{
		display: block;
	}
	.company-tbl td ul li + li{
		margin-left: 0;
	}
}
/*　　アクセス　　*/
.access-guide .access-box{
	width: 50%;
	padding-right: 2.1875rem;
}
.access-guide .access-box p{
	position: relative;
	padding-left: 1.5rem;
}
.access-guide .access-box p::before {
	content: '●';
	position: absolute;
	top: 0;
	left: 0;
}
.access-guide .access-box p:not(:last-child){
	margin-bottom: 1.125rem;
}
.access-guide .map{
	width: 50%;
}
.access-guide .map iframe{
	height: 29.5rem;
}
@media only screen and (max-width: 767px) {
	.access-guide .access-box{
		width: 100%;
		padding-right: 0;
		margin-bottom: 1rem;
	}
	.access-guide .access-box p{
		padding-left: 1.25rem;
	}
	.access-guide .access-box p:not(:last-child){
		margin-bottom: 0.625rem;
	}
	.access-guide .map{
		width: 100%;
	}
	.access-guide .map iframe{
		height: 15.5rem;
	}
}
.link-guide .bnrList{
	display: flex;
	justify-content: center;
}
.link-guide .bnrItem{
	max-width: 500px;
}
.link-guide .bnrItem > a{
	display: inline-block;
	width: 100%;
}

/**
/* スタッフ紹介 CSS
----------------------------------------------- */
/*　　一覧　　*/
.staff-wrap .staff-guide{
	padding: 8.6875rem 0 7.75rem 0;
}
.staff-wrap .staff-guide.bg_gray{
	background: #f8f9f9;
}
.staff-guide .staff-list{
	column-gap: 5rem;
	row-gap: 5.9375rem;
}
.staff-list .staff-items{
	width: calc(25% - 3.75rem);
}
.staff-list .staff-items .imageArea{
	margin-bottom: 1.875rem;
}
.staff-list .staff-items .imageArea a{
	cursor: pointer;
}
.staff-list .staff-items .staff-name > img{
	vertical-align: bottom;
	max-width: 130px;
}
@media only screen and (max-width: 1024px){
	.staff-list .staff-items .staff-name > img{
		max-width: 96px;
	}
}
@media only screen and (max-width: 767px){
	.staff-list .staff-items .staff-name > img{
		max-width: 100%;
		width: 56%;
	}
}
.staff-list .staff-items .staff-name{
	position: relative;
	font-size: 1.625rem;
	font-weight: 400;
	line-height: 1.25;
	text-align: center;
	margin-bottom: 2.75rem;
}
.staff-list .staff-items .staff-name::after{
	position: absolute;
	content: '';
	background: #c3c3c3;
	width: 11.25rem;
	height: 1px;
	right: 50%;
	transform: translateX(50%);
	bottom: -1.375rem;
}
.staff-list .staff-items .staff-post ul li{
	color: #967e59;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}
.staff-list .staff-items .staff-data p{
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 1rem;
}
.staff-list .staff-items .more_btn{
	text-align: center;
	margin-top: 1.625rem;
}
.staff-list .staff-items .more_btn li{
	display: inline-block;
}
.staff-list .staff-items .more_btn a{
	position: relative;
	font-family: "EB Garamond", serif;
	display: block;
	color: #525252;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.05em;
	text-transform:capitalize;
	cursor: pointer;
}
.staff-list .staff-items .more_btn a::after{
	position: absolute;
	top: 0.4375rem;
	right: -1rem;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 0.25rem;
	height: 0.4375rem;
	border: 0.25rem solid transparent;
	border-top: 0.4375rem solid #525252;
}
@media only screen and (max-width: 767px) {
	.staff-wrap .staff-guide{
		padding: 2.6875rem 0 3.75rem 0;
	}
	.staff-guide .staff-list{
		column-gap: 1.5rem;
		row-gap: 3.9375rem;
	}
	.staff-list .staff-items{
		width: calc(50% - 0.75rem);
	}
	.staff-list .staff-items .imageArea{
		margin-bottom: 1.25rem;
	}
	.staff-list .staff-items .staff-name{
		font-size: 1.125rem;
		margin-bottom: 2rem;
	}
	.staff-list .staff-items .staff-name::after{
		width: 7.25rem;
		bottom: -1rem;
	}
	.staff-list .staff-items .staff-post ul li{
		font-size: 0.875rem;
	}
	.staff-list .staff-items .staff-data p{
		font-size: 0.75rem;
		margin-top: 0.625rem;
	}
	.staff-list .staff-items .more_btn{
		margin-top: 1.25rem;
	}
	.staff-list .staff-items .more_btn a{
		font-size: 0.9375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.staff-wrap .staff-guide{
		padding: 4.6875rem 0 6rem 0;
	}
	.staff-guide .staff-list{
		column-gap: 2rem;
		row-gap: 3.9375rem;
	}
	.staff-list .staff-items{
		width: calc(25% - 1.5rem);
	}
	.staff-list .staff-items .staff-name{
		font-size: 1.375rem;
		margin-bottom: 2.375rem;
	}
	.staff-list .staff-items .staff-name::after{
		width: 7.25rem;
		bottom: -1.125rem;
	}
	.staff-list .staff-items .more_btn{
		margin-top: 1.25rem;
	}
}
/*　　ポップアップ　　*/
.js-modal-overlay{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	cursor: pointer;
}
.js-modal-overlay.is-active {
	display: block;
}
.js-modal-content{
	opacity: 0;
	position: fixed;
	top: 50%;
	right: 50%;
	width: 90%;
	height: 90%;
	max-width: 1000px;
	max-height: 700px;
	transform: translate(50%,-50%);
	z-index: 10000;
	padding: 0.625rem 0 0.625rem 0.625rem;
	background-color: #ffffff;
	pointer-events: none;
	box-shadow: 1.875rem 1.25rem 3.125rem rgba(14, 18, 22, 0.4);
}
.js-modal-content.is-active {
	opacity: 1;
	pointer-events: auto;
}
.js-modal-content .flex_wrap{
	height: 100%;
	overflow-y: scroll;
}
.modal .modal-close{
	position: absolute;
	width: 2.375rem;
	top: 1.25rem;
	right: 1.25rem;
	cursor: pointer;
}
.staff-modal .imageArea{
	width: 43%;
}
.staff-modal .contentArea{
	width: 57%;
	padding-left: 0.625rem;
}
.staff-modal .staff-profile{
	background: #f3f4f5;
	padding: 2.25rem 2.25rem 2.25rem 4rem;
}
.staff-modal .staff-profile .staff-name{
	position: relative;
	color: #222222;
	font-size: 1.625rem;
	font-weight: 400;
	line-height: 1.25;
	margin-bottom: 2.75rem;
}
.staff-modal .staff-profile .staff-name::after{
	position: absolute;
	content: '';
	background: #c3c3c3;
	width: 18.75rem;
	height: 1px;
	left: 0;
	bottom: -1.375rem;
}
.staff-modal .staff-profile .staff-post ul li{
	display: inline-block;
	color: #967e59;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}
.staff-modal .staff-profile .staff-post ul li:not(:last-child)::after{
	display: inline-block;
	content: '/';
	margin-left: 0.375rem;
}
.staff-modal .staff-data{
	padding: 0.625rem 2rem 0 3rem;
}
.staff-modal .staff-data h3{
	position: relative;
	color: #222222;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.45;
	padding-left: 0.625rem;
	margin-bottom: 1.875rem;
	margin-top: 1.5rem;
}
.staff-modal .staff-data h3::after{
	position: absolute;
	content: '';
	background: #d4c7b5;
	width: 6.625rem;
	height: 1px;
	left: 0;
	bottom: -0.625rem;
}
.staff-modal .staff-data p{
	color: #222222;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.675;
	padding-left: 0.625rem;
}
@media only screen and (max-width: 767px) {
	.modal .modal-close{
		width: 1.875rem;
	}
	.staff-modal .imageArea{
		width: 100%;
		height: 28rem;
		overflow: hidden;
	}
	.staff-modal .contentArea{
		width: 100%;
		padding-left: 0;
	}
	.staff-modal .staff-profile{
		padding: 1.125rem 1.25rem;
		margin-top: 0.625rem;
	}
	.staff-modal .staff-profile .staff-name{
		font-size: 1.125rem;
		margin-bottom: 1.25rem;
	}
	.staff-modal .staff-profile .staff-name::after{
		width: 10.75rem;
		bottom: -0.625rem;
	}
	.staff-modal .staff-profile .staff-post ul li{
		font-size: 0.875rem;
	}
	.staff-modal .staff-profile .staff-post ul li:not(:last-child)::after{
		margin-left: 0.375rem;
	}
	.staff-modal .staff-data{
		padding: 0.625rem 1.25rem 1.25rem 1.25rem;
	}
	.staff-modal .staff-data h3{
		font-size: 1rem;
		padding-left: 0.375rem;
		margin-bottom: 1rem;
		margin-top: 1.25rem;
	}
	.staff-modal .staff-data h3::after{
		width: 4.625rem;
		bottom: -0.375rem;
	}
	.staff-modal .staff-data p{
		font-size: 0.875rem;
		padding-left: 0.375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.staff-modal .staff-profile{
		padding: 1.5rem 1.25rem 1.5rem 1.625rem;
	}
	.staff-modal .staff-profile .staff-name{
		font-size: 1.375rem;
		margin-bottom: 2.5rem;
	}
	.staff-modal .staff-profile .staff-name::after{
		width: 18.75rem;
		bottom: -1.375rem;
	}
	.staff-modal .staff-profile .staff-post ul li{
		font-size: 1rem;
	}
	.staff-modal .staff-profile .staff-post ul li:not(:last-child)::after{
		margin-left: 0.375rem;
	}
	.staff-modal .staff-data{
		padding: 0.625rem 1rem 0 1rem;
	}
}
/**
/* お問い合わせ CSS
----------------------------------------------- */
.contact-wrap .contact-guide{
	background: #f8f9f9;
	padding: 8.6875rem 0 7.75rem 0;
}
.contact-guide .p-text{
	font-size: 1.125rem;
}
.contact-guide .p-text.mb{
	margin-bottom: 1.5rem;
}
.contact-guide .p-note{
	font-size: 1.125rem;
	margin-top: 0.5rem;
}
.form-grid{
	margin-top: 5rem;
}
.form-box{
	width: 80%;
	margin: 0 auto;
	margin-top: 5rem;
}
.form-box .p-required{
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 0.875rem;
}
.form-box .p-required span{
	color: #df0000;
}
.form-box .form-tbl{
	margin-bottom: 2.5rem;
}
.form-box .form-tbl dt{
	margin-bottom: 0.875rem;
}
.form-box .form-tbl dt .ttl{
	display: flex;
	align-items: center;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
}
.form-box .form-tbl dt .ttl span{
	display: inline-block;
	color: #df0000;
	font-size: 0.75rem;
	margin-left: 1rem;
}
.form-box .form-tbl dd{
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 500;
}
.form-box .form-tbl dd ul{
	width: 100%;
}
.form-box .form-tbl dd ul.flex{
	column-gap: 1rem;
}
.form-box .form-tbl dd ul li span{
	display: block;
	margin-bottom: 0.25rem;
}
.form-box .form-tbl dd ul li + li{
	margin-top: 1.5rem;
}
.form-box .form-tbl dd label{
	margin-right: 1rem;
}
.wpcf7-list-item{
	margin: 0.375rem 0;
}
.wpcf7-list-item.last{
	display: block;
}
input[type=checkbox],
input[type=radio]{
	margin: -0.15rem 0.15rem 0 0;
	vertical-align: middle;
}
input[type="date"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select{
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #d5d4d4;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.25;
	padding: 1.125rem;
}
input[type="date"]::placeholder,
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder{
	color: #a2a2a2;
}
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: #a2a2a2;
}
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: #a2a2a2;
}
textarea{
	height: 100%;
}
.acceptance-box{
	margin-top: 5.5rem;
}
.form-box .note{
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.45;
}
.acceptance-check{
	color: #221a14;
	font-weight: 400;
	line-height: 1.45;
	text-align: center;
	margin-top: 2rem;
}
.acceptance-check label{
	display: flex;
	align-items: center;
	justify-content: center;
}
/* .acceptance-check .acceptance{
	transform: scale(1.5);
	border: 1px solid #051338;
	margin: 0.25rem 0.15rem 0 0;
} */
.acceptance-check .wpcf7-list-item{
	margin: 0;
}
.acceptance-check .wpcf7-list-item-label{
	margin-left: 1rem;
}
.submit_btn{
	text-align: center;
	margin-top: 4rem;
}
.submit_btn li{
	display: inline-block;
	width: 100%;
	max-width: 18.75rem;
}
.submit_btn li + li{
	margin-left: 2rem;
}
.confirmBtn,
input[type="submit"] {
	position: relative;
	display: block;
	width: 100%;
	background: #0e215c;
	border: none;
	font-family: "Zen Old Mincho", serif;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 3.4;
	letter-spacing: 0.1em;
	text-align: center;
	cursor: pointer;
	border-radius: 3.125rem;
}
.submit_btn li .wpcf7-previous{
	position: relative;
	display: block;
	width: 100%;
	background: #c1c1c1;
	border: none;
	font-family: "Zen Old Mincho", serif;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 3.4;
	letter-spacing: 0.1em;
	text-align: center;
	cursor: pointer;
	border-radius: 3.125rem;
}
.form-box .p-note{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
}
.wpcf7-spinner{
	display: none;
}
.alert {
	color: #df0000;
}
.wpcf7-not-valid-tip {
	display: none!important;
}
@media only screen and (max-width: 767px) {
	.contact-wrap .contact-guide{
		padding: 2.6875rem 0 3.75rem 0;
	}
	.contact-guide .inner{
		padding-right: 1.5rem;
		padding-left: 1.5rem;
	}
	.contact-guide .p-text{
		font-size: 1rem;
	}
	.contact-guide .p-note{
		font-size: 1rem;
	}
	.form-grid{
		margin-top: 3rem;
	}
	.form-box{
		width: 100%;
		margin-top: 3rem;
	}
	.form-box .p-required{
		font-size: 0.9375rem;
	}
	.form-box .form-tbl{
		margin-bottom: 2rem;
	}
	.form-box .form-tbl dt{
		width: 100%;
		margin-bottom: 0.625rem;
	}
	.form-box .form-tbl dt .ttl{
		font-size: 0.9375rem;
	}
	.form-box .form-tbl dt .ttl.mt{
		margin-top: 0;
	}
	.form-box .form-tbl dt .ttl span{
		margin-left: 0.625rem;
	}
	.form-box .form-tbl dd{
		width: 100%;
		font-size: 0.9375rem;
		padding-left: 0;
	}
	.form-box .form-tbl dd label{
		margin-right: 0.65rem;
		margin-top: 0.65rem;
	}
	input[type=checkbox],
	input[type=radio]{
		margin: 0 0.375rem 0 0;
	}
	input[type="date"],
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="url"],
	textarea,
	select{
		font-size: 0.9375rem;
		padding: 1rem;
	}
	.acceptance-box{
		margin-top: 2.5rem;
	}
	.form-box .note{
		font-size: 0.875rem;
	}
	.acceptance-check{
		font-size: 1rem;
		margin-top: 1.375rem;
	}
	.acceptance-check .wpcf7-list-item-label{
		margin-left: 0.625rem;
	}
	.submit_btn{
		margin-top: 3rem;
	}
	.submit_btn li{
		width: 48%;
		max-width: 18.75rem;
	}
	.submit_btn li + li{
		margin-left: 2%;
	}
	input[type="submit"],
	.submit_btn li .wpcf7-previous{
		font-size: 1rem;
		line-height: 3;
	}
	.form-box .p-note{
		font-size: 0.9375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.contact-wrap .contact-guide{
		padding: 4.6875rem 0 6rem 0;
	}
}
/*　　プライバシーポリシー　　*/
.privacy-box h3{
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.45;
	border-left: 0.375rem solid #0e215c;
	padding-left: 1rem;
	margin-bottom: 1.5rem;
	margin-top: 6rem;
}
.privacy-box .box{
	background: #FFFFFF;
	border: 1px solid #d5d4d4;
	height: 13.75rem;
	padding: 2rem 2.5rem 1.5rem 2.5rem;
	overflow-y: scroll;
}
.privacy-box dl{
	margin-top: 1.5rem;
}
.privacy-box p{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.85;
}
.privacy-box dl dt{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 0.625rem;
}
.privacy-box dl dd{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.85;
}
.privacy-box dl dd > a{
	display: inline-block;
	color: #a88c1d;
	text-decoration: underline;
}
@media only screen and (max-width: 767px) {
	.privacy-box h3{
		font-size: 1rem;
		margin-bottom: 1.25rem;
		margin-top: 3rem;
	}
	.privacy-box .box{
		height: 12rem;
		padding: 1rem;
	}
	.privacy-box p{
		font-size: 0.875rem;
	}
	.privacy-box dl{
		margin-top: 1.25rem;
	}
	.privacy-box dl dt{
		font-size: 0.9375rem;
	}
	.privacy-box dl dd{
		font-size: 0.875rem;
	}
}
/*　　お問い合わせ完了　　*/
.thanks-guide{
	padding: 1.25rem 0px 7rem;
}
.thanks-guide h3{
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	margin-bottom: 2rem;
}
.thanks-guide p{
	text-align: center;
}
.thanks-guide .block_btn{
	text-align: center;
	margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
	.thanks-guide{
		padding: 1.25rem 0px 4rem;
	}
	.thanks-guide h3{
		font-size: 1.375rem;
		margin-bottom: 1.5rem;
	}
	.thanks-guide .block_btn{
		margin-top: 2rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.thanks-guide{
		padding: 1.25rem 0 7rem 0;
	}
}
/**
/* サイトマップ CSS
----------------------------------------------- */
.site-map-guide{
	padding: 1.25rem 0 7rem 0;
}
.site-map-guide .site-map-list + .site-map-list{
	margin-left: 6rem;
}
.site-map-guide .site-map-list li + li{
	margin-top: 2rem;
}
.site-map-guide .site-map-list li a{
	display: block;
	color: #525252;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
}
.site-map-guide .site-map-list li a br{
	display: none;
}
.site-map-guide .site-map-list li ul{
	margin-left: 0.65rem;
	margin-top: 2rem;
}
.site-map-guide .site-map-list li ul li a{
	position: relative;
	padding-left: 1.125rem;
}
.site-map-guide .site-map-list li ul li a:hover{
	text-decoration: underline;
}
.site-map-guide .site-map-list li ul li a::before{
	content:  "●";
	position: absolute;
	top: 0.65rem;
	left: 0;
	color: #967e59;
	font-size: 0.3125rem;
}
@media only screen and (max-width: 767px) {
	.site-map-guide{
		padding: 1.25rem 0 5rem 0;
	}
	.site-map-guide .site-map-list{
		width: 100%;
	}
	.site-map-guide .site-map-list + .site-map-list{
		margin-left: 0;
		margin-top: 1.25rem;
	}
	.site-map-guide .site-map-list li + li{
		margin-top: 1.25rem;
	}
	.site-map-guide .site-map-list li ul{
		margin-left: 0.375rem;
		margin-top: 1.25rem;
	}
	.site-map-guide .site-map-list li ul li a{
		padding-left: 1rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.site-map-guide{
		padding: 1.25rem 0 7rem 0;
	}
}
/**
/* お知らせ CSS
----------------------------------------------- */
/*　　一覧　　*/
.news-guide{
	padding: 100px 0;
}
.frontWrap .news-guide{
	padding: 120px 0 60px 0;
}
.frontWrap .news-guide .guide-ttl{
	margin-bottom: 7rem;
}
.news-guide .inner{
	max-width: 760px;
}
.news-list .news-items{
	display: flex;
	border-bottom: 1px solid #F2F2F2;
	padding-bottom: 2.4rem;
	margin-bottom: 2.4rem;
}
.news-list .news-items dt{
	display: flex;
	align-items: center;
	width: 20rem;
}
.news-list .news-items .date{
	color: #9a9a9a;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
}
.news-list .news-items .category{
	margin-left: 1.5rem;
}
.news-list .news-items .category a{
	background-color: #010066;
	display: block;
	color: #ffffff;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.25;
	padding: 3px 15px;
	border-radius: 30px;
}
.news-list .news-items dd{
	width: calc(100% - 20rem);
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	padding-left: 1rem;
}
.news-list .news-items dd a{
	color: #05161A;
}
.news-guide .block_btn{
	margin-top: 10rem;
}
@media screen and (max-width: 680px) {
	.news-guide{
		padding: 50px 0;
	}
	.frontWrap .news-guide{
		padding: 60px 0 40px 0;
	}
	.frontWrap .news-guide .guide-ttl{
		margin-bottom: 4rem;
	}
	.news-list .news-items{
		flex-wrap: wrap;
		padding-bottom: 2rem;
		margin-bottom: 2rem;
	}
	.news-list .news-items dt{
		width: 100%;
		margin-bottom: 1rem;
	}
	.news-list .news-items .date{
		font-size: 1.4rem;
	}
	.news-list .news-items .category{
		margin-left: 1.5rem;
	}
	.news-list .news-items .category a{
		font-size: 1rem;
		padding: 3px 10px;
	}
	.news-list .news-items dd{
		width: 100%;
		font-size: 1.4rem;
		padding-left: 0;
	}
	.news-guide .block_btn{
		margin-top: 4rem;
	}
}
/**
/* ページネーション CSS
----------------------------------------------- */
.wp-pagenavi {
	text-align: center;
	margin-top: 10rem;
}
.wp-pagenavi span,
.wp-pagenavi a {
	display: inline-block;
	text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span{
	display: inline-block;
	width: 4.5rem;
	height: 4.5rem;
	color: #b3b3b3;
	font-size: 2rem;
	font-weight: 500!important;
	line-height: 4.5rem;
	text-align: center;
	border: none!important;
	padding: 0!important;
	margin: 0 0.3125rem!important;
}
.wp-pagenavi .current,
.wp-pagenavi a.page:hover{
	background: #010066;
	color: #FFFFFF;
	font-weight: 500!important;
}
.wp-pagenavi span.extend{
	border: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	border: none;
}
@media screen and (max-width: 680px) {
	.wp-pagenavi {
		margin-top: 4.5rem;
	}
	.wp-pagenavi a,
	.wp-pagenavi span{
		width: 3.5rem;
		height: 3.5rem;
		font-size: 1.4rem;
		line-height: 3.5rem;
	}
}
/*　　詳細　　*/
.single-guide{
	padding: 100px 0;
}
.single-guide .inner{
	max-width: 920px;
}
.single-guide article{
	border-bottom: 1px solid #D9D9D9;
	padding-bottom: 8rem;
}
.single-guide .entry-header{
	border-bottom: 1px solid #D9D9D9;
	margin-bottom: 3rem;
	padding-bottom: 3rem;
}
.single-guide .entry-header .entry-data{
	align-items: center;
}
.single-guide .entry-header .dete{
	color: #b3b3b3;
	font-size: 1.4rem;
	font-weight: 900;
	line-height: 1.5;
}
.single-guide .entry-header .category a{
	background-color: #010066;
	display: block;
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.25;
	padding: 7px 20px;
	border-radius: 30px;
}
.single-guide .entry-header h2{
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 2rem;
}
.single-guide .entry-body h2{
	background-color: #010066;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	padding: 12px 16px;
	margin-bottom: 3rem;
}
.single-guide .entry-body h3{
	background-color: #ededed;
	position: relative;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.5;
	border-left: 0.5rem solid #010066;
	padding: 12px;
	margin-bottom: 3rem;
}
.single-guide .entry-body h4{
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 3rem;
	margin-top: 3rem;
}
.single-guide .entry-body p{
	font-size: 1.6rem;
	line-height: 2;
	margin-bottom: 3rem;
}
.single-guide .entry-body p img{
	margin: 0.5rem 0;
}
.single-guide .entry-body ol{
	list-style: decimal;
	margin-left: 2rem;
	margin-bottom: 3rem;
}
.single-guide .entry-body ul{
	list-style: disc;
	margin-left: 2rem;
	margin-bottom: 3rem;
}
.single-guide .entry-body ol li,
.single-guide .entry-body ul li{
	font-size: 1.6rem;
	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{
	margin-top: 7.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 a,
.single-guide .page-nav ul .nav__item--next a{
	display: flex;
	align-items: center;
}
.single-guide .page-nav ul .nav__item--prev a span,
.single-guide .page-nav ul .nav__item--next a span{
	color: #010066;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.45;
}
.single-guide .page-nav ul .nav__item--prev a i,
.single-guide .page-nav ul .nav__item--next a i{
	color: #010066;
	font-size: 1.6rem;
}
.single-guide .page-nav ul .nav__item--prev a i{
	margin-right: 1.8125rem;
}
.single-guide .page-nav ul .nav__item--next a i{
	margin-left: 1.8125rem;
}
.single-guide .block_btn{
	margin-top: 4rem;
}
.single-guide .block_btn li .btn{
	font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
	.single-guide{
		padding: 40px 0 60px 0;
	}
	.single-guide article{
		padding-bottom: 4rem;
	}
	.single-guide .entry-header .entry-data{
		align-items: center;
	}
	.single-guide .entry-header .dete{
		font-size: 1rem;
		font-weight: 900;
		line-height: 1.5;
	}
	.single-guide .entry-header .category a{
		font-size: 1.125rem;
		padding: 5px 15px;
	}
	.single-guide .entry-header h2{
		font-size: 2rem;
	}
	.single-guide .entry-body h2{
		font-size: 1.8rem;
		padding: 10px 12px;
		margin-bottom: 2rem;
	}
	.single-guide .entry-body h3{
		font-size: 1.6rem;
		padding: 10px 12px;
		margin-bottom: 2rem;
	}
	.single-guide .entry-body h4{
		font-size: 1.5rem;
		margin-bottom: 2rem;
		margin-top: 2rem;
	}
	.single-guide .entry-body p{
		font-size: 1.4rem;
		margin-bottom: 2rem;
	}
	.single-guide .entry-body ol,
	.single-guide .entry-body ul{
		margin-bottom: 2rem;
	}
	.single-guide .entry-body ol li,
	.single-guide .entry-body ul li{
		font-size: 1.4rem;
	}
	.single-guide .page-nav{
		margin-top: 3.5rem;
	}
	.single-guide .page-nav{
		margin-top: 2.5rem;
	}
	.single-guide .page-nav ul .nav__item--prev a span,
	.single-guide .page-nav ul .nav__item--next a span{
		font-size: 1.4rem;
	}
	.single-guide .page-nav ul .nav__item--prev a i,
	.single-guide .page-nav ul .nav__item--next a i{
		font-size: 1rem;
	}
	.single-guide .page-nav ul .nav__item--prev a i{
		margin-right: 1rem;
	}
	.single-guide .page-nav ul .nav__item--next a i{
		margin-left: 1rem;
	}
	.single-guide .block_btn{
		margin-top: 3rem;
	}
	.single-guide .block_btn li .btn{
		font-size: 1.4rem;
	}
}
/**
/* サイトマップ CSS
----------------------------------------------- */
.privacy-policy-guide{
	padding: 1.25rem 0 7rem 0;
}
.privacy-policy-guide p{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.85;
}
.privacy-policy-guide dl{
	margin-top: 2.5rem;
}
.privacy-policy-guide dl dt{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 0.625rem;
}
.privacy-policy-guide dl dd{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.85;
}
.privacy-policy-guide dl dd p:not(:last-child){
	margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
	.privacy-policy-guide{
		padding: 1.25rem 0 4rem 0;
	}
	.privacy-policy-guide p{
		font-size: 0.9375rem;
	}
	.privacy-policy-guide dl{
		margin-top: 2.5rem;
	}
	.privacy-policy-guide dl dt{
		font-size: 1rem;
		margin-bottom: 0.625rem;
	}
	.privacy-policy-guide dl dd{
		font-size: 0.9375rem;
	}
}
/**
/* エラー CSS
----------------------------------------------- */
.error-guide{
	padding: 1.25rem 0 7rem 0;
}
.error-guide .contentArea p{
	text-align: center;
}
.error-guide .error_url{
	padding: 2rem 0;
}
.error-guide .block_btn{
	margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
	.error-guide{
		padding: 1.25rem 0 4rem 0;
	}
	.error-guide .error_url{
		padding: 1.5rem 0;
	}
	.error-guide .block_btn{
		margin-top: 2rem;
	}
}

.block_anchor {
	margin-top: -86px;
	padding-top: 86px;
}
@media only screen and (max-width: 1024px) {
	.block_anchor {
		margin-top: -83px;
		padding-top: 83px;
	}
}
@media only screen and (max-width: 767px) {
	.block_anchor {
		margin-top: -4.575rem;
		padding-top: 4.575rem;
	}
}