@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-ltt */
/* 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;
}
.en {
	font-family: "Poppins", sans-serif;
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	max-width: 100rem;
	padding: 0 2rem;
	margin: 0 auto;
	box-sizing: border-box;
}
@media all and (max-width: 896px) {
	.content {
		max-width: inherit !important;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 7.1rem;
	position: relative;
	text-align: center;
	font-weight: 700;
	font-size: 4.6rem;
	letter-spacing: 0.1rem;
}
.headLine01::before {
	position: absolute;
	left: 50%;
	bottom: -3.1rem;
	width: 8rem;
	height: 0.4rem;
	background-color: #A7A7A7;
	border-radius: 0.2rem;
	transform: translateX(-50%);
	content: "";
}
.headLine01 .en {
	margin-bottom: 0.5rem;
	display: block;
	color: #f1717f;
	font-size: 2.4rem;
	letter-spacing: 0.07em;
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin-bottom: 3rem;
		font-size: 3.2rem;
	}
	.headLine01::before {
		bottom: -1rem;
		width: 6rem;
	}
	.headLine01 .en {
		margin-bottom: 0;
		font-size: 1.8rem;
		letter-spacing: 0.1em;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn a {
	margin: 0 auto;
	width: 43rem;
	padding: 1rem 4.5rem;
	min-height: 6.4rem;
	font-size: 2rem;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5rem;
	position: relative;
	background-color: #fff;
}
.comBtn a:after {
	position: absolute;
	right: 3.3rem;
	top: 50%;
	margin-top: -0.5rem;
	width: 1rem;
	height: 1rem;
	transition: .3s;
	border-top: 2px solid #A7A7A7;
	border-right: 2px solid #A7A7A7;
	transform: rotate(45deg);
	content: "";
}
@media all and (min-width: 897px) {
	.comBtn a:hover {
		color: #fff;
		background-color: #505050;
	}
	.comBtn a:hover:after {
		border-color: #fff;
	}
}
@media all and (max-width: 896px) {
	.comBtn a {
		width: 100%;
		padding: 0.5rem 3.5rem;
		max-width: 33.5rem;
		min-height: 5.4rem;
		font-size: 1.6rem;
	}
	.comBtn a:after {
		right: 2rem;
		margin-top: -0.4rem;
		width: 0.8rem;
		height: 0.8rem;
	}
}
/*------------------------------------------------------------
	loading
------------------------------------------------------------*/
.loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    transition: all 1s;
    z-index: 120;
}
.loading.hide {
    opacity: 0;
	pointer-events: none;
}
.loading .logo {
	width: 23.6rem;
}
.loading .imgList {
	margin-bottom: 1.2rem;
	gap: 1.2rem 1.3rem;
}
.loading .imgList li {
	width: 11rem;
	opacity: 0;
	transition: 1s;
}
.loading .imgList li.show {
	opacity: 1;
}
.loading .imgList li:nth-child(4) {
	transition-delay: .3s;
}
.loading .imgList li:nth-child(2) {
	transition-delay: .6s;
}
.loading .imgList li:nth-child(1) {
	transition-delay: .9s;
}
.loading p {
	transform: translateY(4rem);
	opacity: 0;
	transition: .7s;
}
.loading p.show {
	transform: none;
	opacity: 1;
	transition: .7s;
	transition-delay: 1.2s;
}
@media all and (max-width: 896px) {
	.loading .logo {
		width: 11.8rem;
	}
	.loading .imgList {
		margin-bottom: 0.6rem;
		gap: 0.6rem;
	}
	.loading .imgList li {
		width: 5.6rem;
	}
	.loading p {
		transform: translateY(3rem);
	}
}
/*------------------------------------------------------------
	fixBtn
------------------------------------------------------------*/
.fixBtn {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 29.6rem;
	z-index: 80;
}
.fixBtn a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	.fixBtn {
		width: 14rem;
	}
}