@charset "utf-8";
/**
/* 共通 CSS
----------------------------------------------- */
/*　　見出し　　*/
.guide-ttl{
	position: relative;
}
.guide-ttl.border::after{
	position: absolute;
	background: #15315F;
	content: '';
	left: 0;
	height: 2px;
	bottom: -0.5rem;
}
.guide-ttl.border.js-inview.active::after{
	animation: border-grow 1s forwards;
}
.guide-ttl.border.center::after{
	left: 50%;
	transform: translateX(-50%);
}
@keyframes border-grow {
	0% {
		width: 0;
	}
	100% {
		width: 21.25rem;
	}
}
.guide-ttl .roma{
	color: #15315F;
	font-family: "Inter", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	font-style: Italic;
	line-height: 1.25;
}
.guide-ttl h2{
	color: #15315F;
	font-family: "Inter", sans-serif;
	font-size: 2.1875rem;
	font-weight: 700;
	line-height: 1.71;
}
.guide-ttl.c-white .roma,
.guide-ttl.c-white h2{
	color: #FFFFFF;
}
.guide-ttl.c-white.border::after{
	background: #FFFFFF;
}
@media only screen and (max-width: 767px) {
	.guide-ttl.border::after{
		height: 1px;
	}
	@keyframes border-grow {
		0% {
			width: 0;
		}
		100% {
			width: 9.375rem;
		}
	}
	.guide-ttl .roma{
		font-size: 0.75rem;
	}
	.guide-ttl h2{
		font-size: 1.25rem;
	}
}
/*　　フォント　　*/
.p-text{
	font-size: 1rem;
}
@media only screen and (max-width: 767px) {
	.p-text{
		font-size: 0.625rem;
		line-height: 1.875;
	}
}
/*　　アニメーション　　*/
.js-fadeIn{
	opacity: 0;
	transition: 1.5s;
}
.js-fadeIn.active{
	opacity: 1;
}
.fade-under { display: block; opacity: 0;  transform: translateY(0.5em); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-under.visible { opacity: 1; transform: translateY(0); }
.fade-under.fast-animation { transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; }
.fade-under span {  display: inline-block; opacity: 0; transform: translateY(0.5em); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-under.visible span { opacity: 1; transform: translateY(0); }
/*　　ボタン　　*/
.more_btn li .btn{
	font-family: "Inter", sans-serif;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.25;
}
.btn .arrow{
	margin-left: 1rem;
}
.btn .arrow img{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	width: 3.375rem;
}
.btn:hover .arrow img{
	transform: translateX(0.9375rem);
}
.top_btn{
	text-align: center;
}
.top_btn li{
	display: inline-block;
}
.top_btn li a{
	color: #15315F;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}
@media only screen and (max-width: 767px) {
	.more_btn li .btn{
		font-size: 0.75rem;
	}
	.btn .arrow{
		margin-left: 0.75rem;
	}
	.btn .arrow img{
		width: 2.25rem;
	}
	.top_btn li a{
		font-size: 0.6875rem;
	}
}
/**
/* トップページ CSS
----------------------------------------------- */
/*　　FV　　*/
.fv-wrap{
	overflow-y: auto;
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
	height: 100vh;
	-ms-overflow-style:none;
	scrollbar-width:none;
}
.fv-wrap::-webkit-scrollbar {
	display: none;
}
.fv-wrap .scroll-snap{
	scroll-snap-align: start;
	scroll-snap-stop: normal;
	height: 100vh;
}
.fv-view{
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100vh;
}
.fv-view h1{
	position: absolute;
	z-index: -5;
	color: #fff;
	font-size: 0.9rem;
}
.fv-view .fv-view-img{
	position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
}
.fv-view .fv-view-img video,
.fv-view .fv-view-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fv-view .fv-view-wrap{
	position: absolute;
	width: 100%;
	max-width: 100%;
	height: 100%;
	top: 0;
}
.fv-view .view-box{
	width: 94%;
	max-width: 1200px;
	font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN W3", "Hiragino Mincho ProN W6", serif;
	padding-top: 9.5rem;
	margin: 0 auto;
}
.fv-view .view-box .bg-text{
	position: relative;
	color: #15315F;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 3.25rem;
}
.fv-view .view-box .bg-text::after{
	position: absolute;
	background: #15315F;
	content: '';
	width: 37.5rem;
	left: 0;
	height: 1px;
	bottom: -0.75rem;
}
.fv-view .view-box .p-text{
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.1em;
}
.fv-view .view-box .p-text:not(:last-child){
	margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
	.fv-view{
		height: 100vh;
	}
	.fv-view .fv-view-img video,
	.fv-view .fv-view-img img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: 85% top;
	}
	.fv-view .view-box{
		width: calc(100% - 2rem);
		padding-top: 6.5625rem;
	}
	.fv-view .view-box{
		top: 6.5625rem;
	}
	.fv-view .view-box .bg-text{
		font-size: 1.4375rem;
		text-align: center;
		margin-bottom: 3.125rem;
	}
	.fv-view .view-box .bg-text::after{
		content: none;
	}
	.fv-view .view-box .p-text{
		font-size: 0.875rem;
		line-height: 1.57;
		text-align: center;
		letter-spacing: 0;
	}
	.fv-view .view-box .p-text:not(:last-child){
		margin-bottom: 1.5rem;
	}
}
/*　　FV メッセージ　　*/
.view-message{
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100vh;
}
.view-message .view-message-container{
	padding: 6.75rem 0 4rem 0;
}
.view-message .p-text{
	font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN W3", "Hiragino Mincho ProN W6", serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.1em;
}
.view-message .p-text:not(:last-child){
	margin-bottom: 3.75rem;
}
@media only screen and (max-width: 767px) {
	.view-message .view-message-container{
		padding: 8.5rem 0 4rem 0;
	}
	.view-message .p-text{
		font-size: 0.875rem;
		line-height: 1.57;
		text-align: center;
		letter-spacing: 0;
	}
	.view-message .p-text:not(:last-child){
		margin-bottom: 1.5rem;
	}
}
/*　　FV NEWS　　*/
.view-news{
	padding-top: 10rem;
}
.view-news .logo{
	width: 30rem;
	margin-bottom: 3rem;
}
.view-news .view-news-box{
	position: relative;
	background: #F0F0F0;
	max-width: 30rem;
	bottom: -2vw;
	padding: 2rem 2.5rem 6.875rem 2.5rem;
}
.view-news-box dl{
	max-width: 22.5rem;
	margin: 0 auto;
}
.view-news-box dl a{
	position: relative;
	display: block;
	font-family: "Inter", sans-serif;
	border-bottom: 1px solid #1A1A1A;
	padding: 0.625rem 0 0.375rem 0;
}
.view-news-box dl dt{
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}
.view-news-box dl dt .date{
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.25;
}
.view-news-box dl dt .category{
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.25;
	margin-left: 1.25rem;
}
.view-news-box dl dt .category span{
	display: inline-block;
	text-decoration: underline;
}
.view-news-box dl dd{
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.25;
}
.view-news-box dl dd .arrow{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.view-news-box dl dd .arrow img{
	width: 1.5625rem;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
.view-news-box dl a:hover .arrow img{
	transform: translateX(0.9375rem);
}
@media only screen and (max-width: 767px) {
	.view-news{
		padding-top: 10rem;
	}
	.view-news .logo{
		width: 30rem;
		margin-bottom: 3rem;
	}
	.view-news .view-news-box{
		max-width: 30rem;
		bottom: -2vw;
		padding: 2rem 2.5rem 6.875rem 2.5rem;
	}
	.view-news-box dl{
		max-width: 22.5rem;
	}
	.view-news-box dl a{
		padding: 0.625rem 0 0.375rem 0;
	}
	.view-news-box dl dt{
		margin-bottom: 0.5rem;
	}
	.view-news-box dl dt .date{
		font-size: 0.9375rem;
	}
	.view-news-box dl dt .category{
		font-size: 0.8125rem;
		margin-left: 1.25rem;
	}
	.view-news-box dl dd{
		font-size: 0.8125rem;
	}
	.view-news-box dl dd .arrow img{
		width: 1.5625rem;
	}
}
/*　　Caluckについて　　*/
.front-about{
	background: url(../img/top/border_wave.png) no-repeat top center;
	background-size: cover;
	padding: 13.625rem 0 6.875rem 0;
	margin-top: -5.5vw;
}
.about-container .imageArea{
	width: 45%;
	max-width: 32.125rem;
}
.about-container .contentArea{
	width: 50%;
}
.about-container h2{
	position: relative;
	font-family: "Inter", sans-serif;
	font-size: 2.1875rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 3.25rem;
}
.about-container h2 span{
	font-size: 2.5rem;
}
.about-container h2 small{
	font-size: 1.75rem;
}
.about-container h2::after{
	position: absolute;
	background: #1A1A1A;
	content: '';
	width: 100rem;
	height: 2px;
	left: 0;
	bottom: -1rem;
}
.about-container .p-text{
	line-height: 2.1875;
}
.about-container .more_btn{
	text-align: right;
}
.about-container more_btn li{
	display: inline-block;
}
@media only screen and (max-width: 767px) {
	.front-about{
		background: #FAFAFA;
		padding: 3.625rem 0 1.25rem 0;
		margin-top: 0;
	}
	.about-container .imageArea{
		width: 100%;
		max-width: 100%;
		margin-bottom: 1.5rem;
	}
	.about-container .contentArea{
		width: 100%;
	}
	.about-container h2{
		font-size: 1.25rem;
		text-align: center;
		margin-bottom: 1.75rem;
	}
	.about-container h2 span{
		font-size: 1.25rem;
	}
	.about-container h2 small{
		font-size: 1.25rem;
	}
	.about-container h2::after{
		content: none;
	}
	.about-container .p-text{
		text-align: center;
		line-height: 2.5;
	}
	.about-container .more_btn{
		text-align: center;
		margin-top: 1rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.about-container .contentArea{
		width: 52%;
	}
}
/*　　事業内容　　*/
.front-business{
	background: url(../img/top/bg_wave.jpg) no-repeat top center;
	background-size: cover;
	padding: 4rem 0 4.5rem 0;
}
.front-business .message-container{
	position: relative;
	background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    border-left: 0.3125rem solid #15315F;
    margin-bottom: 3.25rem;
}
.front-business .message-container::before{
	position: absolute;
	background: #15315F;
	content: '';
	width: 45rem;
	height: 2px;
	left: 0;
	top: 0;
}
.front-business .message-container .contentArea{
	width: 50%;
	padding: 2.5rem 1.625rem 3rem 1.625rem;
}
.front-business .message-container .contentArea a{
	font-family: "Inter", sans-serif;
}
.front-business .message-container h3{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0.875rem;
}
.front-business .message-container .p-text{
	line-height: 1.75;
}
.front-business .message-container .more_btn{
	text-align: right;
}
.front-business .message-container .more_btn li{
	display: inline-block;
}
.front-business .message-container .more_btn li .btn{
	display: flex;
    align-items: end;
}
.front-business .message-container .more_btn li .btn .arrow{
	margin-bottom: -0.5rem;
}
.front-business .message-container .imageArea{
	position: absolute;
	width: 45%;
	max-width: 22.1875rem;
	bottom: -2.5rem;
	right: 1.5rem;
}
.business-nav-container .business-nav-items{
	background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.business-nav-container .business-nav-items:not(:last-child){
	margin-bottom: 3.5rem;
}
.business-nav-container .business-nav-items a{
	position: relative;
	display: flex;
	align-items: center;
	font-family: "Inter", sans-serif;
	border-left: 0.3125rem solid #15315F;
	border-bottom: 1px solid #707070;
	padding: 2rem 1.625rem 3rem 1.625rem;
}
.business-nav-container .business-nav-items .icon{
	width: 4.5rem;
}
.business-nav-container .business-nav-items .contentArea{
	width: calc(100% - 4.5rem);
	padding: 0 5rem 0 1.5rem;
}
.business-nav-container .business-nav-items h3{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0.875rem;
}
.business-nav-container .business-nav-items .p-text{
	line-height: 1.75;
}
.business-nav-container .business-nav-items .arrow{
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
}
.business-nav-container .business-nav-items .arrow img{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	width: 3.375rem;
}
.business-nav-container .business-nav-items a:hover .arrow img{
	transform: translateX(0.9375rem);
}
@media only screen and (max-width: 767px) {
	.front-business{
		background: url(../img/top/sp_bg_wave.jpg) no-repeat top center;
		background-size: cover;
		padding: 3rem 0 2rem 0;
	}
	.front-business .guide-ttl{
		margin-bottom: 1.25rem;
	}
	.front-business .message-container{
	    background: #ffffff;
	    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	    border-left: 0.375rem solid #15315F;
	    margin-bottom: 1.25rem;
	}
	.front-business .message-container::before{
		width: 100%;
		height: 1px;
	}
	.front-business .message-container .contentArea{
		width: 100%;
		padding: 2rem 0.625rem 0.875rem 1.25rem;
	}
	.front-business .message-container h3{
		font-size: 1rem;
		margin-bottom: 0.875rem;
	}
	.front-business .message-container .more_btn{
		margin-top: 0.5rem;
	}
	.front-business .message-container .more_btn li{
		display: inline-block;
	}
	.front-business .message-container .more_btn li .btn{
		align-items: center;
	}
	.front-business .message-container .more_btn li .btn .arrow{
		margin-bottom: 0;
	}
	.business-nav-container .business-nav-items{
		background: #ffffff;
	    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	}
	.business-nav-container .business-nav-items:not(:last-child){
		margin-bottom: 1.25rem;
	}
	.business-nav-container .business-nav-items a{
		border-left: 0.375rem solid #15315F;
		border-bottom: none;
		padding: 1rem 0.625rem 2.75rem 1.25rem;
	}
	.business-nav-container .business-nav-items .icon.sp{
		display: inline-block;
		width: 2rem;
		margin-right: 0.375rem;
	}
	.business-nav-container .business-nav-items .contentArea{
		width: 100%;
		padding: 0;
	}
	.business-nav-container .business-nav-items h3{
		display: flex;
		align-items: center;
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}
	.business-nav-container .business-nav-items .p-text{
		line-height: 1.8;
	}
	.business-nav-container .business-nav-items .arrow{
		right: 0.5rem;
		top: auto;
		bottom: 0.5rem;
		transform: translateY(0%);
	}
	.business-nav-container .business-nav-items .arrow img{
		width: 1.5rem;
	}
}
/*　　会社情報　　*/
.front-company{
	background: #FAFAFA;
	padding: 7.25rem 0 5rem 0;
}
.front-company::after{
	position: absolute;
	background: url(../img/bg_blue.png) center bottom;
	background-size: cover;
	content: '';
	width: 6vw;
	right: 0;
	top: 0;
	bottom: 0;
}
.front-company .contentArea{
	width: 50%;
}
.front-company .guide-ttl{
	margin-bottom: 3.5rem;
}
.front-company .contentArea .p-text{
	font-family: "Inter", sans-serif;
	line-height: 1.75;
	padding: 0 1.25rem;
}
.front-company .logo{
	width: 50%;
}
.front-company .logo img{
	width: 90%;
	max-width: 30rem;
}
.front-company .btn-container{
	margin-top: 5.5rem;
}
.front-company .btn-container .block_btn{
	width: 50%;
}
.front-company .btn-container .block_btn .btn{
	position: relative;
	max-width: 30rem;
	top: 0;
}
.front-company .btn-container .block_btn .btn:hover{
	top: 0.125rem;
}
.front-company .btn-container .block_btn .btn::after{
	position: absolute;
	content: '';
	background: #15315F;
	width: 100%;
	height: 100%;
	top: 0.5625rem;
	left: 0.5625rem;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
.front-company .btn-container .block_btn .btn:hover::after{
	top: 0.3125rem;
	left: 0.3125rem;
}
.front-company .btn-container .block_btn .btn a{
	position: relative;
	background: #FFFFFF;
	display: block;
	font-family: "Inter", sans-serif;
	color: #15315F;
	border: 1px solid #15315F;
	padding: 2.9375rem 1.625rem 3.5rem 1.625rem;
	z-index: 1;
}
.front-company .btn-container .block_btn .btn a::before{
	position: absolute;
	content: '';
	background: url(../img/icon/arrow_blue.svg) center center no-repeat;
	background-size: contain;
	position: absolute;
	width: 3rem;
	height: 3rem;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
}
.front-company .btn-container .block_btn .btn a .roma{
	font-size: 0.9375rem;
	font-weight: 300;
	font-style: Italic;
	line-height: 1.2;
}
.front-company .btn-container .block_btn .btn a .ttl{
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
}
@media only screen and (max-width: 767px) {
	.front-company{
		padding: 2.5rem 0;
	}
	.front-company::after{
		position: absolute;
		background: url(../img/bg_blue.png) center bottom;
		background-size: cover;
		content: '';
		width: 8vw;
		height: 15.5rem;
		right: 0;
		top: 0;
		bottom: auto;
	}
	.front-company .contentArea{
		width: 100%;
	}
	.front-company .guide-ttl{
		margin-bottom: 1.875rem;
	}
	.front-company .contentArea .p-text{
		line-height: 2;
		padding: 0;
	}
	.front-company .logo{
		width: 100%;
		margin-bottom: 1.125rem;
	}
	.front-company .logo img{
		width: 90%;
		max-width: 12.5rem;
	}
	.front-company .btn-container{
		row-gap: 1.125rem;
		margin-top: 2.8125rem;
	}
	.front-company .btn-container .block_btn{
		width: 100%;
		text-align: center;
	}
	.front-company .btn-container .block_btn .btn{
		display: inline-block;
		width: 100%;
		max-width: 20rem;
	}
	.front-company .btn-container .block_btn .btn::after{
		top: 0.25rem;
		left: 0.25rem;
	}
	.front-company .btn-container .block_btn .btn a{
		text-align: left;
		padding: 1.9375rem 1.625rem 2.5rem 3.625rem;
	}
	.front-company .btn-container .block_btn .btn a::before{
		width: 1.75rem;
		height: 1.75rem;
		right: 2rem;
	}
	.front-company .btn-container .block_btn .btn a .roma{
		font-size: 0.6875rem;
		margin-bottom: 0.25rem;
	}
	.front-company .btn-container .block_btn .btn a .ttl{
		font-size: 1rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-company::after{
		width: 3vw;
	}
	.front-company .btn-container .block_btn .btn{
		max-width: 24rem;
	}
}
/*　　お知らせ　　*/
.front-news{
	background: #F0F0F0;
	padding: 5rem 0 4rem 0;
}
.front-news .ttlArea{
	width: 25.625rem;
}
.front-news .more_btn{
	margin-top: 2.5rem;
}
.front-news .front-news-list{
	width: calc(100% - 25.625rem);
}
.front-news-list dl a{
	position: relative;
	display: block;
	font-family: "Inter", sans-serif;
	border-bottom: 1px solid #707070;
	padding: 0 0 1rem 0;
}
.front-news-list dl:not(:first-child) a{
	padding: 1.875rem 0 1rem 0;
}
.front-news-list dl dt{
	display: flex;
	align-items: center;
	margin-bottom: 0.875rem;
}
.front-news-list dl dt .date{
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.25;
}
.front-news-list dl dt .category{
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.25;
	margin-left: 1.25rem;
}
.front-news-list dl dt .category span{
	display: inline-block;
	text-decoration: underline;
}
.front-news-list dl dd{
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.25;
}
.front-news-list dl dd .arrow{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.front-news-list dl dd .arrow img{
	width: 1.5625rem;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
.front-news-list dl a:hover .arrow img{
	transform: translateX(0.9375rem);
}
@media only screen and (max-width: 767px) {
	.front-news{
		padding: 3rem 0 4rem 0;
	}
	.front-news .ttlArea{
		width: 100%;
		display: flex;
		align-items: flex-end;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		margin-bottom: 2.6875rem;
	}
	.front-news .more_btn{
		margin-top: 0;
	}
	.front-news .front-news-list{
		width: 100%;
	}
	.front-news-list dl a{
		padding: 0 0 1rem 0;
	}
	.front-news-list dl:not(:first-child) a{
		padding: 0.875rem 0 1rem 0;
	}
	.front-news-list dl dt{
		margin-bottom: 0.5rem;
	}
	.front-news-list dl dt .date{
		font-size: 0.8125rem;
	}
	.front-news-list dl dt .category{
		margin-left: 1rem;
	}
	.front-news-list dl dd{
		font-size: 0.625rem;
	}
	.front-news-list dl dd .arrow img{
		width: 1.25rem;
	}
}
/*　　コラム　　*/
.front-column{
	background: #F0F0F0 url(../img/top/column_bg.png) no-repeat top center;
	background-size: cover;
	padding: 6rem 0 4.25rem 0;
}
.front-column .guide-ttl{
	margin-bottom: 1.5rem;
}
.front-column .guide-ttl.border.js-inview.active::after{
	animation: border-grow2 1s forwards;
}
@keyframes border-grow2{
	0% {
		width: 0;
	}
	100% {
		width: 45rem;
	}
}
.front-column .more_btn{
	margin-bottom: 1.5rem;
}
.front-column .more_btn li .btn{
	color: #FFFFFF;
}
.front-column .more_btn .btn .arrow{
	margin-left: 2rem;
}
.front-column .column-swiper-list .swiper-slide{
	background: #FFFFFF;
	width: 21.5625rem!important;
	height: auto;
	padding: 1.5rem 1.375rem 1.25rem 1.375rem;
}
.front-column .column-swiper-list .swiper-slide a{
	display: flex;
    flex-direction: column;
    height: 100%;
}
.front-column .column-items .imgArea{
	position: relative;
	margin-bottom: 1.875rem;
}
.front-column .column-items .imgArea .img{
	height: 12.5rem;
	overflow: hidden;
}
.front-column .column-items .imgArea .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.5s;
}
.front-column .column-items a:hover .imgArea .img img{
	transform: scale(1.2);
	transition-duration: 0.5s;
}
.front-column .column-items .category{
	position: absolute;
	background: #15315F;
	color: #FFFFFF;
	font-size: 0.9375rem;
	line-height: 1.35;
	left: 0;
	bottom: 0;
	padding: 0.25rem 1rem;
}
.front-column .column-items .contentArea{
	display: flex;
    flex-direction: column;
    height: 100%;
}
.front-column .column-items .ttl{
	font-family: "Inter", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 1.125rem;
}
.front-column .column-items .text{
	font-family: "Inter", sans-serif;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 2;
	margin-bottom: 2rem;
}
.front-column .column-items .dateArea{
	margin-top: auto;
}
.front-column .column-items .date{
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.25;
}
.front-column .column-items .link{
	position: relative;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.25;
	padding-right: 1.5rem;
}
.front-column .column-items .link::before,
.front-column .column-items .link::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.front-column .column-items .link::before{
	width: 0.875rem;
	height: 0.875rem;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #1A1A1A;
}
.front-column .column-items .link::after{
	right: 0.34375rem;
	width: 0.25rem;
	height: 0.25rem;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*　　Swiper button　　*/
.button-wrap{
	position: relative;
	align-items: flex-end;
	height: 3.5rem;
	margin-top: 2rem;
}
.button-wrap .swiper-button-prev,
.button-wrap.swiper-container-rtl .swiper-button-prev,
.button-wrap .swiper-button-next,
.button-wrap .swiper-container-rtl .swiper-button-next{
	background-image:none;
	bottom: 0;
	right: 0;
	top: 0;
	width: 3.5rem;
	height: 3.5rem;
	margin-top: 0;
}
.button-wrap .swiper-button-next,
.button-wrap .swiper-container-rtl .swiper-button-next{
	left: 6rem;
}
.button-wrap .swiper-button-prev:after,
.button-wrap .swiper-container-rtl .swiper-button-next:after,
.button-wrap .swiper-button-next:after,
.button-wrap .swiper-container-rtl .swiper-button-prev:after{
	content: none;
}
.button-wrap .link-wrap .link{
	display: inline-block;
	width: 3.5rem;
	height: 3.5rem;
	transform-origin: center;
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid #ffffff;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
.button-wrap .link-wrap .link i{
	display: block;
	position: absolute;
	box-sizing: border-box;
	transform-origin: center;
	width: 1.5rem;
	height: 0.5rem;
	top: calc(50% - 0.25rem);
	left: calc(50% - 0.75rem);
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
.button-wrap .swiper-button-prev .link i{
	background-image: url(../img/icon/button-prev.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
.button-wrap .swiper-button-next .link i{
	background-image: url(../img/icon/button-next.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
.front-column .no-text{
	color: #FFFFFF;
	font-family: "Inter", sans-serif;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.71;
	letter-spacing: 0.05em;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.front-column{
		background: url(../img/top/sp_column_bg.png) no-repeat top center;
		background-size: cover;
		padding: 4rem 1rem 2rem 1rem;
	}
	.front-column .ttlArea{
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		align-items: flex-end;
		margin-bottom: 3.5rem;
	}
	.front-column .guide-ttl{
		margin-bottom: 0;
	}
	@keyframes border-grow2{
		0% {
			width: 0;
		}
		100% {
			width: 9rem;
		}
	}
	.front-column .more_btn{
		position: relative;
		top: 1.5rem;
		margin-bottom: 0;
	}
	.front-column .more_btn .btn .arrow{
		margin-left: 0.75rem;
	}
	.front-column .column-swiper-list .swiper-slide{
		width: 100% !important;
		padding: 1.25rem 1.25rem 1.25rem 1.25rem;
	}
	.front-column .column-items .imgArea{
		margin-bottom: 1.5rem;
	}
	.front-column .column-items .imgArea .img{
		height: 12.5rem;
	}
	.front-column .column-items .category{
		font-size: 0.6875rem;
		padding: 0.25rem 0.625rem;
	}
	.front-column .column-items .ttl{
		margin-bottom: 1.125rem;
	}
	.front-column .column-items .text{
		line-height: 1.875;
	}
	.front-column .column-items .date{
		font-size: 0.6875rem;
	}
	.front-column .column-items .link{
		font-size: 0.8125rem;
		padding-right: 1.5rem;
	}
	.front-column .column-items .link::before{
		width: 0.875rem;
		height: 0.875rem;
	}
	.front-column .column-items .link::after{
		right: 0.34375rem;
		width: 0.25rem;
		height: 0.25rem;
	}
	/*　　Swiper button　　*/
	.button-wrap{
		height: 2.5rem;
		margin-top: 2rem;
	}
	.button-wrap .swiper-button-prev,
	.button-wrap.swiper-container-rtl .swiper-button-prev,
	.button-wrap .swiper-button-next,
	.button-wrap .swiper-container-rtl .swiper-button-next{
		width: 1.75rem;
		height: 1.75rem;
	}
	.button-wrap .swiper-button-prev,
	.button-wrap.swiper-container-rtl .swiper-button-prev{
		left: calc(50% - 2rem);
	}
	.button-wrap .swiper-button-next,
	.button-wrap .swiper-container-rtl .swiper-button-next{
		left: calc(50% - -0.625rem);
	}
	.button-wrap .link-wrap .link{
		width: 1.75rem;
		height: 1.75rem;
	}
	.button-wrap .link-wrap .link i{
		width: 0.875rem;
		height: 0.25rem;
		top: calc(50% - 0.125rem);
		left: calc(50% - 0.4375rem);
	}
	.front-column .no-text{
		font-size: 1.5rem;
	}
}
/**
/* 下層ページ共通 CSS
----------------------------------------------- */
/*　　ページヘッダー　　*/
.page-view{
	position: relative;
}
.page-view .view-img{
	height: 20.625rem;
}
.page-view .view-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-view .view-box{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 4.375rem;
}
.page-view .view-ttl{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.page-view .view-ttl .ttl{
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.25;
}
.page-view .view-ttl .p-text{
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 0.5rem;
}
.page-view .view-box h1{
	position: absolute;
	font-family: "Roboto", sans-serif;
	color: #FFFFFF;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.3;
	bottom: 0.625rem;
}
@media only screen and (max-width: 767px) {
	.page-view{
		margin-top: 3.4375rem;
	}
	.page-view .view-img{
		height: 18.75rem;
	}
	.page-view .view-box{
		padding-top: 0;
	}
	.page-view .view-ttl .ttl{
		font-size: 1.875rem;
	}
	.page-view .view-ttl .p-text{
		font-size: 0.8125rem;
		margin-top: 0.5rem;
	}
	.page-view .view-box h1{
		bottom: 0.5rem;
	}
}
/**
/* Caluckについて CSS
----------------------------------------------- */
/*　　企業理念　　*/
.about-wrap .philosophy-guide{
	padding: 5rem 0 3rem 0;
}
.about-wrap .philosophy-guide .guide-ttl{
	margin-bottom: 3rem;
}
.philosophy-container .philosophy-items{
	position: relative;
	background: #ffffff;
	background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	border-top: 3px solid #15315F;
	border-left: 3px solid #15315F;
	padding: 3.5rem 3.125rem 2.75rem 2.625rem;
}
.philosophy-container .philosophy-items:not(:last-child){
	margin-bottom: 2.375rem;
}
.philosophy-items .philosophy-ttl{
	width: 15rem;
}
.philosophy-items .philosophy-ttl .icon{
	width: 3.75rem;
}
.philosophy-items .philosophy-ttl .roma{
	width: calc(100% - 3.75rem);
	font-size: 1.75rem;
	line-height: 1.35;
	margin-left: 1.25rem;
}
.philosophy-items .philosophy-body{
	width: calc(100% - 15rem);
}
.philosophy-items .philosophy-body h3{
	font-family: "Inter", sans-serif;
	font-size: 1.75rem;
	line-height: 1.35;
}
.philosophy-items .philosophy-body dl{
	background: #ffffff;
	background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	border-left: 0.625rem solid #15315F;
	border-top: 2px solid #15315F;
	padding: 1rem 1.625rem 0.625rem 1.625rem;
}
.philosophy-items .philosophy-body dl:not(:last-child){
	margin-bottom: 1.75rem;
}
.philosophy-items .philosophy-body dl dt{
	font-family: "Inter", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 0.5rem;
}
.philosophy-items .philosophy-body dl dd{
	font-size: 1rem;
	line-height: 1.35;
	padding-left: 1rem;
}
@media only screen and (max-width: 767px) {
	.about-wrap .philosophy-guide{
		padding: 3rem 0 1.5rem 0;
	}
	.about-wrap .philosophy-guide .guide-ttl{
		margin-bottom: 3.5rem;
	}
	.philosophy-container .philosophy-items{
		border-top: 1px solid #15315F;
		border-left: 0.375rem solid #15315F;
		padding: 1rem 1.125rem;
	}
	.philosophy-container .philosophy-items.value{
		padding: 1rem 1.125rem 0 1.125rem;
	}
	.philosophy-container .philosophy-items:not(:last-child){
		margin-bottom: 1.375rem;
	}
	.philosophy-container .philosophy-items:not(:last-child)::after{
		position: absolute;
		background: #707070;
		content: '';
		width: calc(100% - 0.25rem);
		right: 0;
		height: 1px;
		bottom: 0;
	}
	.philosophy-items .philosophy-ttl{
		width: 100%;
		-webkit-justify-content: center;
		justify-content: center;
		margin-bottom: 0.625rem;
	}
	.philosophy-items .philosophy-ttl .icon{
		width: 1.75rem;
	}
	.philosophy-items .philosophy-ttl .roma{
		width: auto;
		font-size: 1.25rem;
		margin-left: 0.8125rem;
	}
	.philosophy-items .philosophy-body{
		width: 100%;
	}
	.philosophy-items .philosophy-body h3{
		font-size: 0.625rem;
		text-align: center;
	}
	.philosophy-items .philosophy-body dl{
		background: transparent;
		background: none;
		border: 1px solid #707070;
		padding: 0.625rem 0.5rem;
	}
	.philosophy-items .philosophy-body dl{
		margin-top: 0.5rem;
	}
	.philosophy-items .philosophy-body dl:not(:last-child){
		margin-bottom: 1rem;
	}
	.philosophy-items .philosophy-body dl dt{
		font-size: 0.625rem;
		margin-bottom: 0.25rem;
	}
	.philosophy-items .philosophy-body dl dd{
		font-size: 0.5rem;
		line-height: 1.35;
		padding-left: 0.5rem;
	}
}
/*　　社名・ロゴについて　　*/
.about-company-guide{
	padding: 3rem 0 6rem 0;
}
.about-company-container .logo{
	width: 38%;
}
.about-company-container .about-company-body{
	width: 52%;
}
@media only screen and (max-width: 767px) {
	.about-company-guide{
		padding: 3rem 0 3rem 0;
	}
	.about-company-guide .guide-ttl{
		margin-bottom: 4rem;
	}
	.about-company-container .logo{
		width: 100%;
		text-align: center;
		margin-bottom: 3rem;
	}
	.about-company-container .logo img{
		width: 17rem;
	}
	.about-company-container .about-company-body{
		width: 100%;
	}
}
/*　　代表挨拶　　*/
.greeting-guide{
	padding: 4rem 0 5.5rem 0;
}
.greeting-guide .guide-ttl{
	margin-bottom: 3.625rem;
}
.greeting-guide .greeting-container{
	max-width: 61.25rem;
	margin: 0 auto;
}
.greeting-container h3{
	font-size: 1.375rem;
	line-height: 1.375;
	margin-bottom: 2.5rem;
}
.greeting-container .name-cont{
	margin-top: 7.875rem;
}
.greeting-container .post{
	font-size: 1rem;
	line-height: 1.3;
}
.greeting-container .name{
	font-size: 1.5rem;
	line-height: 1.5;
}
.greeting-container .roma{
	font-size: 1rem;
	line-height: 1.3;
}
@media only screen and (max-width: 767px) {
	.greeting-guide{
		padding: 4rem 0 4.5rem 0;
	}
	.greeting-guide .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.greeting-guide .greeting-container{
		max-width: 100%;
		padding: 0 1rem 0 1.75rem;
	}
	.greeting-container h3{
		font-size: 0.875rem;
		margin-bottom: 1.25rem;
	}
	.greeting-container .name-cont{
		text-align: right;
		margin-top: 4rem;
	}
	.greeting-container .name-cont .cont-inner{
		display: inline-block;
		text-align: left;
	}
	.greeting-container .post,
	.greeting-container .name,
	.greeting-container .roma{
		font-size: 0.75rem;
	}
}
/**
/* 会社情報 CSS
----------------------------------------------- */
/*　　会社情報　　*/
.compnay-guide{
	padding: 6.25rem 0 7.5rem 0;
}
.compnay-guide::after{
	position: absolute;
	background: url(../img/bg_blue.png) center bottom;
	background-size: cover;
	content: '';
	width: 4vw;
	height: calc(100% - 6.25rem);
	right: 0;
	bottom: 0;
}
.compnay-guide .guide-ttl{
	margin-bottom: 3.5rem;
}
.compnay-guide .compnay-profile{
	column-gap: 6.25rem;
}
.compnay-profile .profile-tbl{
	width: calc(50% - 3.125rem);
	display: flex;
	flex-direction: column;
}
.compnay-profile .profile-tbl dl{
	border-left: 0.625rem solid #15315F;
	border-bottom: 1px solid #15315F;
}
.compnay-profile .profile-tbl dl:not(:last-child){
	margin-bottom: 1.25rem;
}
.compnay-profile .profile-tbl dl:last-child{
	flex-grow: 1;
}
.compnay-profile .profile-tbl dl dt,
.compnay-profile .profile-tbl dl dd{
	font-size: 1.25rem;
	line-height: 1.5;
}
.compnay-profile .profile-tbl dl dt{
	width: 10rem;
	font-weight: 500;
	padding: 0.875rem 1.5rem;
}
.compnay-profile .profile-tbl dl dd{
	padding: 0.875rem 0.5rem;
}
.compnay-guide .mapArea{
	width: 90%;
	max-width: 1100px;
	line-height: 0;
	margin: 6.875rem auto 0 auto;
}
.compnay-guide .mapArea iframe{
	height: 20.625rem;
	border-radius: 1.25rem;
	box-shadow: 0px 4px 10px 0px #00000040 inset;
}
@media only screen and (max-width: 1350px) {
	.compnay-guide::after{
		width: 2%;
	}
}
@media only screen and (max-width: 767px) {
	.compnay-guide{
		padding: 3.25rem 6vw 3.75rem 0;
	}
	.compnay-guide::after{
		background: url(../img/sp_bg_blue.png) center bottom;
		background-size: cover;
		width: 6vw;
		height: calc(100% - 3.25rem);
	}
	.compnay-guide .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.compnay-guide .compnay-profile{
		column-gap: 0;
	}
	.compnay-profile .profile-tbl{
		width: 100%;
		margin-bottom: 0.5rem;
	}
	.compnay-profile .profile-tbl dl{
		border-left: 0.45rem solid #15315F;
	}
	.compnay-profile .profile-tbl dl:not(:last-child){
		margin-bottom: 0.5rem;
	}
	.compnay-profile .profile-tbl dl:last-child{
		flex-grow: 1;
	}
	.compnay-profile .profile-tbl dl dt,
	.compnay-profile .profile-tbl dl dd{
		font-size: 0.625rem;
		line-height: 1.5;
	}
	.compnay-profile .profile-tbl dl dt{
		width: 5.5rem;
		font-size: 0.8125rem;
		font-weight: 700;
		padding: 0.5rem 1.125rem;
	}
	.compnay-profile .profile-tbl dl dd{
		padding: 0.5rem;
	}
	.compnay-guide .mapArea{
		width: 100%;
		margin: 3.875rem auto 0 auto;
	}
	.compnay-guide .mapArea iframe{
		height: 13.4375rem;
		border-radius: 0.625rem;
	}
}
/*　　オフィス　　*/
.office-guide{
	padding: 4.5rem 0 8rem 0;
}
.office-guide .guide-ttl{
	margin-bottom: 6rem;
}
.office-guide #gallery-1{
	display: flex;
	flex-wrap: wrap;
	column-gap: 1.5rem;
	row-gap: 1.625rem;
}
.office-guide #gallery-1 br{
	display: none;
}
.office-guide #gallery-1 .gallery-item{
	float: none;
	width: calc(33.3333% - 1rem);
	margin-top: 0;
}
.office-guide #gallery-1 .gallery-item img{
	border-radius: 1.25rem;
	border: none;
	box-shadow: 0px 0.3125rem 0.9375rem 0px #00000026;
}
@media only screen and (max-width: 767px) {
	.office-guide{
		padding: 3.5rem 0 3rem 0;
	}
	.office-guide .guide-ttl{
		margin-bottom: 2rem;
	}
	.office-guide #gallery-1{
		column-gap: 1rem;
		row-gap: 1.25rem;
	}
	.office-guide #gallery-1 .gallery-item{
		width: calc(50% - 0.5rem);
	}
	.office-guide #gallery-1 .gallery-item img{
		border-radius: 0.625rem;
	}
}
/**
/* 事業内容 CSS
----------------------------------------------- */
.business-wrap{
	background: #F0F0F0;
}
.business-nav-guide{
	padding: 6.5625rem 0 4.6875rem 0;
}
.business-nav-guide .business-container{
	column-gap: 4rem;
	row-gap: 5.625rem;
}
.business-container .card{
	width: calc(50% - 2rem);
	display: flex;
	flex-direction: column;
	border-radius: 1.25rem;
	box-shadow: 0px 0.3125rem 0.9375rem 0px #00000026;
}
.business-container .card a{
	display: block;
	padding: 4.375rem 2.5rem 4rem 2.5rem;
}
.business-container .card h3{
	font-size: 1.5rem;
}
.business-container .card .p-text{
	line-height: 1.4;
	margin-bottom: 2.75rem;
}
.business-container .card .imageArea{
	height: 13.375rem;
	border-radius: 1.25rem;
	overflow: hidden;
	margin-top: auto;
}
.business-container .card .imageArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.5s;
}
.business-container .card a:hover .imageArea img{
	transform: scale(1.2);
	transition-duration: 0.5s;
}
.business-container .card .more_btn{
	text-align: right;
	margin-bottom: 2.75rem;
}
.business-container .card .more_btn li{
	display: inline-block;
}
@media only screen and (max-width: 767px) {
	.business-nav-guide{
		padding: 3.5625rem 0 3rem 0;
	}
	.business-nav-guide .business-container{
		column-gap: 0;
		row-gap: 2.5rem;
	}
	.business-container .card{
		width: 100%;
	}
	.business-container .card a{
		padding: 1.875rem;
	}
	.business-container .card h3{
		font-size: 0.875rem;
		margin-bottom: 0.875rem;
	}
	.business-container .card .p-text{
		line-height: 1.4;
		margin-bottom: 2rem;
	}
	.business-container .card .imageArea{
		height: 8.25rem;
		border-radius: 0.625rem;
	}
	.business-container .card .more_btn{
		text-align: right;
		margin-bottom: 0;
		margin-top: 1.5rem;
	}
	.business-container .card .more_btn li{
		display: inline-block;
	}
	.business-container .card .more_btn li .btn .arrow img{
		width: 1.75rem;
	}
}
/**
/* 事業内容共通 CSS
----------------------------------------------- */
/*　　サービス概要　　*/
.service-head-guide{
	background: url(../img/business/service_bg.png) no-repeat bottom center;
	background-size: cover;
	padding: 4rem 0 6.875rem 0;
}
.service-head-guide .guide-ttl{
	margin-bottom: 3.5rem;
}
.service-head-guide .service-head-container{
	background: #FFFFFF;
	border-radius: 1.25rem;
	padding: 1.5rem;
}
.service-head-guide .service-head-container .bg-text{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 0.875rem;
}
@media only screen and (max-width: 767px) {
	.service-head-guide{
		background: url(../img/business/sp_service_bg.png) no-repeat bottom center;
		background-size: cover;
		padding: 4rem 0 4rem 0;
	}
	.service-head-guide .guide-ttl{
		text-align: left;
		margin-bottom: 2rem;
	}
	.service-head-guide .guide-ttl.center::after{
		left: 0;
		transform: translateX(0%);
	}
	.service-head-guide .service-head-container{
		padding: 0.75rem 0.5rem;
	}
	.service-head-guide .service-head-container .bg-text{
		font-size: 0.625rem;
		line-height: 1.6;
		margin-bottom: 0.375rem;
	}
	.service-head-guide .service-head-container .p-text{
		line-height: 2;
	}
}
/*　　こんなお悩みありませんか？　　*/
.problem-guide{
	padding: 4rem 0 4.5rem 0;
}
.problem-guide .guide-ttl{
	margin-bottom: 3.5rem;
}
.problem-guide .problem-container{
	column-gap: 3.75rem;
	row-gap: 1.625rem;
	max-width: 1150px;
	margin: 0 auto;
}
.problem-container .problem-items{
	background: #FFFFFF;
	width: calc(50% - 1.875rem);
	min-height: 4rem;
	box-shadow: 0px 4px 4px 0px #00000040;
}
.problem-container .problem-items dt,
.problem-container .problem-items dd{
	vertical-align: middle;
}
.problem-container .problem-items dt{
	background: #B8A595;
	width: 11.625rem;
	font-family: "Roboto", sans-serif;
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	padding: 0.5rem;
}
.problem-container .problem-items dd{
	width: calc(100% - 11.625rem);
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
	padding: 0.5rem 1rem;
}
.problem-guide .solution-container{
	max-width: 1150px;
	margin: 5.5rem auto 0 auto;
}
.problem-guide .solution-container h3{
	display: flex;
	align-items: center;
	font-family: "Roboto", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 1.25rem;
}
.problem-guide .solution-container h3 span{
	display: inline-block;
	width: 3.125rem;
	margin-right: 0.625rem;
}
.solution-container .solution-box{
	background: url(../img/business/bg_wave.png) no-repeat center;
	background-size: cover;
	text-align: center;
	padding: 2.5rem;
	border-radius: 1.25rem;
}
.solution-container .check{
	display: inline-block;
}
.solution-container .check li{
	position: relative;
	font-family: "Roboto", sans-serif;
	font-size: 1.5rem;
	line-height: 1.4;
	text-align: left;
	padding-left: 2rem;
}
.solution-container .check li:not(:last-child){
	margin-bottom: 1.75rem;
}
.solution-container .check li::before{
	position: absolute;
	content: '✓';
	font-family: "Roboto", sans-serif;
	color: #15315F;
	font-size: 1.5rem;
	left: 0;
	top: 0;
	bottom: 0;
	vertical-align: middle;
	margin: auto;
}
@media only screen and (max-width: 767px) {
	.problem-guide{
		padding: 4rem 0 2.375rem 0;
	}
	.problem-guide .guide-ttl{
		margin-bottom: 2rem;
	}
	.problem-guide .problem-container{
		column-gap: 0;
		row-gap: 1.5rem;
	}
	.problem-container .problem-items{
		width: 100%;
	}
	.problem-container .problem-items dt{
		width: 6.5rem;
		font-size: 0.6875rem;
		padding: 1rem 0.5rem;
	}
	.problem-container .problem-items dd{
		width: calc(100% - 6.5rem);
		font-size: 0.625rem;
		text-align: center;
		padding: 0.5rem;
	}
	.problem-guide .solution-container{
		margin: 2.5rem auto 0 auto;
	}
	.problem-guide .solution-container h3{
		-webkit-justify-content: center;
		justify-content: center;
		font-size: 1.0625rem;
		margin-bottom: 1.5rem;
	}
	.problem-guide .solution-container h3 span{
		width: 2.3125rem;
		margin-right: 0.375rem;
	}
	.solution-container .solution-box{
		padding: 2.375rem 1.25rem 1.875rem 1.25rem;
	}
	.solution-container .check li{
		font-size: 0.75rem;
		padding-left: 1rem;
	}
	.solution-container .check li:not(:last-child){
		margin-bottom: 1.5rem;
	}
	.solution-container .check li::before{
		font-size: 0.75rem;
	}
}
/*　　選ばれる理由　　*/
.strengths-guide{
	background: #F0F0F0;
	padding: 4rem 0 3.5rem 0;
}
.strengths-guide .guide-ttl{
	margin-bottom: 4rem;
}
.strengths-guide .strengths-container{
	column-gap: 4.5rem;
	row-gap: 2rem;
}
.strengths-container .strengths-items{
	width: calc(33.3333% - 3rem);
}
.strengths-container .strengths-items h3{
	background: #15315F;
	font-family: "Roboto", sans-serif;
	color: #FFFFFF;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	padding: 0.3125rem 0.625rem;
	margin-bottom: 1.125rem;
}
.strengths-container .strengths-items .strengths-img{
	margin-bottom: 1.875rem;
}
.strengths-container .strengths-items .strengths-img img{
	box-shadow: 0px 4px 4px 0px #00000040;
}
.strengths-container .strengths-items h4{
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}
.strengths-container .strengths-items p{
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
}
@media only screen and (max-width: 767px) {
	.strengths-guide{
		padding: 4rem 0 3.5rem 0;
	}
	.strengths-guide .guide-ttl{
		margin-bottom: 4rem;
	}
	.strengths-guide .strengths-container{
		width: 85%;
		column-gap: 0;
		row-gap: 2rem;
		margin: auto;
	}
	.strengths-container .strengths-items{
		width: 100%;
	}
	.strengths-container .strengths-items h3{
		font-size: 0.875rem;
		text-align: center;
		padding: 0.5rem 0.625rem 0.3125rem 0.625rem;
		margin-bottom: 1.125rem;
	}
	.strengths-container .strengths-items .strengths-img{
		margin-bottom: 0;
		margin-top: 1.25rem;
	}
	.strengths-container .strengths-items .strengths-img img{
		box-shadow: 0px 4px 4px 0px #00000040;
	}
	.strengths-container .strengths-items h4{
		font-size: 0.875rem;
		text-align: center;
		margin-bottom: 0.5rem;
	}
	.strengths-container .strengths-items p{
		font-size: 0.5625rem;
		line-height: 2.2;
	}
}
/*　　主な提供メニュー　　*/
.offer-menu-guide{
	padding: 4.5rem 0 6.375rem 0;
}
.offer-menu-guide .guide-ttl{
	margin-bottom: 5.625rem;
}
.offer-menu-guide .offer-menu-container{
	max-width: 1100px;
	margin: 0 auto;
	column-gap: 5rem;
	row-gap: 1.5rem;
}
.offer-menu-container .offer-menu-items{
	width: calc(50% - 2.5rem);
}
.offer-menu-container .offer-menu-items h3{
	font-family: "Roboto", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	border-left: 0.625rem solid #15315F;
	padding-left: 1.125rem;
	margin-bottom: 1rem;
}
.offer-menu-container .offer-menu-items .offer-menu-img{
	margin-bottom: 1rem;
}
.offer-menu-container .offer-menu-items .offer-menu-img img{
	border-radius: 1.25rem;
}
.offer-menu-container .offer-menu-items h4{
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}
.offer-menu-container .offer-menu-items p{
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
}
.offer-menu-container .offer-menu-items p:not(:last-child){
	margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
	.offer-menu-guide{
		padding: 3.5rem 0 3rem 0;
	}
	.offer-menu-guide .guide-ttl{
		margin-bottom: 3rem;
	}
	.offer-menu-guide .offer-menu-container{
		width: 90%;
		column-gap: 0;
		row-gap: 2rem;
		margin: auto;
	}
	.offer-menu-container .offer-menu-items{
		width: 100%;
	}
	.offer-menu-container .offer-menu-items h3{
		font-size: 0.875rem;
		border-left: 0.375rem solid #15315F;
		padding-left: 0.625rem;
		margin-bottom: 0.625rem;
	}
	.offer-menu-container .offer-menu-items .offer-menu-img{
		padding: 0 0.625rem;
		margin-bottom: 0.875rem;
	}
	.offer-menu-container .offer-menu-items .offer-menu-img img{
		border-radius: 0.625rem;
	}
	.offer-menu-container .offer-menu-items .offer-menu-body{
		padding: 0 0.625rem;
	}
	.offer-menu-container .offer-menu-items h4{
		font-size: 0.625rem;
		margin-bottom: 0.5rem;
	}
	.offer-menu-container .offer-menu-items p{
		font-size: 0.5625rem;
		line-height: 2.2;
	}
	.offer-menu-container .offer-menu-items p:not(:last-child){
		margin-bottom: 1rem;
	}
}
/*　　基本の流れ　　*/
.flow-guide{
	padding: 5rem 0 4.75rem 0;
}
.flow-guide .guide-ttl{
	margin-bottom: 2.5rem;
}
.flow-guide .flow-container{
	position: relative;
	max-width: 1020px;
	margin: 0 auto;
	padding-left: 2rem;
}
.flow-guide .flow-container::after{
	position: absolute;
	background: #15315F;
	content: '';
	width: 2px;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
}
.flow-container .flow-items{
	position: relative;
	padding: 2rem 0;
}
.flow-container .flow-items::before{
	position: absolute;
	background: #15315F;
	content: '';
	width: 1.375rem;
	height: 1.375rem;
	left: -2.65rem;
	top: 3.75rem;
	border-radius: 100%;
}
.flow-items .flow-icon{
	width: 4.625rem;
}
.flow-items .flow-body{
	width: calc(100% - 4.625rem);
	padding-left: 1.125rem;
	padding-top: 1.5rem;
}
.flow-items .flow-body h3{
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.flow-items .flow-body p{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
}
@media only screen and (max-width: 767px) {
	.flow-guide{
		padding: 3.5rem 0 3.5rem 0;
	}
	.flow-guide .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.flow-guide .flow-container{
		padding-left: 1.5rem;
	}
	.flow-guide .flow-container::after{
		width: 1px;
		left: 0.625rem;
	}
	.flow-container .flow-items{
		padding: 1rem 0 0.5rem 0;
	}
	.flow-container .flow-items::before{
		width: 1.125rem;
		height: 1.125rem;
		left: -1.4rem;
		top: 1.5rem;
	}
	.flow-items .flow-icon{
		width: 2.25rem;
	}
	.flow-items .flow-body{
		width: calc(100% - 2.25rem);
		padding-left: 0.5rem;
		padding-top: 0.5rem;
	}
	.flow-items .flow-body h3{
		font-size: 0.6875rem;
		margin-bottom: 0.5rem;
	}
	.flow-items .flow-body p{
		font-size: 0.625rem;
	}
}
/*　　よくあるご質問　　*/
.faq-guide{
	background: #F0F0F0;
	padding: 5rem 0 4rem 0;
}
.faq-guide .guide-ttl{
	margin-bottom: 5.625rem;
}
.faq-guide .faq-container{
	background: #ffffff;
	background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	max-width: 1100px;
	border-left: 3.125rem solid #B8A595;
	padding-left: 3.125rem;
}
.faq-container .faq-items{
	border-bottom: 2px solid #000000;
	padding: 1.625rem;
}
.faq-items .question{
	cursor: pointer;
}
.faq-items .question p{
	position: relative;
	display: inline-block;
}
.faq-items .question p::after{
	position: absolute;
	top: 0.3125rem;
	right: -2rem;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 0.625rem;
	height: 0.625rem;
	border-top: 2px solid #000000;
	border-right: 2px solid #000000;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.faq-items .question.open p::after{
	top: 0.625rem;
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
}
.faq-items .question dt,
.faq-items .answer dt{
	width: 3rem;
	font-family: "Roboto", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
	vertical-align: top;
}
.faq-items .question dd,
.faq-items .answer dd{
	width: calc(100% - 3rem);
}
.faq-items .question dd{
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
	padding-right: 1.5rem;
}
.faq-items .answer{
	display: none;
	margin-top: 1rem;
}
.faq-items .answer dd{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}
@media only screen and (max-width: 767px) {
	.faq-guide{
		padding: 3rem 0 2.5rem 0;
	}
	.faq-guide .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.faq-guide .faq-container{
		border-left: 1.25rem solid #B8A595;
		padding: 1.5rem 0.75rem 0.625rem 0.75rem;
	}
	.faq-container .faq-items{
		border-bottom: none;
		padding: 0;
	}
	.faq-container .faq-items:not(:last-child){
		margin-bottom: 2rem;
	}
	.faq-items .question p{
		display: block;
	}
	.faq-items .question p::after{
		top: 0.125rem;
		right: -1rem;
		width: 0.375rem;
		height: 0.375rem;
		border-top: 1px solid #000000;
		border-right: 1px solid #000000;
	}
	.faq-items .question.open p::after{
		top: 0.35rem;
	}
	.faq-items .question dt,
	.faq-items .answer dt{
		width: 1.25rem;
		font-size: 0.6875rem;
	}
	.faq-items .question dd,
	.faq-items .answer dd{
		width: calc(100% - 1.25rem);
	}
	.faq-items .question dd{
		font-size: 0.625rem;
		padding-right: 1.5rem;
	}
	.faq-items .answer{
		margin-top: 0.5rem;
	}
	.faq-items .answer dd{
		font-size: 0.625rem;
	}
}
/*　　お問い合わせボタン　　*/
.contens-contact-guide{
	background: url(../img/contact_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 4rem 0 5.75rem 0;
}
.contens-contact-guide .btn-container{
	margin-top: 3.5625rem;
}
.contens-contact-guide .btn-container ul{
	column-gap: 3.75rem;
}
.contens-contact-guide .btn-container ul li{
	width: calc(50% - 1.875rem);
}
.contens-contact-guide .btn-container ul li a{
	position: relative;
	display: block;
	font-family: "Inter", sans-serif;
	color: #FFFFFF;
	padding: 1.5rem 2.375rem;
}
.contens-contact-guide .btn-container ul li a::before,
.contens-contact-guide .btn-container ul li a::after{
	position: absolute;
	content: '';
}
.contens-contact-guide .btn-container ul li a::before{
	border: 1px solid #FFFFFF;
	width: calc(100% - 0.625rem);
	height: calc(100% - 0.625rem);
	top: 0.3125rem;
	left: 0.3125rem;
}
.contens-contact-guide .btn-container ul li a::after{
	position: absolute;
	width: 2.125rem;
	height: 2.125rem;
	right: 2.5rem;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
.contens-contact-guide .btn-container ul li .roma{
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.5;
}
.contens-contact-guide .btn-container ul li .ttl{
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.5;
}
.contens-contact-guide .btn-container ul li.contact-btn a{
	background: #FFFFFF;
	color: #15315F;
}
.contens-contact-guide .btn-container ul li.contact-btn a:hover{
	background: #15315F;
	color: #FFFFFF;
}
.contens-contact-guide .btn-container ul li.contact-btn a::before{
	border: 1px solid #15315F;
}
.contens-contact-guide .btn-container ul li.contact-btn a:hover::before{
	border: 1px solid #FFFFFF;
}
.contens-contact-guide .btn-container ul li.contact-btn a::after{
	background: url(../img/icon/arrow_blue.svg) center center no-repeat;
	background-size: contain;
}
.contens-contact-guide .btn-container ul li.contact-btn a:hover::after{
	background: url(../img/icon/arrow_w.svg) center center no-repeat;
	background-size: contain;
}
.contens-contact-guide .btn-container ul li.download-btn a{
	background: #B8A595;
}
.contens-contact-guide .btn-container ul li.download-btn a:hover{
	background: #FFFFFF;
	color: #B8A595;
}
.contens-contact-guide .btn-container ul li.download-btn a:hover::before{
	border: 1px solid #B8A595;
}
.contens-contact-guide .btn-container ul li.download-btn a::after{
	background: url(../img/icon/arrow_w.svg) center center no-repeat;
	background-size: contain;
}
.contens-contact-guide .btn-container ul li.download-btn a:hover::after{
	background: url(../img/icon/arrow_c.svg) center center no-repeat;
	background-size: contain;
}
@media only screen and (max-width: 767px) {
	.contens-contact-guide{
		background: url(../img/sp_contact_bg.jpg) no-repeat center;
		background-size: cover;
		padding: 3rem 0 2.5rem 0;
	}
	.contens-contact-guide .btn-container{
		margin-top: 1.5rem;
	}
	.contens-contact-guide .btn-container ul{
		column-gap: 0;
		row-gap: 2rem;
	}
	.contens-contact-guide .btn-container ul li{
		width: 100%;
	}
	.contens-contact-guide .btn-container ul li a{
		padding: 1.375rem 1.25rem;
	}
	.contens-contact-guide .btn-container ul li a::before{
		width: calc(100% - 0.5rem);
		height: calc(100% - 0.5rem);
		top: 0.25rem;
		left: 0.25rem;
	}
	.contens-contact-guide .btn-container ul li a::after{
		width: 1.125rem;
		height: 1.125rem;
		right: 1.125rem;
		top: auto;
		bottom: 1.5rem;
		transform: translateY(0%);
	}
	.contens-contact-guide .btn-container ul li .roma{
		font-size: 0.6875rem;
	}
	.contens-contact-guide .btn-container ul li .ttl{
		font-size: 1rem;
	}
}
/*　　事例紹介　　*/
.works-guide{
	padding: 4.75rem 0;
}
.works-guide .guide-ttl{
	margin-bottom: 3.125rem;
}
.works-guide .works-container{
	max-width: 1100px;
	margin: 0 auto;
}
.works-container.grid-cols-2{
	column-gap: 2.5rem;
	row-gap: 1.5rem;
}
.works-container.grid-cols-3{
	column-gap: 1.5rem;
	row-gap: 1.5rem;
}
.works-container .works-box{
	background: #FFFFFF80;
	border-radius: 1.25rem;
	border: 2px solid #15315F;
}
.works-container.grid-cols-2 .works-box{
	width: calc(50% - 1.25rem);
}
.works-container.grid-cols-3 .works-box{
	width: calc(33.3333% - 1rem);
}
.works-container .works-box .works-ttl{
	background: #15315F;
	color: #FFFFFF;
	padding: 1.25rem 2.5rem;
	border-radius: 1.125rem 1.125rem 0 0;
}
.works-container.grid-cols-2 .works-box .works-ttl{
	padding: 1rem;
}
.works-container.grid-cols-3 .works-box .works-ttl{
	padding: 0.75rem 0.5rem 0.875rem 0.5rem;
}
.works-container .works-box .works-ttl .category{
	column-gap: 0.625rem;
	row-gap: 0.625rem;
	margin-bottom: 0.625rem;
}
.works-container .works-box .works-ttl.flex .category{
	margin-bottom: 0;
}
.works-container .works-box .works-ttl .category li{
	font-family: "Roboto", sans-serif;
	color: #FFFFFF;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25;
	border-radius: 1.875rem;
	border: 2px solid #FFFFFF;
	padding: 0.25rem 0.5rem 0.125rem 0.5rem;
}
.works-container .works-box .works-ttl h3{
	font-family: "Roboto", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
}
.works-container .works-box .works-body{
	padding: 1.875rem 2.5rem;
}
.works-container.grid-cols-2 .works-box .works-body{
	padding: 1rem;
}
.works-container.grid-cols-3 .works-box .works-body{
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.25rem;
}
.works-container .works-box .works-tbl th,
.works-container .works-box .works-tbl td{
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	padding: 0.375rem;
}
.works-container .works-box .works-tbl th{
	width: 8rem;
	font-weight: 700;
}
.works-container.grid-cols-2 .works-box .works-tbl th{
	width: 6rem;
}
.works-container.grid-cols-3 .works-box .works-tbl th{
	width: 5rem;
}
.works-container .works-box .p-text{
	font-family: "Roboto", sans-serif;
	line-height: 1.5;
}
.works-container.grid-cols-3 .works-box .works-body .imageArea{
	height: 11.25rem;
}
.works-container.grid-cols-3 .works-box .works-body .imageArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 767px) {
	.works-guide{
		padding: 3.5rem 0 3rem 0;
	}
	.works-guide .guide-ttl{
		margin-bottom: 2.125rem;
	}
	.works-container.grid-cols-2{
		column-gap: 0;
		row-gap: 1.5rem;
	}
	.works-container.grid-cols-3{
		column-gap: 0;
		row-gap: 1.5rem;
	}
	.works-container.grid-cols-2 .works-box{
		width: 100%;
	}
	.works-container.grid-cols-3 .works-box{
		width: 100%;
	}
	.works-container .works-box .works-ttl{
		padding: 0.75rem 1rem;
	}
	.works-container.grid-cols-2 .works-box .works-ttl{
		padding: 0.75rem;
	}
	.works-container .works-box .works-ttl .category{
		column-gap: 0.375rem;
		row-gap: 0.625rem;
		margin-bottom: 0.5rem;
	}
	.works-container .works-box .works-ttl .category li{
		font-size: 0.6875rem;
		padding: 0.25rem 0.375rem 0.125rem 0.375rem;
	}
	.works-container .works-box .works-ttl h3{
		font-size: 0.6875rem;
	}
	.works-container.grid-cols-2 .works-box .works-ttl h3{
		font-size: 0.8125rem;
	}
	.works-container .works-box .works-body{
		padding: 1rem 1rem 2rem 1rem;
	}
	.works-container.grid-cols-2 .works-box .works-body{
		padding: 0.625rem;
	}
	.works-container.grid-cols-3 .works-box .works-body{
		padding: 1rem;
	}
	.works-container .works-box .works-tbl th,
	.works-container .works-box .works-tbl td{
		font-size: 0.6875rem;
	}
	.works-container .works-box .works-tbl th{
		width: 4rem;
	}
	.works-container.grid-cols-2 .works-box .works-tbl th{
		width: 4rem;
	}
	.works-container.grid-cols-3 .works-box .works-tbl th{
		width: 4rem;
	}
	.works-container.grid-cols-3 .works-box .works-body .imageArea{
		height: 10rem;
	}
}
/**
/* 受託開発・データ分析 CSS
----------------------------------------------- */
/*　　一般的な開発会社との違い　　*/
.comparison-guide{
	padding: 5rem 0 5.75rem 0;
}
.comparison-guide .guide-ttl{
	margin-bottom: 4.5rem;
}
.comparison-guide .comparison-tbl{
	border-collapse: separate;
	border-spacing: 0;
	border: 4px solid #15315F;
	border-radius: 2.5rem;
	overflow: hidden;
}
.comparison-tbl thead th{
	background: #15315F1A;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	vertical-align: middle;
	border-bottom: 2px solid #000000;
	padding: 1rem 1rem;
}
.comparison-tbl thead th.caluck{
	background: #15315F;
	color: #FFFFFF;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.5;
	padding: 1rem 1rem;
}
.comparison-tbl tbody tr:nth-child(even){
	background: #15315F1A;
}
.comparison-tbl tbody th{
	background: #15315F1A;
	width: 24%;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	vertical-align: middle;
	border-bottom: 2px solid #000000;
	padding: 1rem 0.5rem;
}
.comparison-tbl tbody td{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	vertical-align: middle;
	border-bottom: 2px solid #000000;
	padding: 1rem 1rem;
}
.comparison-tbl tbody td p{
	display: flex;
	align-items: center;
}
.comparison-tbl tbody td span.icon{
	display: inline-block;
	width: 1.75rem;
	font-size: 1.75rem;
	line-height: 1;
	margin-right: 0.5rem;
}
.comparison-tbl tbody td span.text{
	width: calc(100% - 2.25rem);
}
.comparison-tbl tbody tr:nth-child(odd) td.caluck{
	background: #FFFFFF;
}
.comparison-tbl tbody td:last-child{
	background: #15315F1A;
}
.comparison-tbl tbody tr:last-child th,
.comparison-tbl tbody tr:last-child td{
	border-bottom: none;
}
@media only screen and (max-width: 767px) {
	.comparison-guide{
		padding: 4rem 0 3.75rem 0;
	}
	.comparison-guide .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.comparison-guide .comparison-tbl{
		border: 2px solid #15315F;
		border-radius: 0.625rem;
	}
	.comparison-tbl thead th{
		font-size: 0.5625rem;
		border-bottom: 1px solid #000000;
		padding: 1rem 0.25rem;
	}
	.comparison-tbl thead th.caluck{
		font-size: 0.625rem;
		padding: 1rem 1rem;
	}
	.comparison-tbl tbody th{
		width: 25%;
		font-size: 0.375rem;
		border-bottom: 1px solid #000000;
		padding: 1rem 0.25rem;
	}
	.comparison-tbl tbody td{
		font-size: 0.375rem;
		text-align: center;
		border-bottom: 1px solid #000000;
		padding: 0.625rem 0.5rem;
	}
	.comparison-tbl tbody td span.icon{
		width: 1rem;
		font-size: 1rem;
		margin-right: 0.375rem;
	}
	.comparison-tbl tbody td span.text{
		width: calc(100% - 1.375rem);
	}
	.comparison-tbl tbody tr:nth-child(odd) td.caluck{
		width: 40%;
	}
	.comparison-tbl tbody td:last-child{
		font-size: 0.3125rem;
	}
}
/*　　事例紹介　　*/
.development-wrap .works-container .works-box .imageArea{
	margin-bottom: 1.5rem;
}
.development-wrap .works-container .works-box .imageArea img{
	max-width: 20rem;
}
.development-wrap .works-container .works-box .works-tbl th,
.development-wrap .works-container .works-box .works-tbl td{
	color: #15315F;
}
.development-wrap .works-container .works-box .works-tbl td ul{
	display: flex;
	flex-wrap: wrap;
	row-gap: 1rem;
}
.development-wrap .works-container .works-box .works-tbl td ul li{
	width: 50%;
}
.development-wrap .works-container .works-box .p-text{
	color: #15315F;
	margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.development-wrap .works-container .works-box .imageArea img{
		max-width: 100%;
	}
	.development-wrap .works-container .works-box .works-tbl th,
	.development-wrap .works-container .works-box .works-tbl td{
		display: block;
	}
	.development-wrap .works-container .works-box .works-tbl th{
		width: 100%;
		padding: 0 0 0.375rem 0;
	}
	.development-wrap .works-container .works-box .works-tbl td{
		padding: 0 0 0.875rem 0;
	}
	.development-wrap .works-container .works-box .works-tbl td ul{
		row-gap: 0.5rem;
	}
	.development-wrap .works-container .works-box .works-tbl td ul li{
		width: 100%;
	}
	.development-wrap .works-container .works-box .p-text{
		margin-top: 0.625rem;
	}
}
/**
/* システムエンジニアリングサービス CSS
----------------------------------------------- */
/*　　データで見るCaluck　　*/
.data-guide{
	padding-bottom: 5rem;
}
.data-guide .guide-ttl{
	margin-bottom: 4.5rem;
}
.data-guide .data-container{
	max-width: 1100px;
	margin: 0 auto;
	column-gap: 3rem;
	row-gap: 2.1875rem;
}
.data-container .data-items{
	position: relative;
	width: calc(50% - 1.5rem);
	border: 1px solid #000000;
}
.data-container .data-items h3{
	position: absolute;
    top: -1.5rem;
    left: 2rem;
}
.data-container .data-items h3 span{
	display: inline-block;
	background: #FFFFFF;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	padding: 0.5rem 1.875rem;
}
.data-container .data-items .data-body{
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 3rem 1.25rem 2.5rem 1.25rem;
}
.data-container .data-items figure{
	text-align: center;
	margin-top: auto;
}
.data-container .data-items .p-text{
	margin-bottom: 1rem;
}
.data-container .data-items .p-text span{
	font-size: 1.25rem;
}
.data-container .data-items .breakdown{
	position: absolute;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.4;
	bottom: 1.875rem;
}
@media only screen and (max-width: 767px) {
	.data-guide{
		padding-bottom: 2.25rem;
	}
	.data-guide .guide-ttl{
		margin-bottom: 3.5rem;
	}
	.data-guide .data-container{
		column-gap: 0;
		row-gap: 1.5rem;
	}
	.data-container .data-items{
		width: 100%;
	}
	.data-container .data-items h3{
	    top: -1rem;
	    left: 1rem;
	}
	.data-container .data-items h3 span{
		font-size: 0.75rem;
		padding: 0.5rem 0.875rem;
	}
	.data-container .data-items .data-body{
		padding: 2.5rem 1rem 1.25rem 1rem;
	}
	.data-container .data-items .p-text{
		margin-bottom: 1rem;
	}
	.data-container .data-items .p-text span{
		font-size: 0.875rem;
	}
	.data-container .data-items figure img{
		width: 90%;
	}
	.data-container .data-items:nth-child(2) figure,
	.data-container .data-items:nth-child(3) figure{
		text-align: right;
	}
	.data-container .data-items:nth-child(2) figure img,
	.data-container .data-items:nth-child(3) figure img{
		width: 60%;
	}
	.data-container .data-items:nth-child(4) figure img{
		width: 80%;
	}
	.data-container .data-items .breakdown{
		font-size: 0.625rem;
		bottom: 2.5rem;
	}
}
/*　　事例紹介　　*/
.ses-wrap .works-guide .guide-ttl{
	margin-bottom: 4.5rem;
}
.ses-works-container{
	max-width: 1100px;
	margin: 0 auto;
}
.ses-works-container .bg-text{
	font-family: "Roboto", sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 3.5rem;
}
.ses-works-container .ttl{
	font-family: "Roboto", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 1.25rem;
}
.ses-works-container .works-container:not(:last-child){
	margin-bottom: 3rem;
}
.ses-works-container .works-container.grid-cols-2 .works-box .works-ttl{
	padding: 1rem 0.5rem;
}
.ses-works-container .works-container.grid-cols-2 .works-box .works-ttl h3{
	margin-left: 1rem;
}
.ses-works-container .works-container.grid-cols-2 .works-box .works-body{
	padding: 1rem 1.5rem;
}
.ses-works-container .works-container.grid-cols-2 .works-box .imageArea{
	margin-top: auto;
}
@media only screen and (max-width: 767px) {
	.ses-wrap .works-guide .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.ses-works-container .bg-text{
		font-size: 0.5625rem;
		margin-bottom: 2.5rem;
	}
	.ses-works-container .ttl{
		font-size: 0.875rem;
		margin-bottom: 0.625rem;
	}
	.ses-works-container .works-container:not(:last-child){
		row-gap: 1rem;
		margin-bottom: 3rem;
	}
	.ses-works-container .works-container.grid-cols-2 .works-box .works-ttl{
		padding: 0.5rem 0.375rem;
	}
	.ses-works-container .works-container.grid-cols-2 .works-box .works-ttl h3{
		font-size: 0.75rem;
		margin-left: 0.5rem;
	}
	.ses-works-container .works-container.grid-cols-2 .works-box .works-body{
		padding: 0.625rem 1rem;
	}
	.ses-works-container .works-container.grid-cols-2 .works-box .works-tbl th{
		width: 3rem;
	}
}
/**
/* MEO対策 CSS
----------------------------------------------- */
/*　　MEOの与える影響　　*/
.impact-guide{
	padding-bottom: 5rem;
}
.impact-guide .guide-ttl{
	margin-bottom: 3.5rem;
}
.impact-container .p-text{
	line-height: 1.875;
	padding-left: 3.125rem;
	margin-bottom: 5rem;
}
.impact-container h3{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	margin-bottom: 1.5rem;
}
.impact-list .impact-items{
	width: 50%;
}
.impact-list .impact-items h4{
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	padding: 0.75rem;
	margin-bottom: 3.75rem;
}
.impact-list .impact-items.good h4{
	background: #15315F;
	border-radius: 2rem 0 0 2rem;
}
.impact-list .impact-items.bad h4{
	background: #B8A595;
	border-radius: 0 2rem 2rem 0;
}
.impact-list .impact-items .icon{
	width: 35%;
}
.impact-list .impact-items .contentArea{
	width: 65%;
	text-align: center;
	padding: 0 1rem;
}
.impact-list .impact-items .contentArea p{
	font-size: 1.1875rem;
	font-weight: 500;
	line-height: 1.35;
}
.impact-list .impact-items .contentArea .arrow{
	line-height: 1;
	margin: 1rem 0;
}
.impact-list .impact-items .contentArea .arrow img{
	width: 3.3125rem;
}
@media only screen and (max-width: 767px) {
	.impact-guide{
		padding-bottom: 3rem;
	}
	.impact-guide .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.impact-container .p-text{
		line-height: 2;
		padding-left: 0;
		margin-bottom: 3rem;
	}
	.impact-container h3{
		font-size: 0.8125rem;
		margin-bottom: 1rem;
	}
	.impact-list .impact-items h4{
		font-size: 0.75rem;
		padding: 0.5rem;
		margin-bottom: 1.25rem;
	}
	.impact-list .impact-items .icon{
		width: 100%;
		text-align: center;
		margin-bottom: 1rem;
	}
	.impact-list .impact-items .icon img{
		max-width: 5.5rem;
	}
	.impact-list .impact-items .contentArea{
		width: 100%;
		padding: 0;
	}
	.impact-list .impact-items .contentArea p{
		font-size: 0.625rem;
		line-height: 2;
	}
	.impact-list .impact-items .contentArea .arrow{
		margin: 0.375rem 0;
	}
	.impact-list .impact-items .contentArea .arrow img{
		width: 0.9375rem;
	}
}
/*　　事例紹介　　*/
.meo-wrap .works-box .works-body .imageArea{
	width: 32%;
}
.meo-wrap .works-box .works-body .contentArea{
	width: 68%;
	padding-left: 3rem;
}
.meo-wrap .works-box .works-body .contentArea h4{
	color: #15315F;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 1.5rem;
}
.meo-wrap .meo-works-list{
	column-gap: 1.5rem;
	margin-top: 2.25rem;
}
.meo-works-list .meo-works-items{
	background: #FFFFFF80;
	width: calc(33.3333% - 1rem);
	border: 2px solid #15315F;
	border-radius: 1.25rem;
}
.meo-works-list .meo-works-items dt{
	background: #B8A595;
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	padding: 1rem 0.5rem;
	border-radius: 1.125rem 1.125rem 0 0;
	border-bottom: 1px solid #15315F;
}
.meo-works-list .meo-works-items dd{
	padding: 0.75rem 1.25rem 2rem 1.25rem;
}
.meo-works-list .meo-works-items:not(:first-child) dd{
	padding: 1.5rem 1.25rem 2rem 1.25rem;
}
.meo-works-list .meo-works-items .value-text{
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}
.meo-works-list .meo-works-items .value-text small{
	font-size: 1.125rem;
}
.meo-works-list .meo-works-items .value-text strong{
	display: inline-block;
	font-size: 2.25rem;
	margin: 0 0.5rem;
}
.meo-works-list .meo-works-items .value-text span{
	font-weight: 400;
}
.meo-works-list .meo-works-items .box{
	background: #D9D9D9;
	padding: 0.375rem;
	margin-top: 0.375rem;
}
.meo-works-list .meo-works-items:not(:first-child) .box{
	margin-top: 1rem;
}
.meo-works-list .meo-works-items .box p{
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.4;
}
@media only screen and (max-width: 767px) {
	.meo-wrap .works-container .works-box .works-ttl h3{
		font-size: 1rem;
		text-align: center;
	}
	.meo-wrap .works-box .works-body .imageArea{
		width: 100%;
		margin-bottom: 1.5rem;
	}
	.meo-wrap .works-box .works-body .contentArea{
		width: 100%;
		padding-left: 0;
	}
	.meo-wrap .works-box .works-body .contentArea h4{
		font-size: 0.6875rem;
		margin-bottom: 1.5rem;
	}
	.meo-wrap .meo-works-list{
		column-gap: 1.5rem;
		row-gap: 1.125rem;
		margin-top: 2rem;
	}
	.meo-works-list .meo-works-items{
		width: 100%;
	}
	.meo-works-list .meo-works-items dt{
		font-size: 1rem;
		padding: 0.755rem 0.5rem;
	}
	.meo-works-list .meo-works-items dd{
		padding: 1rem 1.5rem 1.125rem 1.5rem;
	}
	.meo-works-list .meo-works-items:not(:first-child) dd{
		padding: 1rem 1.5rem 1.125rem 1.5rem;
	}
	.meo-works-list .meo-works-items .value-text{
		font-size: 0.75rem;
	}
	.meo-works-list .meo-works-items .value-text small{
		font-size: 0.75rem;
	}
	.meo-works-list .meo-works-items .value-text strong{
		font-size: 1.25rem;
		margin: 0 0.25rem;
	}
	.meo-works-list .meo-works-items .box{
		padding: 0.375rem;
		margin-top: 0.375rem;
	}
	.meo-works-list .meo-works-items:not(:first-child) .box{
		margin-top: 1rem;
	}
	.meo-works-list .meo-works-items .box p{
		font-size: 0.5625rem;
	}
}
/**
/* お知らせ一覧 CSS
----------------------------------------------- */
.news-guide{
	padding: 6.25rem 0 8rem 0;
}
.news-guide .p-text{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 3rem;
}
.news-guide .category-nav{
	margin-bottom: 4rem;
}
.news-list .news-items:not(:last-child){
	border-bottom: 1px solid #707070;
}
.news-list .news-items a{
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 1.5rem 0 1.625rem 0;
}
.news-list .news-items dt.category{
	width: 9.6875rem;
	line-height: 0;
}
.news-list .news-items dt.category span{
	display: inline-block;
	width: 9.6875rem;
	background: #15315F;
	color: #FFFFFF;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	border-radius: 1.25rem;
	text-align: center;
	padding: 0.375rem 0.5rem;
}
.news-list .news-items dd{
	display: flex;
	align-items: center;
	width: calc(100% - 9.6875rem);
	padding-left: 2rem;
}
.news-list .news-items dd .date{
	width: 8.125rem;
	color: #000000;
	font-size: 1.255rem;
	font-weight: 700;
	line-height: 1.25;
}
.news-list .news-items dd .ttl{
	width: calc(100% - 8.125rem);
	color: #000000;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
	padding-left: 5rem;
}
@media only screen and (max-width: 767px) {
	.news-guide{
		padding: 3.5rem 0 2rem 0;
	}
	.news-guide .p-text{
		font-size: 0.6875rem;
		text-align: center;
		margin-bottom: 3rem;
	}
	.news-guide .category-nav{
		margin-bottom: 3rem;
	}
	.news-list .news-items a{
		padding: 0.75rem 0;
	}
	.news-list .news-items dt.category{
		width: 100%;
		margin-bottom: 0.875rem;
	}
	.news-list .news-items dt.category span{
		width: auto;
		font-size: 0.625rem;
		padding: 0.375rem 0.8125rem;
	}
	.news-list .news-items dd{
		width: 100%;
		padding-left: 0;
	}
	.news-list .news-items dd .date{
		width: 5rem;
		font-size: 0.6875rem;
	}
	.news-list .news-items dd .ttl{
		width: calc(100% - 5rem);
		font-size: 0.6875rem;
		padding-left: 0.5rem;
	}
}
/**
/* コラム一覧 CSS
----------------------------------------------- */
.column-guide{
	padding: 6.25rem 0 0.5rem 0;
}
.column-guide .p-text{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 3.125rem;
}
.column-guide .category-nav{
	margin-bottom: 5rem;
}
.column-guide .column-container{
	max-width: 1100px;
	margin: 0 auto;
	column-gap: 3.75rem;
	row-gap: 2.5rem;
}
.column-container .column-items{
	display: flex;
	flex-direction: column;
	width: calc(33.333% - 2.5rem);
	border-radius: 0.625rem;
	box-shadow: 0px 0.3125rem 0.9375rem 0px #00000029;
	padding: 2rem 1.25rem;
}
.column-container .column-items a{
	display: flex;
	flex-direction: column;
	height: 100%;
}
.column-container .column-items .column-deta{
	align-items: center;
	margin-bottom: 1.875rem;
}
.column-container .column-items .category span{
	display: inline-block;
	background: #15315F;
	color: #FFFFFF;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	border: 1px solid #555555;
	padding: 0.25rem 1rem;
}
.column-container .column-items .date{
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
}
.column-container .column-items .ttl{
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 0.875rem;
	flex-grow: 1;
}
.column-container .column-items .text{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25;
	flex-grow: 2;
}
.column-guide .column-container .no-text{
	width: 100%;
    color: #B8A595;
    font-family: "Inter", sans-serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.71;
    letter-spacing: 0.05em;
    text-align: center;
}
@media only screen and (max-width: 767px) {
	.column-guide{
		padding: 4.5rem 0 0.5rem 0;
	}
	.column-guide .p-text{
		font-size: 0.6875rem;
		text-align: center;
		margin-bottom: 2.375rem;
	}
	.column-guide .category-nav{
		margin-bottom: 3.5rem;
	}
	.column-guide .column-container{
		column-gap: 0;
		row-gap: 0.9375rem;
	}
	.column-container .column-items{
		width: 100%;
		border-radius: 0.625rem;
		padding: 1rem 1rem 1.25rem 1rem;
	}
	.column-container .column-items .column-deta{
		margin-bottom: 0.875rem;
	}
	.column-container .column-items .category span{
		font-size: 0.625rem;
		padding: 0.25rem 0.5rem;
	}
	.column-container .column-items .date{
		font-size: 0.6875rem;
	}
	.column-container .column-items .ttl{
		font-size: 0.6875rem;
		margin-bottom: 0.875rem;
	}
	.column-container .column-items .text{
		font-size: 0.625rem;
	}
	.column-guide .column-container .no-text{
		width: 100%;
	    font-size: 1.25rem;
	}
}
/**
/* カテゴリーナビ CSS
----------------------------------------------- */
.category-nav{
	column-gap: 0.75rem;
}
.category-nav li a{
	display: inline-block;
	color: #15315F;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	border: 1px solid #15315F;
	padding: 0.5rem 1.875rem;
}
.category-nav li a.current{
	background: #15315F;
	color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
	.category-nav{
		-webkit-justify-content: center;
		justify-content: center;
		column-gap: 0.375rem;
	}
	.category-nav li a{
		min-width: 3.5rem;
		font-size: 0.625rem;
		padding: 0.25rem 0.75rem;
	}
}
/**
/* お知らせ・コラム詳細 CSS
----------------------------------------------- */
.single-guide{
	padding: 8.75rem 0 0.5rem 0;
}
.single-guide .inner{
	max-width: 50rem;
}
.single-guide article{
	background: #FFFFFF;
	border-radius: 0.625rem;
	box-shadow: 0px 0.3125rem 0.9375rem 0px #00000026;
	padding: 2.1875rem 1.625rem 2.9375rem 1.625rem;
	margin-top: 1.375rem;
}
.single-guide .entry-header{
	margin-bottom: 3rem;
}
.single-guide .entry-data{
	align-items: center;
	margin-bottom: 2rem;
}
.single-guide .entry-data .category a{
	display: inline-block;
	background: #15315F;
	color: #FFFFFF;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	border: 1px solid #555555;
	padding: 0.3125rem 1.875rem;
}
.single-guide .entry-data .dete{
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	margin-left: 1rem;
}
.single-guide .entry-header h2{
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 1rem;
}
.single-guide .entry-body p{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
}
.single-guide .entry-body p:not(:last-child){
	margin-bottom: 2rem;
}
.single-guide .entry-body ul{
	margin: 3rem 0 2rem 0;
}
.single-guide .entry-body ul li{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
}
.single-guide .entry-body ul li:not(:last-child){
	margin-bottom: 0.5rem;
}
.single-guide .entry-body ol{
	counter-reset: item;
	margin: 3rem 0;
}
.single-guide .entry-body ol li{
	position: relative;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
	padding-left: 1.5rem;
}
.single-guide .entry-body ol.wp-block-list li::before{
	content: counter(item) ". ";
	counter-increment: item;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0.25rem;
	font-family: "Poppins", sans-serif;
	color: #15315F;
	font-size: 1.125rem;
	font-weight: 700;
}
.single-guide .entry-body ol li:not(:last-child){
	margin-bottom: 0.5rem;
}
.single-guide .block_btn{
	text-align: center;
	margin-top: 4rem;
}
.single-guide .block_btn li{
	display: inline-block;
	width: 100%;
	max-width: 12rem;
}
.single-guide .block_btn li + li{
	margin-left: 2.5rem;
}
.single-guide .block_btn li a{
	display: block;
	color: #15315F;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
	border-radius: 1.875rem;
	border: 1px solid #15315F;
	padding: 0.45rem 1rem;
}
@media only screen and (max-width: 767px) {
	.single-guide{
		padding: 3.75rem 0 0.5rem 0;
	}
	.single-guide article{
		padding: 2rem 1.25rem;
		margin-top: 1.375rem;
	}
	.single-guide .entry-header{
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-data{
		margin-bottom: 1rem;
	}
	.single-guide .entry-data .category a{
		font-size: 0.625rem;
		padding: 0.25rem 0.875rem;
	}
	.single-guide .entry-data .dete{
		font-size: 0.6875rem;
		margin-left: 0.625rem;
	}
	.single-guide .entry-header h2{
		font-size: 0.6875rem;
		margin-bottom: 1rem;
	}
	.single-guide .entry-body p{
		font-size: 0.625rem;
	}
	.single-guide .entry-body p:not(:last-child){
		margin-bottom: 1.25rem;
	}
	.single-guide .entry-body ul{
		margin: 3rem 0 2rem 0;
	}
	.single-guide .entry-body ul li{
		font-size: 1rem;
	}
	.single-guide .entry-body ul li:not(:last-child){
		margin-bottom: 0.5rem;
	}
	.single-guide .entry-body ol{
		margin: 3rem 0;
	}
	.single-guide .entry-body ol li{
		font-size: 1rem;
		padding-left: 1.5rem;
	}
	.single-guide .entry-body ol.wp-block-list li::before{
		left: 0.25rem;
		font-size: 1.125rem;
	}
	.single-guide .entry-body ol li:not(:last-child){
		margin-bottom: 0.5rem;
	}
	.single-guide .block_btn{
		margin-top: 2rem;
	}
	.single-guide .block_btn li{
		max-width: 8rem;
	}
	.single-guide .block_btn li + li{
		margin-left: 1rem;
	}
	.single-guide .block_btn li a{
		font-size: 0.6875rem;
		padding: 0.75rem 1rem;
	}
}
/**
/* 採用情報 CSS
----------------------------------------------- */
/*　　Caluckについて　　*/
.recruit-wrap .about-guide{
	padding: 6.25rem 0 3.5rem 0;
}
@media only screen and (max-width: 767px) {
	.recruit-wrap .about-guide{
		padding: 2rem 0 2.5rem 0;
	}
	.recruit-wrap .about-container .imageArea{
		margin-bottom: 1.875rem;
	}
	.recruit-wrap .about-container h2::after{
		content: '';
	}
	.recruit-wrap .about-container .more_btn{
		text-align: right;
	}
}
/*　　理念　　*/
.recruit-wrap .philosophy-guide{
	padding: 3.5rem 0 5.75rem 0;
}
.recruit-wrap .philosophy-guide .guide-ttl{
	margin-bottom: 3.125rem;
}
@media only screen and (max-width: 767px) {
	.recruit-wrap .philosophy-guide{
		padding: 3.5rem 0 3.75rem 0;
	}
	.recruit-wrap .philosophy-guide .guide-ttl{
		margin-bottom: 2.125rem;
	}
}
/*　　オフィスのご紹介　　*/
.recruit-office-guide{
	padding: 5rem 0 4.5rem 0;
}
.recruit-office-guide .guide-ttl{
	margin-bottom: 6rem;
}
.recruit-office-guide .recruit-office-container{
	max-width: 1080px;
	margin: 0 auto;
}
.recruit-office-guide .recruit-office-gallery{
	column-gap: 2.5rem;
}
.recruit-office-guide .recruit-office-gallery li{
	width: calc(33.3333% - 1.675rem);
}
.recruit-office-guide .recruit-office-gallery li img{
	border-radius: 1.25rem;
	box-shadow: 0px 0.3125rem 0.9375rem 0px #00000026;
}
.recruit-office-guide .recruit-office-gallery li figcaption{
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 1.25rem;
}
.recruit-office-guide .imageArea{
	margin-top: 3.125rem;
}
.recruit-office-guide .imageArea img{
	border-radius: 1.25rem;
	box-shadow: 0px 0.3125rem 0.9375rem 0px #00000026;
}
@media only screen and (max-width: 767px) {
	.recruit-office-guide{
		padding: 3.5rem 0 3rem 0;
	}
	.recruit-office-guide .guide-ttl{
		margin-bottom: 3rem;
	}
	.recruit-office-guide .recruit-office-container{
		width: 100%;
	}
	.recruit-office-guide .recruit-office-gallery{
		column-gap: 0;
		row-gap: 2rem;
	}
	.recruit-office-guide .recruit-office-gallery li{
		width: 100%;
	}
	.recruit-office-guide .recruit-office-gallery li img{
		border-radius: 0.625rem;
	}
	.recruit-office-guide .recruit-office-gallery li figcaption{
		text-align: center;
		margin-top: 0.625rem;
	}
	.recruit-office-guide .imageArea{
		margin-top: 3.5rem;
	}
	.recruit-office-guide .imageArea img{
		border-radius: 0.625rem;
	}
}
/*　　募集要項　　*/
.job-description-guide{
	background: #F0F0F0;
	padding: 4rem 0;
}
.job-description-guide .guide-ttl{
	margin-bottom: 7.5rem;
}
.job-description-container .job-description-items{
	position: relative;
	background: #F6F6F6;
	max-width: 1048px;
	border: 2px solid #15315F;
	border-radius: 0.625rem;
	margin: 0 auto;
	padding: 4.875rem 4rem 6rem 4rem;
}
.job-description-container .job-description-items.open:first-child,
.job-description-container .job-description-items:not(:first-child){
	padding: 2rem 4rem;
}
.job-description-container .job-description-items:first-child,
.job-description-container .job-description-items.open:not(:first-child){
	padding: 4.875rem 4rem 6rem 4rem;
}
.job-description-container .job-description-items:not(:last-child){
	margin-bottom: 4.375rem;
}
.job-description-items.open:first-child .job-more-btn,
.job-description-items:not(:first-child) .job-more-btn{
	position: absolute;
	bottom: 2rem;
}
.job-description-items:first-child .job-more-btn,
.job-description-items.open:not(:first-child) .job-more-btn{
	position: relative;
	bottom: auto;
}
.job-description-items .job-more-btn span{
	position: relative;
	display: inline-block;
	width: 15rem;
	background: #15315F;
	color: #FFFFFF;
	font-family: "Roboto", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	padding: 0.75rem 2rem 0.75rem 1rem;
}
.job-description-items .job-more-btn span::after{
	position: absolute;
	color: #FFFFFF;
	font-family: "Roboto", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
}
.job-description-items.open:first-child .job-more-btn span::after,
.job-description-items:not(:first-child) .job-more-btn span::after{
	content: '＋';
}
.job-description-items:first-child .job-more-btn span::after,
.job-description-items.open:not(:first-child) .job-more-btn span::after{
	content: '−';
}
.job-description-items.open:first-child .job-description-head,
.job-description-items:not(:first-child) .job-description-head{
	align-items: center;
}
.job-description-items:first-child .job-description-head,
.job-description-items.open:not(:first-child) .job-description-head{
	align-items: flex-start;
}
.job-description-items .job-description-head .contentArea{
	width: 68%;
	padding-right: 2rem;
}
.job-description-items h3{
	font-family: "Roboto", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}
.job-description-items.open:first-child .job-description-head .job-text,
.job-description-items:not(:first-child) .job-description-head .job-text{
	display: none;
}
.job-description-items:first-child .job-description-head .job-text,
.job-description-items.open:not(:first-child) .job-description-head .job-text{
	display: block;
	margin-bottom: 2rem;
}
.job-description-items .job-description-head .job-text p{
	font-family: "Roboto", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
}
.job-description-items .job-description-head .job-text p:not(:last-child){
	margin-bottom: 1rem;
}
.job-description-items .job-description-head .imageArea{
	width: 32%;
}
.job-description-items.open:first-child .job-description-head .imageArea,
.job-description-items:not(:first-child) .job-description-head .imageArea{
	height: 10.125rem;
}
.job-description-items:first-child .job-description-head .imageArea,
.job-description-items.open:not(:first-child) .job-description-head .imageArea{
	height: 16.0625rem;
}
.job-description-items .job-description-head .imageArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1.25rem;
}
.job-description-items.open:first-child .job-tbl,
.job-description-items:not(:first-child) .job-tbl{
	display: none;
}
.job-description-items:first-child .job-tbl,
.job-description-items.open:not(:first-child) .job-tbl{
	display: block;
}
.job-description-items .job-description-tbl th,
.job-description-items .job-description-tbl td{
	font-family: "Roboto", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
	vertical-align: middle;
	border-bottom: 1px solid #000000;
	padding: 2.375rem 0;
}
.job-description-items .job-description-tbl th{
	width: 18rem;
}
.job-description-guide .entry_btn{
	text-align: center;
	margin-top: 4.875rem;
}
.job-description-guide .entry_btn li{
	display: inline-block;
	width: 100%;
	max-width: 22.5rem;
}
.job-description-guide .entry_btn li a{
	display: block;
	background: #15315F;
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	border: 2px solid #15315F;
	padding: 1.5rem 1rem;
}
.job-description-guide .entry_btn li a:hover{
	background: #FFFFFF;
	color: #15315F;
}
@media only screen and (max-width: 767px) {
	.job-description-guide{
		padding: 3rem 0;
	}
	.job-description-guide .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.job-description-container .job-description-items{
		border: 1px solid #15315F;
		border-radius: 0.5rem;
		padding: 1.5625rem 1.125rem 2rem 1.125rem;
	}
	.job-description-container .job-description-items.open:first-child,
	.job-description-container .job-description-items:not(:first-child){
		padding: 1.125rem 1.125rem 4.5rem 1.125rem;
	}
	.job-description-container .job-description-items:first-child,
	.job-description-container .job-description-items.open:not(:first-child){
		padding: 1.5625rem 1.125rem 2rem 1.125rem;
	}
	.job-description-container .job-description-items:not(:last-child){
		margin-bottom: 2rem;
	}
	.job-description-items.open:first-child .job-more-btn,
	.job-description-items:not(:first-child) .job-more-btn{
		bottom: auto;
		left: 50%;
		transform: translateX(-50%);
	}
	.job-description-items .job-more-btn span{
		width: 13rem;
		font-size: 1rem;
		padding: 0.75rem 1.5rem 0.75rem 1rem;
	}
	.job-description-items .job-more-btn span::after{
		font-size: 1rem;
		right: 1rem;
	}
	.job-description-items .job-description-head .contentArea{
		width: 100%;
		padding-right: 0;
	}
	.job-description-items h3{
		font-size: 1.125rem;
		margin-bottom: 1.125rem;
	}
	.job-description-items:first-child .job-description-head .job-text,
	.job-description-items.open:not(:first-child) .job-description-head .job-text{
		margin-bottom: 1.5rem;
	}
	.job-description-items .job-description-head .job-text p{
		font-size: 0.625rem;
	}
	.job-description-items .job-description-head .job-text p:not(:last-child){
		margin-bottom: 1rem;
	}
	.job-description-items .job-description-head .imageArea{
		width: 100%;
		margin-bottom: 1.5rem;
	}
	.job-description-items.open:first-child .job-description-head .imageArea,
	.job-description-items:not(:first-child) .job-description-head .imageArea{
		height: 8.9375rem;
	}
	.job-description-items:first-child .job-description-head .imageArea,
	.job-description-items.open:not(:first-child) .job-description-head .imageArea{
		height: 8.9375rem;
	}
	.job-description-items .job-description-head .imageArea img{
		border-radius: 0.625rem;
	}
	.job-description-items:first-child .job-tbl,
	.job-description-items.open:not(:first-child) .job-tbl{
		margin-top: 1.5rem;
	}
	.job-description-items .job-description-tbl th,
	.job-description-items .job-description-tbl td{
		display: block;
		font-size: 0.625rem;
		border-bottom: 1px solid #000000;
		padding: 0.375rem 0 1.375rem 0;
	}
	.job-description-items .job-description-tbl th{
		width: 100%;
		border-bottom: none;
		padding: 1.375rem 0 0.375rem 0;
	}
	.job-description-guide .entry_btn{
		margin-top: 3rem;
	}
	.job-description-guide .entry_btn li{
		max-width: 18.75rem;
	}
	.job-description-guide .entry_btn li a{
		font-size: 1rem;
		padding: 1.25rem 1rem;
	}
}
/**
/* お問い合わせページ CSS
----------------------------------------------- */
.contact-guide .contact-hrad-container{
	background: #15315F;
	padding: 3.375rem 0 4.5625rem 0;
}
.contact-guide .contact-hrad-container .guide-ttl{
	margin-bottom: 2rem;
}
.contact-guide .contact-hrad-container .guide-ttl .roma{
	font-size: 0.9375rem;
	margin-bottom: 0.5rem;
}
.contact-guide .contact-hrad-container .guide-ttl h2{
	font-size: 1.875rem;
}
.contact-guide .contact-hrad-container .p-text{
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.95;
	text-align: center;
}
.contact-guide .contact-hrad-container .p-text.address{
	margin-top: 1.5rem;
}
.contact-guide .contact-hrad-container .p-text.address a{
	color: #FFFFFF;
}
.contact-guide .form-wrap{
	max-width: 1130px;
	padding: 8.625rem 0;
}
.form-wrap .tabArea .tab-btn{
	width: 16.6666%;
	display: flex;
	flex-direction:column;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.form-wrap .tabArea .tab-btn.consulting{
	width: 21%;
}
.form-wrap .tabArea .tab-btn a{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	font-family: "Roboto", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
	padding: 0.875rem 0;
}
.form-wrap .tabArea .tab-btn.development a{
	background: #15315F;
}
.form-wrap .tabArea .tab-btn.ses a{
	background: #133F86;
}
.form-wrap .tabArea .tab-btn.consulting a{
	background: #48618C;
}
.form-wrap .tabArea .tab-btn.meo a{
	background: #15315F66;
}
.form-wrap .tabArea .tab-btn.others a{
	background: #FFFFFF;
}
.form-wrap .tabArea .tab-btn.entry a{
	background: #B8A595;
}
.form-wrap .tabArea .tab-btn a.select{
	background: #E2E2E2;
	color: #1A1A1A;
}
.form-container .js-tab-main{
	display: none;
}
.form-container .js-tab-main.is_show{
	display: block;
}
.form-grid{
	background: #E2E2E2;
	padding: 7.5rem 3rem 5rem 3rem;
}
.form-grid .form-box{
	max-width: 50rem;
	margin: 0 auto;
}
.form-box dl:not(:last-child){
	margin-bottom: 1rem;
}
.form-box dl dt,
.form-box dl dd{
	vertical-align: top;
}
.form-box dl dt{
	font-family: "Roboto", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.35;
	padding-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.form-box .dl-tbl dt{
	width: 15rem;
	margin-bottom: 0.5rem;
}
.form-box .dl-tbl dd,
.form-box dl dd{
	width: calc(100% - 15rem);
	margin-left: auto;
}
.form-box dl dd .wpcf7-form-control-wrap{
	display: block;
}
.form-box dl dd .wpcf7-form-control-wrap .wpcf7-list-item-label{
	font-family: "Roboto", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.35;
}
input[type="date"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select{
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #707070;
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
	border-radius: 0.625rem;
	padding: 0.375rem 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: 10rem;
}
.wpcf7-list-item {
	display: block;
	line-height: 1.65;
	margin: 0.375rem 0;
}
.wpcf7-checkbox label{
	display: flex;
	align-items: center;
	column-gap: 0.5rem;
	width: fit-content;
	line-height: 1;
	cursor: pointer;
}
.wpcf7-checkbox input[type=checkbox]{
	appearance: none;
	position: relative;
	background-color: #FFFFFF;
	width: 1.25rem;
	height: 1.25rem;
	border: 1px solid #102F60;
	border-radius: 9999px;
	cursor: pointer;
}
.wpcf7-checkbox input[type=checkbox]:checked::after{
	content: "";
	position: absolute;
	inset: 0;
	width: 0.875rem;
	height: 0.875rem;
	margin: auto;
	border-radius: 9999px;
	background-color: #102F60;
}
.form-box dl dd.col .wpcf7-form-control-wrap .wpcf7-list-item{
	display: inline-block;
	width: 48%;
}
.wpcf7-spinner{
	display: none;
}
.form-grid .acceptance-text{
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.4;
	margin-top: 2.5rem;
}
.form-grid .acceptance-text label{
	display: flex;
	align-items: center;
	column-gap: 0.625rem;
	width: fit-content;
	line-height: 1;
	cursor: pointer;
}
.form-grid .acceptance{
	appearance: none;
	position: relative;
	background: #FFFFFF;
	width: 1.75rem;
	height: 1.75rem;
	border: 1px solid #707070;
	cursor: pointer;
	margin: 0;
}
.form-grid .acceptance:checked{
	border: 1px solid #707070;
}
.form-grid .acceptance:checked::after{
	content: "";
	position: absolute;
	top: 0.5rem;
	left: 0.35rem;
	width: 1rem;
	height: 0.5rem;
	border-bottom: 3px solid #15315F;
	border-left: 3px solid #15315F;
	transform: rotate(-45deg);
}
.submit_btn{
	text-align: center;
	margin-top: 3rem;
}
.submit_btn li{
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 12rem;
}
input[type="submit"] {
	display: block;
	width: 100%;
	font-family: "Roboto", sans-serif;
	background: #15315F;
	border: 1px solid #15315F;
	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 .contact-hrad-container{
		padding: 5.9375rem 0 5.375rem 0;
	}
	.contact-guide .contact-hrad-container .guide-ttl .roma{
		font-size: 0.6875rem;
		margin-bottom: 0.25rem;
	}
	.contact-guide .contact-hrad-container .guide-ttl h2{
		font-size: 1.25rem;
	}
	.contact-guide .contact-hrad-container .p-text{
		font-size: 0.75rem;
		line-height: 2;
	}
	.contact-guide .contact-hrad-container .p-text.address{
		margin-top: 1.5rem;
	}
	.contact-guide .form-wrap{
		padding: 4rem 0 3.5rem 0;
	}
	.download-wrap .form-wrap .tabArea .tab-btn{
		width: 23%;
	}
	.download-wrap .form-wrap .tabArea .tab-btn.consulting{
		width: 31%;
	}
	.form-wrap .tabArea .tab-btn a{
		font-size: 0.5rem;
		padding: 0.75rem 0;
	}
	.form-grid{
		padding: 2.5rem 0.875rem 5rem 0.875rem;
	}
	.form-box dl:not(:last-child){
		margin-bottom: 0.75rem;
	}
	.form-box dl dt{
		font-size: 0.875rem;
		padding-top: 0;
		margin-bottom: 0.5rem;
	}
	.form-box .dl-tbl dt{
		display: block;
		width: 100%;
		margin-bottom: 0.375rem;
	}
	.form-box .dl-tbl dd{
		display: block;
	}
	.form-box .dl-tbl dd,
	.form-box dl dd{
		width: 100%;
	}
	.form-box dl dd.col .wpcf7-form-control-wrap .wpcf7-list-item{
		width: 48%;
	}
	.form-box dl dd .wpcf7-form-control-wrap .wpcf7-list-item-label{
		font-size: 0.75rem;
	}
	input[type="date"],
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="url"],
	textarea,
	select{
		font-size: 0.875rem;
		padding: 0.25rem 1rem;
	}
	textarea{
		height: 10rem;
	}
	.wpcf7-list-item {
		margin: 0.375rem 0;
	}
	.wpcf7-checkbox label{
		column-gap: 0.5rem;
	}
	.wpcf7-checkbox input[type=checkbox]{
		width: 1.25rem;
		height: 1.25rem;
	}
	.wpcf7-checkbox input[type=checkbox]:checked::after{
		width: 0.875rem;
		height: 0.875rem;
	}
	.form-grid .acceptance-text{
		font-size: 0.875rem;
		text-align: center;
		margin-top: 1.5rem;
	}
	.form-grid .acceptance-text label{
		column-gap: 0.375rem;
	}
	.form-grid .acceptance{
		width: 1.25rem;
		height: 1.25rem;
	}
	.form-grid .acceptance:checked::after{
		top: 0.375rem;
		left: 0.25rem;
		width: 0.75rem;
		height: 0.375rem;
		border-bottom: 2px solid #15315F;
		border-left: 2px solid #15315F;
	}
	.submit_btn{
		margin-top: 2rem;
	}
	.submit_btn li{
		max-width: 8.75rem;
	}
	input[type="submit"] {
		font-size: 0.875rem;
		padding: 0.75rem 1rem 0.5rem 1rem;
	}
	.wpcf7-not-valid-tip{
		font-size: 0.75rem;
	}
}
/*　　完了　　*/
.thanks-guide{
	padding: 11.875rem 0 13.75rem 0;
}
.thanks-guide h2{
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 3.4375rem;
}
.thanks-guide p{
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.75;
	text-align: center;
}
.thanks-guide .top_btn{
	margin-top: 4.875rem;
}
@media only screen and (max-width: 767px) {
	.thanks-guide{
		padding: 5.625rem 0 3.75rem 0;
	}
	.thanks-guide h2{
		font-size: 1.25rem;
		margin-bottom: 1.5rem;
	}
	.thanks-guide p{
		font-size: 0.6875rem;
	}
	.thanks-guide .top_btn{
		margin-top: 5.625rem;
	}
}
/**
/* 個人情報保護方針 CSS
----------------------------------------------- */
.privacy-container{
	padding: 12rem 0 4.5rem 0;
}
.privacy-container h1{
	font-family: "Inter", sans-serif;
	color: #15315F;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	margin-bottom: 1.5rem;
}
.privacy-container .text{
	font-family: "Roboto", sans-serif;
	color: #15315F;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
	text-align: center;
}
.privacy-container .privacy-box{
	max-width: 954px;
	margin: 2rem auto 0 auto;
	border-radius: 0.625rem;
	box-shadow: 0px 0.3125rem 0.9375rem 0px #00000026;
	padding: 3.3125rem 1.3125rem 2.375rem 1.3125rem;
}
.privacy-container .privacy-box h2{
	font-family: "Roboto", sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 1rem;
}
.privacy-container .privacy-box .date{
	text-align: right;
	margin-bottom: 4.5rem;
}
.privacy-container .privacy-box .date p{
	font-family: "Roboto", sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.45;
}
.privacy-container .privacy-box .privacy-text p{
	font-family: "Roboto", sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.65;
}
.privacy-container .privacy-box .privacy-text p:not(:last-child){
	margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
	.privacy-container{
		padding: 6.875rem 0 1.25rem 0;
	}
	.privacy-container h1{
		font-size: 1.25rem;
		margin-bottom: 0.5rem;
	}
	.privacy-container .text{
		font-size: 0.75rem;
	}
	.privacy-container .privacy-box{
		margin: 2.5rem auto 0 auto;
		padding: 2.1875rem 0.75rem 1.5rem 0.75rem;
	}
	.privacy-container .privacy-box h2{
		font-size: 0.75rem;
		margin-bottom: 0.875rem;
	}
	.privacy-container .privacy-box .date{
		margin-bottom: 1.625rem;
	}
	.privacy-container .privacy-box .date p{
		font-size: 0.625rem;
	}
	.privacy-container .privacy-box .privacy-text p{
		font-size: 0.625rem;
		line-height: 1.65;
	}
	.privacy-container .privacy-box .privacy-text p:not(:last-child){
		margin-bottom: 1.25rem;
	}
}
/**
/* 共通ブロック CSS
----------------------------------------------- */
/*　　求人ボタン　　*/
.recruit-container .recruit-btn li a{
	position: relative;
	display: block;
	border: 2px solid #15315F;
	overflow: hidden;
}
.recruit-container .recruit-btn li a .imageArea{
	height: 21.25rem;
}
.recruit-container .recruit-btn li a .imageArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.5s;
}
.recruit-container .recruit-btn li a:hover .imageArea img{
	transform: scale(1.2);
	transition-duration: 0.5s;
}
.recruit-container .recruit-btn li a .contentArea{
	position: absolute;
	width: calc(100% - 1.875rem);
	height: calc(100% - 1.875rem);
	left: 0.9375rem;
	top: 0.9375rem;
	border: 1px solid #FFFFFF;
	padding: 2.375rem 0 0 2.1875rem;
}
.recruit-container .recruit-btn li a .guide-ttl{
	margin-bottom: 1.5rem;
}
.recruit-container .recruit-btn li a .p-text{
	font-family: "Inter", sans-serif;
	font-size: 0.9375rem;
	line-height: 2;
}
.recruit-container .recruit-btn li a .more_btn{
	position: absolute;
	bottom: 1.875rem;
	right: 2.1875rem;
}
.recruit-container .recruit-btn li a .more_btn li{
	font-family: "Inter", sans-serif;
	font-size: 0.8125rem;
}
.recruit-container .recruit-btn li a .arrow{
	margin-left: 1rem;
}
.recruit-container .recruit-btn li a .arrow img{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	width: 3.375rem;
}
.recruit-container .recruit-btn li a:hover .arrow img{
	transform: translateX(0.9375rem);
}
@media only screen and (max-width: 767px) {
	.recruit-container .recruit-btn li a{
		border: 1px solid #15315F;
	}
	.recruit-container .recruit-btn li a .imageArea{
		height: 12.8125rem;
	}
	.recruit-container .recruit-btn li a .contentArea{
		width: calc(100% - 0.625rem);
		height: calc(100% - 0.625rem);
		left: 0.3125rem;
		top: 0.3125rem;
		padding: 1.25rem 0 0 1rem;
	}
	.recruit-container .recruit-btn li a .guide-ttl{
		margin-bottom: 0.5rem;
	}
	.recruit-container .recruit-btn li a .p-text{
		font-size: 0.5625rem;
		line-height: 2;
	}
	.recruit-container .recruit-btn li a .more_btn{
		position: relative;
		text-align: right;
		bottom: -0.5rem;
		right: 0.75rem;
	}
	.recruit-container .recruit-btn li a .more_btn li{
		font-size: 0.625rem;
	}
	.recruit-container .recruit-btn li a .arrow{
		display: block;
		margin-left: 0;
		margin-bottom: 0.25rem;
	}
	.recruit-container .recruit-btn li a .arrow img{
		width: 1.375rem;
	}
}
/*　　お問い合わせナビ　　*/
.bottom-contact-guide{
	background: #FAFAFA;
	padding: 4.5rem 0 2.5rem 0;
}
.front-bottom-contact{
	padding: 5rem 0 4.25rem 0;
}
.front-bottom-contact .btn-container{
	margin-top: 4.5rem;
}
.bottom-contact-guide .btn-container ul{
	column-gap: 3.75rem;
}
.bottom-contact-guide .btn-container ul li{
	width: calc(50% - 1.875rem);
}
.bottom-contact-guide .btn-container ul li a{
	position: relative;
	display: block;
	font-family: "Inter", sans-serif;
	color: #FFFFFF;
	padding: 4.25rem 2.375rem;
}
.bottom-contact-guide .btn-container ul li a::before,
.bottom-contact-guide .btn-container ul li a::after{
	position: absolute;
	content: '';
}
.bottom-contact-guide .btn-container ul li a::before{
	border: 1px solid #FFFFFF;
	width: calc(100% - 0.625rem);
	height: calc(100% - 0.625rem);
	top: 0.3125rem;
	left: 0.3125rem;
}
.bottom-contact-guide .btn-container ul li a::after{
	background: url(../img/icon/arrow_w.svg) center center no-repeat;
	background-size: contain;
	position: absolute;
	width: 2.125rem;
	height: 2.125rem;
	right: 2.5rem;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
.bottom-contact-guide .btn-container ul li .roma{
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.5;
}
.bottom-contact-guide .btn-container ul li .ttl{
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.5;
}
.bottom-contact-guide .btn-container ul li.contact-btn a{
	background: #15315F;
}
.bottom-contact-guide .btn-container ul li.contact-btn a:hover{
	background: #FFFFFF;
	color: #15315F;
}
.bottom-contact-guide .btn-container ul li.contact-btn a:hover::before{
	border: 1px solid #15315F;
}
.bottom-contact-guide .btn-container ul li.contact-btn a:hover::after{
	background: url(../img/icon/arrow_b.svg) center center no-repeat;
	background-size: contain;
}
.bottom-contact-guide .btn-container ul li.download-btn a{
	background: #B8A595;
}
.bottom-contact-guide .btn-container ul li.download-btn a:hover{
	background: #FFFFFF;
	color: #B8A595;
}
.bottom-contact-guide .btn-container ul li.download-btn a:hover::before{
	border: 1px solid #B8A595;
}
.bottom-contact-guide .btn-container ul li.download-btn a:hover::after{
	background: url(../img/icon/arrow_c.svg) center center no-repeat;
	background-size: contain;
}
@media only screen and (max-width: 767px) {
	.bottom-contact-guide{
		padding: 2.875rem 0 3.875rem 0;
	}
	.front-bottom-contact{
		padding: 2.875rem 0;
	}
	.front-bottom-contact .btn-container{
		margin-top: 2rem;
	}
	.bottom-contact-guide .btn-container ul{
		column-gap: 0;
		row-gap: 2rem;
	}
	.bottom-contact-guide .btn-container ul li{
		width: 100%;
	}
	.bottom-contact-guide .btn-container ul li a{
		padding: 1.5rem 1.25rem;
	}
	.bottom-contact-guide .btn-container ul li a::before{
		width: calc(100% - 0.5rem);
		height: calc(100% - 0.5rem);
		top: 0.25rem;
		left: 0.25rem;
	}
	.bottom-contact-guide .btn-container ul li a::after{
		width: 1.125rem;
		height: 1.125rem;
		right: 1.125rem;
		top: auto;
		bottom: 1.5rem;
		transform: translateY(0%);
	}
	.bottom-contact-guide .btn-container ul li .roma{
		font-size: 0.6875rem;
	}
	.bottom-contact-guide .btn-container ul li .ttl{
		font-size: 1rem;
	}
}
/**
/* エラー CSS
----------------------------------------------- */
.error-guide{
	padding: 5.5rem 0 8rem 0;
}
.error-guide .entry p{
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.68;
	text-align: center;
}
.error-guide .entry .error_url{
	padding: 2rem 0;
}
.error-guide .entry .block_btn{
	margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
	.error-guide{
		padding: 1.5rem 0 4.5rem 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;
	}
}


.news_img{margin:5% auto;width:70%}
.news_box_area{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
.news_box_area img{margin-top:3%}
.news_box{margin:0 auto!important;width:40%}
.news_link{text-align:center; margin-top:10px;}
