<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 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;
}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
/* fixBtn */
.fixBtn {
	position: fixed;
	right: 79px;
	top: 87px;
	width: 244px;
	z-index: 20;
}
.fixBtn a {
	padding: 7px 7px 5px 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: 0.5px;
	background-color: #c30d23;
	border-radius: 30px;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}
.fixBtn a .small {
	margin-right: 15px;
	font-size: 1.2rem;
	line-height: 1.1;
}
@media all and (-ms-high-contrast:none){
	.fixBtn a {
		padding: 10px 7px 2px 17px;
	}
}
@media all and (min-width: 897px) {
	.fixBtn a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	.fixBtn {
		right: 0;
		top: auto;
		bottom: 0;
		width: 100%;
	}
	.fixBtn a {
		background-color: #c30d23;
		border-radius: 0;
		box-shadow: none;
	}
}
/* comBox */
.comBox {
	margin: 0 auto;
	max-width: 1002px;
}
@media all and (max-width: 896px) {
	.comBox {
		margin: 0 10px;
	}
}
/* mainVisual */
.mainVisual {
	padding: 162px 0 77px;
	text-align: center;
	background: url("../../img/function/main_img.jpg") center bottom;
	background-size: cover;
}
.mainVisual p {
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.8;
}
.mainVisual .title {
	margin: 0 50px 40px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 3rem;
	letter-spacing: 4px;
}
.mainVisual .title span {
	display: block;
	margin: 7px 0 0 17px;
}
@media all and (max-width: 896px) {
	.mainVisual {
		padding: 80px 10px 40px;
	}
	.mainVisual p {
		font-size: 1.8rem;
	}
	.mainVisual .title {
		margin: 0 25px 20px 0;
		font-size: 2rem;
		letter-spacing: 2px;
	}
	.mainVisual .title span {
		margin: 4px 0 0 10px;
	}
}</pre></body></html>