@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-LMX */
/* 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;}
/*------------------------------------------------------------
	loading
------------------------------------------------------------*/
.loading {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/*background: url(../img/load_bg.png) no-repeat center center;*/
	/*background-size: cover;*/
	background:#FAF5EA;
	z-index: 9999;
}
.loading .loadInfo {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.loading .loadImg {
	width: 29.6rem;
	margin: 0 auto;
	position: relative;
}
.loading .loadImg::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../img/load_img02.png) no-repeat;
	background-size: 100% 100%;
	content: "";
	animation: round 9s linear infinite;
}
@keyframes round {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@media all and (max-width: 896px) {
	.loading .loadImg {
		width: 15rem;
	}
}
/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
.comLink {
	width: 42rem;
	margin: 0 auto;
	position: relative;
	transition: .3s;
	cursor: pointer;
}
.comLink::before {
	position: absolute;
	left: 0.5rem;
	top: 0.6rem;
	width: 100%;
	height: 100%;
	background-color: #E95504;
	content: "";
}
.comLink a {
	padding: 1.2rem 0;
	position: relative;
	z-index: 1;
	display: block;
	text-align: center;
	color: #5C3719;
	font-size: 2rem;
	letter-spacing: 0.04em;
	background: #fff url(../img/icon01.png) no-repeat right 1.9rem center;
	background-size: 1.1rem auto;
	border: 0.3rem solid #5C3719;
}
@media all and (min-width: 897px) {
	.comLink:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	.comLink {
		width: 32rem;
		padding-right: 0.5rem;
		box-sizing: border-box;
	}
	.comLink::before {
		left: 0.4rem;
		top: 0.4rem;
		width: calc(100% - 0.5rem);
	}
	.comLink a {
		padding: 0.8rem 0 0.9rem;
		font-size: 1.6rem;
		background-position: right 1.4rem center;
		background-size: 0.9rem auto;
		border-width: 0.2rem;
}
}
/*------------------------------------------------------------
	visible
------------------------------------------------------------*/
.visible {
	opacity: 0;
}
.visible.on {
	-webkit-animation: tolarge 1.1s ease-in forwards;
	animation: tolarge 1.1s ease-in forwards;
}
@keyframes tolarge {
	0% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		opacity: 0
	}
	30% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 1
	}
	60% {
		-webkit-transform: scale(1.04, 1.04);
		transform: scale(1.04, 1.04)
	}
	80% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 1
	}
	to {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 1
	}
}
@media all and (max-width: 896px) {
	.visible.on {
		-webkit-animation: tolarge .4s ease-in forwards;
		animation: tolarge .4s ease-in forwards;
	}
}