@charset "utf-8";
/*----------------------------------------------
common
---------------------------------------------*/
/*----------------------------------------------
	section
---------------------------------------------*/
/*  .c_sec
---------------------------------------------*/
.c_sec {
	padding: 60px 0 0;
}
.c_sec_sm {
	padding: 40px 0 0;
}
.c_sec_lg {
	padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
	.c_sec {
		padding: 30px 0 0;
	}
	.c_sec_sm {
		padding: 20px 0 0;
	}
	.c_sec_lg {
		padding: 40px 0 0;
	}
}
/*----------------------------------------------
	ttl
---------------------------------------------*/
/*  .c_ttl_cloud
---------------------------------------------*/
.c_ttl_cloud {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	width: var(--cloud-width);
	height: calc(var(--cloud-width) * 0.42);
	margin-inline: auto;
	background: url(../images/ttl_cloud_bg.png) no-repeat center center / 100%
		auto;
	font-size: 1.889em;
	color: var(--main-color);
	font-weight: 700;
	text-align: center;
}
/* .is_ttl_bl */
.is_ttl_bl {
	width: var(--cloud-bl-width);
	height: calc(var(--cloud-bl-width) * 0.7);
	background: url(../images/ttl_cloud_bl_bg.png) no-repeat center center / 100%
		auto;
	font-size: 1.44em !important;
}
/*  .c_ttl_type01
---------------------------------------------*/
.c_ttl_type01 {
	margin-bottom: 15px;
	font-size: 1.667em;
	color: var(--main-color);
	text-align: center;
}
/*  .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
	margin-bottom: 20px;
	font-size: 1.778em;
	color: var(--main-color);
	text-align: center;
}
@media screen and (max-width: 768px) {
	/*  .c_ttl_cloud
---------------------------------------------*/
	.c_ttl_cloud {
		font-size: 1.8em;
	}
}
/*----------------------------------------------
	btn
---------------------------------------------*/
/*  .c_btn
---------------------------------------------*/
.c_btn a {
	position: relative;
	display: inline-block;
	padding: 0.1em 30px 0.25em 0.8em;
	background-color: var(--main-color);
	border-radius: 50px;
	color: #fff;
	text-align: center;
	transition: all 0.2s ease;
}
.c_btn a:hover {
	opacity: 0.6;
}
.c_btn a::before,
.c_btn a::after {
	position: absolute;
	top: 0;
	bottom: 0;
	content: "";
	margin: auto;
}
.c_btn a::before {
	right: calc(0.7em + 6px);
	width: 10px;
	height: 5px;
	background: #fff;
}
.c_btn a::after {
	right: 0.7em;
	height: 14px;
	aspect-ratio: 1 / 2;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: #fff;
}
/* option */
.is_btn_prev a {
	padding: 0.1em 0.8em 0.25em 30px;
}
.is_btn_prev a::before {
	right: initial;
	left: calc(0.7em + 6px);
}
.is_btn_prev a::after {
	right: initial;
	left: 0.7em;
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
/*  .c_btn_lg
---------------------------------------------*/
.c_btn_lg {
	text-align: center;
}
.c_btn_lg a {
	display: inline-block;
	width: min(100%, 310px);
	padding: 0.5em;
	background: var(--main-color);
	border: none;
	border-radius: 50px;
	color: #fff;
	font-size: 1.22em;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: 0.3s;
}
.c_btn_lg a:hover {
	opacity: 0.6;
}
/*----------------------------------------------
	link
---------------------------------------------*/
.c_link_alpha {
	transition: 0.3s;
}
.c_link_alpha:hover {
	opacity: 0.5;
}

/*----------------------------------------------
	ul
---------------------------------------------*/
.c_ul li {
	list-style-type: disc;
	margin-top: 10px;
	margin-left: 1.4em;
	text-indent: -1.4em;
}
.c_ol li {
	list-style-type: decimal;
	margin-top: 10px;
	margin-left: 1.4em;
	text-indent: -1.4em;
}
.c_disc li {
	position: relative;
	list-style: none;
	padding-left: 20px;
}
.c_disc li::before {
	position: absolute;
	top: 0.48em;
	left: 0;
	content: "";
	width: 10px;
	height: 10px;
	background: var(--main-color);
	border-radius: 20px;
}
.c_disc li:not(:last-child) {
	margin-bottom: 15px;
}
.c_bracket {
	list-style-type: none; /* 元の数字を隠す */
	counter-reset: cnt; /* カウンターをリセット */
	padding-left: 0;
}

.c_bracket li {
	margin-top: 10px;
	text-indent: -1.46em;
	margin-left: 1.46em;
	counter-increment: cnt; /* カウンターを増やす */
}

.c_bracket li::before {
	content: "(" counter(cnt) ") "; /* 括弧と数字を表示 */
}

/*----------------------------------------------
	box
---------------------------------------------*/
/*  .c_box_wh
---------------------------------------------*/
.c_box_wh {
	padding: 20px;
	background: var(--box-color);
	border-radius: 15px;
}
.c_box_ttl {
	margin-bottom: 20px;
	font-size: 1.556em;
	text-align: center;
}
.c_box_ttl_border {
	display: inline-block;
	padding: 0 0.5em 5px;
	background-image: radial-gradient(
		circle,
		var(--main-color) 3px,
		transparent 3px
	);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 14px 6px;
}

/* option */
.is_box_border {
	border: 5px solid var(--point-color);
}
.is_box_lg {
	padding: 25px 35px;
}
.is_border_wh {
	background-image: radial-gradient(circle, #fff 3px, transparent 3px);
}
@media screen and (max-width: 640px) {
	.c_box_ttl {
		font-size: 1.22em;
	}
	.c_box_ttl_border {
		background-image: radial-gradient(
			circle,
			var(--main-color) 2px,
			transparent 2px
		);
		background-size: 14px 4px;
	}
	.is_border_wh {
		background-image: radial-gradient(circle, #fff 2px, transparent 2px);
	}
}
@media screen and (max-width: 460px) {
	.is_box_lg {
		padding: 20px 30px;
	}
}

/*----------------------------------------------
	lead
---------------------------------------------*/
.c_lead {
	font-size: 2em;
	font-weight: 700;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.c_lead {
		font-size: 1.44em;
	}
}

/*----------------------------------------------
	table
---------------------------------------------*/
.c_tbl {
	width: 100%;
	background-image: radial-gradient(circle, #fff 2px, transparent 2px);
	background-position: left top;
	background-repeat: repeat-x;
	background-size: 14px 4px;
}
.c_tbl tr {
	background-image: radial-gradient(circle, #fff 2px, transparent 2px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 14px 4px;
}
.c_tbl th,
.c_tbl td {
	padding: 0.7em 0.2em 0.8em;
	text-align: left;
	vertical-align: middle;
}
/* option */
.is_tbl_center th,
.is_tbl_center td {
	text-align: center;
}

.is_tbl_bl,
.is_tbl_bl tr {
	background-image: radial-gradient(
		circle,
		rgba(var(--rgb-key-color), 0.2) 2px,
		transparent 2px
	);
}

/*----------------------------------------------
	news
---------------------------------------------*/
.c_news_wrap .c_btn {
	margin: -0.9em 20px 0 0;
}
.c_news {
	padding: 5px 15px;
}
.is_news_lg {
	padding: 30px;
}
.c_news li:not(:last-child) {
	background-image: radial-gradient(
		circle,
		rgba(var(--rgb-key-color), 0.3) 2px,
		transparent 2px
	);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 12px 4px;
}
.c_news a {
	display: flex;
	padding: 0.7em 1em calc(0.7em + 4px);
	color: #333;
	transition: all 0.2s ease;
}
.c_news a:hover {
	color: var(--main-color) !important;
}
.c_news .c_news_date {
	width: 20%;
	color: var(--main-color);
	font-weight: 700;
}
.c_news .c_news_title {
	width: 80%;
	font-weight: 700;
}
.c_news_none {
	padding: 1em 0;
	text-align: center;
}
.c_news_headline {
	margin: 10px 0 20px;
	padding-bottom: 20px;
	background-image: radial-gradient(
		circle,
		rgba(var(--rgb-key-color), 0.3) 2px,
		transparent 2px
	);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 12px 4px;
	font-size: 1.778em;
}
.c_news .c_news_cont a {
	display: inline;
	padding: 0;
	color: var(--key-color);
}
@media screen and (max-width: 768px) {
	.c_news_wrap .c_btn {
		margin-right: 10px;
	}
	.c_news_headline {
		font-size: 1.5em;
	}
}
@media screen and (max-width: 640px) {
	.c_news a {
		flex-direction: column;
	}
	.c_news .c_news_date,
	.c_news .c_news_title {
		width: 100%;
	}
}
/*----------------------------------------------
	pager
---------------------------------------------*/
.c_pager {
	clear: both;
	margin-top: 20px;
}
.c_pager a {
	position: relative;
	display: inline-block;
	padding: 0.1em 30px 0.25em 0.8em;
	background-color: var(--main-color);
	border-radius: 50px;
	color: #fff;
	text-align: center;
	transition: all 0.2s ease;
}
.c_pager a:hover {
	opacity: 0.6;
}
.c_pager a::before,
.c_pager a::after {
	position: absolute;
	top: 0;
	bottom: 0;
	content: "";
	margin: auto;
}
.c_pager a::before {
	right: calc(0.7em + 6px);
	width: 10px;
	height: 5px;
	background: #fff;
}
.c_pager a::after {
	right: 0.7em;
	height: 14px;
	aspect-ratio: 1 / 2;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: #fff;
}
.c_pager .next {
	float: right;
}
.c_pager .prev {
	float: left;
}
.c_pager .prev {
	padding: 0.1em 0.8em 0.25em 30px;
}
.c_pager .prev::before {
	right: initial;
	left: calc(0.7em + 6px);
}
.c_pager .prev::after {
	right: initial;
	left: 0.7em;
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.page-numbers:not(.prev):not(.next) {
	display: none;
}
/*----------------------------------------------
	flex
---------------------------------------------*/
.c_flex {
	display: flex;
	flex-wrap: wrap;
}
/*  column - ぴったりカラム用   */
.is_fl_column2 > * {
	width: calc(100% / 2);
}
.is_fl_column3 > * {
	width: calc(100% / 3);
}
.is_fl_column4 > * {
	width: calc(100% / 4);
}
.is_fl_column5 > * {
	width: calc(100% / 5);
}
.is_fl_column6 > * {
	width: calc(100% / 6);
}
/*  column - space-between用   */
.is_fl_bw_column2 > * {
	width: calc((100% / 2) - 20px);
}
.is_fl_bw_column3 > * {
	width: calc((100% / 3) - 20px);
}
.is_fl_bw_column4 > * {
	width: calc((100% / 4) - 20px);
}
.is_fl_bw_column5 > * {
	width: calc((100% / 5) - 20px);
}
.is_fl_bw_column6 > * {
	width: calc((100% / 6) - 20px);
}
/*  option   */
.is_fl_nowrap {
	/* 横幅に収まる */
	flex-wrap: nowrap;
}
.is_fl_column {
	/* 縦並び */
	flex-direction: column;
}
.is_fl_jc_end {
	/* 右寄せ */
	justify-content: flex-end;
}
.is_fl_jc_center {
	/* 左右中央 */
	justify-content: center;
}
.is_fl_jc_between {
	/* 均等 */
	justify-content: space-between;
}
.is_fl_al_center {
	/* 上下中央 */
	align-items: center;
}
@media screen and (max-width: 768px) {
	.is_tab_fl_column {
		flex-direction: column;
	}
	.is_tab_fl_jc_center {
		justify-content: center;
	}
	.is_tab_fl_column_full > * {
		width: 100%;
	}
	.is_tab_fl_column_full > *:not(:last-child) {
		margin-bottom: 20px;
	}
	/*  column - ぴったりカラム用   */
	.is_tab_fl_column2 > * {
		width: calc(100% / 2);
	}
	/*  column - space-between用   */
	.is_tab_fl_bw_column2 > * {
		width: calc((100% / 2) - 20px);
	}
}
@media screen and (max-width: 640px) {
	.is_sp_fl_column {
		flex-direction: column;
	}
	.is_sp_fl_jc_center {
		justify-content: center;
	}
	.is_sp_fl_column_full > * {
		width: 100%;
	}
	.is_sp_fl_column_full > *:not(:last-child) {
		margin-bottom: 20px;
	}
	/*  column - ぴったりカラム用   */
	.is_sp_fl_column2 > * {
		width: calc(100% / 2);
	}
	/*  column - space-between用   */
	.is_sp_fl_bw_column2 > * {
		width: calc((100% / 2) - 20px);
	}
}
