@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);
}
.decoration-text-container{
	position: relative;
}
.decoration-text-container .decoration-text{
	display: flex;
	color: #f2f2f2;
	font-size: 11.875rem;
	font-weight: 900;
	line-height: 1.175;
	white-space: nowrap;
	overflow: hidden;
}
.decoration-text-container .decoration-text div:first-child {
	-webkit-animation: loopLeft1 80s -40s linear infinite;
	animation: loopLeft1 80s -40s linear infinite;
}
.decoration-text-container .decoration-text div:last-child {
	-webkit-animation: loopLeft2 80s linear infinite;
	animation: loopLeft2 80s linear infinite;
}
@-webkit-keyframes loopLeft1 {
	0% {
		-webkit-transform: translateX(100%);
			transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
	}
}
@keyframes loopLeft2 {
	0% {
		-webkit-transform: translateX(0);
			transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-200%);
			transform: translateX(-200%);
	}
}
@media only screen and (max-width: 767px) {
	.decoration-text-container .decoration-text{
		font-size: 5.9375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.decoration-text-container .decoration-text{
		font-size: 7.5rem;
	}
}
.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); }
/**
/* トップページ CSS
----------------------------------------------- */
/*　　MV　　*/
.first-view{
	height: calc(100vh - 8.4375rem);
	margin-top: 8.4375rem;
}
.first-view.is-hidden{
	transform: translate3d(0, -50%, 0);
	pointer-events: none;
}
.first-view .mv-bg{
	position: absolute;
	width: 100%;
	max-width: 1274px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.first-view .mv-bg video{
	width: 100%;
}
.first-view .view-mv{
	width: 100%;
	padding: 0 3rem;
}
.first-view .view-text{
	width: 30%;
	margin-top: 4%;
}
.first-view .view-text p{
	color: #999999;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 2.5;
}
.first-view .view-text ul{
	border-left: 1px solid #999999;
	padding-left: 1rem;
	margin-top: 1rem;
}
.first-view .view-text ul li{
	color: #999999;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.5;
}
.first-view .view-text ul li + li{
	margin-top: 0.625rem;
}
.first-view .view-ttl{
	position: absolute;
	left: 3rem;
	top: 50%;
	transform: translateY(-50%);
}
.first-view .view-ttl p{
	color: transparent;
	font-size: 8.875rem;
	font-weight: 900;
	line-height: 1.35;
	-webkit-text-stroke: 1px #1a1a1a;
	text-stroke: 1px #1a1a1a;
}
@media only screen and (max-width: 1300px) {
	.first-view .view-ttl p{
		font-size: 6rem;
	}
}
@media only screen and (max-width: 767px) {
	.first-view{
		height: calc(100svh - 5rem);
		margin-top: 5rem;
	}
	.first-view .view-mv{
		padding: 0 1.5rem;
	}
	.first-view .view-text{
		width: 100%;
		margin-top: 2rem;
	}
	.first-view .view-text p{
		font-size: 0.75rem;
		line-height: 2;
	}
	.first-view .view-text ul li{
		font-size: 0.75rem;
	}
	.first-view .view-text ul li + li{
		margin-top: 0.5rem;
	}
	.first-view .view-ttl{
		width: 100%;
		left: 0;
		top: auto;
		bottom: 1.5rem;
		transform: translateY(0%);
	}
	.first-view .view-ttl p{
		font-size: 2.125rem;
		text-align: center;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.first-view{
		height: calc(100svh - 7rem);
		margin-top: 7rem;
	}
	.first-view .view-mv{
		padding: 0 1.5rem;
	}
	.first-view .view-text{
		width: 35%;
		margin-top: 8%;
	}
	.first-view .view-text p{
		font-size: 0.875rem;
		line-height: 2.5;
	}
	.first-view .view-text ul{
		padding-left: 1rem;
		margin-top: 1rem;
	}
	.first-view .view-text ul li{
		font-size: 0.875rem;
		line-height: 1.5;
	}
	.first-view .view-text ul li + li{
		margin-top: 0.625rem;
	}
	.first-view .view-ttl{
		left: 1.5rem;
	}
	.first-view .view-ttl p{
		font-size: 4.5rem;
	}
}
.front-wrap .main-container{
	background-color: #ffffff;
}
.front-wrap .main-container.is-show{
	transform: translate3d(0, 8.4375rem, 0);
}
/*　　New Work　　　*/
.front-wrap .work-guide{
	border-bottom: 1px solid #666666;
	padding-bottom: 7.5rem;
	margin-bottom: 3.75rem;
}
.work-guide .work-bg{
	position: absolute;
	width: 100%;
	max-width: 1274px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.work-guide .work-bg video{
	width: 100%;
}
.work-guide .decoration-text-container{
	margin-bottom: 1.5rem;
}
.front-wrap .work-guide .view-ttl{
	width: 50%;
	padding: 0 3rem;
}
.front-wrap .work-guide .view-ttl p{
	color: transparent;
	font-size: 8.75rem;
	font-weight: 900;
	line-height: 1.07;
	-webkit-text-stroke: 1px #1a1a1a;
	text-stroke: 1px #1a1a1a;
}
.front-wrap .work-guide .work-box{
	width: 50%;
}
@media only screen and (max-width: 767px) {
	.front-wrap .work-guide{
		padding-top: 1rem;
		padding-bottom: 4rem;
		margin-bottom: 1.125rem;
	}
	.work-guide .work-bg{
		width: 80%;
		top: -2rem;
		left: 45%;
	}
	.work-guide .decoration-text-container{
		margin-bottom: 1.5rem;
	}
	.front-wrap .work-guide .view-ttl{
		width: 100%;
		text-align: center;
		padding: 0 1.5rem;
		margin-bottom: 3.125rem;
	}
	.front-wrap .work-guide .view-ttl p{
		font-size: 3.125rem;
	}
	.front-wrap .work-guide .work-box{
		width: 100%;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-wrap .work-guide{
		padding-bottom: 5.5rem;
		margin-bottom: 2.5rem;
	}
	.work-guide .work-bg{
		width: 80%;
		top: -2rem;
		left: 45%;
	}
	.work-guide .decoration-text-container{
		margin-bottom: 1rem;
	}
	.front-wrap .work-guide .view-ttl{
		padding: 0 1rem 0 2rem;
	}
	.front-wrap .work-guide .view-ttl p{
		font-size: 5.75rem;
	}
}
/*　　ナビ　　*/
.nav-guide{
	overflow: hidden;
}
.nav-guide .nav-head{
	padding: 0 1rem;
	margin-bottom: 5.625rem;
}
.nav-guide .nav-head .roma{
	color: #1a1a1a;
	font-size: 10rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 3.75rem;
}
.nav-guide .nav-head .contentArea{
	width: 90%;
	max-width: 42.5rem;
	margin: 0 auto;
}
.nav-guide .nav-head .contentArea p{
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 2.4;
}
.nav-guide .nav-head .contentArea p span{
	color: #ab1e36;
}
.nav-guide .nav-items{
	position: relative;
	max-width: 1300px;
}
.nav-guide .nav-items:not(:last-child){
	margin-bottom: 9.375rem;
}
.nav-guide .nav-items .nav-top{
	position: relative;
}
.nav-guide .nav-items .imageArea{
	width: 60.5rem;
}
.nav-guide .nav-items:nth-child(odd) .imageArea{
	margin-left: auto;
}
.nav-guide .nav-items .contentArea{
	position: absolute;
	width: 100%;
	top: 30%;
}
.nav-guide .nav-items:nth-child(odd) .contentArea{
	left: 0;
}
.nav-guide .nav-items:nth-child(even) .contentArea{
	right: 0;
}
.nav-guide .nav-items:nth-child(3) .contentArea{
	top: 24%;
}
.nav-guide .nav-items .contentArea.active::before{
	background: #000000;
	content: '';
	position: absolute;
	width: 0;
	top: 1.5rem;
	transition: 0.5s;
	animation: bgFade 2s forwards;
}
@keyframes bgFade{
	0% {
		width: 0; /* 開始時の幅 */
	}
	50% {
		width: 100%; /* 半分の時間で幅を広げる */
		opacity: 1; /* 完全に表示されている状態 */
	}
	100% {
		width: 100%; /* 終了時の幅は維持 */
		opacity: 0; /* 完全にフェードアウトさせる */
	}
}
.nav-guide .nav-items:nth-child(odd) .contentArea::before{
	left: -100%;
}
.nav-guide .nav-items:nth-child(even) .contentArea::before{
	right: -100%;
}
.nav-guide .nav-items:nth-child(1) .contentArea.active::before{
	width: 80rem;
	height: 15rem;
}
.nav-guide .nav-items:nth-child(2) .contentArea.active::before{
	width: 85rem;
	height: 14rem;
}
.nav-guide .nav-items:nth-child(3) .contentArea.active::before{
	width: 80rem;
	height: 14rem;
}
.nav-guide .nav-items:nth-child(odd) .contentArea.active::before{
	left: -15rem;
}
.nav-guide .nav-items:nth-child(even) .contentArea.active::before{
	right: -30rem;
}
.nav-guide .nav-items .roma{
	position: relative;
	color: transparent;
	font-size: 11.875rem;
	font-weight: 900;
	line-height: 1.25;
	-webkit-text-stroke: 1px #1a1a1a;
	text-stroke: 1px #1a1a1a;
	margin-bottom: 3rem;
}
.nav-guide .nav-items .contentArea.active .roma{
	animation: textFade 2s forwards;
}
@keyframes textFade{
	0% {
		-webkit-text-stroke: 1px #ffffff;
		text-stroke: 1px #ffffff;
	}
	50% {
		-webkit-text-stroke: 1px #ffffff;
		text-stroke: 1px #ffffff;
	}
	100% {
		-webkit-text-stroke: 1px #1a1a1a;
		text-stroke: 1px #1a1a1a;
	}
}
.nav-guide .nav-items:nth-child(even) .roma{
	text-align: right;
}
.nav-guide .nav-items:nth-child(even) .nav-list{
	margin-left: 63.5rem;
}
.nav-guide .nav-items .nav-list li + li{
	margin-top: 0.75rem;
}
.nav-guide .nav-items .nav-list li a{
	color: #000000;
	font-size: 1.375rem;
	font-weight: 400;
	line-height: 1.35;
}
.nav-guide .nav-items .p-text{
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 2.6;
	margin-top: 3.125rem;
}
.nav-guide .nav-items:nth-child(odd) .p-text{
	padding-right: 27rem;
}
.nav-guide .nav-items:nth-child(even) .p-text{
	padding-left: 27rem;
}
.nav-guide .nav-items .block_btn{
	position: absolute;
	top: 45rem;
}
.nav-guide .nav-items:nth-child(odd) .block_btn{
	right: 0;
}
.nav-guide .nav-items:nth-child(even) .block_btn{
	left: 0;
}
@media only screen and (max-width: 1300px) {
	.nav-guide .nav-items .imageArea{
		width: 50.5rem;
	}
	.nav-guide .nav-items .contentArea{
		top: 25%;
	}
	.nav-guide .nav-items:nth-child(3) .contentArea{
		top: 18%;
	}
	.nav-guide .nav-items:nth-child(even) .nav-list{
		margin-left: 52.5rem;
	}
	.nav-guide .nav-items .block_btn{
		top: 37rem;
	}
}
@media only screen and (max-width: 767px) {
	.nav-guide .nav-head{
		display: flex;
		padding: 0 1rem;
		margin-bottom: 1.5rem;
	}
	.nav-guide .nav-head .roma{
		font-size: 2.1875rem;
		writing-mode: vertical-rl;
		margin-bottom: 0;
	}
	.nav-guide .nav-items:nth-child(even) .roma{
		text-align: left;
	}
	.nav-guide .nav-head .contentArea{
		width: 90%;
		max-width: 42.5rem;
		margin: 0 auto;
	}
	.nav-guide .nav-head .contentArea p{
		font-size: 0.875rem;
		line-height: 2;
		padding-left: 1rem;
	}
	.nav-guide .nav-head .contentArea p span{
		color: #ab1e36;
	}
	.nav-guide .nav-items{
		width: 100%;
	}
	.nav-guide .nav-items:not(:last-child){
		margin-bottom: 3.375rem;
	}
	.nav-guide .nav-items .nav-top{
		position: relative;
	}
	.nav-guide .nav-items .imageArea{
		width: calc(100% + 1.5rem);
		margin-left: -1.5rem;
	}
	.nav-guide .nav-items:nth-child(odd) .imageArea{
		margin-left: 0;
		margin-right: -1.5rem;
	}
	.nav-guide .nav-items .contentArea{
		position: relative;
		width: 100%;
		top: auto;
	}
	.nav-guide .nav-items:nth-child(odd) .contentArea{
		left: auto;
	}
	.nav-guide .nav-items:nth-child(even) .contentArea{
		right: auto;
		text-align: left;
	}
	.nav-guide .nav-items:nth-child(3) .contentArea{
		top: 24%;
	}
	.nav-guide .nav-items .contentArea::before{
		top: 0.255rem;
	}
	.nav-guide .nav-items:nth-child(even) .contentArea::before{
		right: auto;
		left: -100%;
	}
	.nav-guide .nav-items:nth-child(1) .contentArea.active::before{
		width: 27rem;
		height: 5.5rem;
	}
	.nav-guide .nav-items:nth-child(2) .contentArea.active::before{
		width: 27rem;
		height: 5rem;
	}
	.nav-guide .nav-items:nth-child(3) .contentArea.active::before{
		width: 27rem;
		height: 5rem;
	}
	.nav-guide .nav-items:nth-child(odd) .contentArea.active::before{
		left: -5rem;
	}
	.nav-guide .nav-items:nth-child(even) .contentArea.active::before{
		right: auto;
		left: -5rem;
	}
	.nav-guide .nav-items .roma{
		font-size: 4rem;
		margin-bottom: 1.5rem;
	}
	.nav-guide .nav-items:nth-child(even) .nav-list{
		margin-left: 0;
	}
	.nav-guide .nav-items .nav-list li{
		text-align: left;
	}
	.nav-guide .nav-items .nav-list li + li{
		margin-top: 0.375rem;
	}
	.nav-guide .nav-items .nav-list li a{
		font-size: 0.875rem;
	}
	.nav-guide .nav-items .p-text{
		font-size: 0.875rem;
		line-height: 2;
		margin-top: 1.25rem;
	}
	.nav-guide .nav-items:nth-child(odd) .p-text{
		padding-right: 0;
	}
	.nav-guide .nav-items:nth-child(even) .p-text{
		padding-left: 0;
	}
	.nav-guide .nav-items .block_btn{
		position: relative;
		top: auto;
		text-align: right;
		margin-top: 1rem;
	}
	.nav-guide .nav-items:nth-child(odd) .block_btn{
		right: auto;
	}
	.nav-guide .nav-items:nth-child(even) .block_btn{
		lef: auto;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.nav-guide .nav-head{
		margin-bottom: 2.625rem;
	}
	.nav-guide .nav-head .roma{
		font-size: 6rem;
		margin-bottom: 2.75rem;
	}
	.nav-guide .nav-head .contentArea p{
		font-size: 1.125rem;
	}
	.nav-guide .nav-items{
		width: 100%;
	}
	.nav-guide .nav-items:not(:last-child){
		margin-bottom: 4.375rem;
	}
	.nav-guide .nav-items .imageArea{
		width: 36.5rem;
	}
	.nav-guide .nav-items .contentArea{
		top: 25%;
	}
	.nav-guide .nav-items:nth-child(3) .contentArea{
		top: 15%;
	}
	.nav-guide .nav-items .contentArea::before{
		top: 0.5rem;
	}
	.nav-guide .nav-items:nth-child(1) .contentArea.active::before{
		width: 62rem;
		height: 11rem;
	}
	.nav-guide .nav-items:nth-child(2) .contentArea.active::before{
		width: 72rem;
		height: 10rem;
	}
	.nav-guide .nav-items:nth-child(3) .contentArea.active::before{
		width: 62rem;
		height: 10rem;
	}
	.nav-guide .nav-items:nth-child(odd) .contentArea.active::before{
		left: -15rem;
	}
	.nav-guide .nav-items:nth-child(even) .contentArea.active::before{
		right: -30rem;
	}
	.nav-guide .nav-items .roma{
		font-size: 8rem;
		margin-bottom: 1rem;
	}
	.nav-guide .nav-items:nth-child(even) .nav-list{
		margin-left: 38.5rem;
	}
	.nav-guide .nav-items .nav-list li + li{
		margin-top: 0.5rem;
	}
	.nav-guide .nav-items .nav-list li a{
		font-size: 1.125rem;
	}
	.nav-guide .nav-items .p-text{
		margin-top: 2.125rem;
	}
	.nav-guide .nav-items:nth-child(odd) .p-text{
		padding-right: 12rem;
	}
	.nav-guide .nav-items:nth-child(even) .p-text{
		padding-left: 12rem;
	}
	.nav-guide .nav-items .block_btn{
		top: 26rem;
	}
}
/*　　Upaltyについて　　*/
.about-nav-guide .nav-items{
	position: relative;
	width: 90%;
	max-width: 1300px;
}
.about-nav-guide .nav-items .guide-ttl{
	margin-bottom: 3rem;
}
.about-nav-guide .nav-items .guide-ttl .roma{
	color: #1a1a1a;
	font-size: 10rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 1rem;
}
.about-nav-guide .nav-items .guide-ttl h2{
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.35;
}
.about-nav-guide .nav-items .p-text{
	font-size: 1.375rem;
	font-weight: 400;
	line-height: 2.18;
	padding-right: 15rem;
}
.about-nav-guide .nav-items .block_btn{
	position: absolute;
	bottom: 0;
	right: 0;
}
@media only screen and (max-width: 767px) {
	.about-nav-guide{
		padding-top: 3rem;
	}
	.about-nav-guide .decoration-text-container{
		margin-bottom: 3rem;
	}
	.about-nav-guide .nav-items{
		width: 100%;
	}
	.about-nav-guide .nav-items .guide-ttl{
		margin-bottom: 2rem;
	}
	.about-nav-guide .nav-items .guide-ttl .roma{
		font-size: 5rem;
		margin-bottom: 1rem;
	}
	.about-nav-guide .nav-items .guide-ttl h2{
		font-size: 0.75rem;
	}
	.about-nav-guide .nav-items .p-text{
		font-size: 0.875rem;
		line-height: 2;
		padding-right: 0;
	}
	.about-nav-guide .nav-items .block_btn{
		position: relative;
		top: auto;
		text-align: right;
		margin-top: 1rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.about-nav-guide .nav-items{
		width: 100%;
	}
	.about-nav-guide .nav-items .guide-ttl{
		margin-bottom: 2rem;
	}
	.about-nav-guide .nav-items .guide-ttl .roma{
		font-size: 6rem;
		margin-bottom: 1rem;
	}
	.about-nav-guide .nav-items .guide-ttl h2{
		font-size: 1rem;
	}
	.about-nav-guide .nav-items .p-text{
		font-size: 1.125rem;
		padding-right: 11rem;
	}
}
/**
/* 下層ページ共通 CSS
----------------------------------------------- */
/*　　ページヘッダー　　*/
.page-view{
	padding: 1.5rem 0 3.5rem 0;
	margin-top: 9.375rem;
}
.page-view .view-ttl h1{
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.35;
}
.page-view .view-ttl .roma{
	color: transparent;
	font-size: 11.875rem;
	font-weight: 900;
	line-height: 1.25;
	-webkit-text-stroke: 1px #1a1a1a;
	text-stroke: 1px #1a1a1a;
}
@media only screen and (max-width: 1300px) {
	.page-view .view-ttl .roma{
		font-size: 9.875rem;
	}
}
@media only screen and (max-width: 767px) {
	.page-view{
		padding: 3.5rem 0 1.5rem 0;
		margin-top: 4.85rem;
	}
	.page-view .view-ttl h1{
		font-size: 0.75rem;
	}
	.page-view .view-ttl .roma{
		font-size: 4.0625rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.page-view{
		padding: 1.5rem 0 3.5rem 0;
		margin-top: 9.375rem;
	}
	.page-view .view-ttl h1{
		font-size: 1rem;
	}
	.page-view .view-ttl .roma{
		font-size: 6.875rem;
	}
}
/**
/* 私たちについて CSS
----------------------------------------------- */
/*　　メッセージ　　*/
.about-guide{
	background: url(../img/about/message_bg.png) no-repeat;
	background-size: cover;
	padding: 6.25rem 0;
}
.about-guide .message-box{
	width: 48.75rem;
	margin-left: auto;
}
.about-guide .message-box p{
	color: #ffffff;
	font-size: 1.375rem;
	font-weight: 400;
	line-height: 2.18;
	margin-bottom: 3rem;
}
.about-guide .message-box p:last-child{
	margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
	.about-guide{
		background: url(../img/about/sp_message_bg.png) no-repeat;
		background-size: cover;
		padding: 8.25rem 0 6.25rem 0;
	}
	.about-guide .message-box{
		width: 100%;
		margin-left: auto;
	}
	.about-guide .message-box p{
		font-size: 0.875rem;
		line-height: 2;
		margin-bottom: 1.5rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.about-guide .message-box{
		width: 41rem;
	}
	.about-guide .message-box p{
		font-size: 1.125rem;
		margin-bottom: 2rem;
	}
}
/*　　会社概要　　*/
.company-guide .company-grid{
	width: 96%;
	margin: 0 auto;
}
.company-guide .company-grid .roma{
	color: #1a1a1a;
	font-size: 10rem;
	font-weight: 900;
	line-height: 1;
}
.company-guide .company-box{
	width: 90%;
	max-width: 80.625rem;
	margin-left: auto;
	margin-top: 5.5rem;
}
.company-guide .company-tbl th,
.company-guide .company-tbl td{
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.65;
	border-bottom: 1px solid #000000;
	padding: 2rem 0 2rem 0;
}
.company-guide .company-tbl th{
	width: 20rem;
}
@media only screen and (max-width: 1600px) {
	.company-guide .company-grid .roma{
		font-size: 8.25rem;
	}
}
@media only screen and (max-width: 1150px) {
	.company-guide .company-grid .roma{
		font-size: 7.25rem;
	}
}
@media only screen and (max-width: 767px) {
	.company-guide{
		padding-top: 2rem;
	}
	.company-guide .company-grid{
		width: calc(100% - 3rem);
	}
	.company-guide .company-grid .roma{
		font-size: 4.1875rem;
	}
	.company-guide .company-box{
		width: 100%;
		max-width: 100%;
		margin-left: auto;
		margin-top: 1.5rem;
	}
	.company-guide .company-tbl th,
	.company-guide .company-tbl td{
		font-size: 0.875rem;
		padding: 1.5rem 0;
	}
	.company-guide .company-tbl th{
		width: 8rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.company-guide{
		padding-top: 2rem;
	}
	.company-guide .company-grid .roma{
		font-size: 6rem;
	}
	.company-guide .company-box{
		margin-top: 3rem;
	}
	.company-guide .company-tbl th,
	.company-guide .company-tbl td{
		font-size: 1.375rem;
	}
	.company-guide .company-tbl th{
		width: 13rem;
	}
}
/**
/* マーケティング・メディア・デザイン制作 CSS
----------------------------------------------- */
.l-contents-wrap{
	background: url(../img/bg.png) top center;
	background-size: 100%;
	padding-bottom: 0;
}
.l-contents-wrap .page-guide{
	background: rgba(255, 255, 255, 0.72);
	padding: 3.125rem 0 11.25rem 0;
}
.l-contents{
	max-width: initial;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.l-contents .l-main{
	width: calc(100% - 1rem - 50%);
}
.l-main .list .list-items:not(:last-child){
	margin-bottom: 6.25rem;
}
.l-main .list .list-items .ttl{
	align-items: center;
	border-bottom: 1px solid #000000;
	margin-bottom: 2rem;
	padding-bottom: 0.625rem;
}
.l-main .list .list-items .icon{
	width: 12.5rem;
}
.l-main .list .list-items h2{
	color: #1a1a1a;
	font-size: 4.6875rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.1em;
	margin-left: 1.5rem;
}
.l-main .list .list-items h3{
	color: #1a1a1a;
	font-size: 4.6875rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.1em;
	margin-bottom: 2rem;
}
.l-main .list .list-items p{
	font-size: 1.375rem;
	font-weight: 400;
	line-height: 2.18;
}
@media only screen and (max-width: 1300px) {
	.l-main .list .list-items .icon{
		width: 9.5rem;
	}
	.l-main .list .list-items h2{
		font-size: 3rem;
	}
	.l-main .list .list-items h3{
		font-size: 3rem;
	}
}
@media only screen and (max-width: 767px) {
	.l-contents-wrap .page-guide{
		padding: 2rem 0 6rem 0;
	}
	.l-contents{
		display: block;
	}
	.l-contents .l-main{
		width: 100%;
	}
	.l-main .list .list-items:not(:last-child){
		margin-bottom: 3.25rem;
	}
	.l-main .list .list-items .ttl{
		margin-bottom: 1rem;
		padding-bottom: 0.375rem;
	}
	.l-main .list .list-items .icon{
		width: 5.5rem;
	}
	.l-main .list .list-items h2{
		font-size: 1.875rem;
		margin-left: 0.625rem;
	}
	.l-main .list .list-items h3{
		font-size: 1.875rem;
		margin-bottom: 1rem;
	}
	.l-main .list .list-items p{
		font-size: 0.85rem;
		line-height: 2;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.l-contents-wrap .page-guide{
		padding: 3.125rem 0 11.25rem 0;
	}
	.l-contents .l-main{
		width: calc(100% - 1rem - 50%);
	}
	.l-main .list .list-items:not(:last-child){
		margin-bottom: 3.25rem;
	}
	.l-main .list .list-items .ttl{
		margin-bottom: 1rem;
		padding-bottom: 0.375rem;
	}
	.l-main .list .list-items .icon{
		width: 6.5rem;
	}
	.l-main .list .list-items h2{
		font-size: 2.35rem;
		margin-left: 0.5rem;
	}
	.l-main .list .list-items h3{
		font-size: 2.35rem;
		margin-bottom: 1rem;
	}
	.l-main .list .list-items p{
		font-size: 1.125rem;
	}
}
.l-contents .l-spacer{
	position: relative;
	width: 50%;
	min-height: 100vh;
}
.l-spacer .l-spacer-content{
	position: sticky;
	min-height: 100vh;
	top: 140px;
}
.l-spacer .l-spacer-content h2{
	color: #1a1a1a;
	font-size: 7.5rem;
	font-weight: 900;
	line-height: 1;
}
.l-contents.flex_row .l-spacer .l-spacer-content h2{
	text-align: right;
}
@media only screen and (max-width: 1300px) {
	.l-spacer .l-spacer-content h2{
		font-size: 6rem;
	}
}
@media only screen and (max-width: 767px) {
	.l-contents .l-spacer{
		width: 100%;
		min-height: auto;
		margin-bottom: 3rem;
	}
	.l-spacer .l-spacer-content{
		position: relative;
		min-height: auto;
		top: auto;
	}
	.l-spacer .l-spacer-content h2{
		font-size: 3.75rem;
		text-align: center;
	}
	.l-contents.flex_row .l-spacer .l-spacer-content h2{
		text-align: center;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.l-spacer .l-spacer-content{
		top: 140px;
	}
	.l-spacer .l-spacer-content h2{
		font-size: 4.5rem;
	}
}
/**
/* New Work CSS
----------------------------------------------- */
.work-box{
	position: relative;
	background: #FFFFFF;
	border: 2px solid #1a1a1a;
	border-right: none;
	border-radius: 6rem 0 0 6rem;
	padding: 7.5rem 3rem 7.375rem 8rem;
}
.l-spacer .l-spacer-content .work-box{
	right: -6%;
	margin-top: 5rem;
}
.work-box .work-box-inner{
	max-width: 36.5rem;
	margin: 0 auto;
}
.work-box h2,
.l-spacer .l-spacer-content .work-box h2{
	font-size: 2.75rem;
	margin-bottom: 0.625rem;
}
.work-box h2{
	font-size: 2.75rem;
	text-align: right;
}
.l-contents.flex_row .l-spacer .l-spacer-content .work-box h2{
	text-align: left;
}
.work-box .work-items .work-movie,
.work-box .work-items .imageArea{
	height: 20rem;
	text-align: center;
}
.work-box .work-items .work-movie video,
.work-box .work-items .imageArea img{
	display: inline-block;
	width: auto;
    max-width: 100%;
    height: 100%;
}
.work-box .work-items .work-ttl{
	margin-top: 1rem;
    align-items: center;
}
.work-box .work-items .work-ttl .roma{
	color: transparent;
	font-size: 1.5625rem;
	font-weight: 900;
	line-height: 1.25;
	-webkit-text-stroke: 1px #1a1a1a;
	text-stroke: 1px #1a1a1a;
	border-right: 1px solid #1a1a1a;
	padding-right: 1rem;
	margin-right: 1rem;
}
.work-box .work-items .work-ttl h3{
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
}
.work-box .work-items .work-cat{
	margin-top: 1rem;
}
.work-box .work-items .work-cat span{
	color: #000000;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.25;
	margin-right: 0.375rem;
}
.works-carousel .slide-arrow {
	width: 0;
	height: 0;
	border-style: solid;
	position: absolute;
	top: 35%;
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 5;
}
.works-carousel button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0;
	border: none;
	background-color: transparent;
}
.works-carousel .prev-arrow {
	left: -3rem;
	border-width: 0.875rem 0.9375rem 0.875rem 0;
	border-color: transparent #000000 transparent transparent;
}
.works-carousel .next-arrow {
	right: -2.5rem;
	border-width: 0.875rem 0 0.875rem 0.9375rem;
	border-color: transparent transparent transparent #ab1e36;
}
@media only screen and (max-width: 767px) {
	.work-box{
		padding: 2rem 2rem 3rem 2rem;
	}
	.l-spacer .l-spacer-content .work-box{
		width: calc(100% + 2rem);
		right: 1rem;
		margin-top: 2rem;
	}
	.work-box .work-box-inner{
		max-width: 36.5rem;
		margin: 0 auto;
	}
	.work-box h2,
	.l-spacer .l-spacer-content .work-box h2{
		font-size: 1.375rem;
		margin-bottom: 0.625rem;
	}
	.work-box .work-items .work-movie,
	.work-box .work-items .imageArea{
		height: 12rem;
	}
	.work-box .work-items .work-ttl{
		margin-top: 0.375rem;
	}
	.work-box .work-items .work-ttl .roma{
		font-size: 0.85rem;
		padding-right: 1rem;
		margin-right: 1rem;
	}
	.work-box .work-items .work-ttl h3{
		font-size: 0.9375rem;
	}
	.work-box .work-items .work-cat{
		margin-top: 0.625rem;
	}
	.work-box .work-items .work-cat span{
		font-size: 0.75rem;
		margin-right: 0.25rem;
	}
	.works-carousel .slide-arrow {
		top: 35%;
	}
	.works-carousel .prev-arrow {
		left: -1.5rem;
		border-width: 0.5rem 0.75rem 0.5rem 0;
	}
	.works-carousel .next-arrow {
		right: -1.375rem;
		border-width: 0.5rem 0 0.5rem 0.75rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.work-box{
		padding: 6.5rem 3rem 6.375rem 6rem;
	}
	.l-spacer .l-spacer-content .work-box{
		margin-top: 4rem;
	}
	.work-box h2,
	.l-spacer .l-spacer-content .work-box h2{
		font-size: 2rem;
	}
	.work-box h2{
		font-size: 2.75rem;
	}
	.work-box .work-items .work-movie,
	.work-box .work-items .imageArea{
		height: 15rem;
	}
	.work-box .work-items .work-ttl .roma{
		font-size: 1.375rem;
	}
	.work-box .work-items .work-ttl h3{
		font-size: 1.5rem;
	}
	.work-box .work-items .work-cat{
		margin-top: 0.625rem;
	}
	.work-box .work-items .work-cat span{
		font-size: 1.125rem;
	}
	.works-carousel .slide-arrow {
		top: 30%;
	}
	.works-carousel .prev-arrow {
		left: -2rem;
		border-width: 0.5rem 0.75rem 0.5rem 0;
	}
	.works-carousel .next-arrow {
		right: -1.875rem;
		border-width: 0.5rem 0 0.5rem 0.75rem;
	}
}
/**
/* お問い合わせ CSS
----------------------------------------------- */
/*　　お問い合わせ　　*/
.contact-wrap{
	background: url(../img/bg.png) top center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.contact-guide{
	padding: 3.5rem 0 0 0;
}
.form-box dl:not(:last-child){
	margin-bottom: 6.25rem;
}
.form-box dl dt,
.form-box dl dd{
	font-size: 1.875rem;
	font-weight: 400;
	line-height: 1.45;
}
.form-box dl dt span{
	color: #ab1e36;
	margin-left: 1rem;
}
.form-box dl dt{
	margin-bottom: 0.375rem;
}
.form-box table td .wpcf7-form-control-wrap{
	margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
	.contact-guide{
		padding: 2.5rem 0 0 0;
	}
	.contact-guide .l-contents .l-spacer{
		margin-bottom: 0;
	}
	.form-box dl:not(:last-child){
		margin-bottom: 2.5rem;
	}
	.form-box dl dt,
	.form-box dl dd{
		font-size: 0.9375rem;
	}
	.form-box dl dt span{
		margin-left: 0.625rem;
	}
	.form-box dl dt{
		margin-bottom: 0.375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.contact-guide{
		padding: 1.5rem 0 0 0;
	}
	.form-box dl:not(:last-child){
		margin-bottom: 3.25rem;
	}
	.form-box dl dt,
	.form-box dl dd{
		font-size: 1.375rem;
	}
}
/**
/* フォーム CSS
----------------------------------------------- */
input[type="date"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select{
	width: 100%;
	background: #FFFFFF;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.875rem;
	font-weight: 400;
	line-height: 1.25;
	border: 1px solid #333333;
	border-radius: 0.5rem;
	padding: 0.9375rem 1rem;
}
input[type="date"]::placeholder,
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder{
	color: #AFB29C;
}
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: #AFB29C;
}
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: #AFB29C;
}
textarea{
	height: 27.1875rem;
	border-radius: 1rem;
}
.wpcf7-spinner{
	display: none;
}
.submit_btn{
	text-align: right;
}
.submit_btn li{
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 23.75rem;
}
.submit_btn li::after{
	content: '';
	position: absolute;
	background: url(../img/btn.png) top center;
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	width: 3.875rem;
	height: 3.875rem;
	right: 1.25rem;
}
input[type="submit"] {
	position: relative;
	display: block;
	width: 100%;
	background: transparent;
	border: 1px solid #333333;
	font-family: 'Noto Sans JP', sans-serif;
	color: transparent;
	font-size: 4rem;
	font-weight: 900;
	line-height: 1.45;
	text-align: left;
	cursor: pointer;
	border-radius: 4.5rem;
	-webkit-text-stroke: 1px #333333;
	text-stroke: 1px #333333;
	padding: 0 1.5rem 0 5.5rem;
}
@media only screen and (max-width: 767px) {
	input[type="date"],
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="url"],
	textarea,
	select{
		font-size: 0.9375rem;
		border-radius: 0.375rem;
	}
	textarea{
		height: 13.75rem;
		border-radius: 0.5rem;
	}
	.submit_btn li{
		max-width: 10.625rem;
	}
	.submit_btn li::after{
		width: 2rem;
		height: 2rem;
		right: 0.5rem;
	}
	input[type="submit"] {
		font-size: 2rem;
		border-radius: 4.5rem;
		padding: 0 0.5rem 0 2rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	input[type="date"],
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="url"],
	textarea,
	select{
		font-size: 1.375rem;
	}
	textarea{
		height: 18.1875rem;
	}
	.submit_btn li{
		max-width: 19.75rem;
	}
	.submit_btn li::after{
		width: 3rem;
		height: 3rem;
		right: 1.125rem;
	}
	input[type="submit"] {
		font-size: 3.25rem;
		padding: 0 1.5rem 0 4.5rem;
	}
}
/**
/* お知らせ CSS
----------------------------------------------- */
/*一覧*/
.post-list .post-items{
	border-bottom: 1px solid #AFB29C;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
.post-list .post-items a{
	position: relative;
	display: block;
	padding-right: 5rem;
}
.post-list .post-items dt{
	color: #999999;
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.45;
	margin-bottom: 0.5rem;
}
.post-list .post-items dd{
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 1.5;
}
@media only screen and (max-width: 767px) {
	.post-list .post-items{
		padding-bottom: 0.5rem;
		margin-bottom: 1.25rem;
	}
	.post-list .post-items a{
		padding-right: 3.5rem;
	}
	.post-list .post-items dt{
		font-size: 0.8125rem;
		margin-bottom: 0.25rem;
	}
	.post-list .post-items dd{
		font-size: 0.875rem;
	}
}
/*　　詳細　　*/
.single-guide article{
	border-bottom: 1px solid #AFB29C;
	padding-bottom: 2rem;
}
.single-guide .entry-header{
	border-bottom: 1px solid #AFB29C;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
}
.single-guide .entry-header .dete{
	color: #999999;
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.45;
	margin-bottom: 0.5rem;
}
.single-guide .entry-header h2{
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 1.45;
}
.single-guide .entry-body h2{
	position: relative;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}
.single-guide .entry-body h3{
	position: relative;
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.5;
	border-bottom: 1px solid #AFB29C;
	border-left: 0.25rem solid #AFB29C;
	padding-left: 1rem;
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}
.single-guide .entry-body h4{
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}
.single-guide .entry-body p{
	font-size: 1.25rem;
	line-height: 2.43;
	margin-bottom: 2rem;
}
.single-guide .entry-body p img{
	margin: 0.5rem 0;
}
.single-guide .entry-body ol{
	list-style: decimal;
	margin-left: 1.25rem;
	margin-bottom: 2rem;
}
.single-guide .entry-body ul{
	list-style: disc;
	margin-left: 1.25rem;
	margin-bottom: 2rem;
}
.single-guide .entry-body ol li,
.single-guide .entry-body ul li{
	font-size: 1.25rem;
	line-height: 1.875;
}
.single-guide .entry-body figure{
	margin: 0.5rem 0;
}
.single-guide .entry-body figcaption{
	font-size: 90%;
}
.alignleft {
	display: inline;
	float: left;
}
.alignright {
	display: inline;
	float: right;
}
.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}
blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
	margin: 0 1rem 0 0;
}
blockquote.alignright,
.wp-caption.alignright,
img.alignright {
	margin: 0 0 0 1rem;
}
blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
	clear: both;
}
.single-guide .page-nav{
	margin-top: 3.5rem;
}
.single-guide .page-nav ul{
	width: 100%;
	display: flex;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.single-guide .page-nav ul .nav__item--prev a{
	position: relative;
	padding-left: 5rem;
}
.single-guide .page-nav ul .nav__item--next a{
	position: relative;
	padding-right: 5rem;
}
.single-guide .page-nav ul .nav__item--prev a span,
.single-guide .page-nav ul .nav__item--next a span{
	color: #30332B;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
	text-transform: uppercase;
}
.single-guide .page-nav ul .nav__item--prev a::before,
.single-guide .page-nav ul .nav__item--prev a::after,
.single-guide .page-nav ul .nav__item--next a::before,
.single-guide .page-nav ul .nav__item--next a::after{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-guide .page-nav ul .nav__item--prev a::before,
.single-guide .page-nav ul .nav__item--next a::before{
	background: #DDDDDD;
	width: 2.75rem;
	height: 1px;
}
.single-guide .page-nav ul .nav__item--prev a::after,
.single-guide .page-nav ul .nav__item--next a::after{
	background: #30332B;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 100%;
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.single-guide .page-nav ul .nav__item--prev a:hover::after,
.single-guide .page-nav ul .nav__item--next a:hover::after{
	width: 0.675rem;
	height: 0.675rem;
}
.single-guide .page-nav ul .nav__item--prev a::before{
	left: 0;
}
.single-guide .page-nav ul .nav__item--prev a::after{
	left: 2.75rem;
}
.single-guide .page-nav ul .nav__item--prev a:hover::after{
	left: 0;
}
.single-guide .page-nav ul .nav__item--next a::before{
	right: 0;
}
.single-guide .page-nav ul .nav__item--next a::after{
	right: 2.75rem;
}
.single-guide .page-nav ul .nav__item--next a:hover::after{
	right: 0;
}
@media only screen and (max-width: 767px) {
	.singleWrap{
		padding: 2.5rem 0 0 0;
	}
	.singleWrap .single-guide{
		padding: 3.4375rem 0 6.5rem 0;
	}
	.single-guide article{
		padding-bottom: 1rem;
	}
	.single-guide .entry-header{
		margin-bottom: 1.5rem;
		padding-bottom: 1.25rem;
	}
	.single-guide .entry-header .entry-data{
		margin-bottom: 1.25rem;
	}
	.single-guide .entry-header .category{
		padding: 0.1875rem 0.3125rem;
		margin-left: 0.625rem;
	}
	.single-guide .entry-header h2{
		font-size: 1.25rem;
	}
	.single-guide .entry-body h2{
		font-size: 1.125rem;
		margin-bottom: 1.125rem;
	}
	.single-guide .entry-body h3{
		font-size: 1.0625rem;
		padding-left: 0.875rem;
		padding-bottom: 0.5rem;
		margin-bottom: 1.125rem;
	}
	.single-guide .entry-body p{
		font-size: 0.875rem;
		line-height: 2.14;
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-body ol{
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-body ul{
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-body ol li,
	.single-guide .entry-body ul li{
		font-size: 0.875rem;
	}
	.single-guide .entry-body p img{
		margin: 0.25rem 0;
	}
	.single-guide .entry-body figure{
		margin: 0.25rem 0;
	}
	blockquote.alignleft,
	.wp-caption.alignleft,
	img.alignleft {
		margin: 0 0.625rem 0 0;
	}
	blockquote.alignright,
	.wp-caption.alignright,
	img.alignright {
		margin: 0 0 0 0.625rem;
	}
	.single-guide .page-nav{
		margin-top: 2.5rem;
	}
	.single-guide .page-nav ul .nav__item--prev a span,
	.single-guide .page-nav ul .nav__item--next a span{
		font-size: 1rem;
	}
	.single-guide .page-nav ul .nav__item--prev a::before,
	.single-guide .page-nav ul .nav__item--next a::before{
		width: 2rem;
	}
	.single-guide .page-nav ul .nav__item--prev a::after{
		left: 2rem;
	}
	.single-guide .page-nav ul .nav__item--next a::after{
		right: 2rem;
	}
	.single-guide .page-nav ul .nav__item--prev a{
		padding-left: 3rem;
	}
	.single-guide .page-nav ul .nav__item--next a{
		padding-right: 3rem;
	}
}
/**
/* エラー CSS
----------------------------------------------- */
.error-guide{
	padding: 3.5rem 0 0 0;
}
.error-guide .entry{
	position: relative;
	width: 90%;
	max-width: 1300px;
}
.error-guide .entry p{
	font-size: 1.375rem;
	font-weight: 400;
	line-height: 2.18;
}
.error-guide .entry .error_url{
	padding: 3rem 0;
}
.error-guide .entry .block_btn{
	position: absolute;
	bottom: 0;
	right: 0;
}
@media only screen and (max-width: 767px) {
	.error-guide{
		padding: 2.5rem 0 0 0;
	}
	.error-guide .entry{
		width: 100%;
	}
	.error-guide .entry p{
		font-size: 0.875rem;
		line-height: 2;
	}
	.error-guide .entry .error_url{
		padding: 3rem 0;
	}
	.error-guide .entry .block_btn{
		position: relative;
		top: auto;
		text-align: right;
		margin-top: 1rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.error-guide{
		padding: 1.5rem 0 0 0;
	}
	.error-guide .entry{
		width: 100%;
	}
	.error-guide .entry p{
		font-size: 1.125rem;
	}
	.error-guide .entry .error_url{
		padding: 3rem 0;
	}
}
