@charset "utf-8";
/*----------------------------------------------
common
---------------------------------------------*/
/*----------------------------------------------
	section
---------------------------------------------*/
/*  .c_sec
---------------------------------------------*/
.c_sec {
	padding: 120px 0;
}
.is_sec_anchor {
	scroll-margin-top: 95px;
}
@media screen and (max-width: 768px) {
	.c_sec {
		padding: 30px 0;
	}
}
/*----------------------------------------------
	ttl
---------------------------------------------*/
/*  .c_ttl_type01
---------------------------------------------*/

/*----------------------------------------------
	btn
---------------------------------------------*/
/*  .c_btn
---------------------------------------------*/
.c_btn.is_btn_width {
	max-width: 400px;
	width: 80%;
}
.c_btn a {
	display: block;
	padding: 1em 1em 0.8em;
	background-color: var(--main-color);
	border-radius: 50px;
	color: #fff;
	text-align: center;
	font-weight: 900;
	text-decoration: none;
	transition: all 0.3s ease;
}
.c_btn a:hover {
	background-color: var(--key-color);
}
/* option - color */
a.is_btn_gn {
	background-color: var(--gn-color);
}
a.is_btn_gn:hover {
	background-color: var(--hover-gn-color);
}
a.is_btn_lbl {
	background-color: var(--lbl-color);
}
a.is_btn_lbl:hover {
	background-color: var(--hover-lbl-color);
}
a.is_btn_pk {
	background-color: var(--pk-color);
}
a.is_btn_pk:hover {
	background-color: var(--hover-pk-color);
}
/* option - icon */
.has_btn_icon a {
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.2;
}
.has_btn_icon img {
	width: 44px;
}
/* option - disabled */
a.is_btn_disabled {
	opacity: 0.2;
	pointer-events: none;
	cursor: not-allowed;
}
a.is_btn_disabled:hover {
	background-color: var(--main-color);
}
a.is_btn_gn.is_btn_disabled:hover {
	background-color: var(--gn-color);
}
/*----------------------------------------------
	link
---------------------------------------------*/
.c_link_alpha {
	transition: 0.3s;
}
.c_link_alpha:hover {
	opacity: 0.5;
}
/*----------------------------------------------
	box
---------------------------------------------*/
/*  .c_box_type01
---------------------------------------------*/
/*----------------------------------------------
	lead
---------------------------------------------*/
/*  .c_lead_type01
---------------------------------------------*/
@media screen and (max-width: 768px) {
}
/*----------------------------------------------
	news
---------------------------------------------*/
.c_news {
	max-width: 1000px;
	width: 90%;
	margin: auto;
}
.c_news li:not(:last-child) {
	margin-bottom: 20px;
}
.c_news a {
	display: flex;
	padding: 0.7em 1em 0.7em;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	color: #333;
	text-decoration: none;
	transition: all 0.2s ease;
}
.c_news a:hover {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.c_news .c_news_date {
	width: 20%;
}
.c_news .c_news_title {
	width: 80%;
}
@media screen and (max-width: 768px) {
	.c_news a {
		flex-direction: column;
	}
	.c_news .c_news_date,
	.c_news .c_news_title {
		width: 100%;
	}
}
/*----------------------------------------------
	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);
	}
}
