@charset "utf-8";
/**
/* 共通 CSS
----------------------------------------------- */
/*　　アニメーション　　*/
.fade-in{
	opacity: 0;
	filter: blur(30px);
	transform: matrix(1, 0, 0, 1, 0, 60);
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.fade-in.active{
	opacity: 1;
	filter: blur(0);
	transform: matrix(1, 0, 0, 1, 0, 0);
}
/*　　見出し　　*/
.guide-ttl{
	position: relative;
}
.guide-ttl .roma{
	font-family: "TT_Autonomous-ExtraBold";
	font-weight: 600;
	line-height: 1.25;
}
.guide-ttl .roma.border{
	color: transparent;
	-webkit-text-stroke: 1px #F3AF99;
	text-stroke: 1px #F3AF99;
}
.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); }
.decoration-text-container{
	position: relative;
}
.decoration-text-container .decoration-text{
	display: flex;
	font-family: TT_Autonomous-ExtraBold;
	color: #F19B7F;
	font-size: 7.1875rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
}
.decoration-text-container .decoration-text div:first-child {
	-webkit-animation: loopLeft1 100s -50s linear infinite;
	animation: loopLeft1 100s -50s linear infinite;
}
.decoration-text-container .decoration-text div:last-child {
	-webkit-animation: loopLeft2 100s linear infinite;
	animation: loopLeft2 100s linear infinite;
}
@-webkit-keyframes loopLeft1 {
	0% {
		-webkit-transform: translateX(100%);
			transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
	}
}
@keyframes loopLeft2 {
	0% {
		-webkit-transform: translateX(0);
			transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-200%);
			transform: translateX(-200%);
	}
}
@media only screen and (max-width: 767px) {
	.decoration-text-container .decoration-text{
		font-size: 3.625rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.decoration-text-container .decoration-text{
		font-size: 6rem;
	}
}
.js-tab-wrap .js-tab-main{
	display: none;
}
.js-tab-wrap .js-tab-main.is_show{
	display: block;
}
/**
/* Btn CSS
----------------------------------------------- */
.more_btn li{
	display: inline-block;
}
.more_btn li a{
	position: relative;
	display: block;
	font-family: "TT_Autonomous-ExtraBold";
	color: #272179;
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1.25;
	text-align: left;
	padding: 1rem 0;
}
.more_btn li a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	background: url(../img/icon/arrow_b.svg) no-repeat top center;
	background-size: contain;
	width: 3.25rem;
	height: 3.25rem;
	right: -5rem;
}
.more_btn li a.gray{
	color: #4D4D4D;
	font-size: 1.5rem;
	padding-right: 4rem;
}
.more_btn li a.gray::after{
	background: url(../img/icon/arrow_g.svg) no-repeat top center;
	background-size: contain;
	width: 2.875rem;
	height: 2.875rem;
	right: 0;
}
.block_btn li{
	display: inline-block;
	width: 100%;
	max-width: 16.125rem;
}
.block_btn li .btn{
	position: relative;
	display: block;
	font-family: "Oswald", sans-serif;
	font-size: 1.5625rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: left;
	border-radius: 3.25rem;
	padding: 0.625rem 1rem 0.625rem 1.25rem;
}
.block_btn li .green{
	background: #00F500;
	color: #E94B34;
}
.block_btn li .green::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	background: url(../img/icon/arrow_r2.svg) no-repeat top center;
	background-size: contain;
	width: 1.75rem;
	height: 1.75rem;
	right: 1.125rem;
}
.block_btn li .green:hover{
	background: #E94B34;
	color: #FFFFFF;
}
.block_btn li .green:hover::after{
	background: url(../img/icon/arrow_w.svg) no-repeat top center;
	background-size: contain;
}
@media only screen and (max-width: 767px) {
	.more_btn li a{
		font-size: 0.9375rem;
		padding: 0.375rem 0;
	}
	.more_btn li a::after{
		width: 1.625rem;
		height: 1.625rem;
		right: -2.5rem;
	}
	.more_btn li a.gray{
		font-size: 0.9375rem;
		padding-right: 0;
	}
	.more_btn li a.gray::after{
		width: 1.625rem;
		height: 1.625rem;
		right: -2rem;
	}
	.block_btn li{
		max-width: 9.125rem;
	}
	.block_btn li .btn{
		font-size: 0.75rem;
		padding: 0.625rem 1rem 0.625rem 1.25rem;
	}
	.block_btn li .green::after{
		width: 0.875rem;
		height: 0.875rem;
		right: 1rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.more_btn li a{
		font-size: 1.5rem;
		padding: 0.5rem 0;
	}
	.more_btn li a::after{
		width: 2.5rem;
		height: 2.5rem;
		right: -4rem;
	}
	.more_btn li a.gray{
		font-size: 1.375rem;
		padding-right: 3rem;
	}
	.more_btn li a.gray::after{
		width: 2rem;
		height: 2rem;
	}
	.block_btn li{
		max-width: 13.125rem;
	}
	.block_btn li .btn{
		font-size: 1.25rem;
		padding: 0.625rem 1rem 0.625rem 1.25rem;
	}
	.block_btn li .green::after{
		width: 1.5rem;
		height: 1.5rem;
		right: 1rem;
	}
}
/**
/* トップページ CSS
----------------------------------------------- */
/*　　MV　　*/
.mv-view{
	position: relative;
}
.mv-view::before{
	content: '';
	background: #E94B34;
	position: absolute;
	width: 2.875rem;
	height: 50.625rem;
    max-height: 100vh;
	left: 0;
	top: -0.625rem;
	z-index: 100;
}
.mv-view .view-box{
	position: absolute;
	bottom: 4.75rem;
	right: 50%;
	transform: translateX(50%);
	z-index: 9998;
}
.mv-view .view-box .roma-box{
	position: absolute;
	right: -2rem;
	bottom: -1rem;
}
.mv-view .view-box .roma{
	font-family: "Oswald", sans-serif;
	color: #00F500;
	font-size: 3.4375rem;
	font-weight: 500;
	line-height: 1;
}
.mv-view .view-box .bg-text{
	color: #FFFFFF;
	font-size: 10rem;
	font-weight: 700;
	line-height: 1.1;
}
.mv-view .view-img{
	position: relative;
	height: 50rem;
	max-height: 100vh;
	z-index: 2;
}
.mv-view .view-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top left;
}
.mv-view .copy{
	position: absolute;
	font-family: "Oswald", sans-serif;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 300;
	line-height: 1.35;
	letter-spacing: 0.1em;
	text-align: center;
	writing-mode: vertical-rl;
	left: 0.875rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
}
.mv-view .view-scroll{
	writing-mode: vertical-rl;
}
.mv-view .view-scroll a{
	position: absolute;
	display: block;
	font-family: "Oswald", sans-serif;
	color: #00F500;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
	bottom: 0;
	left: 2rem;
	padding-bottom: 2rem;
	z-index: 100;
	text-transform: uppercase;
}
.mv-view .view-scroll a:before{
	content: "";
	position: absolute;
	bottom: 0;
	left: -1.125rem;
	width: 0.375rem;
	height: 11.4375rem;
	background: url(../img/top/arrow_g.png) no-repeat;
	background-size: cover;
}
@media only screen and (max-width: 767px) {
	.mv-view::before{
		width: 0;
	}
	.mv-view .view-box{
		bottom: 7rem;
	}
	.mv-view .view-box .roma-box{
		position: relative;
		right: auto;
		bottom: auto;
		margin-top: 0.5rem;
	}
	.mv-view .view-box .roma{
		font-size: 2.1875rem;
	}
	.mv-view .view-box .bg-text{
		font-size: 5rem;
		line-height: 1.25;
	}
	.mv-view .view-img{
		height: 43.75rem;
	}
	.mv-view .copy{
		font-size: 0.625rem;
		left: 0.375rem;
	}
	.mv-view .view-scroll a{
		font-size: 0.625rem;
		left: 0.5rem;
		padding-bottom: 6.875rem;
	}
	.mv-view .view-scroll a:before{
		left: 0.275rem;
		width: 0.325rem;
		height: 6rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.mv-view::before{
		width: 2rem;
		height: 39.375rem;
	}
	.mv-view .view-box{
		width: 80%;
		bottom: 5.75rem;
	}
	.mv-view .view-box .roma-box{
		right: -2rem;
		bottom: -1rem;
	}
	.mv-view .view-box .roma{
		font-size: 2.4375rem;
	}
	.mv-view .view-box .bg-text{
		font-size: 6rem;
	}
	.mv-view .view-img{
		height: 38.75rem;
	}
	.mv-view .copy{
		left: 0.5rem;
	}
	.mv-view .view-scroll a{
		font-size: 1.125rem;
		left: 1rem;
		padding-bottom: 1.875rem;
	}
	.mv-view .view-scroll a:before{
		left: -0.5rem;
		width: 0.375rem;
		height: 9.4375rem;
	}
}
/*　　見出し　　*/
.front-wrap .guide-ttl h2{
	color: #E94B34;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
}
.front-wrap .guide-ttl .roma{
	position: relative;
	color: #E94B34;
	font-size: 3.125rem;
	line-height: 1.45;
	letter-spacing: -0.07em;
}
.front-wrap .guide-ttl .roma::before{
	position: absolute;
	content: "";
	background: #00F500;
	width: 50%;
	height: 2px;
	left: -52%;
	top: 50%;
	transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
	.front-wrap .guide-ttl h2{
		font-size: 0.75rem;
	}
	.front-wrap .guide-ttl .roma{
		font-size: 1.5625rem;
	}
	.front-wrap .guide-ttl .roma::before{
		height: 1px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-wrap .guide-ttl h2{
		font-size: 1.25rem;
	}
	.front-wrap .guide-ttl .roma{
		font-size: 3.125rem;
	}
	.front-wrap .guide-ttl .roma::before{
		width: 50%;
		left: -52%;
	}
}
/*　　コンセプト　　*/
.concept-guide{
	position: relative;
	padding: 8.125rem 0 10.625rem 0;
}
.concept-guide::before{
	background: url(../img/top/line_g.png) no-repeat;
	background-size: cover;
	content: '';
	position: absolute;
	width: 0;
	top: -1.5rem;
	transition:0.5s;
	left: -100%;
	height: 50%;
}
.concept-guide.active::before{
	width: calc(100% + 12rem);
	left: -3.25rem;
}
.concept-guide::after{
	content: '';
	background: url(../img/top/concept_bg.png) no-repeat;
	background-size: cover;
	position: absolute;
	width: 77.875rem;
	height: 42.875rem;
	right: -0.5rem;
	bottom: -3.75rem;
}
.concept-guide .inner{
	position: relative;
	z-index: 1;
}
.concept-guide h3{
	color: #272179;
	font-size: 3.75rem;
	font-weight: 700;
	line-height: 1.65;
	margin-bottom: 3.125rem;
}
.concept-guide .p-text{
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 2;
}
@media only screen and (max-width: 767px) {
	.concept-guide{
		padding: 4.0625rem 0 9.8125rem 0;
	}
	.concept-guide::before{
		top: 2.5rem;
		height: 25%;
	}
	.concept-guide.active::before{
		width: calc(100% + 5rem);
		left: -2.25rem;
	}
	.concept-guide::after{
		background: url(../img/top/sp_concept_bg.png) no-repeat;
		background-size: cover;
		width: 100%;
		height: 15.5rem;
		right: -1.5rem;
		bottom: 0;
	}
	.concept-guide h3{
		font-size: 1.875rem;
		margin-bottom: 1.875rem;
	}
	.concept-guide .p-text{
		font-size: 0.75rem;
		line-height: 2.5;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.concept-guide{
		padding: 5.125rem 0 7.625rem 0;
	}
	.concept-guide::before{
		top: -0.5rem;
		height: 40%;
	}
	.concept-guide.active::before{
		width: calc(100% + 12rem);
		left: -3.25rem;
	}
	.concept-guide::after{
		width: 54.875rem;
		height: 26.875rem;
		bottom: -2.75rem;
	}
	.concept-guide h3{
		font-size: 2.75rem;
		margin-bottom: 2.125rem;
	}
	.concept-guide .p-text{
		font-size: 1.375rem;
	}
}
/*　　事業概要　　*/
.front-service{
	padding: 0 0 5.75rem 0;
}
.front-service .service-head{
	margin-bottom: 3.125rem;
}
.front-service .guide-ttl{
	margin-bottom: 1.625rem;
}
.front-service .text{
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 2;
}
.front-wrap .service-nav{
	position: relative;
}
.front-wrap .service-nav .imgarea{
	width: 90%;
	max-width: 94.5rem;
	height: 30.3125rem;
	margin-left: auto;
}
.home_service--imgarea {
	visibility: hidden;
}
.home_service--imgarea ul {
	counter-reset: service_slide;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;
	display: flex;
	width: 90%;
	max-width: 94.5rem;
	height: 30.3125rem;
	transform: translateY(-50%);
}
.home_service_slide {
	width: 20%;
	height: 100%;
	position: relative;
	overflow: hidden;
	visibility: visible;
	border: 1px solid #FFFFFF;
	transition: width .5s ease-out;
}
.home_service_slide--img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: left .3s ease-out;
}
.home_service_slide--txtarea{
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 15px;
	padding: clamp(10px, 1.39vw, 20px);
	white-space: nowrap;
	transition-property: padding-left, padding-right, padding-top, padding-bottom;
	transition-duration: .4s;
	transition-timing-function: ease-out;
}
.home_service_slide--txt{
	transform: translateY(5em);
	transition: transform .4s ease-out;
}
.home_service_slide--roma{
	font-family: "Oswald", sans-serif;
	color: #ffffff;
	font-size: 3.125rem;
	font-weight: 500;
	line-height: 1;
}
.home_service_slide--ttl::before{
	counter-increment: service_slide;
	content: '0'counter(service_slide);
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	font-family: "Oswald", sans-serif;
	color: #70F149;
	font-size: 3.125rem;
	font-weight: 500;
	line-height: 1;
}
.home_service_slide--ttl > span{
	display: block;
	color: #ffffff;
	margin-top: 1em;
	margin-bottom: 0.5rem;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.45;
}
  .home_service_slide--txt {
	margin-bottom: .6875em;
}
.home_service_slide--txt {
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.35;
	transition-delay: .3s;
	white-space: normal;
}
.home_service_slide--more{
	position: absolute;
	right: clamp(24px, 3.44vw, 47px);
	bottom: clamp(24px, 3.44vw, 47px);
	font-size: .75rem;
	line-height: 1;
}
.home_service_slide--roma,
.home_service_slide--txt,
.home_service_slide--ttl span,
.home_service_slide--more,
.return_area {
	transition: opacity .1s ease-out;
	opacity: 0;
}
@media screen and (min-width: 787px) {
	.home_service_slide:hover {
		z-index: 1;
	}
	.home_service_slide:hover .home_service_slide--txt {
		transform: translateY(0);
		transition-delay: .5s;
	}
	.home_service_slide:hover .home_service_slide--txtarea {
		padding: clamp(24px, 3.44vw, 47px) clamp(24px, 3.44vw, 47px);
		transition-delay: 0s, 0s, .5s, .5s;
	}
	.home_service_slide:hover .home_service_slide--roma,
	.home_service_slide:hover .home_service_slide--txt,
	.home_service_slide:hover .home_service_slide--ttl span,
	.home_service_slide:hover .home_service_slide--more {
		opacity: 1;
		transition-delay: .3s;
		transition-duration: .3s;
	}
	.home_service_slide:hover .home_service_slide--ttl::before {
		opacity: 1;
	}
	.home_service_slide:hover img {
		left: 0;
	}
	.home_service--imgarea ul>.home_service_slide:hover{
		z-index: 1;
		width: 1665px;
	}
}
@media only screen and (max-width: 767px) {
	.home_service_slide.none {
	  width: 0;
	  border: none;
	}
	.home_service_slide.active {
		width: 100%;
	}
	.home_service_slide.active {
		z-index: 1;
	}
	.home_service_slide .home_service_slide--txtarea {
		padding: 1rem 1.25rem;
		transition-delay: 0s, 0s, .5s, .5s;
	}
	.home_service_slide--txt {
		transform: translateY(0);
	}
	.home_service_slide.active .home_service_slide--roma,
	.home_service_slide.active .home_service_slide--txt,
	.home_service_slide.active .home_service_slide--ttl span,
	.home_service_slide.active .home_service_slide--more,
	.home_service_slide.active .return_area {
	  opacity: 1;
	  transition-delay: .3s;
	  transition-duration: .3s;
	}
	.home_service_slide.active img {
	  left: 0;
	}
	.home_service .txtarea {
	  width: 100%;
	  margin-bottom: 30px;
	}
	.home_service .ttl-02 {
		padding-top: 50px;
		margin-bottom: 25px;
	}
	.home_service .ttl-02::after {
		bottom: -10px;
	}
	.home_service .ttl-02 .ttl-02-en {
		top: 10px;
	} 
	.front-wrap .service-nav .imgarea {
		width: 100%;
		height: auto;
	}
	.home_service--imgarea ul {
		position: static;
		transform: inherit;
		width: 100%;
		height: 52vw;
		min-height: 15rem;
	}
	.home_service_slide--roma{
		font-size: 1.185rem;
	}
	.home_service_slide--ttl::before {
		font-size: 1.25rem;
		top: 0.5rem;
		right: 0.625rem;
	}
	.home_service_slide--ttl > span{
		margin-top: 0.625rem;
		margin-bottom: 0.5rem;
		font-size: 1.25rem;
	}
	.home_service_slide--txt {
		font-size: 0.75rem;
	}
	.post--link::before {
		pointer-events: none;
	}
	.home_service_slide.active .post--link::before {
		pointer-events: inherit;
	}
	.home_service_slide.active .return_area {
		height: 40px;
	}
	.home_service_slide.active .return_btn {
		position: relative;
		width: 50px;
		height: 50px;
		display: block;
		margin-left: auto;
	}
	.home_service_slide.active .return_btn::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 30px;
		transform: translateY(-50%);
		display: block;
		border-style: solid;
		border-width: 3px 12px 3px 0;
		border-color: transparent #FFFFFF transparent transparent;
	}
	.home_service_slide.active .return_btn::after {
		content: '';
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translateY(-50%);
		display: block;
		width: 16px;
		height: 1px;
		background-color: #FFFFFF;
	}
}
@media only screen and (max-width:1226px) {
	.front-wrap .service-nav .imgarea{
		width: 95%;
	}
	.home_service--imgarea ul {
		width: 95%;
	}
}
@media only screen and (max-width: 767px) {
	.front-service{
		padding: 0 0 2.625rem 0;
	}
	.front-service .guide-ttl{
		margin-bottom: 1.25rem;
	}
	.front-service .text{
		font-size: 0.75rem;
		line-height: 2.5;
	}
	.front-service .service-head{
		margin-bottom: 2rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-service{
		padding: 0 0 5.75rem 0;
	}
	.front-service .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.front-service .text{
		font-size: 1.25rem;
		line-height: 2;
	}
	.front-wrap .service-nav .imgarea{
		height: 27.3125rem;
	}
	.home_service--imgarea ul {
		height: 27.3125rem;
	}
}
/*　　実績紹介　　*/
.front-works{
	position: relative;
	padding: 6.25rem 0 5rem 0;
}
.front-works::after{
	content: '';
	background: url(../img/top/works_bg.png) no-repeat;
	background-size: cover;
	position: absolute;
	width: 77.875rem;
	height: 42.875rem;
	left: -0.875rem;
	top: 0;
}
.front-works .works-head,
.front-works .works-slider{
	position: relative;
	z-index: 1;
}
.front-works .guide-ttl{
	margin-bottom: 4.5rem;
}
.front-works .works-list .card{
	padding: 0 0.8125rem 6.25rem 0.8125rem;
}
.works-slider .slick-dots{
	position: relative;
	display: flex;
	width: 90%;
	max-width: 750px;
	height: 0.5rem;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	border-radius: 0.5rem;
	bottom: 0;
	overflow: hidden;
}
.works-slider .slick-dots li{
	flex: 1;
	margin: 0;
}
.works-slider .slick-dots button{
	display: block;
	width: 100%;
	height: 0.5rem;
	padding: 0;
	margin: 0;
	font-size: 0;
	border: none;
	border-radius: 0.5rem;
	background-color: #fff;
	cursor: pointer;
}
.works-slider .slick-dots .slick-active button {
	background-color: #70F149;
}
.works-slider .slick-dots li button:before{
	content: none;
}
@media only screen and (max-width: 767px) {
	.front-works{
		padding: 2.625rem 0 4rem 0;
	}
	.front-works::after{
		content: '';
		background: url(../img/top/sp_works_bg.png) no-repeat;
		background-size: cover;
		width: 100%;
		height: 31rem;
		top: 7.125rem;
	}
	.front-works .guide-ttl{
		margin-bottom: 2.625rem;
	}
	.front-works .works-list .card{
		padding: 0 0.75rem 3rem 0.75rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-works{
		padding: 4.25rem 0 3rem 0;
	}
	.front-works::after{
		width: 54.875rem;
		height: 26.875rem;
	}
	.front-works .guide-ttl{
		margin-bottom: 3rem;
	}
	.front-works .works-list .card{
		padding: 0 0.625rem 4.25rem 0.625rem;
	}
}
/*　　テックジムとは　　*/
.front-techgym{
	padding: 5rem 0 5.375rem 0;
}
.front-techgym .guide-ttl{
	margin-bottom: 1.5rem;
}
.front-techgym .text{
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 2;
}
.front-techgym .techgym-items .flex_wrap{
	-webkit-justify-content: space-between;
	justify-content: space-between;
	align-items: flex-end;
}
.front-techgym .techgym-items .figureArea{
	position: relative;
	width: 45%;
}
.front-techgym .techgym-items .techgym-box{
	position: absolute;
	left: 2rem;
	bottom: 2rem;
	z-index: 2;
}
.front-techgym .techgym-items .techgym-box .bg-roma{
	position: relative;
	font-family: "TT_Autonomous-ExtraBold";
	color: #E94B34;
	font-size: 6.25rem;
	font-weight: 600;
	line-height: 0.83;
	margin-bottom: 1.25rem;
}
.front-techgym .techgym-items .techgym-box h3{
	color: #E94B34;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
}
.front-techgym .techgym-items .techgym-box .text{
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
}
.front-techgym .techgym-items .techgym-box .roma{
	font-family: "TT_Autonomous-ExtraBold";
	color: #E94B34;
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 0.93;
	margin-top: 1rem;
}
.front-techgym .techgym01 .techgym-box .roma:last-child,
.front-techgym .techgym02 .techgym-box .roma:last-child{
	margin-top: 1.5rem;
}
.front-techgym .techgym02 .techgym-box .roma:first-child{
	margin-top: 0;
	margin-bottom: 0.875rem;
}
.front-techgym .techgym03 .techgym-box .roma:first-child,
.front-techgym .techgym03 .techgym-box .roma:nth-child(2){
	margin-top: 0;
	margin-bottom: 0.875rem;
}
.front-techgym .techgym04 .techgym-box .roma:first-child,
.front-techgym .techgym04 .techgym-box .roma:nth-child(2),
.front-techgym .techgym04 .techgym-box .roma:nth-child(3){
	margin-top: 0;
	margin-bottom: 0.875rem;
}
.front-techgym .techgym-items .imgArea{
	width: 42%;
}
.front-techgym .techgym-items .more_btn{
	margin-top: 8.5rem;
}
.front-techgym .decoration-text-container{
	margin-top: 5rem;
}
.front-techgym .techgym-slider .slick-dots{
	bottom: 6.25rem;
}
.front-techgym .techgym-slider .slick-dots li button:before{
	font-size: 0.75rem;
}
.front-techgym .techgym-slider .slick-dots li.slick-active button:before{
	opacity: 1;
	color: #E94B34;
}
.slide-arrow {
	bottom: 0;
	cursor: pointer;
	margin: auto;
	position: absolute;
	top: 0;
	width: 2.5rem;
}
.prev-arrow {
	left: -4rem;
	transform: rotate(180deg);
}
.next-arrow {
	right: -4rem;
}
@media only screen and (max-width: 767px) {
	.front-techgym{
		padding: 2rem 0 2.1875rem 0;
	}
	.front-techgym .guide-ttl{
		margin-bottom: 1.25rem;
	}
	.front-techgym .text{
		font-size: 0.75rem;
		line-height: 2.5;
	}
	.front-techgym .techgym-items .figureArea{
		width: 100%;
	}
	.front-techgym .techgym-items .techgym-box{
		left: 1.5rem;
		bottom: 1.5rem;
	}
	.front-techgym .techgym-items .techgym-box .bg-roma{
		font-size: 2.1875rem;
		margin-bottom: 0.625rem;
	}
	.front-techgym .techgym-items .techgym-box h3{
		font-size: 0.9375rem;
	}
	.front-techgym .techgym-items .techgym-box .text{
		font-size: 0.75rem;
	}
	.front-techgym .techgym-items .techgym-box .roma{
		font-size: 1.125rem;
		margin-top: 0.625rem;
	}
	.front-techgym .techgym01 .techgym-box .roma:last-child,
	.front-techgym .techgym02 .techgym-box .roma:last-child{
		margin-top: 0.625rem;
	}
	.front-techgym .techgym02 .techgym-box .roma:first-child{
		margin-top: 0;
		margin-bottom: 0.625rem;
	}
	.front-techgym .techgym03 .techgym-box .roma:first-child,
	.front-techgym .techgym03 .techgym-box .roma:nth-child(2){
		margin-top: 0;
		margin-bottom: 0.625rem;
	}
	.front-techgym .techgym04 .techgym-box .roma:first-child,
	.front-techgym .techgym04 .techgym-box .roma:nth-child(2),
	.front-techgym .techgym04 .techgym-box .roma:nth-child(3){
		margin-top: 0;
		margin-bottom: 0.625rem;
	}
	.front-techgym .techgym-items .more_btn{
		margin-top: 4rem;
	}
	.front-techgym .decoration-text-container{
		margin-top: 4rem;
	}
	.front-techgym .techgym-slider .slick-dots{
		bottom: 2.5rem;
	}
	.front-techgym .techgym-slider .slick-dots li button:before{
		font-size: 0.625rem;
	}
	.slide-arrow {
		width: 1.5rem;
	}
	.prev-arrow {
		left: -1.5rem;
	}
	.next-arrow {
		right: -1.5rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-techgym{
		padding: 3rem 0 3.375rem 0;
	}
	.front-techgym .text{
		font-size: 1.125rem;
	}
	.front-techgym .techgym-items .figureArea{
		width: 45%;
	}
	.front-techgym .techgym-items .techgym-box{
		left: 2rem;
		bottom: 0;
	}
	.front-techgym .techgym-items .techgym-box .bg-roma{
		font-size: 6.25rem;
		margin-bottom: 1.25rem;
	}
	.front-techgym .techgym-items .techgym-box h3{
		font-size: 1.875rem;
		line-height: 1.25;
	}
	.front-techgym .techgym-items .techgym-box .text{
		font-size: 1.25rem;
	}
	.front-techgym .techgym-items .techgym-box .roma{
		font-size: 1.875rem;
		margin-top: 1rem;
	}
	.front-techgym .techgym01 .techgym-box .roma:last-child,
	.front-techgym .techgym02 .techgym-box .roma:last-child{
		margin-top: 1.5rem;
	}
	.front-techgym .techgym02 .techgym-box .roma:first-child{
		margin-top: 0;
		margin-bottom: 0.875rem;
	}
	.front-techgym .techgym03 .techgym-box .roma:first-child,
	.front-techgym .techgym03 .techgym-box .roma:nth-child(2){
		margin-top: 0;
		margin-bottom: 0.875rem;
	}
	.front-techgym .techgym04 .techgym-box .roma:first-child,
	.front-techgym .techgym04 .techgym-box .roma:nth-child(2),
	.front-techgym .techgym04 .techgym-box .roma:nth-child(3){
		margin-top: 0;
		margin-bottom: 0.875rem;
	}
	.front-techgym .techgym-items .imgArea{
		width: 42%;
	}
	.front-techgym .techgym-items .more_btn{
		margin-top: 5rem;
	}
	.front-techgym .decoration-text-container{
		margin-top: 5rem;
	}
	.front-techgym .techgym-slider .slick-dots{
		bottom: 4rem;
	}
	.front-techgym .techgym-slider .slick-dots li button:before{
		font-size: 0.75rem;
	}
	.slide-arrow {
		width: 2rem;
	}
	.prev-arrow {
		left: -2.5rem;
	}
	.next-arrow {
		right: -2.5rem;
	}
}
/*　　インタビュー　　*/
.front-interview{
	position: relative;
	padding: 5rem 0 0 0;
}
.front-interview::before{
	content: '';
	background: #F2FFE2;
	position: absolute;
	width: 20rem;
	height: calc(100% - 6.875rem);
	left: 0;
	top: 0;
}
.front-interview .interview-head{
	margin-bottom: 2.5rem;
}
.front-interview .guide-ttl{
	margin-bottom: 1.375rem;
}
.front-interview .interview-head .caption{
	width: 19.625rem;
}
.front-interview  .caption p:not(:last-child) {
	margin-bottom: 0.625rem;
}
.front-interview .interview-head .caption p span.bg{
	display: inline-block;
	background: #272179;
	color: #FFFFFF;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.45;
	padding: 0.25rem 0.5rem 0.125rem 0.5rem;
}
.front-interview .interview-head .text{
	width: calc(100% - 19.625rem);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 2;
	padding-left: 2.5rem;
}
.front-interview .more_btn{
	margin-top: 4.625rem;
}
@media only screen and (max-width: 767px) {
	.front-interview{
		padding: 2.5rem 0 2.75rem 0;
	}
	.front-interview::before{
		width: 7rem;
		height: 100%;
	}
	.front-interview .interview-head{
		margin-bottom: 3.5rem;
	}
	.front-interview .guide-ttl{
		margin-bottom: 1.875rem;
	}
	.front-interview .interview-head .caption{
		width: 100%;
		margin-bottom: 0.75rem;
	}
	.front-interview  .caption p:not(:last-child) {
		margin-bottom: 0.25rem;
	}
	.front-interview .interview-head .caption p span.bg{
		font-size: 0.9375rem;
		padding: 0.125rem 0.375rem 0 0.375rem;
	}
	.front-interview .interview-head .text{
		width: 100%;
		font-size: 0.75rem;
		line-height: 2.5;
		padding-left: 0;
	}
	.front-interview .more_btn{
		margin-top: 3rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-interview{
		padding: 3.5rem 0 0 0;
	}
	.front-interview::before{
		width: 12rem;
		height: calc(100% - 4.875rem);
	}
	.front-interview .interview-head{
		margin-bottom: 1.5rem;
	}
	.front-interview .guide-ttl{
		margin-bottom: 1.375rem;
	}
	.front-interview .interview-head .caption{
		width: 16.625rem;
	}
	.front-interview  .caption p:not(:last-child) {
		margin-bottom: 0.625rem;
	}
	.front-interview .interview-head .caption p span.bg{
		font-size: 1.5rem;
		padding: 0.25rem 0.5rem 0.125rem 0.5rem;
	}
	.front-interview .interview-head .text{
		width: calc(100% - 16.625rem);
		font-size: 1.125rem;
		padding-left: 1.5rem;
	}
	.front-interview .more_btn{
		margin-top: 3.625rem;
	}
}
/*　　求人　　*/
.bottom-recruit{
	position: relative;
	overflow: hidden;
	padding: 11.25rem 0;
}
.bottom-recruit .ttl{
	text-align: center;
}
.bottom-recruit .ttl img{
	max-width: 55.1875rem;
}
.bottom-recruit .recruit-grid{
	background: url(../img/top/recruit_bg.png) no-repeat top center;
	background-size: cover;
	padding: 1.5625rem 0 2.5rem 0;
	margin-top: -3px;
}
.bottom-recruit .recruit-grid .bg-text{
	color: #FFFFFF;
	font-size: 3.75rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}
.bottom-recruit .recruit-grid .recruit-btn{
	position: relative;
	text-align: center;
	margin-top: 2.25rem;
	z-index: 2;
}
.bottom-recruit .recruit-grid .recruit-btn li{
	display: inline-block;
	width: 100%;
	max-width: 27.9375rem;
}
.bottom-recruit .recruit-grid .recruit-btn li a{
	position: relative;
	display: block;
	background: #00F500;
	color: #E94B34;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: left;
	border-radius: 3.25rem;
	border: 2px solid #00F500;
	padding: 1.875rem 1rem 1.875rem 3.125rem;
}
.bottom-recruit .recruit-grid .recruit-btn li a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	background: url(../img/icon/arrow_r2.svg) no-repeat top center;
	background-size: contain;
	width: 2.875rem;
	height: 2.875rem;
	right: 2.5rem;
}
.bottom-recruit .recruit-grid .recruit-btn li a:hover{
	background: #E94B34;
	color: #FFFFFF;
	border: 2px solid #FFFFFF;
}
.bottom-recruit .recruit-grid .recruit-btn li a:hover::after{
	background: url(../img/icon/arrow_w.svg) no-repeat top center;
	background-size: contain;
}
.bottom-recruit .recruit__parallaxImages{
	position: absolute;
	width: 100%;
	top: 16.95rem;
}
.bottom-recruit .recruit__parallaxImages__item{
	position: relative;
}
.bottom-recruit .recruit__parallaxImages__item .image {
	height: 0;
	overflow: hidden;
}
.bottom-recruit .recruit__parallaxImages__item:nth-of-type(1) {
	width: 12.8125rem;
	margin-top: 2%;
	transform: translateX(14.7058823529%) translateY(43.5135135135%);
	z-index: 1
}
.bottom-recruit .recruit__parallaxImages__item:nth-of-type(1) .image {
	padding-bottom: 112.176471%;
}
.bottom-recruit .recruit__parallaxImages__item:nth-of-type(2) {
	width: 16rem;
	margin-left: auto;
	margin-top: -12.7272727273%;
	transform: translateX(-14.7058823529%) translateY(3.5135135135%);
}
.bottom-recruit .recruit__parallaxImages__item:nth-of-type(2) .image {
	padding-bottom: 63.5714285714%;
}
.bottom-recruit .recruit__parallaxImages__item:nth-of-type(3) {
	width: 18.375rem;
	margin-left: 4%;
	margin-top: 1.272727%;
	transform: translateX(23.888889%) translateY(-36.179775%);
	z-index: 2;
}
.bottom-recruit .recruit__parallaxImages__item:nth-of-type(3) .image {
    padding-bottom: 72.571429%;
}
.bottom-recruit .recruit__parallaxImages__item:nth-of-type(4) {
	width: 12.1875rem;
	margin-top: -21.727273%;
	margin-left: auto;
	margin-right: 6.454545%;
	transform: translateX(-27.8378378378%) translateY(-23.5135135135%);
}
.bottom-recruit .recruit__parallaxImages__item:nth-of-type(4) .image {
    padding-bottom: 125.875%;
}
@media only screen and (max-width: 767px) {
	.bottom-recruit{
		padding: 0 0 21.25rem 0;
	}
	.bottom-recruit .ttl img{
		max-width: 17.25rem;
	}
	.bottom-recruit .recruit-grid{
		background: url(../img/top/sp_recruit_bg.png) no-repeat top center;
		background-size: cover;
		padding: 0.875rem 0 1.25rem 0;
		margin-top: -2px;
	}
	.bottom-recruit .recruit-grid .bg-text{
		font-size: 1.875rem;
	}
	.bottom-recruit .recruit-grid .recruit-btn{
		margin-top: 1.125rem;
	}
	.bottom-recruit .recruit-grid .recruit-btn li{
		max-width: 14rem;
	}
	.bottom-recruit .recruit-grid .recruit-btn li a{
		font-size: 0.9375rem;
		padding: 0.9375rem 0.9375rem 0.9375rem 1.5rem;
	}
	.bottom-recruit .recruit-grid .recruit-btn li a::after{
		width: 1.5rem;
		height: 1.5rem;
		right: 1.25rem;
	}
	.bottom-recruit .recruit__parallaxImages{
		top: 17.75rem;
	}
	.bottom-recruit .recruit__parallaxImages__item:nth-of-type(1) {
		width: 8.25rem;
		margin-left: 0;
		margin-top: 0;
		transform: translateX(16.162162%) translateY(36.486486%);
	}
	.bottom-recruit .recruit__parallaxImages__item:nth-of-type(2) {
		width: 12.75rem;
		margin-left: 0;
		margin-top: 0;
		transform: translateX(70.162162%) translateY(-11.513514%);
	}
	.bottom-recruit .recruit__parallaxImages__item:nth-of-type(4){
		width: 7.8125rem;
		margin-left: auto;
		margin-top: 0;
		transform: translateX(-22.111111%) translateY(-188.179775%);
	}
	.bottom-recruit .recruit__parallaxImages__item:nth-of-type(3) {
		display: none;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.bottom-recruit{
		padding: 6.75rem 0;
	}
	.bottom-recruit .ttl img{
		max-width: 32.1875rem;
	}
	.bottom-recruit .recruit-grid{
		padding: 3.5625rem 0 2.5rem 0;
		margin-top: -2px;
	}
	.bottom-recruit .recruit-grid .inner{
		z-index: 10;
	}
	.bottom-recruit .recruit-grid .bg-text{
		font-size: 2.5rem;
	}
	.bottom-recruit .recruit-grid .recruit-btn{
		margin-top: 2.25rem;
	}
	.bottom-recruit .recruit-grid .recruit-btn li{
		max-width: 20.9375rem;
	}
	.bottom-recruit .recruit-grid .recruit-btn li a{
		font-size: 1.375rem;
		padding: 1.5rem 1rem 1.5rem 2.5rem;
	}
	.bottom-recruit .recruit-grid .recruit-btn li a::after{
		width: 2.5rem;
		height: 2.5rem;
		right: 1.5rem;
	}
	.bottom-recruit .recruit__parallaxImages{
		top: 10rem;
	}
	.bottom-recruit .recruit__parallaxImages__item:nth-of-type(1) {
		width: 10.8125rem;
		transform: translateX(14.7058823529%) translateY(43.5135135135%);
	}
	.bottom-recruit .recruit__parallaxImages__item:nth-of-type(2) {
		width: 14rem;
		margin-top: -16.727273%;
		transform: translateX(-14.7058823529%) translateY(3.5135135135%);
	}
	.bottom-recruit .recruit__parallaxImages__item:nth-of-type(3) {
		width: 15.375rem;
		margin-left: 1.454545%;
		transform: translateX(23.8888888889%) translateY(-36.1797752809%);
	}
	.bottom-recruit .recruit__parallaxImages__item:nth-of-type(4) {
		width: 10.1875rem;
		margin-top: -29.727273%;
		margin-right: 8.454545%;
		transform: translateX(-27.8378378378%) translateY(-23.5135135135%);
	}
}
/**
/* 会社概要ページ CSS
----------------------------------------------- */
.js-location-nav{
	position: relative;
	right: 4rem;
}
.js-location-nav li{
	position: relative;
	text-align: right;
}
.js-location-nav li:nth-of-type(n+2) {
	margin-top: 0.875rem;
}
.js-location-nav li a{
	position: relative;
	font-family: "TT_Autonomous-ExtraBold";
	color: #ABB7C2;
	font-size: 0.75rem;
	font-weight: 500;
}
.js-location-nav li a::after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
    bottom: -0.18em;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.js-location-nav li a.is-current{
    color: #333;
}
.js-location-nav li a.is-current::after{
    transform-origin: left;
    transform: scaleX(1)
}
.js-location-nav li::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	background: url(../img/icon/location_arrow.svg) no-repeat top center;
	background-size: contain;
	width: 1rem;
	height: 1rem;
	right: -1.5rem;
}
@media only screen and (max-width: 767px) {
	.js-location-nav{
		display: none!important;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.js-location-nav{
		display: none!important;
	}
}
/*　　代表メッセージ　　*/
.message-guide{
	overflow: hidden;
	padding: 5rem 0 10.625rem 0;
}
.message-guide .guide-ttl{
	z-index: 2;
}
.message-guide .guide-ttl .roma{
	font-size: 7.25rem;
}
.message-guide .message-head{
	position: relative;
	margin-bottom: 6rem;
}
.message-guide .message-head::before{
	content: '';
	position: absolute;
	bottom: -12rem;
	left: 0;
	background-color: #FFFFFF;
	width:0;
	height: 40rem;
	transform: skewY(7deg);
	transition:0.5s;
}
.message-guide .message-head.active::before{
	width:100%;
}
.message-head .imgArea{
	width: 37%;
}
.message-head .imgArea img{
	margin-top: -5rem;
}
.message-head .contentArea{
	width: 63%;
	padding-left: 5rem;
}
.message-head .contentArea h3{
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 2;
}
.message-head .contentArea .name{
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
	margin-top: 2.75rem;
}
.message-head .contentArea .name span{
	display: inline-block;
	margin-left: 1.5rem;
}
.message-head .contentArea .name img{
	width: 8.9375rem;
}
.message-guide .message-body{
	position: relative;
}
.message-guide .message-body::before{
	content: '';
	background: url(../img/company/message_bg.png) no-repeat;
	background-size: cover;
	position: absolute;
	width: 77.875rem;
	height: 42.875rem;
	left: -0.5rem;
	bottom: -10.625rem;
	z-index: -1;
}
.message-guide .message-body p{
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 2.5;
}
.message-guide .message-body p .bg{
	background: #E94B34;
	padding: 0 0.5rem;
}
.message-guide .message-body p .c-white{
	color: #FFFFFF;
}
@media only screen and (max-width: 1340px) {
	.message-guide .guide-ttl .roma{
		font-size: 6.875rem;
	}
}
@media only screen and (max-width: 767px) {
	.message-guide{
		padding-bottom: 3.75rem;
	}
	.message-guide .guide-ttl .roma{
		font-size: 1.875rem;
	}
	.message-guide .message-head{
		margin-bottom: 2.125rem;
	}
	.message-guide .message-head::before{
		bottom: 7.5rem;
		height: 25rem;
	}
	.message-head .imgArea{
		width: 100%;
		margin-bottom: 1.5rem;
	}
	.message-head .imgArea img{
		margin-top: 0.5rem;
	}
	.message-head .contentArea{
		width: 100%;
		padding-left: 0;
	}
	.message-head .contentArea h3{
		font-size: 1.125rem;
	}
	.message-head .contentArea .name{
		font-size: 0.75rem;
		margin-top: 2rem;
	}
	.message-head .contentArea .name span{
		margin-left: 1rem;
	}
	.message-head .contentArea .name img{
		width: 6.9375rem;
	}
	.message-guide .message-body::before{
		background: url(../img/company/sp_message_bg.png) no-repeat;
		background-size: cover;
		width: 22rem;
		height: 29.5rem;
		left: -0.5rem;
		bottom: -3.75rem;
		z-index: -1;
	}
	.message-guide .message-body p{
		font-size: 0.75rem;
	}
	.message-guide .message-body p .bg{
		padding: 0 0.25rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.message-guide{
		padding-bottom: 5rem;
	}
	.message-guide .guide-ttl .roma{
		font-size: 5rem;
	}
	.message-guide .message-head{
		margin-bottom: 4rem;
	}
	.message-guide .message-head::before{
		bottom: -10rem;
		height: 31rem;
	}
	.message-head .imgArea img{
		margin-top: -3.5rem;
	}
	.message-head .contentArea{
		padding-left: 3rem;
	}
	.message-head .contentArea h3{
		font-size: 1.5rem;
	}
	.message-head .contentArea .name{
		margin-top: 2rem;
	}
	.message-head .contentArea .name span{
		margin-left: 1.25rem;
	}
	.message-guide .message-body::before{
		width: 52rem;
		height: 28.25rem;
		bottom: -5rem;
	}
	.message-guide .message-body p{
		font-size: 1.125rem;
	}
	.message-guide .message-body p .bg{
		padding: 0 0.5rem;
	}
}
/*　　企業理念　　*/
.philosophy-guide{
	padding: 6.125rem 0 4.375rem 0;
}
.philosophy-guide .guide-ttl{
	margin-bottom: 2rem;
}
.philosophy-guide .guide-ttl .roma{
	font-size: 8.5625rem;
}
.philosophy-grid .philosophy-cards{
	position: relative;
	height: 41.375rem;
	transition: height .4s;
}
.philosophy-cards .philosophy-items{
	background: #E94B34;
	width: calc(30% - 1rem);
	height: 19.75rem;
	grid-column-gap:1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    transition: all .2s;
    display: flex;
    position: absolute;
    cursor: pointer;
}
.philosophy-cards .philosophy-items.active-content{
	width: calc(40% - 0.5rem);
	height: 41.375rem;
}
.philosophy-cards .philosophy-items.philosophy-1{
	inset: 0 auto auto 0;
}
.philosophy-cards .philosophy-items.philosophy-2{
	inset: 0 auto auto 41.125%;
}
.philosophy-cards .philosophy-items.philosophy-3{
	inset: 21.57rem auto auto 41.125%;
}
.philosophy-cards .philosophy-items.philosophy-4{
	inset: 0 auto auto 71.5%;
}
.philosophy-cards .philosophy-icon{
	width: calc(30% - 0.5rem);
    height: 19.75rem;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    transition: all .2s;
    display: flex;
    position: absolute;
	inset: 21.57rem auto auto 71.5%;
}
.philosophy-cards .philosophy-items .no{
	position: absolute;
	top: 0.75rem;
	right: 1.375rem;
	font-family: "Oswald", sans-serif;
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.2;
	z-index: 1;
}
.philosophy-cards .philosophy-items .bg-roma{
	position: absolute;
	font-family: "TT_Autonomous-ExtraBold";
	font-weight: 700;
	line-height: 1;
	z-index: 1;
	writing-mode: vertical-rl;
}
.philosophy-cards .philosophy-items .philosophy-box{
	display: none;
}
.philosophy-cards .philosophy-items.active-content .philosophy-box{
	display: block;
}
.philosophy-cards .philosophy-items .bg-roma{
	top: 0;
	left: -0.45rem;
	color: #FFFFFF;
	font-size: 2.625rem;
}
.philosophy-cards .philosophy-items.active-content .bg-roma{
	top: 0.75rem;
	left: -0.625rem;
	color: #00F500;
	font-size: 4rem;
}
.philosophy-cards .philosophy-items .imgArea{
	height: 41.375rem;
}
.philosophy-cards .philosophy-items .imgArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.philosophy-cards .philosophy-items .philosophy-body{
	position: absolute;
	top: 6.25rem;
	left: 5.875rem;
}
.philosophy-cards .philosophy-items .philosophy-body .roma{
	font-family: "Oswald", sans-serif;
	color: #FFFFFF;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.philosophy-cards .philosophy-items .philosophy-body h3{
	color: #FFFFFF;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.46;
	margin-bottom: 2.5rem;
}
.philosophy-cards .philosophy-items .philosophy-body .sub-roma{
	font-family: "Oswald", sans-serif;
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.9;
}
.philosophy-grid .philosophy-cards .philosophy-icon{
	text-align: center;
}
.philosophy-grid .philosophy-cards .philosophy-icon img{
	width: auto;
	height: 100%;
	object-fit: contain;
}
@media only screen and (max-width: 1340px) {
	.philosophy-guide .guide-ttl .roma{
		font-size: 7.25rem;
	}
}
@media only screen and (max-width: 767px) {
	.philosophy-guide{
		padding: 0.9375rem 0 1.875rem 0;
	}
	.philosophy-guide .guide-ttl{
		margin-bottom: 1.25rem;
	}
	.philosophy-guide .guide-ttl .roma{
		font-size: 1.875rem;
	}
	.philosophy-grid .philosophy-cards{
		height: 28.5rem;
	}
	.philosophy-cards .philosophy-items{
		width: calc(50% - 0.25rem);
		height: 9.125rem;
		grid-column-gap: 0.5rem;
		grid-row-gap: 0.5rem;
	}
	.philosophy-cards .philosophy-items.active-content{
		width: calc(50% - 0.25rem);
		height: 18.5rem;
	}
	.philosophy-cards .philosophy-items.philosophy-2{
		inset: 0 auto auto 51.375%;
	}
	.philosophy-cards .philosophy-items.philosophy-3{
		inset: 9.65rem auto auto 51.375%;
	}
	.philosophy-cards .philosophy-items.philosophy-4{
		inset: 19.25rem auto auto 0;
	}
	.philosophy-cards .philosophy-icon{
		width: calc(50% - 0.25rem);
		height: 9.125rem;
		grid-column-gap: 0.5rem;
		grid-row-gap: 0.5rem;
		inset: 19.25rem auto auto 51.375%;
	}
	.philosophy-cards .philosophy-items .no{
		top: 0.5rem;
		right: 0.5rem;
		font-size: 0.625rem;
	}
	.philosophy-cards .philosophy-items .bg-roma{
		top: 0;
		left: -0.25rem;
		font-size: 1.125rem;
	}
	.philosophy-cards .philosophy-items.active-content .bg-roma{
		top: 0;
		left: -0.25rem;
		font-size: 1.125rem;
	}
	.philosophy-cards .philosophy-items .imgArea{
		height: 18.75rem;
	}
	.philosophy-cards .philosophy-items .philosophy-body{
		top: 3.125rem;
		left: 1.875rem;
	}
	.philosophy-cards .philosophy-items .philosophy-body .roma{
		font-size: 0.75rem;
		margin-bottom: 0.75rem;
	}
	.philosophy-cards .philosophy-items .philosophy-body h3{
		font-size: 0.75rem;
		margin-bottom: 1.5rem;
	}
	.philosophy-cards .philosophy-items .philosophy-body .sub-roma{
		font-size: 0.75rem;
		line-height: 1.9;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.philosophy-guide{
		padding: 4.5rem 0 2.5rem 0;
	}
	.philosophy-guide .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.philosophy-guide .guide-ttl .roma{
		font-size: 5.5rem;
	}
	.philosophy-grid .philosophy-cards{
		height: 29.65rem;
	}
	.philosophy-cards .philosophy-items{
		width: calc(30% - 0.375rem);
		height: 14.25rem;
		grid-column-gap: 1.125rem;
		grid-row-gap: 1.125rem;
	}
	.philosophy-cards .philosophy-items.active-content{
		width: calc(40% - 0.375rem);
		height: 29.5rem;
	}
	.philosophy-cards .philosophy-items.philosophy-2{
		inset: 0 auto auto 40.5%;
	}
	.philosophy-cards .philosophy-items.philosophy-3{
		inset: 15rem auto auto 40.5%;
	}
	.philosophy-cards .philosophy-items.philosophy-4{
		inset: 0 auto auto 70.85%;
	}
	.philosophy-cards .philosophy-icon{
		width: calc(30% - 0.375rem);
		height: 14.25rem;
		grid-column-gap: 1.125rem;
		grid-row-gap: 1.125rem;
		inset: 15rem auto auto 70.85%;
	}
	.philosophy-cards .philosophy-items .no{
		right: 1.125rem;
		font-size: 1.125rem;
	}
	.philosophy-cards .philosophy-items .bg-roma{
		left: -0.45rem;
		font-size: 2rem;
	}
	.philosophy-cards .philosophy-items.active-content .bg-roma{
		font-size: 3rem;
	}
	.philosophy-cards .philosophy-items .imgArea{
		height: 29.55rem;
	}
	.philosophy-cards .philosophy-items .philosophy-body{
		left: 3.875rem;
	}
	.philosophy-cards .philosophy-items .philosophy-body .roma{
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
	.philosophy-cards .philosophy-items .philosophy-body h3{
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
	.philosophy-cards .philosophy-items .philosophy-body .sub-roma{
		font-size: 1.125rem;
		line-height: 1.9;
	}
}
/*　　会社概要　　*/
.company-profile-guide{
	padding: 4.375rem 0 14.1875rem 0;
}
.company-profile-guide .guide-ttl{
	margin-bottom: 1.5rem;
}
.company-profile-guide .guide-ttl .roma{
	font-size: 8.5625rem;
}
.company-profile-guide .box{
	background: #FFFFFF;
	padding: 5.875rem 0 4.375rem 0;
	box-shadow: 0.75rem 0.75rem 0.75rem rgba(0, 0, 0, 0.16);
}
.company-profile-guide .box .profile-items{
	position: relative;
	max-width: 55.75rem;
	margin: 0 auto;
}
.company-profile-guide .box .profile-items:not(:last-child){
	border-bottom: 0.5px solid #CCCCCC;
	margin: 0 auto 2.375rem auto;
	padding-bottom: 2.5rem;
}
.company-profile-guide .box .profile-items:not(:last-child)::before {
	position: absolute;
	bottom: -1px;
	width: 15.875rem;
	height: 1px;
	display: block;
	content: "";
	background: #00F500;
}
.company-profile-guide .box .profile-items .ttl{
	width: 15.875rem;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
}
.company-profile-guide .box .profile-items .contentArea{
	width: calc(100% - 15.875rem);
	padding-left: 4.6875rem;
}
.company-profile-guide .box .profile-items .contentArea p{
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
}
.company-profile-guide .box .profile-items .mapArea{
	line-height: 0;
	margin-top: 2.9375rem;
}
.company-profile-guide .box .profile-items .mapArea iframe{
	height: 21.875rem;
}
@media only screen and (max-width: 1340px) {
	.company-profile-guide .guide-ttl .roma{
		font-size: 7.25rem;
	}
}
@media only screen and (max-width: 767px) {
	.company-profile-guide{
		padding: 1.875rem 0 2.5rem 0;
	}
	.company-profile-guide .guide-ttl{
		margin-bottom: 1.0625rem;
	}
	.company-profile-guide .guide-ttl .roma{
		font-size: 1.875rem;
	}
	.company-profile-guide .box{
		padding: 1.5rem 1.375rem 2.1875rem 1.375rem;
	}
	.company-profile-guide .box .profile-items:not(:last-child){
		margin: 0 auto 1.125rem auto;
		padding-bottom: 1.125rem;
	}
	.company-profile-guide .box .profile-items:not(:last-child)::before {
		width: 5rem;
	}
	.company-profile-guide .box .profile-items .ttl{
		width: 5rem;
		font-size: 0.75rem;
	}
	.company-profile-guide .box .profile-items .contentArea{
		width: calc(100% - 5rem);
		padding-left: 1.125rem;
	}
	.company-profile-guide .box .profile-items .contentArea p{
		font-size: 0.75rem;
	}
	.company-profile-guide .box .profile-items .mapArea{
		margin-top: 1.25rem;
	}
	.company-profile-guide .box .profile-items .mapArea iframe{
		height: 10rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.company-profile-guide{
		padding: 2.5rem 0 10rem 0;
	}
	.company-profile-guide .guide-ttl{
		margin-bottom: 1.25rem;
	}
	.company-profile-guide .guide-ttl .roma{
		font-size: 5.5rem;
	}
	.company-profile-guide .box{
		padding: 3.875rem 3rem 3.375rem 3rem;
	}
	.company-profile-guide .box .profile-items:not(:last-child){
		margin: 0 auto 2.25rem auto;
		padding-bottom: 2.25rem;
	}
	.company-profile-guide .box .profile-items:not(:last-child)::before {
		width: 8.5rem;
	}
	.company-profile-guide .box .profile-items .ttl{
		width: 8.5rem;
		font-size: 1.125rem;
	}
	.company-profile-guide .box .profile-items .contentArea{
		width: calc(100% - 8.5rem);
		padding-left: 2.5rem;
	}
	.company-profile-guide .box .profile-items .contentArea p{
		font-size: 1.125rem;
	}
	.company-profile-guide .box .profile-items .mapArea{
		margin-top: 2rem;
	}
	.company-profile-guide .box .profile-items .mapArea iframe{
		height: 18rem;
	}
}
/**
/* 事業紹介ページ CSS
----------------------------------------------- */
.service-guide{
	padding: 5.625rem 0 10rem 0;
}
.service-guide .guide-ttl{
	margin-bottom: 3.75rem;
}
.service-guide .guide-ttl .roma{
	font-size: 7.125rem;
}
.service-list .service-items{
	position: relative;
}
.service-list .service-items .no{
	position: absolute;
	font-family: "Oswald", sans-serif;
	font-size: 3.125rem;
	font-weight: 500;
	line-height: 1;
	z-index: 1;
}
.service-list .service-items .roma{
	position: absolute;
	font-family: "Oswald", sans-serif;
	font-size: 5rem;
	font-weight: 500;
	line-height: 1;
	z-index: 1;
}
.service-list .service-items .ttl{
	position: relative;
	z-index: 2;
}
.service-list .service-items .ttl h3{
	color: #E94B34;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
}
.service-list .service-items .sub-ttl::before{
	position: absolute;
	content: "";
	background: #00F500;
	height: 1px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.service-list .service-items .sub-ttl p{
	color: #FFFFFF;
	font-size: 1.5625rem;
	font-weight: 600;
	line-height: 1.25;
}
.service-list .service-items.box{
	padding: 3.125rem 0 3rem 0;
}
.service-list .service-items.box:not(:last-child){
	margin-bottom: 4.5rem;
}
.service-list .service-items.box:nth-child(odd){
	background: #FFFFFF;
}
.service-list .service-items.box:nth-child(even){
	background: #F3AF99;
}
.service-list .service-items.box:nth-child(odd) .no,
.service-list .service-items.box:nth-child(odd) .roma{
	color: #F2F2F2;
}
.service-list .service-items.box:nth-child(even) .no,
.service-list .service-items.box:nth-child(even) .roma{
	color: #FFFFFF;
}
.service-list .service-items.box .no{
	top: -0.375rem;
	left: 3.75rem;
}
.service-list .service-items.box .roma{
	top: -0.625rem;
	right: 5.25rem;
	text-align: right;
}
.service-list .service-items.box .ttl{
	padding-left: 4.1875rem;
	margin-bottom: 2rem;
}
.service-list .service-items.box .ttl h3{
	margin-bottom: 0.625rem;
}
.service-list .service-items.box .sub-ttl{
	position: relative;
	padding-left: 3.625rem;
}
.service-list .service-items.box .sub-ttl::before{
	width: 2.5rem;
}
.service-list .service-items.box .sub-ttl p{
	display: inline-block;
	background: #E94B34;
	padding: 0.5rem 0.75rem 0.375rem 0.75rem;
}
.service-list .service-items .service-body{
	position: relative;
	z-index: 2;
}
.service-list .service-items .service-body .service-content{
	width: 65%;
	padding: 0 2rem;
}
.service-list .service-items .service-body .service-content .flex_wrap{
	align-items: center;
}
.service-list .service-items .service-body .contentArea{
	width: 50%;
	padding-right: 1.875rem;
}
.service-list .service-items .service-body .contentArea p{
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.66;
}
.service-list .service-items .block_btn{
	margin-top: 2.5rem;
}
.service-list .service-items .service-body .imgArea{
	width: 50%;
}
.service-list .service-items .service-detail{
	width: 35%;
}
.service-list .service-items .service-detail .service-detail-inner{
	border-left: 1px solid #00F500;
	padding: 0 1.125rem;
}
.service-list .service-items .service-detail dl:not(:last-child){
	margin-bottom: 2rem;
}
.service-list .service-items.box:nth-child(2n) .service-detail dl:not(:last-child){
	margin-bottom: 1rem;
}
.service-list .service-items .service-detail dl dt{
	display: flex;
	color: #E94B34;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.service-list .service-items .service-detail dl dt span{
	display: inline-block;
	margin-right: 0.75rem;
}
.service-list .service-items .service-detail dl dd{
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.92;
}
.service-guide .service-bottom{
	width: 95%;
	max-width: 1230px;
	margin: 7.875rem auto 0 auto;
}
.service-bottom .service-list{
	column-gap: 1.6875rem;
}
.service-bottom .service-list .service-items{
	width: calc(50% - 0.84375rem);
}
.service-bottom .service-list .service-items .imgArea{
	height: 26.25rem;
}
.service-bottom .service-list .service-items .imgArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.service-bottom .service-list .service-items .no{
	color: #FFFFFF;
	top: -0.35rem;
	left: 2.5rem;
}
.service-bottom .service-list .service-items .roma{
	color: rgba(255, 255, 255, 0.7);
	bottom: -0.24rem;
	left: -0.3125rem;
}
.service-bottom .service-list .service-items .ttl{
	position: absolute;
	top: 3.625rem;
	left: 2.5rem;
}
.service-bottom .service-list .service-items .ttl h3{
	margin-bottom: 1rem;
}
.service-bottom .service-list .service-items .sub-ttl{
	padding-left: 4.25rem;
}
.service-bottom .service-list .service-items .sub-ttl::before{
	width: 3.625rem;
}
.service-bottom .service-list .service-items .block_btn{
	margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.service-guide{
		padding: 4rem 0 2.5rem 0;
	}
	.service-guide .guide-ttl{
		margin-bottom: 1.875rem;
	}
	.service-guide .guide-ttl .roma{
		font-size: 1.875rem;
	}
	.service-list .service-items .no{
		font-size: 1.5625rem;
	}
	.service-list .service-items .roma{
		font-size: 2.5rem;
	}
	.service-list .service-items .ttl h3{
		font-size: 1.125rem;
	}
	.service-list .service-items .sub-ttl p{
		font-size: 0.75rem;
	}
	.service-list .service-items.box{
		padding: 1.5rem 1rem 1rem 1rem;
	}
	.service-list .service-items.box:not(:last-child){
		margin-bottom: 3.25rem;
	}
	.service-list .service-items.box .no{
		top: -0.25rem;
		left: 0.5rem;
	}
	.service-list .service-items.box .roma{
		top: -0.25rem;
		right: -0.125rem;
	}
	.service-list .service-items.box .ttl{
		padding-left: 0;
		margin-bottom: 0.625rem;
	}
	.service-list .service-items.box .ttl h3{
		margin-bottom: 0.3125rem;
	}
	.service-list .service-items.box .sub-ttl{
		padding-left: 1.625rem;
	}
	.service-list .service-items.box .sub-ttl::before{
		width: 1.25rem;
	}
	.service-list .service-items.box .sub-ttl p{
		padding: 0.375rem 0.5rem 0.25rem 0.5rem;
	}
	.service-list .service-items .service-body{
		padding-bottom: 3.5rem;
	}
	.service-list .service-items .service-body .service-content{
		width: 100%;
		padding: 0;
	}
	.service-list .service-items .service-body .contentArea{
		width: 100%;
		padding-right: 0;
		margin-bottom: 0.625rem;
	}
	.service-list .service-items .service-body .contentArea p{
		font-size: 0.75rem;
		line-height: 1.45;
	}
	.service-list .service-items .service-body .imgArea{
		width: 100%;
	}
	.service-list .service-items.box .js-accordion-title{
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		background: #E94B34;
		width: 9.125rem;
		padding: 0.5rem 1rem 0.25rem 1.5rem;
		text-align: center;
		margin: 0 auto;
		border-radius: 1.5rem;
	}
	.service-list .service-items.box .js-accordion-title::before{
		font-family: "Oswald", sans-serif;
		content: "VIEW DETAIL";
		color: #FFFFFF;
		font-size: 1rem;
		font-weight: 500;
		line-height: 1.25;
	}
	.service-list .service-items.box .js-accordion-title.open::before{
		content: "CLOSE";
	}
	.service-list .service-items.box .js-accordion-title::after{
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		content: "";
		background: url(../img/service/plus.png) no-repeat top center;
		background-size: cover;
		width: 1rem;
		height: 1rem;
		left: 0.625rem;
	}
	.service-list .service-items.box .js-accordion-title.open::after{
		background: url(../img/service/minus.png) no-repeat top center;
		background-size: cover;
		width: 0.75rem;
		height: 0.75rem;
		left: 0.75rem;
	}
	.service-list .service-items .service-detail{
		display: none;
		width: 100%;
		height: auto;
		margin-top: 1.5rem;
	}
	.service-list .service-items .service-detail .service-detail-inner{
		padding: 0 0 0 0.875rem;
	}
	.service-list .service-items .service-detail dl:not(:last-child){
		margin-bottom: 1.5rem;
	}
	.service-list .service-items.box:nth-child(2n) .service-detail dl:not(:last-child){
		margin-bottom: 1rem;
	}
	.service-list .service-items .service-detail dl dt{
		font-size: 0.75rem;
		line-height: 1.45;
		margin-bottom: 0.5rem;
	}
	.service-list .service-items .service-detail dl dt span{
		margin-right: 0.5rem;
	}
	.service-list .service-items .service-detail dl dd{
		font-size: 0.75rem;
		line-height: 1.45;
	}
	.service-guide .service-bottom{
		width: calc(100% - 2.34375rem);
		margin: 3.125rem auto 0 auto;
	}
	.service-bottom .service-list{
		column-gap: 0;
		row-gap: 2.875rem;
	}
	.service-bottom .service-list .service-items{
		width: 100%;
	}
	.service-bottom .service-list .service-items .imgArea{
		height: 13.4375rem;
	}
	.service-bottom .service-list .service-items .no{
		top: -0.15rem;
		left: 1rem;
	}
	.service-bottom .service-list .service-items .roma{
		left: -0.165rem;
	}
	.service-bottom .service-list .service-items .ttl{
		top: 2rem;
		left: 1rem;
	}
	.service-bottom .service-list .service-items .ttl h3{
		margin-bottom: 0.375rem;
	}
	.service-bottom .service-list .service-items .sub-ttl{
		padding-left: 2.125rem;
	}
	.service-bottom .service-list .service-items .sub-ttl::before{
		width: 1.8125rem;
	}
	.service-list .service-items .block_btn{
		text-align: center;
		margin-top: 1.5rem;
	}
	.service-bottom .service-list .service-items .block_btn{
		text-align: left;
		margin-top: 0.5rem;
	}
	.service-bottom .service-list .service-items .block_btn li .green{
		background: #E94B34;
		color: #FFFFFF;
	}
	.service-bottom .service-list .service-items .block_btn li .green::after{
		background: url(../img/icon/arrow_w.svg) no-repeat top center;
		background-size: contain;
		transform: rotate(0deg);
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.service-guide{
		padding: 4rem 0 6rem 0;
	}
	.service-guide .guide-ttl{
		margin-bottom: 4rem;
	}
	.service-guide .guide-ttl .roma{
		font-size: 6.125rem;
	}
	.service-list .service-items .no{
		font-size: 3rem;
	}
	.service-list .service-items .roma{
		font-size: 3.5rem;
	}
	.service-list .service-items .ttl h3{
		font-size: 1.5rem;
		line-height: 1.2;
	}
	.service-list .service-items .sub-ttl p{
		font-size: 1.125rem;
	}
	.service-list .service-items.box{
		padding: 3rem 0;
	}
	.service-list .service-items.box:not(:last-child){
		margin-bottom: 3.25rem;
	}
	.service-list .service-items.box:not(:last-child){
		margin-bottom: 3.5rem;
	}
	.service-list .service-items.box .no{
		left: 1.75rem;
	}
	.service-list .service-items.box .roma{
		top: -0.3125rem;
		right: 2.25rem;
	}
	.service-list .service-items.box .ttl{
		padding-left: 2.1875rem;
		margin-bottom: 1rem;
		z-index: 2;
	}
	.service-list .service-items.box .sub-ttl{
		padding-left: 3rem;
	}
	.service-list .service-items.box .sub-ttl::before{
		width: 2rem;
	}
	.service-list .service-items.box .sub-ttl p{
		padding: 0.5rem 0.625rem 0.375rem 0.625rem;
	}
	.service-list .service-items .service-body .service-content{
		padding: 0 1rem 0 1.5rem;
	}
	.service-list .service-items .service-body .contentArea{
		padding-right: 0.875rem;
	}
	.service-list .service-items .service-detail dl:not(:last-child){
		margin-bottom: 1rem;
	}
	.service-list .service-items .service-detail .service-detail-inner{
		padding: 0 0.875rem;
	}
	.service-list .service-items.box:nth-child(2n) .service-detail dl:not(:last-child){
		margin-bottom: 1rem;
	}
	.service-list .service-items .service-detail dl dt{
		font-size: 1.125rem;
		margin-bottom: 0.625rem;
	}
	.service-list .service-items .service-detail dl dt span{
		margin-right: 0.75rem;
	}
	.service-guide .service-bottom{
		margin: 5.875rem auto 0 auto;
	}
	.service-bottom .service-list .service-items .imgArea{
		height: 20.875rem;
	}
	.service-bottom .service-list .service-items .no{
		left: 1rem;
	}
	.service-bottom .service-list .service-items .roma{
		left: -0.3125rem;
	}
	.service-bottom .service-list .service-items .ttl{
		left: 1rem;
	}
	.service-bottom .service-list .service-items .ttl h3{
		margin-bottom: 0.625rem;
	}
	.service-bottom .service-list .service-items .sub-ttl{
		padding-left: 2.25rem;
	}
	.service-bottom .service-list .service-items .sub-ttl::before{
		width: 1.625rem;
	}
	.service-list .service-items .block_btn{
		margin-top: 1.5rem;
	}
	.service-bottom .service-list .service-items .block_btn{
		margin-top: 1.25rem;
	}
}
/**
/* GYM概要ページ CSS
----------------------------------------------- */
.tech-gym-guide{
	padding: 5rem 0 14.1875rem 0;
}
.tech-gym-guide .guide-ttl h1.roma{
	color: #F3AF99;
	font-size: 4.375rem;
	line-height: 1.45;
	margin-bottom: 1.5rem;
}
.tech-gym-guide .tabArea{
	margin-bottom: 3.4375rem;
}
.tech-gym-guide .tabArea .tab-btn{
	margin: 0 0.625rem;
}
.tech-gym-guide .tabArea .tab-btn a{
	color: #808080;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.45;
	padding: 4px 0.625rem 3px 0.625rem;
}
.tech-gym-guide .tabArea .tab-btn a:hover,
.tech-gym-guide .tabArea .tab-btn a.select{
	background: #E94B34;
	color: #FFFFFF;
}
.tech-gym-guide .js-tab-main .guide-ttl{
	margin-bottom: 1.875rem;
}
.tech-gym-guide .js-tab-main .guide-ttl h2.roma{
	font-family: "Oswald", sans-serif;
	font-size: 5.625rem;
	font-weight: 500;
}
.tech-gym-guide .js-tab-main .guide-ttl .caption{
	color: #E94B34;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
}
.tech-gym-body:not(:last-child){
	margin-bottom: 6.25rem;
}
.tech-gym-body .gym-items .imageArea{
	width: 22.5rem;
}
.tech-gym-body .gym-items .contentArea{
	position: relative;
	width: calc(100% - 22.5rem);
}
.tech-gym-body .gym-items .contentArea::before{
	content: '';
	position: absolute;
	background: #E94B34;
	width: calc(100% - 3.875rem);
	height: 1px;
}
.tech-gym-body .gym-items .detail{
	display: inline-block;
	max-width: 24rem;
	text-align: left;
}
.tech-gym-body .gym-items .detail .roma{
	font-family: "Oswald", sans-serif;
	color: #F3AF99;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 0.375rem;
}
.tech-gym-body .gym-items .detail h3{
	color: #E94B34;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 1.875rem;
}
.tech-gym-body .gym-items .detail .text{
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.875;
}
@media only screen and (max-width: 767px) {
	.tech-gym-guide{
		padding: 5rem 0;
	}
	.tech-gym-guide .guide-ttl h1.roma{
		font-size: 1.875rem;
		margin-bottom: 1rem;
	}
	.tech-gym-guide .tabArea{
		margin-bottom: 1.5rem;
	}
	.tech-gym-guide .tabArea .tab-btn{
		margin: 0 0.25rem;
	}
	.tech-gym-guide .tabArea .tab-btn:first-child{
		margin: 0 0.25rem 0 1.625rem;
	}
	.tech-gym-guide .tabArea .tab-btn:last-child{
		margin: 0 0.25rem 0 0;
	}
	.tech-gym-guide .tabArea .tab-btn a{
		padding: 2px 0.375rem 1px 0.375rem;
	}
	.tech-gym-guide .js-tab-main .guide-ttl{
		margin-bottom: 1.875rem;
	}
	.tech-gym-guide .js-tab-main .guide-ttl h2.roma{
		font-size: 2.8125rem;
	}
	.tech-gym-guide .js-tab-main .guide-ttl .caption{
		font-size: 0.75rem;
	}
	.tech-gym-body:not(:last-child){
		margin-bottom: 3.125rem;
	}
	.tech-gym-body .gym-items .imageArea{
		width: 10rem;
	}
	.tech-gym-body .gym-items .contentArea{
		position: relative;
		width: calc(100% - 10rem);
	}
	.tech-gym-body .gym-items .contentArea::before{
		width: calc(100% + 0.375rem);
	}
	.tech-gym-body .gym-items .detail .roma{
		font-size: 0.625rem;
		margin-bottom: 0;
	}
	.tech-gym-body .gym-items .detail h3{
		font-size: 0.9375rem;
		margin-bottom: 1.25rem;
	}
	.tech-gym-body .gym-items .detail .text{
		font-size: 0.75rem;
		line-height: 1.5;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.tech-gym-guide{
		padding: 5rem 0 10rem 0;
	}
	.tech-gym-guide .guide-ttl h1.roma{
		font-size: 3.5rem;
		margin-bottom: 1.25rem;
	}
	.tech-gym-guide .tabArea{
		margin-bottom: 3rem;
	}
	.tech-gym-guide .tabArea .tab-btn{
		margin: 0 0.375rem;
	}
	.tech-gym-guide .js-tab-main .guide-ttl h2.roma{
		font-size: 4.5rem;
	}
	.tech-gym-guide .js-tab-main .guide-ttl .caption{
		font-size: 1.125rem;
	}
	.tech-gym-body:not(:last-child){
		margin-bottom: 4.5rem;
	}
	.tech-gym-body .gym-items .imageArea{
		width: 18.5rem;
	}
	.tech-gym-body .gym-items .contentArea{
		position: relative;
		width: calc(100% - 18.5rem);
	}
	.tech-gym-body .gym-items .contentArea::before{
		width: 100%;
	}
	.tech-gym-body .gym-items .detail{
		display: inline-block;
		max-width: 24rem;
		text-align: left;
	}
	.tech-gym-body .gym-items .detail .roma{
		font-size: 0.9375rem;
	}
	.tech-gym-body .gym-items .detail h3{
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
	.tech-gym-body .gym-items .detail .text{
		font-size: 0.9375rem;
	}
}
/*　　All　　*/
#all.js-tab-main{
	position: relative;
	padding-top: 2.5rem;
}
#all .guide-ttl{
	position: absolute;
	top: 6rem;
	left: 28.5rem;
}
/*　　Business Gym　　*/
.tech-gym-body.business-gym .gym-items{
	align-items: flex-end;
}
.tech-gym-body.business-gym .gym-items .contentArea{
	text-align: right;
	padding-left: 2rem;
	padding-right: 5rem;
}
#business .tech-gym-body.business-gym .gym-items .contentArea{
	padding-bottom: 2rem;
}
.tech-gym-body.business-gym .gym-items .contentArea::before{
	top: 4.5rem;
	right: 5rem;
}
@media only screen and (max-width: 767px) {
	#all.js-tab-main{
		padding-top: 0.5rem;
	}
	#all .guide-ttl{
		position: relative;
		top: auto;
		left: auto;
		text-align: center;
	}
	/*　　Business Gym　　*/
	.tech-gym-body.business-gym .gym-items{
		align-items: flex-start;
	}
	.tech-gym-body.business-gym .gym-items .contentArea{
		padding-left: 1rem;
		padding-right: 0;
		margin-top: 2rem;
	}
	#business .tech-gym-body.business-gym .gym-items .contentArea{
		padding-bottom: 0;
	}
	.tech-gym-body.business-gym .gym-items .contentArea::before{
		top: 2.45rem;
		right: 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	#all.js-tab-main{
		padding-top: 1.5rem;
	}
	#all .guide-ttl{
		top: 5rem;
		left: 22rem;
	}
	/*　　Business Gym　　*/
	.tech-gym-body.business-gym .gym-items .contentArea{
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.tech-gym-body.business-gym .gym-items .contentArea::before{
		top: 4rem;
		right: 1rem;
	}
}
/*　　Tech Gym　　*/
.tech-gym-body.tech-gym .gym-items:nth-child(2){
	margin-right: 16.875rem;
}
.tech-gym-body.tech-gym .gym-items .imageArea{
	width: 16.875rem;
}
.tech-gym-body.tech-gym .gym-items .contentArea{
	width: calc(100% - 16.875rem);
	padding-left: 5rem;
	padding-right: 2rem;
}
.tech-gym-body.tech-gym .gym-items:nth-child(1) .contentArea{
	margin-top: 2rem;
}
.tech-gym-body.tech-gym .gym-items .contentArea::before{
	top: 4.5rem;
	left: 5rem;
}
@media only screen and (max-width: 767px) {
	.tech-gym-body.tech-gym .gym-items:nth-child(2){
		margin-right: 0;
		margin-top: 2rem;
	}
	.tech-gym-body.tech-gym .gym-items .imageArea{
		width: 10rem;
	}
	.tech-gym-body.tech-gym .gym-items .contentArea{
		width: calc(100% - 10rem);
		padding-left: 0;
		padding-right: 1rem;
	}
	.tech-gym-body.tech-gym .gym-items:nth-child(1) .contentArea{
		margin-top: 1rem;
	}
	.tech-gym-body.tech-gym .gym-items .contentArea::before{
		top: 2.45rem;
		left: 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.tech-gym-body.tech-gym .gym-items:nth-child(2){
		margin-right: 12.875rem;
	}
	.tech-gym-body.tech-gym .gym-items .imageArea{
		width: 12.875rem;
	}
	.tech-gym-body.tech-gym .gym-items .contentArea{
		width: calc(100% - 12.875rem);
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.tech-gym-body.tech-gym .gym-items:nth-child(1) .contentArea{
		margin-top: 1.5rem;
	}
	.tech-gym-body.tech-gym .gym-items .contentArea::before{
		top: 4rem;
		left: 1rem;
	}
}
/*　　Inner Gym　　*/
.tech-gym-body.inner-gym .gym-items:nth-child(2){
	margin-left: 16.875rem;
}
.tech-gym-body.inner-gym .gym-items .imageArea{
	width: 16.875rem;
}
.tech-gym-body.inner-gym .gym-items .contentArea{
	width: calc(100% - 16.875rem);
	text-align: right;
	padding-left: 2rem;
	padding-right: 5rem;
}
.tech-gym-body.inner-gym .gym-items:nth-child(1) .contentArea{
	margin-top: 1rem;
}
.tech-gym-body.inner-gym .gym-items:nth-child(2) .contentArea{
	margin-top: 2rem;
}
.tech-gym-body.inner-gym .gym-items .contentArea::before{
	top: 4.5rem;
	right: 5rem;
}
@media only screen and (max-width: 767px) {
	.tech-gym-body.inner-gym .gym-items:nth-child(2){
		margin-left: 0;
		margin-top: 2rem;
	}
	.tech-gym-body.inner-gym .gym-items .imageArea{
		width: 10rem;
	}
	.tech-gym-body.inner-gym .gym-items .contentArea{
		width: calc(100% - 10rem);
		text-align: right;
		padding-left: 1rem;
		padding-right: 0;
	}
	.tech-gym-body.inner-gym .gym-items:nth-child(1) .contentArea{
		margin-top: 1rem;
	}
	.tech-gym-body.inner-gym .gym-items:nth-child(2) .contentArea{
		margin-top: 2rem;
	}
	.tech-gym-body.inner-gym .gym-items .contentArea::before{
		top: 2.45rem;
		right: 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.tech-gym-body.inner-gym .gym-items:nth-child(2){
		margin-left: 12.875rem;
	}
	.tech-gym-body.inner-gym .gym-items .imageArea{
		width: 12.875rem;
	}
	.tech-gym-body.inner-gym .gym-items .contentArea{
		width: calc(100% - 12.875rem);
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.tech-gym-body.inner-gym .gym-items:nth-child(1) .contentArea{
		margin-top: 1rem;
	}
	.tech-gym-body.inner-gym .gym-items:nth-child(2) .contentArea{
		margin-top: 2rem;
	}
	.tech-gym-body.inner-gym .gym-items .contentArea::before{
		top: 4rem;
		right: 1rem;
	}
}
/*　　Real Gym　　*/
.tech-gym-body.real-gym .gym-items .contentArea{
	padding-left: 5rem;
	padding-right: 2rem;
	margin-top: 4.5rem;
}
.tech-gym-body.real-gym .gym-items .contentArea::before{
	top: 4.5rem;
	left: 5rem;
}
@media only screen and (max-width: 767px) {
	.tech-gym-body.real-gym .gym-items .contentArea{
		padding-left: 0;
		padding-right: 1rem;
		margin-top: 2.5rem;
	}
	.tech-gym-body.real-gym .gym-items .contentArea::before{
		top: 2.5rem;
		left: 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.tech-gym-body.real-gym .gym-items .contentArea{
		padding-left: 1rem;
		padding-right: 1rem;
		margin-top: 4.5rem;
	}
	.tech-gym-body.real-gym .gym-items .contentArea::before{
		top: 4rem;
		left: 1rem;
	}
}
/**
/* 採用ページ CSS
----------------------------------------------- */
.recruit-wrap .l-inner{
	padding: 0 3.4375rem;
}
.recruit-wrap .fv-view{
	position: relative;
	min-height: 100vh;
	padding-bottom: 14.875rem;
}
.recruit-wrap .fv-view .view-img{
	position: sticky;
	min-height: 100%;
	top: 0;
}
.recruit-wrap .fv-view .bg-text{
	position: absolute;
	max-width: 1200px;
	top: 10.875rem;
	left: 50%;
	transform: translateX(-50%);
}
.recruit-wrap .fv-view .bg-text p{
	color: #E94B34;
	font-size: 7.3125rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.02em;
}
.recruit-wrap .fv-view .bg-text p:nth-child(2),
.recruit-wrap .fv-view .bg-text p:nth-child(3){
	padding-left: 22.5rem;
}
.recruit-wrap .fv-view .bg-text p:nth-child(4){
	padding-left: 44.5rem;
	margin-right: -2rem;
}
.recruit-wrap .fv-view .view-box{
	position: relative;
	padding-top: 6rem;
	margin-top: 6rem;
}
.recruit-wrap .fv-view .view-box .text{
	color: #E94B34;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.625;
	letter-spacing: 0.02em;
	text-align: center;
	margin-bottom: 4rem;
}
.recruit-wrap .fv-view .bg-roma{
	margin-top: 6rem;
}
.recruit-wrap .fv-view .bg-roma p{
	font-family: "Oswald", sans-serif;
	color: #E94B34;
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.02em;
	text-align: center;
}
@media only screen and (max-width: 1300px) {
	.recruit-wrap .fv-view .bg-text p{
		font-size: 6.5rem;
	}
	.recruit-wrap .fv-view .bg-text p:nth-child(2),
	.recruit-wrap .fv-view .bg-text p:nth-child(3){
		padding-left: 20rem;
	}
	.recruit-wrap .fv-view .bg-text p:nth-child(4){
		padding-left: 38rem;
	}
}
@media only screen and (max-width: 767px) {
	.recruit-wrap .l-inner{
		padding: 0 2rem;
	}
	.recruit-wrap .fv-view{
		padding-bottom: 14.25rem;
	}
	.recruit-wrap .fv-view .bg-text{
		top: 7.875rem;
	}
	.recruit-wrap .fv-view .bg-text p{
		font-size: 3rem;
		line-height: 1.65;
	}
	.recruit-wrap .fv-view .bg-text p:nth-child(2),
	.recruit-wrap .fv-view .bg-text p:nth-child(3){
		padding-left: 0;
	}
	.recruit-wrap .fv-view .bg-text p:nth-child(4){
		padding-left: 0;
	}
	.recruit-wrap .fv-view .view-box{
		width: calc(100% - 1.5rem);
		padding-top: 2rem;
	}
	.recruit-wrap .fv-view .view-box .text{
		font-size: 1.125rem;
		margin-bottom: 3rem;
	}
	.recruit-wrap .fv-view .bg-roma{
		margin-top: 6rem;
		margin-top: 3.75rem;
	}
	.recruit-wrap .fv-view .bg-roma p{
		font-size: 2.1875rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.recruit-wrap .l-inner{
		padding: 0 2.5rem;
	}
	.recruit-wrap .fv-view{
		padding-bottom: 8rem;
	}
	.recruit-wrap .fv-view .bg-text{
		top: 10.875rem;
	}
	.recruit-wrap .fv-view .bg-text p{
		font-size: 5rem;
	}
	.recruit-wrap .fv-view .bg-text p:nth-child(2),
	.recruit-wrap .fv-view .bg-text p:nth-child(3){
		padding-left: 15.5rem;
	}
	.recruit-wrap .fv-view .bg-text p:nth-child(4){
		padding-left: 30.5rem;
		margin-right: -2rem;
	}
	.recruit-wrap .fv-view .view-box{
		padding-top: 6rem;
		margin-top: 6rem;
	}
	.recruit-wrap .fv-view .view-box .text{
		font-size: 1.5rem;
		margin-bottom: 3rem;
	}
	.recruit-wrap .fv-view .bg-roma{
		margin-top: 4rem;
	}
	.recruit-wrap .fv-view .bg-roma p{
		font-size: 4rem;
	}
}
/*　　OUR JOB　　*/
.our-job-guide{
	padding-bottom: 6.75rem;
}
.our-job-guide .our-job-head{
	position: relative;
}
.our-job-guide .our-job-head .imgArea{
	position: relative;
	height: 21.875rem;
}
.our-job-guide .our-job-head .imgArea::after{
	content: '';
	background: url(../img/recruit/bg.png) no-repeat right top;
	background-size: cover;
	position: absolute;
	width: 70%;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
}
.our-job-guide .our-job-head .imgArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.our-job-guide .our-job-head .ttl-box{
	position: absolute;
	top: 2.625rem;
	left: 4.625rem;
}
.our-job-guide .our-job-head .ttl-box .roma{
	font-family: "Oswald", sans-serif;
	color: #FFFFFF;
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.02em;
	margin-bottom: 2rem;
}
.our-job-guide .our-job-head .ttl-box .ttl{
	color: #FFFFFF;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
}
.our-job-guide .our-job-body{
	background: #F6F6F6;
	padding: 2.8125rem 0 4.75rem 0;
}
.our-job-guide .our-job-body .our-job-list{
	column-gap: 3.75rem;
	row-gap: 3.375rem;
}
.our-job-body .our-job-list .our-job-items{
	width: calc(33.3333% - 2.5rem);
	transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.our-job-body .our-job-list .our-job-items:hover {
	transform: translateY(-2px);
}
.our-job-body .our-job-list .our-job-items dl dt{
	position: relative;
	background: #E94B34;
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: -0.02em;
	text-align: center;
	border-radius: 3.25rem;
	padding: 0.5rem 0.625rem;
	cursor: pointer;
	transition: all 0.5s ease;
}
.our-job-body .our-job-list .our-job-items dl dt::before,
.our-job-body .our-job-list .our-job-items dl dt::after {
	position: absolute;
	content: "";
	top: 48%;
	left: 1rem;
	width: 1.125rem;
	height: 2px;
	background-color: #70F149;
}
.our-job-body .our-job-list .our-job-items dl dt::before {
	transform: rotate(0deg);
}
.our-job-body .our-job-list .our-job-items dl dt::after {
	transform: rotate(90deg);
}
.our-job-body .our-job-list .our-job-items dl dt.open::before {
	transform: rotate(45deg);
}
.our-job-body .our-job-list .our-job-items dl dt.open::after {
	transform: rotate(-45deg);
}
.our-job-body .our-job-list .our-job-items dl dd{
	display: none;
	background: #F3AF99;
	color: #000000;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.56;
	padding: 2.9375rem 1.125rem 2.375rem 1.125rem;
	border-radius: 1.125rem;
	margin-top: -2rem;
}
.our-job-body .entry-btn{
	text-align: center;
	margin-top: 4.875rem;
}
.our-job-body .entry-btn li{
	display: inline-block;
	width: 28.25rem;
}
.our-job-body .entry-btn li a{
	position: relative;
	background: #70F149;
	display: block;
	color: #E94B34;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.05em;
	text-align: left;
	border-radius: 3.25rem;
	padding: 1.375rem 3rem 1.125rem 3rem;
}
.our-job-body .entry-btn li a::after{
	content: '';
	background: url(../img/recruit/arrow_r.png) no-repeat center;
	background-size: cover;
	position: absolute;
	width: 2.875rem;
	height: 2.875rem;
	right: 2.75rem;
	top: 50%;
	transform: translateY(-50%);
}
@media only screen and (max-width: 1300px) {
	.our-job-guide .our-job-body .our-job-list{
		column-gap: 1.75rem;
	}
	.our-job-body .our-job-list .our-job-items{
		width: calc(33.3333% - 1.2rem);
	}
}
@media only screen and (max-width: 767px) {
	.our-job-guide{
		padding-bottom: 2.8125rem;
	}
	.our-job-guide .our-job-head .imgArea{
		height: 9.375rem;
	}
	.our-job-guide .our-job-head .imgArea::after{
		width: 70%;
	}
	.our-job-guide .our-job-head .ttl-box{
		top: 1.25rem;
		left: 1.5rem;
	}
	.our-job-guide .our-job-head .ttl-box .roma{
		font-size: 1.875rem;
		margin-bottom: 0.5rem;
	}
	.our-job-guide .our-job-head .ttl-box .ttl{
		font-size: 0.75rem;
	}
	.our-job-guide .our-job-body{
		padding: 1.375rem 0 2.5rem 0;
	}
	.our-job-guide .our-job-body .our-job-list{
		width: calc(100% - 2.5rem);
		column-gap: 0;
		row-gap: 1.875rem;
	}
	.our-job-body .our-job-list .our-job-items{
		width: 100%;
	}
	.our-job-body .our-job-list .our-job-items dl dt{
		font-size: 0.9375rem;
		text-align: left;
		padding: 0.65rem 0.625rem 0.45rem 2.5rem;
	}
	.our-job-body .our-job-list .our-job-items dl dt::before,
	.our-job-body .our-job-list .our-job-items dl dt::after {
		left: 0.75rem;
		width: 0.75rem;
		height: 2px;
	}
	.our-job-body .our-job-list .our-job-items dl dd{
		font-size: 0.75rem;
		padding: 2.9375rem 1.125rem 1.375rem 1.125rem;
		border-radius: 1rem;
	}
	.our-job-body .entry-btn{
		margin-top: 1.875rem;
	}
	.our-job-body .entry-btn li{
		width: calc(100% - 2.5rem);
	}
	.our-job-body .entry-btn li a{
		font-size: 1.25rem;
		padding: 1.375rem 3rem 1rem 1.5rem;
	}
	.our-job-body .entry-btn li a::after{
		width: 1.4375rem;
		height: 1.4375rem;
		right: 1.5rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.our-job-guide{
		padding-bottom: 4.75rem;
	}
	.our-job-guide .our-job-head .imgArea{
		height: 18.875rem;
	}
	.our-job-guide .our-job-head .imgArea::after{
		width: 85%;
	}
	.our-job-guide .our-job-head .ttl-box{
		top: 3.625rem;
		left: 2.5rem;
	}
	.our-job-guide .our-job-head .ttl-box .roma{
		font-size: 3.5rem;
		margin-bottom: 1rem;
	}
	.our-job-guide .our-job-head .ttl-box .ttl{
		font-size: 1.375rem;
	}
	.our-job-guide .our-job-body{
		padding: 2.8125rem 0 3.75rem 0;
	}
	.our-job-guide .our-job-body .our-job-list{
		column-gap: 2rem;
		row-gap: 2rem;
	}
	.our-job-body .our-job-list .our-job-items{
		width: calc(50% - 1rem);
	}
	.our-job-body .our-job-list .our-job-items dl dt{
		font-size: 1.125rem;
	}
	.our-job-body .our-job-list .our-job-items dl dd{
		font-size: 0.9375rem;
		border-radius: 1rem;
	}
	.our-job-body .entry-btn{
		margin-top: 3.5rem;
	}
	.our-job-body .entry-btn li{
		width: 21.25rem;
	}
	.our-job-body .entry-btn li a{
		font-size: 1.5rem;
		padding: 1.375rem 2rem 1.125rem 2rem;
	}
	.our-job-body .entry-btn li a::after{
		width: 2.5rem;
		height: 2.5rem;
		right: 1.5rem;
	}
}
/*　　バナー　　*/
.recruit-wrap .bnr-guide{
	padding-bottom: 6.75rem;
}
.bnr-guide .bnr-items a{
	position: relative;
	display: block;
	overflow: hidden;
}
.bnr-guide .bnr-items .imgArea{
	position: relative;
	height: 21.875rem;
}
.bnr-guide .bnr-items a::before{
	content: '';
	background: url(../img/recruit/bg.png) no-repeat right top;
	background-size: cover;
	position: absolute;
	width: 70%;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
}
.bnr-guide .bnr-items a::after{
	content: '';
	background: url(../img/recruit/arrow_g.png) no-repeat center;
	background-size: cover;
	position: absolute;
	width: 3.25rem;
	height: 3.25rem;
	right: 4.625rem;
	top: 50%;
	transform: translateY(-50%);
}
.bnr-guide .bnr-items .imgArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s ease-in-out;
}
.bnr-guide .bnr-items a:hover .imgArea img{
	transform: scale(1.1);
}
.bnr-guide .bnr-items .ttl-box{
	position: absolute;
	top: 2rem;
	left: 4.625rem;
	z-index: 2;
}
.bnr-guide .bnr-items .ttl-box .roma{
	font-family: "Oswald", sans-serif;
	color: #FFFFFF;
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.02em;
	margin-bottom: 2rem;
}
.bnr-guide .bnr-items .ttl-box .ttl{
	color: #FFFFFF;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
	.recruit-wrap .bnr-guide{
		padding-bottom: 5rem;
	}
	.bnr-guide .bnr-items .imgArea{
		height: 9.375rem;
	}
	.bnr-guide .bnr-items a::after{
		width: 1.4375rem;
		height: 1.4375rem;
		right: 0.75rem;
	}
	.bnr-guide .bnr-items .ttl-box{
		top: 1.25rem;
		left: 1.5rem;
	}
	.bnr-guide .bnr-items .ttl-box .roma{
		font-size: 1.875rem;
		margin-bottom: 0.5rem;
	}
	.bnr-guide .bnr-items .ttl-box .ttl{
		font-size: 0.75rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.recruit-wrap .bnr-guide{
		padding-bottom: 4.75rem;
	}
	.bnr-guide .bnr-items .imgArea{
		height: 18.875rem;
	}
	.bnr-guide .bnr-items a::before{
		width: 85%;
	}
	.bnr-guide .bnr-items a::after{
		width: 3rem;
		height: 3rem;
		right: 4.5rem;
	}
	.bnr-guide .bnr-items .ttl-box{
		top: 3rem;
		left: 2.5rem;
	}
	.bnr-guide .bnr-items .ttl-box .roma{
		font-size: 3.5rem;
		margin-bottom: 1rem;
	}
	.bnr-guide .bnr-items .ttl-box .ttl{
		font-size: 1.375rem;
	}
}
/*　　お問い合わせ　　*/
.page_recruit .bottom-contact-guide{
	background: #E94B34;
	overflow: hidden;
}
.page_recruit .bottom-contact-guide .contact-grid{
	align-items: center;
	padding: 2.8125rem 2rem 2.8125rem 5.75rem;
}
.page_recruit .bottom-contact-guide .contact-btn li{
	display: inline-block;
	width: 26.25rem;
}
.page_recruit .bottom-contact-guide .contact-btn li a{
	position: relative;
	background: #70F149;
	display: block;
	color: #E94B34;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.05em;
	border-radius: 5.25rem;
	padding: 2.375rem 4rem 1.875rem 4rem;
}
.page_recruit .bottom-contact-guide .contact-btn li a::after{
	content: '';
	background: url(../img/recruit/arrow_r.png) no-repeat center;
	background-size: cover;
	position: absolute;
	width: 2.875rem;
	height: 2.875rem;
	right: 2.75rem;
	top: 50%;
	transform: translateY(-50%);
}
.page_recruit .bottom-contact-guide .roma-box{
	text-align: right;
}
.page_recruit .bottom-contact-guide .logo{
	display: inline-block;
	width: 7.875rem;
	margin-bottom: 5.875rem;
}
.page_recruit .bottom-contact-guide .text-roma{
	font-family: "Oswald", sans-serif;
	color: #F3AF99;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
}
.page_recruit .bottom-contact-guide .bg-roma{
	margin-bottom: -0.375rem;
}
@media only screen and (max-width: 767px) {
	.page_recruit .bottom-contact-guide .contact-grid{
		padding: 2.625rem 2rem 0.875rem 1.25rem;
	}
	.page_recruit .bottom-contact-guide .contact-btn li{
		width: 13.75rem;
	}
	.page_recruit .bottom-contact-guide .contact-btn li a{
		font-size: 1.25rem;
		border-radius: 5.25rem;
		padding: 1.375rem 3rem 1rem 1.5rem;
	}
	.page_recruit .bottom-contact-guide .contact-btn li a::after{
		width: 1.4375rem;
		height: 1.4375rem;
		right: 1.375rem;
	}
	.page_recruit .bottom-contact-guide .roma-box{
		width: 100%;
		text-align: right;
		margin-top: 0.625rem;
	}
	.page_recruit .bottom-contact-guide .logo{
		width: 3rem;
		margin-bottom: 0.875rem;
	}
	.page_recruit .bottom-contact-guide .text-roma{
		font-size: 0.625rem;
	}
	.page_recruit .bottom-contact-guide .bg-roma{
		margin-bottom: -0.125rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.page_recruit .bottom-contact-guide .contact-grid{
		padding: 2.5rem 2rem;
	}
	.page_recruit .bottom-contact-guide .contact-btn li{
		width: 18.25rem;
	}
	.page_recruit .bottom-contact-guide .contact-btn li a{
		font-size: 1.5rem;
		padding: 1.875rem 2rem 1.5rem 2rem;
	}
	.page_recruit .bottom-contact-guide .contact-btn li a::after{
		width: 2.5rem;
		height: 2.5rem;
		right: 1.5rem;
	}
	.page_recruit .bottom-contact-guide .logo{
		width: 6.875rem;
		margin-bottom: 4.875rem;
	}
	.page_recruit .bottom-contact-guide .text-roma{
		font-size: 1.25rem;
	}
}
/**
/* アカデミーページ CSS
----------------------------------------------- */

@media only screen and (max-width: 767px) {
	
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	
}
/**
/* 社員インタビュー CSS
----------------------------------------------- */
.interview-guide,
.interview-guide .interview-grid{
	position: relative;
}
.interview-guide .inner{
	z-index: 2;
}
.interview-wrap .interview-guide{
	padding: 9.375rem 0 4.625rem 0;
}
.interview-guide .caption span.bg{
	display: inline-block;
	background: #272179;
	color: #FFFFFF;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.45;
	padding: 0.25rem 0.5rem;
}
.interview-wrap .interview-guide .caption span.bg{
	padding: 0.125rem 1.5rem;
}
.interview-wrap .interview-guide .guide-ttl .roma{
	color: #F3AF99;
	font-size: 7.125rem;
}
.interview-guide .text{
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 2;
}
.interview-wrap .interview-guide .text{
	margin-bottom: 2.8125rem;
}
@media only screen and (max-width: 767px) {
	.interview-wrap .interview-guide{
		padding: 4rem 0 2.5rem 0;
	}
	.interview-guide .caption{
		margin-bottom: 0.625rem;
	}
	.interview-guide .caption span.bg{
		font-size: 0.9375rem;
		padding: 0.125rem 0.5rem;
	}
	.interview-wrap .interview-guide .caption span.bg{
		padding: 0.125rem 0.625rem;
	}
	.interview-wrap .interview-guide .guide-ttl .roma{
		font-size: 1.875rem;
	}
	.interview-guide .text{
		font-size: 0.75rem;
		line-height: 2;
	}
	.interview-wrap .interview-guide .text{
		margin-bottom: 2.375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.interview-wrap .interview-guide{
		padding: 5.375rem 0 4.625rem 0;
	}
	.interview-guide .caption span.bg{
		font-size: 1.375rem;
		padding: 0.25rem 0.5rem;
	}
	.interview-wrap .interview-guide .caption span.bg{
		padding: 0.375rem 1rem 0.25rem 1rem;
	}
	.interview-wrap .interview-guide .guide-ttl .roma{
		font-size: 5.5rem;
	}
	.interview-guide .text{
		font-size: 1.125rem;
		line-height: 2;
	}
	.interview-wrap .interview-guide .text{
		margin-bottom: 1.8125rem;
	}
}
/*　　一覧　　*/
.interview-wrap .interview-guide .interview-grid::before{
	content: '';
	background: #F2FFE2;
	position: absolute;
	width: 20rem;
	height: 90%;
	left: 0;
	top: 0;
}
.interview-grid .interview-list{
	width: calc(100% - 3rem);
	column-gap: 6.875rem;
	row-gap: 6rem;
	padding-top: 3rem;
}
.interview-grid .card{
	position: relative;
	width: calc(33.3333% - 4.625rem);
}
.interview-grid .card .catchphrase{
	width: max-content;
	position: absolute;
	top: 0;
	right: -3.5rem;
	writing-mode: vertical-rl;
	z-index: 1;
}
.interview-grid .card .catchphrase p{
	line-height: 1;
}
.interview-grid .card .catchphrase p + p{
	margin-right: 0.5rem;
}
.interview-grid .card .catchphrase p span{
	display: inline-block;
	background: #E94B34;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	writing-mode: vertical-rl;
	padding: 0.875rem 0.375rem 1.5rem 0.375rem;
}
.interview-grid .card .card__thumbnail{
	position: relative;
	overflow: hidden;
	box-shadow: 0.75rem 0.75rem 0.75rem rgba(0, 0, 0, 0.16);
	margin-bottom: 1.5rem;
}
.interview-grid .card .card__thumbnail::before{
	content: '';
	background: url(../img/interview/frame-top.png) no-repeat;
	background-size: cover;
	position: absolute;
	width: 4.625rem;
	height: 4.625rem;
	left: 0;
	top: 0;
	z-index: 1;
}
.interview-grid .card .card__thumbnail img{
	transition: .5s ease-in-out;
}
.interview-grid .card .card__thumbnail img:hover{
	transform: scale(1.1);
}
.interview-grid .card .card__body .post{
	margin-bottom: 0.375rem;
}
.interview-grid .card .card__body .post span{
	display: inline-block;
	background: #70F149;
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.25rem 0.25rem 0.125rem 0.25rem;
}
.interview-grid .card .card__body .roma{
	color: #1A1A1A;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
}
@media only screen and (max-width: 767px) {
	.interview-wrap .interview-guide .interview-grid::before{
		width: 7rem;
		height: 90%;
	}
	.interview-wrap .interview-guide .interview-grid .inner{
		width: calc(100% - 2.5rem);
	}
	.interview-grid .interview-list{
		width: calc(100% - 0.5rem);
		column-gap: 1.5rem;
		row-gap: 2.125rem;
		padding-top: 0;
	}
	.interview-grid .card{
		width: calc(50% - 0.75rem);
	}
	.interview-grid .card .catchphrase{
		top: 0;
		right: -1.25rem;
	}
	.interview-grid .card .catchphrase p + p{
		margin-right: 0.25rem;
	}
	.interview-grid .card .catchphrase p span{
		font-size: 0.75rem;
		line-height: 1;
		padding: 0.375rem 0.25rem 0.375rem 0.25rem;
	}
	.interview-grid .card .card__thumbnail{
		width: 90%;
	}
	.interview-grid .card .card__thumbnail::before{
		width: 4.625rem;
		height: 4.625rem;
	}
	.interview-grid .card .card__body .post span{
		font-size: 0.75rem;
		padding: 0.25rem 0.25rem 0.125rem 0.25rem;
	}
	.interview-grid .card .card__body .roma{
		font-size: 0.9375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.interview-wrap .interview-guide .interview-grid::before{
		width: 12rem;
		height: 80%;
	}
	.interview-grid .interview-list{
		width: calc(100% - 2rem);
		column-gap: 4rem;
		row-gap: 4rem;
		padding-top: 2.5rem;
	}
	.interview-grid .card{
		width: calc(33.3333% - 2.7rem);
	}
	.interview-grid .card .catchphrase{
		right: -3rem;
	}
	.interview-grid .card .catchphrase p + p{
		margin-right: 0.375rem;
	}
	.interview-grid .card .catchphrase p span{
		font-size: 1rem;
		padding: 0.875rem 0.375rem 1.5rem 0.375rem;
	}
	.interview-grid .card .card__thumbnail{
		margin-bottom: 1.25rem;
	}
	.interview-grid .card .card__thumbnail::before{
		width: 3.25rem;
		height: 3.25rem;
	}
	.interview-grid .card .card__body .post{
		margin-bottom: 0.375rem;
	}
	.interview-grid .card .card__body .post span{
		font-size: 1.25rem;
		padding: 0.25rem 0.25rem 0 0.25rem;
	}
	.interview-grid .card .card__body .roma{
		font-size: 1.25rem;
	}
}
/*　　詳細　　*/
.interview-wrap .interview-single{
	overflow: hidden;
	padding: 9.375rem 0 10.625rem 0;
}
.interview-single .interview-head{
	position: relative;
	margin-bottom: 6.25rem;
}
.interview-single .interview-head::before{
	content: '';
	background: url(../img/interview/frame-bottom.png) no-repeat;
	background-size: cover;
	position: absolute;
	width: 5rem;
	height: 5rem;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.interview-single .interview-head .imgArea{
	position: relative;
	width: 64%;
}
.interview-single .interview-head .imgArea::before{
	content: '';
	background: url(../img/interview/frame-top.png) no-repeat;
	background-size: cover;
	position: absolute;
	width: 5rem;
	height: 5rem;
	left: 0;
	top: 0;
	z-index: 1;
}
.interview-single .interview-head .contentArea{
	position: relative;
	width: 36%;
	padding-left: 3rem;
}
.interview-single .interview-head .catchphrase{
	width: max-content;
	position: relative;
	top: -2.5rem;
	left: -13rem;
}
.interview-single .interview-head .catchphrase p + p{
	margin-top: 1rem;
}
.interview-single .interview-head .catchphrase p span.bg{
	display: inline-block;
	background: #E94B34;
	color: #FFFFFF;
	font-size: 2.1875rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.5rem 0.625rem 0.3125rem 0.625rem;
}
.interview-single .interview-head .post{
	margin-bottom: 0.375rem;
}
.interview-single .interview-head .post span.bg{
	display: inline-block;
	background: #70F149;
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.25rem 0.25rem 0.125rem 0.25rem;
}
.interview-single .interview-head .name{
	color: #1A1A1A;
	font-size: 2.1875rem;
	font-weight: 700;
	line-height: 1.25;
}
.interview-single .interview-body{
	position: relative;
}
.interview-single .interview-body .roma{
	position: absolute;
	top: 1.5rem;
	right: 1rem;
	font-family: "TT_Autonomous-ExtraBold";
	color: #F2F2F2;
	font-size: 7.125rem;
	font-weight: 700;
	line-height: 1;
	writing-mode: vertical-rl;
}
.interview-single .interview-detail{
	margin-bottom: 3rem;
}
.interview-single .interview-detail::after{
	clear: both;
}
.interview-single .interview-detail .ttl{
	margin-bottom: 2.5rem;
}
.interview-single .more{
	max-width: 1020px;
    margin: 0 auto;
	margin-top: 1.875rem;
}
.interview-single .more li a{
	color: #1A1A1A;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.25;
}
@media only screen and (max-width: 1450px) {
	.interview-single .interview-head .catchphrase{
		max-width: 40rem;
	}
}
@media only screen and (max-width: 767px) {
	.interview-wrap .interview-single{
		padding-top: 4.5rem;
	}
	.interview-single .interview-head{
		margin-bottom: 2.25rem;
	}
	.interview-single .interview-head::before{
		content: none;
	}
	.interview-single .interview-head .imgArea{
		position: relative;
		width: 100%;
	}
	.interview-single .interview-head .imgArea::before{
		width: 2.5rem;
		height: 2.5rem;
	}
	.interview-single .interview-head .imgArea::after{
		content: '';
		background: url(../img/interview/frame-bottom.png) no-repeat;
		background-size: cover;
		position: absolute;
		width: 2.5rem;
		height: 2.5rem;
		right: 0;
		bottom: 0;
		z-index: 1;
	}
	.interview-single .interview-head .contentArea{
		position: relative;
		width: 100%;
		padding-left: 0;
		margin-top: 1.25rem;
	}
	.interview-single .interview-head .catchphrase{
		top: 0;
		left: 0;
		margin-bottom: 1rem;
	}
	.interview-single .interview-head .catchphrase p + p{
		margin-top: 0.5rem;
	}
	.interview-single .interview-head .catchphrase p span.bg{
		font-size: 1.125rem;
		padding: 0.5rem 0.625rem 0.25rem 0.625rem;
	}
	.interview-single .interview-head .post{
		margin-bottom: 0.5rem;
	}
	.interview-single .interview-head .post span.bg{
		font-size: 0.75rem;
		padding: 0.25rem 0.25rem 0 0.25rem;
	}
	.interview-single .interview-head .name{
		font-size: 1.125rem;
	}
	.interview-single .interview-body .roma{
		top: 0.5rem;
		right: -1rem;
		font-size: 3.125rem;
	}
	.interview-single .interview-detail{
		margin-bottom: 2rem;
	}
	.interview-single .interview-detail .ttl{
		margin-bottom: 1.5rem;
	}
	.interview-single .more{
		margin-top: 0.9375rem;
	}
	.interview-single .more li a{
		font-size: 0.75rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.interview-wrap .interview-single{
		padding-top: 5.375rem;
	}
	.interview-single .interview-head{
		margin-bottom: 4.25rem;
	}
	.interview-single .interview-head::before{
		width: 3.5rem;
		height: 3.5rem;
	}
	.interview-single .interview-head .imgArea::before{
		width: 3.5rem;
		height: 3.5rem;
	}
	.interview-single .interview-head .catchphrase{
		top: -2.5rem;
		left: -10rem;
	}
	.interview-single .interview-head .catchphrase p + p{
		margin-top: 0.5rem;
	}
	.interview-single .interview-head .catchphrase p span.bg{
		font-size: 1.5rem;
		padding: 0.5rem 2rem 0.25rem 0.625rem;
	}
	.interview-single .interview-head .post span.bg{
		font-size: 1.125rem;
	}
	.interview-single .interview-head .name{
		font-size: 1.5rem;
	}
	.interview-single .interview-body .roma{
		right: -1rem;
		font-size: 5.125rem;
	}
	.interview-single .interview-detail{
		margin-bottom: 2.5rem;
	}
	.interview-single .interview-detail .ttl{
		margin-bottom: 2rem;
	}
	.interview-single .more{
		margin-top: 1.5rem;
	}
	.interview-single .more li a{
		font-size: 1.125rem;
	}
}
/**
/* 事例紹介 CSS
----------------------------------------------- */
/*　　一覧　　*/
.works-guide{
	padding: 5rem 0 10.625rem 0;
}
.works-guide .guide-ttl{
	margin-bottom: 2.5rem;
}
.works-guide .guide-ttl .roma{
	font-size: 7.25rem;
}
.works-list{
	column-gap: 1.75rem;
	row-gap: 5rem;
}
.works-list .card{
	width: calc(33.3333% - 1.1875rem);
}
.works-list .card .card__thumbnail{
	position: relative;
	overflow: hidden;
	box-shadow: 0.75rem 0.75rem 0.75rem rgba(0, 0, 0, 0.16);
	margin-bottom: 1.5rem;
}
.works-list .card .card__thumbnail:before{
	content: "";
	padding-top: 66.8%;
	display: block;
	height: 0;
}
.works-list .card .card__thumbnail img{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	object-fit:cover;
	transition: .5s ease-in-out;
}
.works-list .card .card__thumbnail img:hover{
	transform: scale(1.1);
}
.works-list .card .name{
	color: #1A1A1A;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}
.works-list .card .text p{
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
}
.works-list .card .category{
	margin-top: 1rem;
}
.works-list .card .category span{
	display: inline-block;
	margin-top: 0.5rem;
	margin-right: 0.5rem;
}
.works-list .card .category span a{
	display: block;
	background: #E94B34;
	color: #FFFFFF;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.25rem 0.5rem 0.125rem 0.5rem;
}
@media only screen and (max-width: 767px) {
	.works-guide{
		padding: 4rem 0 2.5rem 0;
	}
	.works-guide .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.works-guide .guide-ttl .roma{
		font-size: 1.875rem;
	}
	.works-list{
		column-gap: 0;
		row-gap: 3rem;
	}
	.works-list .card{
		width: 100%;
	}
	.works-list .card .card__thumbnail{
		margin-bottom: 1.25rem;
	}
	.works-list .card .name{
		font-size: 1.125rem;
		margin-bottom: 0.5rem;
	}
	.works-list .card .text p{
		font-size: 0.75rem;
	}
	.works-list .card .category{
		margin-top: 0.75rem;
	}
	.works-list .card .category span{
		margin-top: 0.25rem;
		margin-right: 0.25rem;
	}
	.works-list .card .category span a{
		font-size: 0.75rem;
		padding: 0.25rem 0.375rem 0 0.375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.works-guide{
		padding: 5rem 0 4.625rem 0;
	}
	.works-guide .guide-ttl .roma{
		font-size: 5rem;
	}
	.works-list{
		column-gap: 1rem;
		row-gap: 4rem;
	}
	.works-list .card{
		width: calc(33.3333% - 0.7rem);
	}
	.works-list .card .name{
		font-size: 1.125rem;
		margin-bottom: 0.5rem;
	}
	.works-list .card .text p{
		font-size: 0.9875rem;
	}
	.works-list .card .category span{
		margin-top: 0.375rem;
		margin-right: 0.375rem;
	}
	.works-list .card .category span a{
		font-size: 0.75rem;
	}
}
/*　　詳細　　*/
.works-single{
	padding: 9.375rem 0 14.1875rem 0;
}
.works-single .inner{
	max-width: 1024px;
}
.works-single .works-head{
	margin-bottom: 4.5rem;
}
.works-single .works-head .name{
	display: inline-block;
	background: #E94B34;
	color: #FFFFFF;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.375rem 1.375rem 0.25rem 1.375rem;
	margin-bottom: 1.75rem;
}
.works-single .works-head .text{
	color: #1A1A1A;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.43;
	padding: 0 1.375rem;
	margin-bottom: 1.75rem;
}
.works-single .works-head .imgArea{
	position: relative;
}
.works-single .works-head .imgArea::before,
.works-single .works-head .imgArea::after{
	content: '';
	position: absolute;
	width: 6.125rem;
	height: 6.125rem;
}
.works-single .works-head .imgArea::before{
	background: url(../img/interview/frame-top.png) no-repeat;
	background-size: cover;
	left: 0;
	top: 0;
}
.works-single .works-head .imgArea::after{
	background: url(../img/interview/frame-bottom.png) no-repeat;
	background-size: cover;
	right: 0;
	bottom: 0;
}
.works-single .works-head .imgArea img{
	width: 100%;
}
.works-single .works-body .box{
	position: relative;
	background: rgba(255, 255,255, 0.6);
	box-shadow: 0px 0px 0.75rem rgba(0, 0, 0, 0.16);
    z-index: 2;
}
.works-single .works-body .box:not(:last-child){
	margin-bottom: 3.5625rem;
}
.works-single .works-body .box::after{
	content: '';
	background: url(../img/works/box-bottom.png) no-repeat left top;
	background-size: cover;
	position: absolute;
	width: 32rem;
	height: 3.625rem;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.works-single .works-body .box .ttl{
	position: relative;
}
.works-single .works-body .box .ttl::after{
	content: '';
	background: url(../img/works/ttl_bg.png) no-repeat right top;
	background-size: cover;
	position: absolute;
	width: 32rem;
	height: 3.625rem;
	left: 0;
	top: 0;
}
.works-single .works-body .box .ttl h2{
	position: relative;
	max-width: 920px;
	color: #ffffff;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 auto;
	padding: 0.75rem 2rem 0.25rem 2rem;
	z-index: 1;
}
.works-single .works-body .box .box-inner{
	max-width: 920px;
	margin: 0 auto;
}
.works-single .works-body .box h3{
	position: relative;
	color: #1A1A1A;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.5;
	padding-left: 2.5rem;
}
.works-single .works-body .box h3::before{
	position: absolute;
	content: "";
	background: #00F500;
	width: 1.875rem;
	height: 1px;
	left: 0;
	top: 1.5rem;
}
.works-single .works-body .box p{
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.875;
}
.works-single .works-body .box p:not(:last-child){
	margin-bottom: 1.875rem;
}
@media only screen and (max-width: 767px) {
	.works-single{
		padding: 5rem 0 2.5rem 0;
	}
	.works-single .works-head{
		margin-bottom: 2.25rem;
	}
	.works-single .works-head .name{
		font-size: 1.125rem;
		padding: 0.375rem 0.75rem 0.125rem 0.75rem;
		margin-bottom: 0.75rem;
	}
	.works-single .works-head .text{
		font-size: 0.75rem;
		padding: 0;
		margin-bottom: 0.875rem;
	}
	.works-single .works-head .imgArea::before,
	.works-single .works-head .imgArea::after{
		width: 1.875rem;
		height: 1.875rem;
	}
	.works-single .works-body .box:not(:last-child){
		margin-bottom: 3.5625rem;
	}
	.works-single .works-body .box::after{
		width: 16rem;
		height: 2rem;
	}
	.works-single .works-body .box .ttl::after{
		width: 16rem;
		height: 2rem;
	}
	.works-single .works-body .box .ttl h2{
		font-size: 0.9375rem;
		padding: 0.45rem 2rem 0.125rem 2rem;
	}
	.works-single .works-body .box h3{
		font-size: 0.9375rem;
		padding-left: 1.75rem;
	}
	.works-single .works-body .box h3::before{
		width: 1.25rem;
		top: 1.5rem;
	}
	.works-single .works-body .box p{
		font-size: 0.75rem;
	}
	.works-single .works-body .box p:not(:last-child){
		margin-bottom: 1.25rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.works-single{
		padding: 5rem 0 10rem 0;
	}
	.works-single .works-head{
		margin-bottom: 3.5rem;
	}
	.works-single .works-head .name{
		font-size: 1.875rem;
		padding: 0.5rem 1.375rem 0.25rem 1.375rem;
		margin-bottom: 1.375rem;
	}
	.works-single .works-head .text{
		font-size: 1.125rem;
		padding: 0 1.375rem;
		margin-bottom: 1.5rem;
	}
	.works-single .works-head .imgArea::before,
	.works-single .works-head .imgArea::after{
		width: 4.5rem;
		height: 4.5rem;
	}
	.works-single .works-body .box:not(:last-child){
		margin-bottom: 3rem;
	}
	.works-single .works-body .box::after{
		width: 28rem;
		height: 3.125rem;
	}
	.works-single .works-body .box .ttl::after{
		width: 28rem;
		height: 3.125rem;
	}
	.works-single .works-body .box .ttl h2{
		font-size: 1.5rem;
		padding: 0.75rem 2rem 0.25rem 2rem;
	}
	.works-single .works-body .box h3{
		font-size: 1.375rem;
	}
	.works-single .works-body .box h3::before{
		top: 1rem;
	}
	.works-single .works-body .box p:not(:last-child){
		margin-bottom: 1.5rem;
	}
}
/*　　事例のポイント　　*/
.works-single .works-body .works-point .box-inner{
	padding: 3.125rem 2rem 4rem 2rem;
}
.works-single .works-body .works-point h3{
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
}
.works-single .works-body .works-point h3:not(:first-child){
	margin-top: 2rem;
}
.works-single .works-body .works-point h3::before{
	top: 1rem;
}
.works-single .works-body .works-point p{
	line-height: 1.56;
}
.works-single .works-body .works-point p:not(:last-child){
	margin-bottom: 1.125rem;
}
@media only screen and (max-width: 767px) {
	.works-single .works-body .works-point .box-inner{
		padding: 1.5rem 1rem 3rem 1rem;
	}
	.works-single .works-body .works-point h3{
		font-size: 0.9375rem;
		margin-bottom: 0.625rem;
	}
	.works-single .works-body .works-point h3:not(:first-child){
		margin-top: 1.25rem;
	}
	.works-single .works-body .works-point h3::before{
		top: 0.625rem;
	}
	.works-single .works-body .works-point p{
		line-height: 1.56;
	}
	.works-single .works-body .works-point p:not(:last-child){
		margin-bottom: 0.625rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.works-single .works-body .works-point .box-inner{
		padding: 2.5rem 2rem 4.5rem 2rem;
	}
	.works-single .works-body .works-point h3{
		font-size: 1.125rem;
		margin-bottom: 1rem;
	}
	.works-single .works-body .works-point h3::before{
		top: 0.75rem;
	}
	.works-single .works-body .works-point p:not(:last-child){
		margin-bottom: 0.625rem;
	}
}
/*　　お話を伺った方　　*/
.works-single .works-body .works-spoke .box-inner{
	padding: 1.625rem 2rem 3rem 2rem;
}
.works-single .works-body .works-spoke .spoke-deta:not(:last-child){
	border-bottom: 1px solid #00F500;
	padding-bottom: 1.625rem;
	margin-bottom: 1.625rem;
}
.works-single .works-body .works-spoke .spoke-deta .imageArea{
	width: 8.75rem;
}
.works-single .works-body .works-spoke .spoke-deta .contentArea{
	width: calc(100% - 8.75rem);
	padding-left: 2.25rem;
}
.works-single .works-body .works-spoke .spoke-deta .name{
	color: #1A1A1A;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 0.875rem;
}
.works-single .works-body .works-spoke .spoke-deta .name span{
	color: #4D4D4D;
	font-size: 0.75rem;
	font-weight: 500;
	margin-left: 0.75rem;
}
.works-single .works-body .works-spoke .spoke-deta .text{
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.56;
}
@media only screen and (max-width: 767px) {
	.works-single .works-body .works-spoke .box-inner{
		padding: 1.625rem 1rem 3.5rem 1rem;
	}
	.works-single .works-body .works-spoke .spoke-deta:not(:last-child){
		padding-bottom: 1.625rem;
		margin-bottom: 1.625rem;
	}
	.works-single .works-body .works-spoke .spoke-deta .imageArea{
		width: 100%;
		text-align: center;
		margin-bottom: 1rem;
	}
	.works-single .works-body .works-spoke .spoke-deta .imageArea img{
		width: 10.625rem;
	}
	.works-single .works-body .works-spoke .spoke-deta .contentArea{
		width: 100%;
		padding-left: 0;
	}
	.works-single .works-body .works-spoke .spoke-deta .name{
		font-size: 0.9375rem;
		text-align: center;
	}
	.works-single .works-body .works-spoke .spoke-deta .name span{
		display: block;
		font-size: 0.625rem;
		margin-left: 0;
		margin-top: 0.375rem;
	}
	.works-single .works-body .works-spoke .spoke-deta .text{
		font-size: 0.75rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.works-single .works-body .works-spoke .box-inner{
		padding: 1.625rem 2rem 3.5rem 2rem;
	}
	.works-single .works-body .works-spoke .spoke-deta:not(:last-child){
		padding-bottom: 1.375rem;
		margin-bottom: 1.375rem;
	}
	.works-single .works-body .works-spoke .spoke-deta .imageArea{
		width: 7.75rem;
	}
	.works-single .works-body .works-spoke .spoke-deta .contentArea{
		width: calc(100% - 7.75rem);
		padding-left: 1.5rem;
	}
	.works-single .works-body .works-spoke .spoke-deta .name{
		margin-bottom: 0.75rem;
	}
}
/*　　インタビュー　　*/
.works-single .works-body .works-interview{
	padding-bottom: 6rem;
}
.works-single .works-body .works-interview .detail{
	max-width: 920px;
	margin: 0 auto;
	padding: 2rem 2rem 4rem 2rem;
}
.works-single .works-body .works-interview .detail h3{
	margin-bottom: 2rem;
}
.works-single .works-body .works-interview .detail p:not(:last-child){
	margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
	.works-single .works-body .works-interview{
		padding-bottom: 3rem;
	}
	.works-single .works-body .works-interview .detail{
		padding: 1.5rem 1rem 2.5rem 1rem;
	}
	.works-single .works-body .works-interview .detail h3{
		margin-bottom: 1rem;
	}
	.works-single .works-body .works-interview .detail p:not(:last-child){
		margin-bottom: 1.25rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.works-single .works-body .works-interview{
		padding-bottom: 4rem;
	}
	.works-single .works-body .works-interview .detail h3{
		margin-bottom: 1.5rem;
	}
	.works-single .works-body .works-interview .detail p:not(:last-child){
		margin-bottom: 1.5rem;
	}
}
/*　　開発責任者のコメント　　*/
.works-single .works-body .works-developer .ttl::after{
	background: url(../img/works/ttl_bg2.png) no-repeat right top;
	background-size: cover;
}
.works-single .works-body .works-developer .ttl h2{
	color: #1A1A1A;
}
.works-single .works-body .works-developer .box-inner{
	padding: 1.75rem 2rem;
}
.works-single .works-body .works-developer .developer-deta{
	border-top: 1px solid #00F500;
	padding-top: 1.25rem;
	margin-top: 2.5rem;
}
.works-single .works-body .works-developer .developer-deta .imageArea{
	width: 8.75rem;
}
.works-single .works-body .works-developer .developer-deta .contentArea{
	width: calc(100% - 8.75rem);
	padding-left: 2.25rem;
}
.works-single .works-body .works-developer .developer-deta .name{
	color: #1A1A1A;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 0.375rem;
}
.works-single .works-body .works-developer .developer-deta .post{
	color: #4D4D4D;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.35;
}
@media only screen and (max-width: 767px) {
	.works-single .works-body .works-developer .box-inner{
		padding: 1.5rem 1rem 3.5rem 1rem;
	}
	.works-single .works-body .works-developer .developer-deta{
		padding-top: 1.25rem;
		margin-top: 1.5rem;
	}
	.works-single .works-body .works-developer .developer-deta .imageArea{
		width: 6.5625rem;
	}
	.works-single .works-body .works-developer .developer-deta .contentArea{
		width: calc(100% - 6.5625rem);
		padding-left: 1.25rem;
	}
	.works-single .works-body .works-developer .developer-deta .name{
		font-size: 0.9375rem;
		margin-bottom: 0.25rem;
	}
	.works-single .works-body .works-developer .developer-deta .post{
		font-size: 0.625rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.works-single .works-body .works-developer .developer-deta{
		margin-top: 2rem;
	}
	.works-single .works-body .works-developer .developer-deta .imageArea{
		width: 7.75rem;
	}
	.works-single .works-body .works-developer .developer-deta .contentArea{
		width: calc(100% - 7.75rem);
		padding-left: 1.5rem;
	}
}
/*　　お客様プロフィール　　*/
.works-single .works-body .works-customer-profile .ttl::after{
	background: url(../img/works/ttl_bg2.png) no-repeat right top;
	background-size: cover;
}
.works-single .works-body .works-customer-profile .ttl h2{
	color: #1A1A1A;
}
.works-single .works-body .works-customer-profile .box-inner{
	padding: 3.5rem 2rem 6.25rem 2rem;
}
.works-single .works-body .works-customer-profile .profile-items{
	position: relative;
}
.works-single .works-body .works-customer-profile .profile-items:not(:last-child){
	border-bottom: 0.5px solid #CCCCCC;
	margin-bottom: 2.25rem;
	padding-bottom: 2.25rem;
}
.works-single .works-body .works-customer-profile .profile-items:not(:last-child)::before {
	position: absolute;
	bottom: -1px;
	width: 15.875rem;
	height: 1px;
	display: block;
	content: "";
	background: #00F500;
}
.works-single .works-body .works-customer-profile .profile-items .item{
	width: 15.875rem;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 0;
}
.works-single .works-body .works-customer-profile .profile-items .contentArea{
	width: calc(100% - 15.875rem);
	padding-left: 4.6875rem;
}
.works-single .works-body .works-customer-profile .profile-items .contentArea p{
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
}
.works-single .works-body .works-customer-profile .profile-items .contentArea p a{
	color: #ff5e00;
	text-decoration: underline;
}
@media only screen and (max-width: 767px) {
	.works-single .works-body .works-customer-profile .box-inner{
		padding: 0.5rem 1rem 5.25rem 1rem;
	}
	.works-single .works-body .works-customer-profile .profile-items:not(:last-child){
		margin-bottom: 1.125rem;
		padding-bottom: 1.125rem;
	}
	.works-single .works-body .works-customer-profile .profile-items:not(:last-child)::before {
		width: 5rem;
	}
	.works-single .works-body .works-customer-profile .profile-items .item{
		width: 5rem;
		font-size: 0.75rem;
	}
	.works-single .works-body .works-customer-profile .profile-items .contentArea{
		width: calc(100% - 5rem);
		padding-left: 1.125rem;
	}
	.works-single .works-body .works-customer-profile .profile-items .contentArea p{
		font-size: 0.75rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.works-single .works-body .works-customer-profile .box-inner{
		padding: 3.5rem 2rem 6.25rem 2rem;
	}
	.works-single .works-body .works-customer-profile .profile-items:not(:last-child){
		margin-bottom: 2.25rem;
		padding-bottom: 2.25rem;
	}
	.works-single .works-body .works-customer-profile .profile-items:not(:last-child)::before {
		width: 8.5rem;
	}
	.works-single .works-body .works-customer-profile .profile-items .item{
		width: 8.5rem;
		font-size: 1.125rem;
	}
	.works-single .works-body .works-customer-profile .profile-items .contentArea{
		width: calc(100% - 8.5rem);
		padding-left: 2.5rem;
	}
	.works-single .works-body .works-customer-profile .profile-items .contentArea p{
		font-size: 1.125rem;
	}
}
/**
/* お知らせ CSS
----------------------------------------------- */
.single-wrap .news-guide{
	padding: 10rem 0 5rem 0;
}
.news-guide .guide-ttl{
	margin-bottom: 4rem;
}
.news-guide .guide-ttl .roma{
	font-size: 8.5625rem;
}
@media only screen and (max-width: 767px) {
	.single-wrap .news-guide{
		padding: 5rem 0;
	}
	.news-guide .guide-ttl{
		margin-bottom: 1.3125rem;
	}
	.news-guide .guide-ttl .roma{
		font-size: 1.875rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.single-wrap .news-guide{
		padding: 5rem 0;
	}
	.news-guide .guide-ttl{
		margin-bottom: 3rem;
	}
	.news-guide .guide-ttl .roma{
		font-size: 5rem;
	}
}
/*　　一覧　　*/
.archive-wrap .news-guide{
	padding: 10rem 0 5rem 0;
}
.news-guide .news-list{
	max-width: 800px;
	margin: 0 auto;
}
.news-guide .news-list .news-items,
.news-guide .news-list .news-items a{
	position: relative;
	display: flex;
	width: 100%;
	column-gap: 1.25rem;
}
.news-guide .news-list .news-items a:hover::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	background: url(../img/icon/arrow_r.svg) no-repeat top center;
	background-size: contain;
	width: 1.3125rem;
	height: 1.3125rem;
	right: 0;
}
.news-guide .news-list .news-items dt{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	width: 9.75rem;
	border-bottom: 1px solid #E94B34;
	padding: 1.875rem 0;
}
.news-guide .news-list .news-items:first-child dt{
	border-top: 1px solid #E94B34;
}
.news-guide .news-list .news-items dt .date{
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	margin-right: 0.25rem;
}
.news-guide .news-list .news-items dt .category{
	line-height: 0;
}
.news-guide .news-list .news-items dt .category span{
	display: inline-block;
	background: #E94B34;
	color: #FFFFFF;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.125rem 0.625rem 0 0.625rem;
}
.news-guide .news-list .news-items dd{
	width: calc(100% - 11rem);
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.56;
	border-bottom: 1px solid #AFAFAF;
	padding: 1.875rem 1.5rem 1.875rem 0;
}
.news-guide .news-list .news-items:first-child dd{
	border-top: 1px solid #AFAFAF;
}
@media only screen and (max-width: 767px) {
	.archive-wrap .news-guide{
		padding: 5rem 0;
	}
	.news-guide .news-list .news-items,
	.news-guide .news-list .news-items a{
		column-gap: 0.625rem;
	}
	.news-guide .news-list .news-items a:hover::after{
		width: 1rem;
		height: 1rem;
	}
	.news-guide .news-list .news-items dt{
		width: 4.875rem;
		padding: 0.9375rem 0;
	}
	.news-guide .news-list .news-items dt .date{
		font-size: 0.75rem;
		margin-right: 0.125rem;
	}
	.news-guide .news-list .news-items dt .category span{
		font-size: 0.625rem;
		padding: 0.125rem 0.25rem 0 0.25rem;
	}
	.news-guide .news-list .news-items dd{
		width: calc(100% - 5.5rem);
		font-size: 0.75rem;
		padding: 0.9375rem 1.25rem 0.9375rem 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.archive-wrap .news-guide{
		padding: 5rem 0;
	}
	.news-guide .news-list .news-items,
	.news-guide .news-list .news-items a{
		column-gap: 1rem;
	}
	.news-guide .news-list .news-items dt{
		width: 8.75rem;
		padding: 1.5rem 0;
	}
	.news-guide .news-list .news-items dt .date{
		font-size: 0.9375rem;
		margin-right: 0.25rem;
	}
	.news-guide .news-list .news-items dt .category span{
		font-size: 0.8125rem;
		padding: 0.125rem 0.5rem;
	}
	.news-guide .news-list .news-items dd{
		width: calc(100% - 9.75rem);
		font-size: 0.9375rem;
		padding: 1.5rem 1.5rem 1.5rem 0;
	}
}
.news-guide article .entry-header{
	margin-bottom: 3rem;
}
.news-guide article .entry-header h2{
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
}
.news-guide article .entry-header .entry-data{
	margin-bottom: 1rem;
}
.news-guide article .entry-header .date{
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	margin-right: 1.25rem;
}
.news-guide article .entry-header .category{
	line-height: 1.25;
}
.news-guide article .entry-header .category a{
	display: inline-block;
	background: #E94B34;
	color: #FFFFFF;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.125rem 0.625rem 0 0.625rem;
}
.news-guide.single-guide .more_btn{
	margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
	.news-guide article .entry-header{
		margin-bottom: 1.5rem;
	}
	.news-guide article .entry-header h2{
		font-size: 0.9375rem;
	}
	.news-guide article .entry-header .entry-data{
		margin-bottom: 0.625rem;
	}
	.news-guide article .entry-header .date{
		font-size: 0.875rem;
		margin-right: 0.625rem;
	}
	.news-guide article .entry-header .category{
		line-height: 1.25;
	}
	.news-guide article .entry-header .category a{
		font-size: 0.75rem;
		padding: 0.125rem 0.5rem 0 0.5rem;
	}
	.news-guide.single-guide .more_btn{
		margin-top: 2rem;
	}
}
/**
/* 投稿詳細 CSS
----------------------------------------------- */
.single-guide article{
	position: relative;
	background: rgba(255, 255,255, 0.6);
	width: 90%;
	max-width: 1020px;
	margin: 0 auto;
	padding: 4rem 3rem 5rem 3rem;
	overflow: hidden;
	box-shadow: 0px 0px 0.75rem rgba(0, 0, 0, 0.16);
	z-index: 2;
}
.single-guide .entry-body{
	max-width: 860px;
	margin: 0 auto;
}
.single-guide .entry-body h2{
	position: relative;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.05em;
	z-index: 1;
	margin-left: -5rem;
}
.single-guide .entry-body h2:not(:last-child){
	margin-bottom: 0.5rem;
}
.news-guide.single-guide .entry-body h2:not(:last-child){
	margin-bottom: 2.5rem;
}
.single-guide .entry-body h2 span{
	display: inline-block;
	background: #E94B34;
	color: #FFFFFF;
	padding: 0.5rem 1rem 0.375rem 5rem;
}
.single-guide .entry-body h3{
	position: relative;
	color: #1A1A1A;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	margin-top: 2.5rem;
}
.single-guide .entry-body h3 span{
	position: relative;
	display: flex;
	padding-left: 2.5rem;
}
.single-guide .entry-body h3 span::before{
	position: absolute;
	content: "";
	background: #00F500;
	width: 1.875rem;
	height: 1px;
	left: 0;
	top: 0.875rem;
}
.single-guide .entry-body p{
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.875;
	margin-bottom: 1.875rem;
}
.single-guide .entry-body p:last-child{
	margin-bottom: 0;
}
.single-guide .entry-body ol{
	list-style: decimal;
	margin: 2.5rem 0 2.5rem 1.5rem;
}
.single-guide .entry-body ul{
	list-style: disc;
	margin: 2.5rem 0 2.5rem 1.5rem;
}
.single-guide .entry-body ol li,
.single-guide .entry-body ul li{
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.875;
}
.single-guide .entry-body figcaption{
	font-size: 90%;
}
.alignleft{
	display: inline;
	float: left;
}
.alignright{
	display: inline;
	float: right;
}
.aligncenter{
	display: block;
	margin-right: auto;
	margin-left: auto;
}
blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft{
	max-width: 33.125rem;
	margin: 0 2rem 1.75rem -5rem;
}
blockquote.alignright,
.wp-caption.alignright,
img.alignright{
	max-width: 33.125rem;
	margin: 0 -5rem 1.75rem 2rem;
}
blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter{
	clear: both;
}
@media only screen and (max-width: 767px) {
	.single-guide article{
		padding: 2rem 1.125rem 3rem 1.125rem;
	}
	.single-guide .entry-body{
		max-width: 860px;
		margin: 0 auto;
	}
	.single-guide .entry-body h2{
		font-size: 0.9375rem;
		margin-left: -3rem;
	}
	.single-guide .entry-body h2:not(:last-child){
		margin-bottom: 0.375rem;
	}
	.news-guide.single-guide .entry-body h2:not(:last-child){
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-body h2 span{
		padding: 0.5rem 0.625rem 0.25rem 3rem;
	}
	.single-guide .entry-body h3{
		font-size: 0.75rem;
		line-height: 1.65;
		margin-bottom: 0.875rem;
		margin-top: 1.5rem;
	}
	.single-guide .entry-body h3 span{
		padding-left: 1.25rem;
	}
	.single-guide .entry-body h3 span::before{
		width: 0.875rem;
		top: 0.625rem;
	}
	.single-guide .entry-body p{
		font-size: 0.75rem;
		line-height: 1.65;
		margin-bottom: 1.25rem;
	}
	.single-guide .entry-body ol{
		margin: 1.5rem 0 1.5rem 1.25rem;
	}
	.single-guide .entry-body ul{
		margin: 1.5rem 0 1.5rem 1.25rem;
	}
	.single-guide .entry-body ol li,
	.single-guide .entry-body ul li{
		font-size: 0.75rem;
	}
	.alignleft{
		display: inline;
		float: left;
	}
	.alignright{
		display: inline;
		float: right;
	}
	.aligncenter{
		display: block;
		margin-right: auto;
		margin-left: auto;
	}
	blockquote.alignleft,
	.wp-caption.alignleft,
	img.alignleft{
		max-width: 33.125rem;
		margin: 0 2rem 1.75rem -5rem;
	}
	blockquote.alignright,
	.wp-caption.alignright,
	img.alignright{
		max-width: 100%;
		margin: 0 -5rem 1.75rem 2rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.single-guide article{
		padding: 3rem 2rem 3rem 2rem;
	}
	.single-guide .entry-body h2{
		font-size: 1.5rem;
		margin-left: -2rem;
	}
	.single-guide .entry-body h2 span{
		padding: 0.5rem 1rem 0.375rem 2rem;
	}
	.single-guide .entry-body h3{
		font-size: 1.125rem;
	}
	blockquote.alignleft,
	.wp-caption.alignleft,
	img.alignleft{
		max-width: 26.125rem;
	}
	blockquote.alignright,
	.wp-caption.alignright,
	img.alignright{
		max-width: 26.125rem;
	}
}
/*　　お知らせ　　*/
.bottom-news-guide{
	position: relative;
	overflow: hidden;
	padding: 4.25rem 0 2.8125rem 0;
}
.bottom-news-guide::before,
.bottom-news-guide::after{
	content: '';
	position: absolute;
	width: calc(100% + 40rem);
	top: 0;
	height: 100%;
	transition: 0.5s;
}
.bottom-news-guide::before{
	background: url(../img/top/line_2.png) no-repeat;
	background-size: cover;
	left: -6.25rem;
	height: 70%;
	transform-origin: left top;
	transform: scale(0, 1);
}
.bottom-news-guide::after{
	background: url(../img/top/line_1.png) no-repeat;
	background-size: cover;
	right: -6.25rem;
	height: 100%;
	transform-origin: right top;
	transform: scale(0, 1);
}
.bottom-news-guide.active::before,
.bottom-news-guide.active::after{
	transform: scale(1, 1);
}
.bottom-news-guide .news-grid{
	position: relative;
	z-index: 2;
}
.bottom-news-guide .news-box{
	position: absolute;
	width: 45%;
	max-width: 38.5rem;
	top: 3.5rem;
	right: 2.875rem;
	z-index: 10;
}
.bottom-news-guide .guide-ttl{
	margin-bottom: 0.625rem;
}
.bottom-news-guide .guide-ttl .roma{
	color: #4D4D4D;
	font-size: 2.1875rem;
}
.front-wrap .bottom-news-guide .guide-ttl .roma::before{
	content: none;
}
.bottom-news-guide .news-list{
	border-left: 1px solid #1A1A1A;
	padding-left: 2rem;
}
.bottom-news-guide .news-list{
	border-left: 1px solid #1A1A1A;
	padding-left: 2rem;
}
.bottom-news-guide .news-list .news-items:not(:last-child){
	margin-bottom: 1.5rem;
}
.bottom-news-guide .news-list .news-items a{
	display: flex;
	align-items: baseline;
}
.bottom-news-guide .news-list .news-items .date{
	width: 5rem;
	color: #B3B3B3;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.43;
}
.bottom-news-guide .news-list .news-items .ttl{
	width: calc(100% - 5rem);
	color: #333333;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.43;
	padding-left: 1.875rem;
}
.bottom-news-guide .roma-box{
	position: relative;
	width: 90%;
	max-width: 1266px;
}
.bottom-news-guide .bg-roma{
	margin-left: -1.875rem;
}
.bottom-news-guide .text-roma{
	position: absolute;
	bottom: 8.875rem;
	right: -4.125rem;
	font-family: "Oswald", sans-serif;
	color: #00F500;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.4;
}
.bottom-news-guide .more_btn{
	text-align: right;
	margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
	.bottom-news-guide{
		padding: 2.5rem 0;
	}
	.bottom-news-guide::before{
		height: 40%;
	}
	.bottom-news-guide::after{
		height: 42%;
	}
	.bottom-news-guide.active::before,
	.bottom-news-guide.active::after{
		width: calc(100% + 40rem);
		top: auto;
		bottom: 0;
	}
	.bottom-news-guide .news-box{
		position: relative;
		width: calc(100% - 2.5rem);
		max-width: 100%;
		top: auto;
		right: auto;
		margin: 0 auto 1.5rem auto;
	}
	.bottom-news-guide .guide-ttl{
		margin-bottom: 0.625rem;
	}
	.bottom-news-guide .guide-ttl .roma{
		font-size: 1.125rem;
	}
	.bottom-news-guide .news-list{
		padding-left: 1rem;
	}
	.bottom-news-guide .news-list .news-items:not(:last-child){
		margin-bottom: 0.75rem;
	}
	.bottom-news-guide .news-list .news-items .date{
		width: 3.875rem;
		font-size: 0.75rem;
	}
	.bottom-news-guide .news-list .news-items .ttl{
		width: calc(100% - 3.875rem);
		font-size: 0.75rem;
		padding-left: 0.75rem;
	}
	.bottom-news-guide .roma-box{
		width: 100%;
	}
	.bottom-news-guide .bg-roma{
		margin-left: -0.875rem;
	}
	.bottom-news-guide .text-roma{
		bottom: 2.875rem;
		right: 1rem;
		font-size: 0.625rem;
	}
	.bottom-news-guide .more_btn{
		text-align: center;
		margin-top: 1rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.bottom-news-guide{
		padding: 3.25rem 0 4.8125rem 0;
	}
	.bottom-news-guide::before{
		left: -6.25rem;
		height: 70%;
	}
	.bottom-news-guide::after{
		right: -6.25rem;
		height: 100%;
	}
	.bottom-news-guide.active::before,
	.bottom-news-guide.active::after{
		width: calc(100% + 40rem);
	}
	.bottom-news-guide .news-box{
		width: 50%;
		top: 0;
		right: 2.875rem;
	}
	.bottom-news-guide .guide-ttl .roma{
		font-size: 1.875rem;
	}
	.bottom-news-guide .news-list{
		padding-left: 1rem;
	}
	.bottom-news-guide .news-list .news-items:not(:last-child){
		margin-bottom: 1.125rem;
	}
	.bottom-news-guide .news-list .news-items .date{
		width: 4.5rem;
		font-size: 0.9375rem;
	}
	.bottom-news-guide .news-list .news-items .ttl{
		width: calc(100% - 4.5rem);
		font-size: 0.9375rem;
		padding-left: 1.5rem;
	}
	.bottom-news-guide .roma-box{
		width: 84%;
	}
	.bottom-news-guide .bg-roma{
		margin-left: -1.875rem;
	}
	.bottom-news-guide .text-roma{
		bottom: -3.125rem;
		right: -6.125rem;
		font-size: 1.25rem;
	}
	.bottom-news-guide .more_btn{
		margin-top: 1rem;
	}
}
/*　　社員インタビュー　　*/
.interview-detail img.alignleft{
	margin: -7rem 2rem 1rem -5rem;
}
.interview-detail img.alignright{
	margin: -7rem -5rem 1rem 2rem;
}
.interview-detail img.alignleft.mt{
	margin: -10.5rem 2rem 1rem -5rem;
}
.interview-detail img.alignright.mt{
	margin: -10.5rem -5rem 1rem 2rem;
}
@media only screen and (max-width: 767px) {
	.interview-detail img.alignleft{
		float: none;
		margin: 0 0 1rem 0;
	}
	.interview-detail img.alignright{
		float: none;
		margin: 0 0 1rem 0;
	}
	.interview-detail img.alignleft.mt{
		margin: 0 0 1rem 0;
	}
	.interview-detail img.alignright.mt{
		margin: 0 0 1rem 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.interview-detail img.alignleft{
		margin: -6rem 2rem 1rem -5rem;
	}
	.interview-detail img.alignright{
		margin: -6rem -5rem 1rem 2rem;
	}
	.interview-detail img.alignleft.mt{
		margin: -9.5rem 2rem 1rem -5rem;
	}
	.interview-detail img.alignright.mt{
		margin: -9.5rem -5rem 1rem 2rem;
	}
}
/**
/* 事例紹介 CSS
----------------------------------------------- */
/*　　一覧　　*/
.gym-guide{
	padding: 9.375rem 0 10.625rem 0;
}
.gym-guide .guide-ttl{
	margin-bottom: 1.125rem;
}
.gym-guide .guide-ttl h1{
	display: inline-block;
	background: #272179;
	color: #ffffff;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.5rem 2rem 0.25rem 2rem;
	margin-bottom: 0.5rem;
}
.gym-guide .guide-ttl .roma{
	color: #F3AF99;
	font-size: 7.125rem;
}
.gym-guide .commentArea{
	text-align: center;
}
.gym-guide .commentArea p{
	display: inline-block;
	color: #1A1A1A;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 2;
	text-align: left;
}
.gym-guide .category-nav{
	column-gap: 1.625rem;
	margin: 4rem 0 3.25rem 0;
}
.gym-guide .category-nav li a{
	display: block;
	color: #E94B34;
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 1.125;
	border: 1px solid #E94B34;
	padding: 2px 1rem 0 1rem;
}
.gym-guide .category-nav li a.current{
	background: #E94B34;
	color: #FFFFFF;
}
.gym-list{
	column-gap: 1.75rem;
	row-gap: 5rem;
}
.gym-list .card{
	width: calc(33.3333% - 1.1875rem);
}
.gym-list .card .card__thumbnail{
	position: relative;
	overflow: hidden;
	box-shadow: 0.75rem 0.75rem 0.75rem rgba(0, 0, 0, 0.16);
	margin-bottom: 1.5rem;
}
.gym-list .card .card__thumbnail:before{
	content: "";
	padding-top: 66.8%;
	display: block;
	height: 0;
}
.gym-list .card .card__thumbnail img{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	object-fit:cover;
	transition: .5s ease-in-out;
}
.gym-list .card .card__thumbnail img:hover{
	transform: scale(1.1);
}
.gym-list .card .date{
	color: #999999;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}
.gym-list .card .ttl{
	color: #1A1A1A;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
}
.gym-list .card .category{
	margin-top: 0.625rem;
}
.gym-list .card .category span{
	display: inline-block;
	margin-top: 0.25rem;
	margin-right: 0.25rem;
}
.gym-list .card .category span a{
	display: block;
	background: #E94B34;
	color: #FFFFFF;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.25rem 0.5rem 0.125rem 0.5rem;
}
@media only screen and (max-width: 767px) {
	.gym-guide{
		padding: 4rem 0 2.5rem 0;
	}
	.gym-guide .guide-ttl{
		margin-bottom: 1.125rem;
	}
	.gym-guide .guide-ttl h1{
		font-size: 0.9375rem;
		padding: 0.375rem 0.5rem 0.125rem 0.5rem;
		margin-bottom: 0.375rem;
	}
	.gym-guide .guide-ttl .roma{
		font-size: 1.875rem;
	}
	.gym-guide .commentArea{
		margin-left: 0.75rem;
	}
	.gym-guide .commentArea p{
		font-size: 0.75rem;
	}
	.gym-guide .category-nav{
		column-gap: 0.375rem;
		margin: 2.1875rem 0 1.625rem 0;
	}
	.gym-guide .category-nav li a{
		font-size: 0.75rem;
		padding: 2px 0.5rem 0 0.5rem;
	}
	.gym-list{
		column-gap: 0;
		row-gap: 3rem;
	}
	.gym-list .card{
		width: 100%;
	}
	.gym-list .card .card__thumbnail{
		margin-bottom: 1.25rem;
	}
	.gym-list .card .date{
		font-size: 0.75rem;
	}
	.gym-list .card .ttl{
		font-size: 0.9375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.gym-guide{
		padding: 5rem 0 4.625rem 0;
	}
	.gym-guide .guide-ttl h1{
		font-size: 1.5rem;
		padding: 0.5rem 1rem 0.25rem 1rem;
	}
	.gym-guide .guide-ttl .roma{
		font-size: 5rem;
	}
	.gym-guide .commentArea p{
		font-size: 1.125rem;
	}
	.gym-guide .category-nav{
		column-gap: 0.625rem;
		margin: 3rem 0;
	}
	.gym-guide .category-nav li a{
		font-size: 1.5rem;
		padding: 2px 1rem 1px 1rem;
	}
	.gym-list{
		column-gap: 1rem;
		row-gap: 4rem;
	}
	.gym-list .card{
		width: calc(33.3333% - 0.7rem);
	}
	.gym-list .card .ttl{
		font-size: 1.125rem;
	}
}
/*　　詳細　　*/
.gym-single{
	position: relative;
	padding: 8.375rem 0 10.625rem 0;
}
.gym-single .roma{
	position: absolute;
	top: 42.5rem;
	right: 1rem;
	font-family: "TT_Autonomous-ExtraBold";
	color: #F2F2F2;
	font-size: 7.125rem;
	font-weight: 700;
	line-height: 1;
	writing-mode: vertical-rl;
	white-space: nowrap;
}
.gym-single .inner{
	max-width: 1024px;
}
.gym-single .gym-head{
	margin-bottom: 2.625rem;
}
.gym-single .gym-head .date{
	color: #999999;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 1.75rem;
}
.gym-single .gym-head h2{
	color: #1A1A1A;
	font-size: 2.1875rem;
	font-weight: 700;
	line-height: 1.43;
}
.gym-single .gym-head .category{
	margin-top: 1.25rem;
}
.gym-single .gym-head .category span{
	display: inline-block;
	margin-top: 0.25rem;
	margin-right: 0.25rem;
}
.gym-single .gym-head .category span a{
	display: block;
	background: #E94B34;
	color: #FFFFFF;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.25rem 0.5rem 0.125rem 0.5rem;
}
.gym-single .gym-head .imgArea{
	position: relative;
	margin-top: 1.5625rem;
}
.gym-single .gym-head .imgArea::before,
.gym-single .gym-head .imgArea::after{
	content: '';
	position: absolute;
	width: 6.125rem;
	height: 6.125rem;
}
.gym-single .gym-head .imgArea::before{
	background: url(../img/interview/frame-top.png) no-repeat;
	background-size: cover;
	left: 0;
	top: 0;
}
.gym-single .gym-head .imgArea::after{
	background: url(../img/interview/frame-bottom.png) no-repeat;
	background-size: cover;
	right: 0;
	bottom: 0;
}
.gym-single .gym-head .imgArea img{
	width: 100%;
}
.gym-single .gym-body{
	background: rgba(255, 255,255, 0.6);
	padding: 4rem 3rem 5rem 3rem;
	overflow: hidden;
	box-shadow: 0px 0px 0.75rem rgba(0, 0, 0, 0.16);
}
.gym-single .gym-body .gym-body-inner{
	max-width: 850px;
	margin: 0 auto;
}
.gym-single .gym-body h2{
	display: inline-block;
	background: #E94B34;
	color: #FFFFFF;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.625rem 2rem 0.5rem 5.5rem;
	margin-left: -5.85rem;
}
.gym-single .gym-body h2:not(:last-child){
	margin-bottom: 2.25rem;
}
.gym-single .gym-body h3{
	position: relative;
	color: #1A1A1A;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	padding-left: 2.5rem;
	margin-bottom: 1.5rem;
	margin-top: 2.5rem;
}
.gym-single .gym-body h3::before{
	position: absolute;
	content: "";
	background: #00F500;
	width: 1.875rem;
	height: 1px;
	left: 0;
	top: 0.875rem;
}
.gym-single .gym-body p{
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.875;
	margin-bottom: 2rem;
}
.gym-single .gym-body p:last-child{
	margin-bottom: 0;
}
.gym-single .gym-body ol{
	list-style: decimal;
	margin: 2.5rem 0 2.5rem 1.5rem;
}
.gym-single .gym-body ul{
	list-style: disc;
	margin: 2.5rem 0 2.5rem 1.5rem;
}
.gym-single .gym-body ol li,
.gym-single .gym-body ul li{
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.875;
}
.gym-single .gym-body figcaption{
	font-size: 90%;
}
.gym-single .more{
	margin-top: 1.875rem;
}
.gym-single .more li a{
	color: #1A1A1A;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.25;
}
@media only screen and (max-width: 767px) {
	.gym-single{
		padding: 5rem 0 7.5rem 0;
	}
	.gym-single .roma{
		top: 28.5rem;
		right: -1rem;
		font-size: 3.125rem;
	}
	.gym-single .gym-head{
		margin-bottom: 0.875rem;
	}
	.gym-single .gym-head .date{
		font-size: 0.5rem;
		margin-bottom: 0.875rem;
	}
	.gym-single .gym-head h2{
		font-size: 1.125rem;
	}
	.gym-single .gym-head .category{
		margin-top: 0.875rem;
	}
	.gym-single .gym-head .imgArea{
		margin-top: 0.75rem;
	}
	.gym-single .gym-head .imgArea::before,
	.gym-single .gym-head .imgArea::after{
		width: 1.875rem;
		height: 1.875rem;
	}
	.gym-single .gym-body{
		padding: 1.25rem 1rem 2rem 1rem;
	}
	.gym-single .gym-body h2{
		font-size: 0.9375rem;
		padding: 0.5rem 0.5rem 0.25rem 1.125rem;
		margin-left: -1.125rem;
	}
	.gym-single .gym-body h2:not(:last-child){
		margin-bottom: 1.125rem;
	}
	.gym-single .gym-body h3{
		font-size: 0.75rem;
		padding-left: 1.25rem;
		margin-bottom: 0.875rem;
		margin-top: 1.125rem;
	}
	.gym-single .gym-body h3::before{
		width: 0.875rem;
		top: 0.625rem;
	}
	.gym-single .gym-body p{
		font-size: 0.75rem;
		line-height: 1.65;
		margin-bottom: 1.25rem;
	}
	.gym-single .gym-body ol{
		margin: 1.125rem 0 1.125rem 1.25rem;
	}
	.gym-single .gym-body ul{
		margin: 1.125rem 0 1.125rem 1.25rem;
	}
	.gym-single .gym-body ol li,
	.gym-single .gym-body ul li{
		font-size: 0.75rem;
	}
	.gym-single .more{
		margin-top: 0.9375rem;
	}
	.gym-single .more li a{
		font-size: 0.75rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.gym-single{
		padding: 5rem 0 7.5rem 0;
	}
	.gym-single .roma{
		top: 32.5rem;
		right: -1rem;
		font-size: 5.125rem;
	}
	.gym-single .gym-head{
		margin-bottom: 2rem;
	}
	.gym-single .gym-head .date{
		margin-bottom: 1.375rem;
	}
	.gym-single .gym-head h2{
		font-size: 1.875rem;
	}
	.gym-single .gym-head .category{
		margin-top: 1.125rem;
	}
	.gym-single .gym-head .imgArea::before,
	.gym-single .gym-head .imgArea::after{
		width: 4.5rem;
		height: 4.5rem;
	}
	.gym-single .gym-body{
		padding: 3rem 2rem 3rem 2rem;
	}
	.gym-single .gym-body h2{
		font-size: 1.5rem;
		padding: 0.625rem 1rem 0.375rem 3rem;
		margin-left: -3rem;
	}
	.gym-single .gym-body h2:not(:last-child){
		margin-bottom: 1.875rem;
	}
	.gym-single .gym-body h3{
		font-size: 1.125rem;
		margin-bottom: 1.25rem;
		margin-top: 1.875rem;
	}
	.gym-single .gym-body p{
		margin-bottom: 1.5rem;
	}
	.gym-single .gym-body ol{
		margin: 1.5rem 0 1.125rem 1.25rem;
	}
	.gym-single .gym-body ul{
		margin: 1.5rem 0 1.125rem 1.25rem;
	}
	.gym-single .gym-body ol li,
	.gym-single .gym-body ul li{
		font-size: 1rem;
	}
	.gym-single .more{
		margin-top: 1.5rem;
	}
	.gym-single .more li a{
		font-size: 1.125rem;
	}
}
/*　　詳細　　*/
.gym-relation{
	padding: 0 0 14.1875rem 0;
}
.gym-relation .inner{
	max-width: 1024px;
}
.gym-relation .guide-ttl{
	margin-bottom: 4rem;
}
.gym-relation .guide-ttl h2{
	display: inline-block;
	background: #70F149;
	color: #FFFFFF;
	font-size: 2.1875rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.25rem 1.25rem 0.125rem 1.25rem;
}
@media only screen and (max-width: 767px) {
	.gym-relation{
		padding: 0 0 5.5rem 0;
	}
	.gym-relation .guide-ttl{
		margin-bottom: 2rem;
	}
	.gym-relation .guide-ttl h2{
		font-size: 1.125rem;
		padding: 0.375rem 0.625rem 0.125rem 0.625rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.gym-relation{
		padding: 0 0 10rem 0;
	}
	.gym-relation .guide-ttl{
		margin-bottom: 2.5rem;
	}
	.gym-relation .guide-ttl h2{
		font-size: 1.875rem;
		padding: 0.3725rem 1.25rem 0.125rem 1.25rem;
	}
}
/**
/* フォーム CSS
----------------------------------------------- */
.form-guide{
	padding: 9.375rem 0 13.125rem 0;
}
.form-guide .guide-ttl{
	margin-bottom: 0.625rem;
}
.form-guide .guide-ttl h1{
	display: inline-block;
	background: #272179;
	color: #ffffff;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.5rem 2rem 0.25rem 2rem;
	margin-bottom: 0.5rem;
}
.form-guide .guide-ttl .roma{
	color: #F3AF99;
	font-size: 7.125rem;
}
.form-guide .text{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
}
.form-guide .form-box{
	max-width: 800px;
	margin: 5.75rem auto 0 auto;
}
.form-guide .form-box dl:not(:last-child){
	margin-bottom: 3.75rem;
}
.form-guide .form-box dl dt{
	position: relative;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 1rem;
}
.form-guide .form-box dl dt::before{
	position: absolute;
	content: "●";
	color: #E94B34;
	font-size: 0.375rem;
	font-weight: 500;
	line-height: 1.25;
	left: -1rem;
	top: 50%;
	transform: translateY(-50%);
}
.form-guide .form-box dl dt span{
	color: #E94B34;
	font-size: 0.75rem;
	font-weight: 700;
	margin-left: 0.5rem;
}
.form-guide .form-box dl dd{
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.25;
}
.form-guide .form-box dl dd .note{
	color: #808080;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.25;
	padding-left: 1.5rem;
	margin-top: 0.625rem;
}
.form-guide .form-box dl dd ul{
	display: flex;
	column-gap: 1.5rem;
}
.form-guide .form-box dl dd ul li{
	display: flex;
	align-items: flex-end;
	width: calc(33.3333% - 1rem);
}
.form-guide .form-box dl dd ul li .text{
	font-size: 1.25rem;
	margin-left: 0.625rem;
}
.form-guide .form-box dl dd ul li .select-wrap{
	width: calc(100% - 1.5rem);
}
input[type="date"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select{
	width: 100%;
	background: #FFFFFF;
	border: none;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.125;
	padding: 1rem 1.5rem;
}
input[type="date"]::placeholder,
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder{
	color: #B3B3B3;
}
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: #B3B3B3;
}
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: #B3B3B3;
}
textarea{
	height: 20.9375rem;
}
select{
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.select-wrap{
	position: relative;
}
.select-wrap::after{
	background: url(../img/icon/arrow_g2.svg) center center no-repeat;
	background-size: cover;
	content: "";
	position: absolute;
	right: 1.125rem;
	top: 1.125rem;
	width: 1.375rem;
	height: 1.375rem;
	pointer-events: none;
}
.wpcf7-list-item + .wpcf7-list-item{
	margin: 0 0 0 3em;
}
.form-box .acceptance-text{
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.68;
	text-align: center;
	margin-top: 3rem;
}
.form-box .acceptance-text a{
	color: #E94B34;
	text-decoration: underline;
}
.form-box .acceptance-text label{
	display: flex;
	align-items: center;
	column-gap: 1.125rem;
	width: fit-content;
	line-height: 1;
	cursor: pointer;
}
.form-box .acceptance{
	appearance: none;
	position: relative;
	width: 2rem;
	height: 2rem;
	border: 2px solid #E94B34;
	cursor: pointer;
}
.form-box .acceptance:checked{
	background-color: #E94B34;
}
.form-box .acceptance:checked::after{
	content: "";
	position: absolute;
	top: 0.4375rem;
	left: 0.25rem;
	width: 1.25rem;
	height: 0.625rem;
	border-bottom: 3px solid #ffffff;
	border-left: 3px solid #ffffff;
	transform: rotate(-45deg);
}
.submit_btn{
	text-align: center;
	margin-top: 5.625rem;
}
.submit_btn li{
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 28rem;
}
.submit_btn li::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	width: 2.875rem;
	height: 2.875rem;
	right: 2.5rem;
}
.submit_btn li.submit::after{
	background: url(../img/icon/arrow_w.svg) no-repeat top center;
	background-size: contain;
}
.submit_btn li.submit:hover::after{
	background: url(../img/icon/arrow_r2.svg) no-repeat top center;
	background-size: contain;
}
input[type="submit"] {
	display: block;
	width: 100%;
	background: #E94B34;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
	color: #FFFFFF;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: left;
	border-radius: 3.25rem;
	border: none;
	cursor: pointer;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	padding: 1.75rem 1rem 1.75rem 3.125rem;
}
.submit_btn li.submit:hover input[type="submit"]{
	background: #00F500;
	color: #E94B34;
}
.submit_btn li.previous{
	margin-top: 2.6875rem;
}
.submit_btn li.previous::after{
	background: url(../img/icon/arrow_w2.svg) no-repeat top center;
	background-size: contain;
}
.submit_btn li .wpcf7-previous{
	display: block;
	width: 100%;
	background: #B3B3B3;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
	color: #FFFFFF;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: left;
	border-radius: 3.25rem;
	border: none;
	cursor: pointer;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	padding: 1.75rem 1rem 1.75rem 3.125rem;
}
.wpcf7-spinner{
	display: none;
}
@media only screen and (max-width: 767px) {
	.form-guide{
		padding: 4rem 0 5rem 0;
	}
	.form-guide .guide-ttl{
		margin-bottom: 0.5rem;
	}
	.form-guide .guide-ttl h1{
		font-size: 0.9375rem;
		padding: 0.375rem 0.5rem 0.125rem 0.5rem;
		margin-bottom: 0.375rem;
	}
	.form-guide .guide-ttl .roma{
		font-size: 1.875rem;
	}
	.form-guide .text{
		font-size: 0.75rem;
	}
	.form-guide .form-box{
		margin: 2rem auto 0 auto;
	}
	.form-guide .form-box dl:not(:last-child){
		margin-bottom: 2.8125rem;
	}
	.form-guide .form-box dl dt{
		font-size: 0.75rem;
		margin-bottom: 0.5rem;
	}
	.form-guide .form-box dl dt::before{
		font-size: 0.25rem;
		left: -0.5rem;
	}
	.form-guide .form-box dl dt span{
		font-size: 0.625rem;
		margin-left: 0.375rem;
	}
	.form-guide .form-box dl dd{
		font-size: 0.75rem;
	}
	.form-guide .form-box dl dd ul{
		column-gap: 0.5rem;
	}
	.form-guide .form-box dl dd ul li{
		width: calc(33.3333% - 0.35rem);
	}
	.form-guide .form-box dl dd ul li .text{
		font-size: 0.75rem;
		margin-left: 0.375rem;
	}
	.form-guide .form-box dl dd ul li .select-wrap{
		width: calc(100% - 0.5rem);
	}
	.form-guide .form-box dl dd .note{
		font-size: 0.375rem;
		padding-left: 0.75rem;
		margin-top: 0.375rem;
	}
	input[type="date"],
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="url"],
	textarea,
	select{
		font-size: 0.75rem;
		padding: 0.75rem 0.75rem 0.625rem 0.75rem;
	}
	textarea{
		height: 9.375rem;
	}
	.select-wrap:after {
		right: 0.875rem;
		top: 0.75rem;
		width: 0.875rem;
		height: 0.875rem;
	}
	.form-box .acceptance-text{
		font-size: 0.75rem;
		margin-top: 2.8125rem;
	}
	.form-box .acceptance-text label{
		column-gap: 0.5rem;
	}
	.form-box .acceptance{
		width: 1rem;
		height: 1rem;
		border: 1px solid #E94B34;
	}
	.form-box .acceptance:checked::after{
		top: 0.325rem;
		left: 0.15rem;
		width: 0.625rem;
		height: 0.25rem;
		border-bottom: 2px solid #ffffff;
		border-left: 2px solid #ffffff;
	}
	.submit_btn{
		margin-top: 2rem;
	}
	.submit_btn li{
		max-width: 14rem;
	}
	.submit_btn li.previous{
		margin-top: 1.25rem;
	}
	.submit_btn li::after{
		width: 1.5rem;
		height: 1.5rem;
		right: 1.25rem;
	}
	input[type="submit"],
	.submit_btn li .wpcf7-previous{
		font-size: 0.9375rem;
		line-height: 1.25;
		padding: 0.9375rem 0.9375rem 0.9375rem 1.5rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.form-guide{
		padding: 5rem 0 7.5rem 0;
	}
	.form-guide .guide-ttl h1{
		font-size: 1.5rem;
		padding: 0.5rem 1rem 0.25rem 1rem;
	}
	.form-guide .guide-ttl .roma{
		font-size: 5rem;
	}
	.form-guide .text{
		font-size: 1rem;
	}
	.form-guide .form-box{
		max-width: 42rem;
	}
	.form-guide .form-box dl dt{
		font-size: 1.125rem;
	}
	.form-guide .form-box dl dd{
		font-size: 1.125rem;
	}
	.form-guide .form-box dl dd{
		font-size: 1.125rem;
	}
	.form-guide .form-box dl dd ul{
		column-gap: 1rem;
	}
	.form-guide .form-box dl dd ul li{
		width: calc(33.3333% - 7rem);
	}
	.form-guide .form-box dl dd ul li .text{
		font-size: 1.125rem;
		margin-left: 0.5rem;
	}
	.form-guide .form-box dl dd ul li .select-wrap{
		width: calc(100% - 1rem);
	}
	input[type="date"],
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="url"],
	textarea,
	select{
		font-size: 1.125rem;
		padding: 1rem 1.5rem 0.875rem 1.5rem;
	}
	textarea{
		height: 15rem;
	}
	.select-wrap:after {
		top: 0.9375rem;
	}
	.form-box .acceptance-text{
		font-size: 1.125rem;
		margin-top: 3rem;
	}
	.form-box .acceptance-text label{
		column-gap: 1.125rem;
	}
	.form-box .acceptance{
		width: 1.875rem;
		height: 1.875rem;
	}
	.form-box .acceptance:checked::after{
		top: 0.375rem;
	}
	.submit_btn{
		margin-top: 3.625rem;
	}
	.submit_btn li{
		max-width: 20.9375rem;
	}
	.submit_btn li.previous{
		margin-top: 1.875rem;
	}
	.submit_btn li::after{
		width: 2.5rem;
		height: 2.5rem;
		right: 1.5rem;
	}
	input[type="submit"],
	.submit_btn li .wpcf7-previous{
		font-size: 1.375rem;
		padding: 1.5rem 1rem 1.5rem 2.5rem;
	}
}
/*　　完了ページ　　*/
.thanks-guide{
	padding-top: 1rem;
}
.thanks-guide h3{
	color: #1A1A1A;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	margin-bottom: 2.25rem;
}
.thanks-guide p{
	color: #1A1A1A;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
}
.thanks-guide .block_btn{
	text-align: center;
	margin-top: 4.625rem;
}
.thanks-guide .block_btn li{
	max-width: 28rem;
}
.thanks-guide .block_btn li a{
	background: #E94B34;
	color: #FFFFFF;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 1.75rem 1rem 1.75rem 3.125rem;
}
.thanks-guide .block_btn li a:hover{
	background: #00F500;
	color: #E94B34;
}
.thanks-guide .block_btn li a::after{
	background: url(../img/icon/arrow_w.svg) no-repeat top center;
	background-size: contain;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	width: 2.875rem;
	height: 2.875rem;
	right: 2.5rem;
}
.thanks-guide .block_btn li a:hover::after{
	background: url(../img/icon/arrow_r.svg) no-repeat top center;
	background-size: contain;
	transform: rotate(330deg);
}
@media only screen and (max-width: 767px) {
	.thanks-guide{
		padding-top: 4.5rem;
	}
	.thanks-guide h3{
		font-size: 0.9375rem;
		margin-bottom: 2.25rem;
	}
	.thanks-guide p{
		font-size: 0.75rem;
	}
	.thanks-guide .block_btn{
		margin-top: 3.125rem;
	}
	.thanks-guide .block_btn li{
		max-width: 14rem;
	}
	.thanks-guide .block_btn li a{
		font-size: 0.9375rem;
		line-height: 1.25;
		padding: 0.9375rem 0.9375rem 0.9375rem 1.5rem;
	}
	.thanks-guide .block_btn li a::after{
		width: 1.5rem;
		height: 1.5rem;
		right: 1.25rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.thanks-guide{
		padding-top: 3rem;
	}
	.thanks-guide h3{
		font-size: 1.5rem;
		margin-bottom: 2rem;
	}
	.thanks-guide p{
		font-size: 1.125rem;
	}
	.thanks-guide .block_btn{
		margin-top: 3.5rem;
	}
	.thanks-guide .block_btn li{
		max-width: 20.9375rem;
	}
	.thanks-guide .block_btn li a{
		font-size: 1.375rem;
		padding: 1.5rem 1rem 1.5rem 2.5rem;
	}
	.thanks-guide .block_btn li a::after{
		width: 2.5rem;
		height: 2.5rem;
		right: 1.5rem;
	}
}
/**
/* 個人情報保護指針 CSS
----------------------------------------------- */
.privacy-guide{
	padding: 9.375rem 0 10.625rem 0;
}
.privacy-guide .inner{
	max-width: 50rem;
}
.privacy-guide .guide-ttl{
	margin-bottom: 5.5rem;
}
.privacy-guide .guide-ttl h1{
	display: inline-block;
	background: #272179;
	color: #ffffff;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.5rem 2rem 0.25rem 2rem;
}
.privacy-guide .entry p{
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.875;
}
.privacy-guide .privacy-about.text{
	margin-bottom: 3.125rem;
}
.privacy-guide .privacy-content-list:not(:last-child){
	margin-bottom: 3.125rem;
}
.privacy-guide .privacy-content-list p strong{
	display: inline-block;
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 1.125rem;
}
.privacy-guide .privacy-content-list ol{
	padding-left: 1.25rem;
}
.privacy-guide .privacy-content-list ol{
	list-style-type: decimal;
}
.privacy-guide .privacy-content-list ol li ol{
	list-style-type: lower-roman;
	padding-left: 0;
}
.privacy-guide .privacy-content-list ul{
	list-style-type: disc;
}
.privacy-guide .privacy-content-list ol li,
.privacy-guide .privacy-content-list ul li{
	color: #1A1A1A;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.875;
}
@media only screen and (max-width: 767px) {
	.privacy-guide{
		padding: 5rem 0 2.5rem 0;
	}
	.privacy-guide .inner{
		width: calc(100% - 4rem);
	}
	.privacy-guide .guide-ttl{
		margin-bottom: 2rem;
	}
	.privacy-guide .guide-ttl h1{
		font-size: 0.9375rem;
		padding: 0.375rem 0.9375rem 0.125rem 0.9375rem;
	}
	.privacy-guide .entry p{
		font-size: 0.6875rem;
	}
	.privacy-guide .privacy-about.text{
		margin-bottom: 2.1875rem;
	}
	.privacy-guide .privacy-content-list:not(:last-child){
		margin-bottom: 1.5625rem;
	}
	.privacy-guide .privacy-content-list p strong{
		font-size: 0.75rem;
		margin-bottom: 0.5rem;
	}
	.privacy-guide .privacy-content-list ol{
		padding-left: 0.75rem;
	}
	.privacy-guide .privacy-content-list ol li,
	.privacy-guide .privacy-content-list ul li{
		font-size: 0.625rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.privacy-guide{
		padding: 6rem 0 4.625rem 0;
	}
	.privacy-guide .inner{
		max-width: 45rem;
	}
	.privacy-guide .guide-ttl{
		margin-bottom: 3rem;
	}
	.privacy-guide .guide-ttl h1{
		font-size: 1.5rem;
	}
}
/**
/* エラー CSS
----------------------------------------------- */
.error-guide{
	padding: 9.375rem 0 13.125rem 0;
}
.error-guide .guide-ttl{
	margin-bottom: 1.25rem;
}
.error-guide .guide-ttl .roma{
	color: #F3AF99;
	font-size: 7.125rem;
}
.error-guide .entry p{
	color: #1A1A1A;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
}
.error-guide .entry .error_url{
	padding: 3rem 0;
}
.error-guide .entry .block_btn{
	margin-top: 4rem;
}
.error-guide .entry .block_btn{
	text-align: center;
	margin-top: 4.625rem;
}
.error-guide .entry .block_btn li{
	max-width: 28rem;
}
.error-guide .entry .block_btn li a{
	background: #E94B34;
	color: #FFFFFF;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 1.75rem 1rem 1.75rem 3.125rem;
}
.error-guide .entry .block_btn li a:hover{
	background: #00F500;
	color: #E94B34;
}
.error-guide .entry .block_btn li a::after{
	background: url(../img/icon/arrow_w.svg) no-repeat top center;
	background-size: contain;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	width: 2.875rem;
	height: 2.875rem;
	right: 2.5rem;
}
.error-guide .entry .block_btn li a:hover::after{
	background: url(../img/icon/arrow_r.svg) no-repeat top center;
	background-size: contain;
	transform: rotate(330deg);
}
@media only screen and (max-width: 767px) {
	.error-guide{
		padding: 4rem 0 3.5rem 0;
	}
	.error-guide .guide-ttl .roma{
		font-size: 1.875rem;
	}
	.error-guide .entry p{
		font-size: 0.75rem;
	}
	.error-guide .entry .error_url{
		padding: 1rem 0;
	}
	.error-guide .entry .block_btn{
		margin-top: 4rem;
	}
	.error-guide .entry .block_btn{
		margin-top: 2rem;
	}
	.error-guide .entry .block_btn li{
		max-width: 14rem;
	}
	.error-guide .entry .block_btn li a{
		font-size: 0.9375rem;
		line-height: 1.25;
		padding: 0.9375rem 0.9375rem 0.9375rem 1.5rem;
	}
	.error-guide .entry .block_btn li a::after{
		width: 1.5rem;
		height: 1.5rem;
		right: 1.25rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.error-guide{
		padding: 5rem 0 4.625rem 0;
	}
	.error-guide .guide-ttl .roma{
		font-size: 5rem;
	}
	.error-guide .entry p{
		font-size: 1.125rem;
	}
	.error-guide .entry .error_url{
		padding: 2.5rem 0;
	}
	.error-guide .entry .block_btn{
		margin-top: 4rem;
	}
	.error-guide .entry .block_btn{
		margin-top: 3.5rem;
	}
	.error-guide .entry .block_btn li{
		max-width: 20.9375rem;
	}
	.error-guide .entry .block_btn li a{
		font-size: 1.375rem;
		padding: 1.5rem 1rem 1.5rem 2.5rem;
	}
	.error-guide .entry .block_btn li a::after{
		width: 2.5rem;
		height: 2.5rem;
		right: 1.5rem;
	}
}