@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-YH */
/* 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;
	width: 96rem;
	max-width: 95%;
}
@media all and (max-width: 767px) {
	.content {
		margin: 0 1rem;
		width: auto !important;
		max-width: initial !important;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
	text-align: center;
}
.comBtn .txt {
	margin: 0 auto -0.1rem;
	padding: 0 3.4rem;
	width: fit-content;
	display: block;
	position: relative;
	font-size: 2.7rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 1.2;
}
.comBtn .txt::before,
.comBtn .txt::after {
	margin-top: 0.1rem;
	width: 2rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	aspect-ratio: 4/5;
	background: url(../img/common/line01.png) no-repeat center center / 100%;
	content: '';
	will-change: transform;
}
.comBtn .txt::before {
	left: 0;
}
.comBtn .txt::after {
	right: 0;
	transform: translateY(-50%) rotateY(180deg);
}
.comBtn .txt.white {
	color: #fff;
}
.comBtn .txt.white::before,
.comBtn .txt.white::after {
	background-image: url(../img/common/line02.png);
}
.comBtn a {
	margin: 0 auto;
	width: 47.5rem;
	display: block;
}
.comBtn a:hover {
	opacity: 0.8;
}
@media all and (max-width: 767px) {
	.comBtn .txt {
		margin-bottom: -0.2rem;
		padding: 0 2.2rem;
		font-size: 1.8rem;
	}
	.comBtn .txt::before,
	.comBtn .txt::after {
		margin-top: 0.1rem;
		width: 1.35rem;
	}
	.comBtn a {
		width: 31.9rem;
		max-width: 100%;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 4.2rem;
	padding: 0.9rem 1rem 1.4rem;
	text-align: center;
	color: #fff;
	font-size: 3.6rem;
	letter-spacing: 0.02em;
	border-radius: 1.2rem;
	background: #534C84;
}
.headLine01 .sm {
	font-size: 80%;
}
@media all and (max-width: 767px) {
	.headLine01 {
		margin-bottom: 2rem;
		padding: 1.2rem 1rem 1.7rem;
		font-size: 2.4rem;
		border-radius: 0.8rem;
	}
}
/*------------------------------------------------------------
	comRelated
------------------------------------------------------------*/
.comRelated .headLine01 {
	margin-bottom: 4.1rem;
}
.comRelated .colBox {
	display: flex;
	justify-content: space-between;
}
.comRelated .colBox .col {
	width: 49%;
}
.comRelated .ttl {
	margin-bottom: 1.4rem;
	padding: 1.1rem 1rem 1.5rem;
	text-align: center;
	font-size: 2.7rem;
	font-weight: 700;
	letter-spacing: 0.025em;
	background: #C5C2D5;
	border-radius: 1.2rem;
}
.comRelated .linkList li {
	padding-left: 1.2em;
	position: relative;
	font-size: 1.5rem;
	letter-spacing: 0.02em;
	line-height: 2.08;
}
.comRelated .linkList li::before {
	width: 0.4rem;
	height: 0.4rem;
	position: absolute;
	left: 0.1rem;
	top: 1.5rem;
	border-radius: 100%;
	background: #292960;
	content: '';
}
.comRelated .linkList li a {
	text-decoration: underline;
}
.comRelated .linkList li a:hover {
	opacity: 0.8;
}
@media all and (max-width: 767px) {
	.comRelated .headLine01 {
		margin-bottom: 2rem;
	}
	.comRelated .colBox {
		flex-direction: column;
		gap: 1.5rem;
	}
	.comRelated .colBox .col {
		width: 100%;
	}
	.comRelated .ttl {
		margin-bottom: 0.7rem;
		padding: 0.9rem 1rem 0.9rem;
		font-size: 1.8rem;
		border-radius: 0.8rem;
	}
	.comRelated .linkList li {
		line-height: 2;
	}
	.comRelated .linkList li::before {
		top: 1.4rem;
	}
}
/*------------------------------------------------------------
	fixBar
------------------------------------------------------------*/
.fixBar {
	padding: 0.4rem 1rem 0.8rem;
	width: 100%;
	position: sticky;
	left: 0;
	bottom: 0;
	color: #fff;
	text-align: center;
	background: #292960;
	z-index: 1000;
	transition: 0.3s;
	opacity: 0;
	user-select: none;
	pointer-events: none;
}
.fixBar.show {
	opacity: 1;
	user-select: initial;
	pointer-events: initial;
}
.fixBar .comBtn .txt {
	margin-bottom: 0.5rem;
	font-size: 1.8rem;
}
.fixBar .comBtn .txt::before,
.fixBar .comBtn .txt::after {
	display: none;
}
.fixBar .comBtn a {
	width: 44.3rem;
}
@media all and (max-width: 767px) {
	.fixBar {
		padding: 0.3rem 1rem 0.1rem;
		overflow: hidden;
	}
	.fixBar .comBtn {
		margin-bottom: -1rem;
	}
	.fixBar .comBtn .txt {
		margin-bottom: -0.6rem;
		padding: 0 1.9rem;
		font-size: 1.2rem;
	}
	.fixBar .comBtn .txt::before,
	.fixBar .comBtn .txt::after {
		width: 1.1rem;
		display: block;
	}
	.fixBar .comBtn a {
		width: 31.9rem;
	}
}