@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;
}
/* font */
.notoSerif {
	font-family: "Noto Serif JP", serif;
}
/* fade */
.fadeIn {
	opacity: 0;
	transform: translateY(4rem);
	transition: 0.5s;
}

.fadeIn.on {
	transform: translateY(0);
	opacity: 1;
}
.fadeIn.delay01 {
	transition-delay: 0.5s;
}
.fadeIn.delay02 {
	transition-delay: 1s;
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 100rem;
}
@media all and (max-width: 960px) {
	.content {
		margin: 0 2.5rem;
		width: auto !important;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 0.9rem;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}
@media all and (max-width: 960px) {
	.headLine01 {
		margin-bottom: 2.5rem;
		font-size: 1.9rem;
	}
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	margin: 0 0.4rem 4.6rem 0;
	padding: 1.4rem 3.2rem 1rem;
	position: relative;
	font-size: 2rem;
	font-weight: 700;
	color: #1D3F80;
	letter-spacing: 0.03em;
	background: #fff;
	border: 1px solid rgba(29, 63, 128, 0.6);
	box-shadow: 0.4rem 0.5rem 0 rgba(29, 63, 128, 0.6);
}
.headLine02 .sml {
	padding: 0.1rem 0.6rem 0.2rem;
	position: absolute;
	left: 3.6rem;
	top: -1.5rem;
	font-size: 1.2rem;
	font-weight: 400;
	color: #fff;
	background: #1D3F80;
}
@media all and (max-width: 960px) {
	.headLine02 {
		margin: 0 0.4rem 3.5rem 0;
		padding: 1.4rem 3.2rem 1.5rem;
		font-size: 1.7rem;
		text-align: center;
		box-shadow: 0.4rem 0.4rem 0 rgba(29, 63, 128, 0.6);
	}
	.headLine02 .sml {
		left: 50%;
		top: -1.6rem;
		transform: translateX(-50%);
	}
}
/*------------------------------------------------------------
	headLine03
------------------------------------------------------------*/
.headLine03 {
	margin-bottom: 2rem;
	font-weight: 700;
	font-size: 2rem;
	color: #1D3F80;
	text-align: center;
}
@media all and (max-width: 960px) {
	.headLine03 {
		margin-bottom: 2.6rem;
		font-size: 1.9rem;
		letter-spacing: 0.03em;
	}
}
/*------------------------------------------------------------
	comLinkList
------------------------------------------------------------*/
.comLinkList {
	display: flex;
	justify-content: center;
	gap: 3.8rem;
}
.comLinkList li {
	width: 25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 1rem;
}
.comLinkList li .text {
	padding: 0.6rem 1.5rem 0.7rem;
	min-width: 10.4rem;
	text-align: center;
	color: #fff;
	font-weight: 400;
	font-size: 1.1rem;
	line-height: 1;
	border-radius: 5rem;
	background: #C4A75A;
}
.comLinkList li .text01 {
	background: #998048;
}
.comLinkList li .text02 {
	background: #755D2D;
}
.comLinkList li .text .lrg {
	font-weight: 700;
	font-size: 2rem;
}
.comLinkList li .price {
	font-size: 2.3rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.6rem;
	word-wrap: break-word;
}
.comLinkList li .price .sml {
	font-size: 50%;
}
.comLinkList li .btn {
	margin-top: auto;
	width: 100%;
}
.comLinkList li .btn a {
	padding: 1.8rem 4rem 1.9rem;
	display: block;
	color: #000;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	text-align: center;
	background: rgba(29, 64, 128, 0.06) url(../img/common/icon01.png) no-repeat right 1.3rem center / 2.3rem;
	border: 1px solid #1D3F80;
	box-shadow: 0.3rem 0.3rem 0 rgba(204, 204, 204, 0.3);
}
@media all and (min-width: 961px) {
	.comLinkList li .btn a:hover {
		background-position: right center;
	}
}
@media all and (max-width: 960px) {
	.comLinkList {
		display: block;
	}
	.comLinkList li {
		margin-bottom: 3rem;
		width: auto;
	}
	.comLinkList li:last-child {
		margin-bottom: 0;
	}
	.comLinkList li .price {
		font-size: 2.2rem;
	}
	.comLinkList li .price .sml {
		font-size: 52%;
	}
}