@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-YH */
/* clearfix */
.clearfix::after {
	content: '';
	display: block;
	clear: both;
}
/* flex */
.flex, .flexA, .flexB, .flexC {
	display: flex;
	flex-wrap: wrap;
}
.flexA {
	justify-content: space-around;
}
.flexB {
	justify-content: space-between;
}
.flexC {
	justify-content: center;
}
/* font */
.archivo {
	font-family: "Archivo", sans-serif;
}
/*------------------------------------------------------------
	fade
------------------------------------------------------------*/
.fadeLeft {
	opacity: 0;
	transform: translateX(-1.5rem);
	will-change: transform, opacity;
}
.fadeLeft.on {
	opacity: 1;
	transform: translateX(0);
	transition: transform .8s ease-out .4s, opacity .8s linear .4s;
}
.fadeUp {
	opacity: 0;
	transform: translateY(1.5rem);
	will-change: transform, opacity;
}
.fadeUp.on {
	opacity: 1;
	transform: translateY(0);
	transition: transform .8s ease-out .6s, opacity .8s linear .6s;
}
.fadeTxt {
	width: fit-content;
	position: relative;
	display: block;
	transform: scaleX(0);
	transform-origin: left;
	will-change: transform;
}
.fadeTxt::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #391b1b;
	transform-origin: right;
	will-change: transform;
	z-index: 2;
	content: '';
}
.fadeTxt.on {
	transform: scaleX(1);
	transition: transform .4s cubic-bezier(.165, .84, .44, 1);
}
.fadeTxt.on::before {
	transform: scaleX(0);
	transition: transform .48s cubic-bezier(.165, .84, .44, 1) .4s;
}
/*------------------------------------------------------------
	pageTitle
------------------------------------------------------------*/
.pageTitle {
	margin-bottom: 3.4rem;
	width: 100%;
	min-height: 34.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../img/contact/page_title_bg.jpg) no-repeat center center / cover;
}
.pageTitle span {
	margin-top: 0.8rem;
	display: block;
	text-align: center;
	color: rgba(255, 255, 255, 0.35);
	font-size: 15rem;
	font-weight: 900;
	line-height: 0.8;
	-webkit-text-stroke: 0.1rem #fff;
	opacity: 0.4;
}
@media all and (max-width: 896px) {
	.pageTitle {
		margin-bottom: 5rem;
		min-height: 15.7rem;
		background-image: url(../img/contact/page_title_bg_sp.jpg);
	}
	.pageTitle span {
		margin-top: 0;
		font-size: 4rem;
		line-height: 0.85;
	}
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 110.8rem;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 2.2rem;
		width: auto !important;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 8.4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.7rem;
	text-align: center;
	font-size: 2rem;
}
.headLine01 .en {
	display: block;
	font-size: 6rem;
	font-weight: 900;
	line-height: 1;
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin-bottom: 4.5rem;
		font-size: 1.25rem;
		gap: 1.4rem;
	}
	.headLine01 .en {
		font-size: 2.75rem;
	}
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	margin-bottom: 2.7rem;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	font-size: 1.8rem;
}
.headLine02 .en {
	display: block;
	font-size: 5rem;
	font-weight: 900;
	line-height: 1.1;
}
@media all and (max-width: 896px) {
	.headLine02 {
		margin-bottom: 2.5rem;
		gap: 0.7rem;
		font-size: 1.25rem;
	}
	.headLine02 .en {
		font-size: 2.75rem;
	}
}
/*------------------------------------------------------------
	headLine03
------------------------------------------------------------*/
.headLine03 {
	margin-bottom: 5.7rem;
	display: flex;
	gap: 4rem;
	align-items: center;
	font-size: 2rem;
}
.headLine03 .en {
	display: block;
	font-size: 6rem;
	font-weight: 900;
	line-height: 1.1;
}
@media all and (max-width: 896px) {
	.headLine03 {
		margin-bottom: 1.2rem;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 0.2rem;
		font-size: 1.25rem;
	}
	.headLine03 .en {
		font-size: 3.5rem;
	}
}
/*------------------------------------------------------------
	btnHover
------------------------------------------------------------*/
.btnHover {
	position: relative;
	display: block;
	text-align: center;
	color: #391B1B;
	background: #fff;
	border: 0.1rem solid #707070;
	border-radius: 5rem;
	transition: color 0.5s ease;
	overflow: hidden;
}
.btnHover::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #707070;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.5s ease;
	transition-property: transform;
	content: '';
}
.btnHover .btnTxt {
	position: relative;
	z-index: 1;
}
@media all and (min-width: 897px) {
	.btnHover:hover {
		color: #fff;
	}
	.btnHover:hover::before {
		transform: scaleX(1);
		transform-origin: left;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
	width: 26.9rem;
}
.comBtn a {
	padding: 2.4rem 2rem 2rem;
	display: block;
	font-size: 2rem;
	font-weight: bold;
	border: none;
	border-radius: 0;
	background: #EBE9EA;
}
.comBtn a::before {
	background: #391B1B;
}
@media all and (max-width: 896px) {
	.comBtn {
		margin: 0 auto;
		width: 20.5rem;
	}
	.comBtn a {
		padding: 1rem;
		font-size: 1.5rem;
	}
}
/*------------------------------------------------------------
	comBtn02
------------------------------------------------------------*/
.comBtn02 {
	margin: 0 0 12.4rem auto;
	width: fit-content;
}
.comBtn02 a {
	width: 16.4rem;
	display: block;
	position: relative;
	font-size: 2rem;
	font-weight: bold;
}
.comBtn02 a::after {
	width: 100%;
	height: 0.4rem;
	position: absolute;
	left: 50%;
	bottom: 0;
	background: #391B1B;
	transform: translateX(-50%);
	transition: 0.3s;
	content: '';
}
.comBtn02 a .txt {
	padding: 2.3rem 4rem 2.1rem 0;
	position: relative;
	display: block;
	background: url(../img/common/icon09.png) no-repeat right 0.1rem top 45% / 3rem;
	z-index: 1;
}
@media all and (min-width: 897px) {
	.comBtn02 a:hover {
		color: #fff;
	}
	.comBtn02 a:hover::after {
		width: 122.6%;
		height: 100%;
		background: #000;
	}
	.comBtn02 a:hover .txt {
		background-image: url(../img/common/icon05.png);
	}
}
@media all and (max-width: 896px) {
	.comBtn02 {
		margin-bottom: 6.6rem;
	}
	.comBtn02 a {
		width: 9.4rem;
		font-size: 1.1rem;
	}
	.comBtn02 a .txt {
		padding: 1.4rem 2.5rem 1.4rem 0;
		background-size: 1.7rem;
	}
	.comBtn02 a::after {
		height: 0.25rem;
	}
}
/*------------------------------------------------------------
	comTextBox
------------------------------------------------------------*/
.comTextBox {
	margin-bottom: 7.6rem;
}
.comTextBox p {
	text-align: center;
	font-size: 1.8rem;
	line-height: 2.223;
}
.comTextBox .lead {
	margin-bottom: 2.9rem;
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.5;
}
.comTextBox .lead:last-child {
	margin-bottom: 0;
}
@media all and (max-width: 896px) {
	.comTextBox p {
		font-size: 1.2rem;
		line-height: 2;
	}
	.comTextBox .lead {
		margin-bottom: 2.3rem;
		font-size: 1.5rem;
	}
}
/*------------------------------------------------------------
	comServiceList
------------------------------------------------------------*/
.comServiceList li {
	width: 50%;
}
.comServiceList li a {
	width: 100%;
	height: 100%;
	padding: 7.7rem 2rem 11.5rem;
	position: relative;
	display: block;
	z-index: 1;
	clip-path: inset(0 0 0 0);
}
.comServiceList li .photo {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	position: absolute;
	z-index: -1;
}
.comServiceList li .photo::before {
	width: 110%;
	height: 110%;
	position: absolute;
	left: -5%;
	top: -5%;
	backdrop-filter: blur(0.5rem);
	-webkit-backdrop-filter: blur(0.5rem);
	background-color: rgba(0, 0, 0, 0.03);
	transition: 0.3s;
	z-index: 1;
	content: '';
	user-select: none;
}
.comServiceList li .photo img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	object-fit: cover;
}
.comServiceList li .ttl {
	margin-bottom: 5.7rem;
	color: #fff;
	text-align: center;
}
.comServiceList li .ttl .sm {
	margin-bottom: 1.7rem;
	display: block;
}
.comServiceList li .ttl .en {
	display: block;
	font-size: 4.2rem;
	font-weight: 900;
	line-height: 1.1;
}
.comServiceList li .subBox {
	margin: 0 5.4rem;
	padding: 4.3rem 4.4rem 0.1rem;
	background: rgba(255, 255, 255, 0.87);
}
.comServiceList li .subBox .subTtl {
	text-align: center;
	margin-bottom: 2.2rem;
	color: #000000;
}
.comServiceList li .subBox p {
	margin-bottom: 2rem;
	color: #000;
	font-size: 1.4rem;
	line-height: 2.286;
}
.comServiceList li .btn {
	margin: 0 auto;
	padding: 2.4rem 2rem 2rem;
	width: 26.9rem;
	text-align: center;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	background: #391B1B;
}
.comServiceList li .subBox .btn {
	margin-bottom: -3.8rem;
}
@media all and (min-width: 897px) {
	.comServiceList li a:hover .photo::before {
		backdrop-filter: blur(1.5rem);
		-webkit-backdrop-filter: blur(1.5rem);
	}
}
@media all and (max-width: 896px) {
	.comServiceList {
		display: block;
	}
	.comServiceList li {
		margin-bottom: 1.5rem;
		width: auto;
	}
	.comServiceList li:last-child {
		margin-bottom: 0;
	}
	.comServiceList li a {
		padding: 4.4rem 2.8rem 7.2rem;
	}
	.comServiceList li .ttl {
		margin-bottom: 2.7rem;
		font-size: 1.25rem;
	}
	.comServiceList li .ttl .sm {
		margin-bottom: 0.6rem;
	}
	.comServiceList li .ttl .en {
		font-size: 2.1rem;
	}
	.comServiceList li .subBox {
		margin: 0;
		padding: 2.5rem 2.1rem 0.1rem;
	}
	.comServiceList li .subBox .subTtl {
		margin-bottom: 1.5rem;
		font-size: 1.25rem;
	}
	.comServiceList li .subBox p {
		margin-bottom: 2.4rem;
		font-size: 1.25rem;
		line-height: 1.8;
		color: #391B1B;
	}
	.comServiceList li .btn {
		padding: 1rem;
		width: 20.5rem;
		max-width: 100%;
		font-size: 1.5rem;
	}
	.comServiceList li .subBox .btn {
		margin-bottom: -2.2rem;
	}
	.comServiceList li .photo::before {
		backdrop-filter: blur(0.2rem);
		-webkit-backdrop-filter: blur(0.2rem);
	}
}
/*------------------------------------------------------------
	comCateList
------------------------------------------------------------*/
.comCateList {
	max-width: 50%;
	display: flex;
	flex-wrap: wrap;
	gap: 1.1rem;
}
.comCateList li {
	width: 13.2rem;
}
.comCateList li a {
	padding: 1rem 1rem 0.6rem;
	font-size: 1.4rem;
}
.comCateList li a::before {
	background-color: #391B1B;
}
.comCateList li.on a {
	color: #fff;
}
.comCateList li.on a::before {
	transform: scaleX(1);
}
@media all and (max-width: 896px) {
	.comCateList {
		max-width: initial;
		gap: 0.8rem;
	}
	.comCateList li {
		width: 9.8rem;
	}
	.comCateList li a {
		padding: 0.5rem 0.5rem 0.3rem;
		font-size: 1.25rem;
	}
}
/*------------------------------------------------------------
	comNewsList
------------------------------------------------------------*/
.comNewsList {
	margin-bottom: 3.1rem;
	padding-top: 2.3rem;
	border-top: 0.1rem solid #707070;
}
.comNewsList li {
	margin: 0 auto;
	max-width: 111.6rem;
	border-bottom: 0.1rem solid #707070;
}
.comNewsList li a {
	padding: 2.5rem 7.5rem 2.2rem 5.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 1.2rem 2.9rem;
	position: relative;
	z-index: 1;
}
.comNewsList li a::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #f2f2f2;
	z-index: -1;
	content: '';
	opacity: 0;
	transition: opacity 0.3s;
	user-select: none;
	pointer-events: none;
}
.comNewsList li a::after {
	width: 2.3rem;
	position: absolute;
	right: 3.2rem;
	top: 50%;
	background: url(../img/common/icon02.png) no-repeat center center / 100%;
	transform: translateY(-50%);
	will-change: transform;
	aspect-ratio: 1;
	content: '';
}
.comNewsList li .date {
	padding-top: 0.1rem;
	display: block;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.2;
}
.comNewsList li .tag {
	padding: 0.3rem 1.5rem 0;
	min-width: 13.2rem;
	display: block;
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.45;
	text-align: center;
	background: #fff;
	border: 0.1rem solid #707070;
}
.comNewsList li .txt {
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
@media all and (min-width: 897px) {
	.comNewsList li a:hover::before {
		opacity: 1;
	}
}
@media all and (max-width: 896px) {
	.comNewsList {
		margin: 0 0 3.4rem;
		padding-top: 2.5rem;
	}
	.comNewsList li {
		margin: 0 3.2rem 0 2.4rem;
		max-width: initial;
	}
	.comNewsList li a {
		padding: 1.4rem 3rem 1.4rem 0;
		display: flex;
		gap: 0.7rem 1.3rem;
	}
	.comNewsList li a::before {
		display: none;
	}
	.comNewsList li a::after {
		width: 2.1rem;
		right: 0;
		top: auto;
		bottom: 2.6rem;
		background-image: url(../img/common/icon08.png);
		transform: none;
	}
	.comNewsList li .date {
		font-size: 1.25rem;
		line-height: 1.6;
	}
	.comNewsList li .tag {
		padding: 0.2rem 1.5rem 0;
		min-width: 9.8rem;
		font-size: 1rem;
	}
}
/*------------------------------------------------------------
	wp-pagenavi
------------------------------------------------------------*/
.naviWrap {
	margin: 0 auto 9.8rem;
	width: 106rem;
}
.wp-pagenavi {
	margin-left: auto;
	padding: 0 5rem;
	width: fit-content;
	max-width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 0;
	gap: 1.4rem;
	clear: both;
	text-align: center;
	box-sizing: border-box;
	position: relative;
}
.wp-pagenavi a,
.wp-pagenavi span {
	margin: 0;
	padding: 0;
	min-width: 2.8rem;
	color: #391B1B;
	font-size: 2rem;
	font-weight: bold;
	display: block;
	text-decoration: none;
	border: none;
	white-space: nowrap;
	opacity: 0.36;
}
.wp-pagenavi a:hover {
	opacity: 0.7;
}
.wp-pagenavi span.current {
	opacity: 1;
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .pages {
	display: none;
}
.wp-pagenavi .extend {}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	width: 2.3rem;
	min-width: initial;
	position: absolute;
	top: 0.3rem;
	border-radius: 100%;
	aspect-ratio: 1;
	font-size: 0;
	line-height: 0;
	opacity: 1;
}
.wp-pagenavi .previouspostslink {
	left: 0;
}
.wp-pagenavi .nextpostslink {
	right: 0;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../img/common/icon02.png) no-repeat center center / 100%;
	content: '';
}
.wp-pagenavi .previouspostslink::before {
	transform: rotate(180deg);
}
@media all and (max-width: 896px) {
	.naviWrap {
		margin: 0 0 5rem;
		width: auto;
	}
	.wp-pagenavi {
		margin: 0 auto;
		padding: 0;
		justify-content: center;
		gap: 1.7rem;
	}
	.wp-pagenavi a,
	.wp-pagenavi span {
		opacity: 0.36 !important;
	}
	.wp-pagenavi a:hover {
		opacity: 0.36 !important;
	}
	.wp-pagenavi span.current {
		opacity: 1 !important;
	}
	.wp-pagenavi .previouspostslink,
	.wp-pagenavi .nextpostslink {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		opacity: 1 !important;
	}
	.wp-pagenavi .previouspostslink {
		margin-right: 1rem;
	}
	.wp-pagenavi .nextpostslink {
		margin-left: 1rem;
	}
}