@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-LSM */
/* 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;}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	max-width: 112rem;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 1.5rem;
		max-width: inherit;
	}
}
/*------------------------------------------------------------
	comTimeBox
------------------------------------------------------------*/
.comTimeBox {
	margin: -2.5rem 0 1.3rem -1.8rem;
	display: flex;
	align-items: flex-start;
	color: #FF788C;
	line-height: 1;
	font-feature-settings: "palt";
	font-family: "sofia-pro",sans-serif;
}
.comTimeBox .num {
	margin-top: 0.7rem;
	padding-bottom: 0.2rem;
	min-width: 3.3rem;
	min-height: 3.3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	color: #fff;
	font-size: 1.99rem;
	font-weight: 300;
	background: #FF788C;
}
.comTimeBox .subBox {
	font-size: 3.9rem;
	font-weight: 600;
}
.comTimeBox .date {
	padding: 0 0.6rem 0 0.9rem;
	width: fit-content;
	position: relative;
	z-index: 1;
}
.comTimeBox .date::before {
	position: absolute;
	left: 0;
	right: 0;
	top: 2.3rem;
	bottom: 0;
	background: #FFF1F3;
	z-index: -1;
	content: "";
}
.comTimeBox .date .week {
	margin-left: 0.3rem;
	font-size: 1.9rem;
	display: inline-block;
	vertical-align: 0.3rem;
}
.comTimeBox .date .week span {
	margin: 0 0.3rem;
	font-weight: 300;
}
.comTimeBox .time {
	margin: -0.3rem 0 0 1rem;
	font-size: 2.9rem;
}
.comTimeBox .time span {
	margin: 0 0.2rem;
	font-size: 3.1rem;
}
@media all and (max-width: 896px) {
	.comTimeBox {
		margin: -1.6rem 0 0.9rem -1.2rem;
	}
	.comTimeBox .num {
		margin-top: 0.3rem;
		min-width: 2.1rem;
		min-height: 2.1rem;
		font-size: 1.3rem;
	}
	.comTimeBox .subBox {
		margin-top: -1px;
		font-size: 2.5rem;
	}
	.comTimeBox .date {
		padding: 0 0.3rem 0 0.7rem;
	}
	.comTimeBox .date::before {
		top: 1.5rem;
	}
	.comTimeBox .date .week {
		margin-left: 0;
		font-size: 1.2rem;
		vertical-align: 0.1rem;
	}
	.comTimeBox .time {
		margin: -0.2rem 0 0 0.7rem;
		font-size: 1.9rem;
	}
	.comTimeBox .time span {
		margin: 0 1px;
		font-size: 2rem;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
	margin-top: 2.1rem;
}
.comBtn a {
	padding: 0 3rem 0.2rem;
	min-height: 4.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.1;
	text-align: center;
	background: #FF788C;
}
.comBtn a::before {
	margin-top: -0.5rem;
	width: 0.9rem;
	height: 0.9rem;
	position: absolute;
	right: 1.7rem;
	top: 50%;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: rotate(-45deg); 
	content: '';
}
.comBtn a:hover {
	opacity: 0.7;
}
.comBtn.disable a {
	color: #fff;
	letter-spacing: 0.03em;
	border: 1px solid #fff;
	background: #CCC;
	font-family: "sofia-pro",sans-serif;
	pointer-events: none;
}
.comBtn.disable a::before {
	display: none;
}
@media all and (max-width: 896px) {
	.comBtn {
		margin-top: 1.3rem;
	}
	.comBtn a {
		padding: 0 2rem 0.1rem;
		min-height: 2.9rem;
		font-size: 1.03rem;
	}
	.comBtn a::before {
		margin-top: -0.4rem;
		width: 0.6rem;
		height: 0.6rem;
		right: 1.1rem;
	}
	.comBtn.disable a {
		font-size: 1.3rem;
	}
}
/*------------------------------------------------------------
	fade
------------------------------------------------------------*/
.fadeInUp {
	opacity: 0;
	transition: opacity .8s,transform .8s;
    transform: translateY(4rem);
}
.fadeInUp.visible {
	opacity: 1;
    transform: none;
}
.fadeGroup .fadeItem {
	opacity: 0;
	transition: opacity .8s,transform .8s;
    transform: translateY(4rem);
}
.fadeGroup.visible .fadeItem {
	opacity: 1;
    transform: none;
}