@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;}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	font-size: 2rem;
	font-style: italic;
	letter-spacing: 0.5em;
	line-height: 1;
	position: relative;
	font-weight: 500;
	-webkit-writing-mode : tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.headLine01 span {
	display: block;
	width: 26px;
	height: 159px;
	position: relative;
}
.headLine01:after {
	position: absolute;
	top: 159px;
	width: 1px;  
	left: calc(50% + 5px);
	height: calc(100% - 159px);
	display: block;
	background-color: #231815;
	content: ""; 
}
@media all and (max-width: 896px) {
	.headLine01 {
		padding-bottom: 10px;
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		-moz-writing-mode: horizontal-tb;
		-ms-writing-mode: horizontal-tb;
		-o-writing-mode: horizontal-tb;
		text-align: center;
	}
	.headLine01 span {
		width: auto !important;
		height: auto !important;
	}
	.headLine01::after {
		width: 50px;
		height: 1px !important;
		left: 50%;
		top: auto !important;
		bottom: 0 !important;
		transform: translateX(-50%);
	}
}

/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
@media all and (max-width: 896px) {
}


/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
.comLink {
	margin: 0 auto;
	width: 183px;
	position: relative;
	z-index: 1;
}
.comLink a {
	padding: 5px 5px 7px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 40px;
	font-weight: 700;
	border-radius: 50px;
	position: relative;
}
.comLink a:hover {
	opacity: 0.7;
}
.comLink a:after {
	width: 100%;  
	height: 100%;
	border-radius: 50px;
	background : linear-gradient(90deg, rgba(255, 241, 0, 1) 0%, rgba(0, 167, 60, 1) 100%);
	position: absolute;  
	top: 0;
	left: 0;  
	content: ""; 
	z-index: -1;
}
@media all and (max-width: 896px) {
}

.fadeInUp {
    opacity: 0;
	transform: translate(0,80px);
	-webkit-transition: all ease-in-out 0.8s;
    transition: all ease-in-out 0.8s;
}

.fadeInUp.on {
    opacity: 1;
	transform: translate(0, 0);
}