@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-PSP */
/* 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;
	padding: 0 2rem;
	max-width: 120rem;
}
@media all and (max-width: 960px) {
	.content {
		padding: 0 4rem;
	}
}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.fadeInUp {
    opacity: 0;
	transform: translate(0,40px);
    transition: transform ease-in-out 0.8s,opacity ease-in-out 0.8s;
}
.fadeInUp.on {
    opacity: 1;
	transform: translate(0, 0);
}
.dely02 {
	transition-delay: 0.2s;
}
@media all and (max-width: 960px) {
}

/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
.comLink {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	width: 16.5rem;
}
.comLink a {
	color: #7F7F7F;
	min-height: 4.8rem;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	letter-spacing: 0.2em;
	border: 1px solid #7F7F7F;
	background-color: #fff;
	position: relative;
	box-shadow: 0.2rem 0.2rem 0 #D3D3D3;
}
.comLink a:after {
	width: 3rem;  
	height: 1px;
	background-color: #FF8DC4;
	position: absolute;  
	top: 50%;
	transform: translateY(-50%);
	right: -1.5rem;  
	content: ""; 
}
.comLink .color {
	margin-right: 0.5rem;
	color: #FF8DC4;
}
.comLink a:hover {
	opacity: 0.7;
}
.comLink.no a {
	pointer-events: none;
	background-color: rgba(127, 127, 127, 0.3);
}
@media all and (max-width: 960px) {
	.comLink a {
		font-size: 1.6rem;
	}
	
}

/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 5.8rem;
	font-size: 2.3rem;
	color: #ED3D90;
	letter-spacing: 0.2em;
	font-weight: 200;
	text-align: center;
	position: relative;
}
.headLine01:after {
	width: 100%;  
	background: url(../img/common/line2.png) repeat;
	background-size: auto 0.6rem;
	position: absolute;  
	top: 0;
	bottom: 1rem;
	left: 0;
	z-index: -1;
	content: ""; 
}
.headLine01 .num {
	margin-left: 0.8rem;
	font-size: 4rem;
	letter-spacing: 0;
}
@media all and (max-width: 960px) {
	.headLine01 {
		margin-bottom: 9.6rem;
		padding-top: 0.6rem;
		font-size: 1.8rem;
	}
	.headLine01::after{
		bottom: 0;
	}
	.headLine01 .num {
		font-size: 3.2rem;
	}
	
}

/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02{
	color: #fff;
	font-size: 2.7rem;
	font-weight: 300;
	padding: 1.2rem 2rem;
	width: fit-content;
	margin: 0 auto;
	min-width: 50rem;
	text-align: center;
	background-color: #ED3D90;
}
@media all and (max-width: 960px) {
	.headLine02 {
		padding: 1.3rem 2rem 1.7rem;
		width: calc(100% - 5rem);
		min-width: inherit;
		font-size: 2.6rem;
		line-height: 1.35;
	}
	
}
