@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-XXX */
/* 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;}
.zen {
	font-family: "Zen Maru Gothic", serif;
}
/*------------------------------------------------------------
	loading
------------------------------------------------------------*/
.loading {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff url("../img/common/loading_bg.png") no-repeat center center;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}
.loading.show {
	opacity: 1;
	visibility: visible;
}
.loading .logo {
	margin-bottom: 1.1rem;
	animation: fade 1.5s ease-in-out infinite;
}
.loading .logo img {
	width: 9.8rem;
}
.loading p {
	color: #000000;
	font-size: 1.8rem;
	font-weight: 900;
	text-align: center;
	letter-spacing: 0.1em;
}
.loading p span {
	display: inline-block;
}
@keyframes fade {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}
@media all and (max-width: 960px) {
	.loading {
		background-image: url("../img/common/sp_loading_bg.png");
	}
	.loading .logo img {
		width: 11rem;
	}
	.loading p {
		font-size: 2.1rem;
	}
	.loading .logo {
		margin-bottom: 1.5rem;
	}
}
/*------------------------------------------------------------
	cover
------------------------------------------------------------*/
.cover,
.leftCover {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #f6c9de;
	transition: .6s;
	z-index: 999;
}
.cover.hide {
	transform: translate(100%);
}
.cover.rightShow {
	transform: none;
}
.cover.rightHide {
	transform: translate(-100%);
}
.leftCover {
	transform: translate(-100%);
}
.leftCover.show {
	transform: none;
}
/*------------------------------------------------------------
	popup
------------------------------------------------------------*/
.mfp-container {
	overflow-y: auto;
	position: fixed;
}
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	background: rgba(229,229,229);
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.9;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}
.mfp-img-mobile {
	background: none;
	opacity: 1;
}

/* comBor */
.comBor {
	padding: 2rem;
	border-radius: 3rem;
	border: 2px solid #333333;
	background-color: #fff;
	position: relative;
}
.comBor.bg {
	background: #fff url("../img/index/bg02.jpg") repeat left top / 1.7rem auto;
}
@media all and (max-width: 960px) {
	.comBor.bg {
		background-size: 1.3rem auto;
	}
}


/* content */
.content {
	margin: 0 auto;
	max-width: 103.6rem;
	position: relative;
}
@media all and (max-width: 960px) {
	.content {
		margin: 0 2.2rem;
		max-width: inherit;
	}
}

/* centerTxt */
.centerTxt {
	margin-bottom: 6.3rem;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.866;
	text-align: center;
}
@media all and (max-width: 960px) {
	.centerTxt {
		margin-bottom: 5rem;
		font-size: 1.5rem;
	}
}

/* headLine01 */
.headLine01 {
	margin-bottom: 2.8rem;
	text-align: center;
	position: relative;
}
.headLine01 img {
	width: 34.3rem;
}
@media all and (max-width: 960px) {
	.headLine01 img {
		width: 27.5rem;
	}
}

/* comBtn */
.comBtn a {
	margin: 0 auto;
	width: 25rem;
	height: 5.7rem;
	border-radius: 5rem;
	font-size: 1.5rem;
	font-weight: 700;
	background-color: #f458a3;
	color: #fff;
	font-family: "Zen Maru Gothic", serif;
	display: flex;
	align-items: center;
	justify-content: center;
}
.comBtn.right a {
	margin: 0 0 0 auto;
}
.comBtn .inner {
	padding: 0 4.3rem;
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.comBtn .inner::after {
	margin-top: -0.8rem;
	width: 1.6rem;
	height: 1.6rem;
	position: absolute;
	top: 50%;
	right: 0;
	background: url("../img/common/icon01.png") no-repeat left top / 100% 100%;
	content: "";
}
.comBtn .sml {
	font-size: 1rem;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.3rem;
}
.comBtn .txt {
	margin-bottom: 1.1rem;
	display: block;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	color: #f458a3;
}


/* comBtn02 */
.comBtn02 a {
	padding-left: 1.5rem;
	width: 100%;
	height: 3.8rem;
	justify-content: flex-start;
	border-radius: 5rem 0 0 5rem;
}
.comBtn02 .inner {
	padding: 0 0.9rem 0 0;
}
.comBtn02 .inner::after {
	margin-top: -0.4rem;
	width: 0.8rem;
	height: 0.8rem;
	background-image: url("../img/common/icon03.png");
}



.fadeUp {
	opacity: 0;
	transform: translateY(40px);
	transition: .5s;
}
.isShow .fadeUp,
.isShow.fadeUp {
	opacity: 1;
	transform: translateY(0);
}

.fadeIn {
	opacity: 0;
	transition: .5s;
}
.isShow .fadeIn,
.isShow.fadeIn {
	opacity: 1;
}

.fadeRight {
	opacity: 0;
	translate: 20px 0;
	transition: all 0.5s ease;
}
.isShow.fadeRight,
.isShow .fadeRight {
	opacity: 1;
  	translate: 0 0;
}

.fadeLeft {
	opacity: 0;
	translate: -20px 0;
	transition: all 0.5s ease;
}
.isShow.fadeLeft,
.isShow .fadeLeft {
	opacity: 1;
  	translate: 0 0;
}
.delay01 {
	transition-delay: .15s;
}
.delay02 {
	transition-delay: .3s;
}
.delay03 {
	transition-delay: .45s;
}
@media all and (max-width: 960px) {
	.sp-delay01 {
		transition-delay: .15s;
	}
	.sp-delay02 {
		transition-delay: .3s;
	}
}


.fixBox {
	position: fixed;
	bottom: 3.9rem;
	right: 0;
	z-index: 30;
	width: 34rem;
	transition: transform 0.3s;
	display: none;
}
.fixBox a {
	display: inline-block;
	position: relative;
	opacity: 1 !important;
}
@media all and (min-width: 961px) {
	.fixBox .txtImg {
		margin: 0 1rem -1.4rem 0;
		width: 13.8rem;
		position: absolute;
		bottom: 100%;
		right: 0;
	}
	.fixBox:hover {
		transform: scale(1.02);
	}
}
@media all and (max-width: 960px) {
	.fixBox {
		width: 100%;
		bottom: 0;
		text-align: center;
		padding-left: 0;
	}
	.fixBox .btn {
		display: flex;
		gap: 0 2px;
		align-items: flex-end;
		justify-content: center;
	}
	.fixBox img {
		width: 24.1rem;
	}
	.fixBox .txtImg {
		margin-bottom: 0.1rem;
		width: 6.7rem;
	}
}


/* slideBox */
#main .slideBox {
	padding: 6rem 0 5rem;
	background-color: #F2F2F2;
}
#main .slideBox .imgUl > li {
	width: 70rem !important;
	margin: 0 1rem !important;
}
#main .slideBox .imgUl img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#main .slideBox .imgUl .subUl {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 0;
}
#main .slideBox .imgUl .subUl li {
	width: 28.5rem;
}
#main .slideBox .imgUl .subUl .wid01 {
	margin-left: 2rem;
	flex: 1;
}
#main .slideBox .imgUl .subUl .wid02 {
	width: 100%;
}
#main .slideBox .imgUl .subUl li a {
	display: block;
	overflow: hidden;
	border-radius: 2.5rem;
	height: 26rem;
}
#main .slideBox .imgUl .subUl .wid02 a {
	height: 47rem;
}
#main .slideBox .imgUl .height .subUl a {
	height: 31rem;
}
#main .slideBox .imgUl .height .subUl .wid02 a {
	height: 42rem;
}
@media all and (max-width: 960px) {
	#main .slideBox {
		padding: 2.5rem 0 3.7rem;
	}
	#main .slideBox .imgUl > li {
		width: 29.4rem !important;
		margin: 0 0.4rem !important;
	}
	#main .slideBox .imgUl .subUl {
		gap: 0.8rem 0;
	}
	#main .slideBox .imgUl .subUl li {
		width: 12rem;
	}
	#main .slideBox .imgUl .subUl .wid01 {
		margin-left: 0.8rem;
	}
	#main .slideBox .imgUl .subUl .wid02 {
		width: 100%;
	}
	#main .slideBox .imgUl .subUl li a {
		border-radius: 1.5rem;
		height: 11rem;
	}
	#main .slideBox .imgUl .subUl .wid02 a {
		height: 19.6rem;
	}
	#main .slideBox .imgUl .height .subUl a {
		height: 13rem;
	}
	#main .slideBox .imgUl .height .subUl .wid02 a {
		height: 17.6rem;
	}
}


.mfp-close {
	cursor: pointer !important;
	color: #000 !important;
}