@charset "utf-8";
/*----------------------------------------------
common
---------------------------------------------*/
/*----------------------------------------------
	show
---------------------------------------------*/
.is_fadeup {
	opacity: 0;
	transform: translateY(50px);
}
.active.is_fadeup,
.active .is_fadeup {
	animation: fadeUp 0.5s forwards;
}
.is_bound {
	opacity: 0;
	transform: scale(1.2);
}
.is_bound:nth-child(2) {
	opacity: 0;
	transform: scale(1.2) translateY(-20px) translateX(-5px);
}
.active .is_bound {
	animation: bound 1s forwards;
}
.active .is_bound:nth-child(2) {
	animation: boundUp 1s forwards;
}
/*----------------------------------------------
	section
---------------------------------------------*/
/*  .c_sec_lg
---------------------------------------------*/
.c_sec_lg {
	padding: 100px 0;
}
.c_sec_sm {
	padding: 60px 0;
}
@media screen and (max-width: 1024px) {
	.c_sec_lg {
		padding: 80px 0;
	}
	.c_sec_sm {
		padding: 40px 0;
	}
}
@media screen and (max-width: 640px) {
	.c_sec_lg {
		padding: 30px 0;
	}
	.c_sec_sm {
		padding: 20px 0;
	}
}
/*----------------------------------------------
	font
---------------------------------------------*/
.c_font_din {
	font-family: din-2014, sans-serif;
}
/*----------------------------------------------
	ttl
---------------------------------------------*/
/*  .c_ttl_sec
---------------------------------------------*/
.c_ttl_sec {
	position: relative;
	margin-bottom: 20px;
	font-size: 6.4em;
	color: #fff;
	-webkit-text-stroke: 4px var(--bk-color);
	paint-order: stroke;
	text-align: center;
}
.c_ttl_sec::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	content: attr(data-ttl);
	z-index: -1;
	margin: auto;
	paint-order: fill;
	color: var(--key-color);
	text-shadow: 0px 0px 0 var(--key-color);
}
.active.c_ttl_sec::before {
	animation: shadowView 0.5s 0.2s forwards;
}
.c_ttl_sec.is_color_gr {
	color: var(--main-color);
}
@media (max-width: 640px) {
	.c_ttl_sec {
		font-size: 4em;
		-webkit-text-stroke: 2px var(--bk-color);
	}
	.active.c_ttl_sec::before {
		animation: shadowViewSP 0.5s 0.2s forwards;
	}
}
/*----------------------------------------------
	btn
---------------------------------------------*/
/*  .c_btn
---------------------------------------------*/
.c_btn {
	position: relative;
	overflow: hidden;
	max-width: 400px;
	width: 80%;
	margin-inline: auto !important;
	border-radius: 100px;
	text-align: center;
}
.c_btn::before {
	position: absolute;
	top: -100%;
	left: -180px;
	bottom: -100%;
	content: "";
	z-index: 2;
	width: 100px;
	height: 180px;
	margin: auto;
	background: rgba(255, 255, 255, 0.5);
	transform: skewX(-45deg);
	animation: shine 5s 3s forwards infinite;
}
.c_btn a {
	position: relative;
	display: block;
	padding: 0.5em;
	border-width: 5px;
	border-style: solid;
	border-radius: 100px;
	font-size: 1.65em;
	color: var(--bk-color);
	font-weight: 900;
	text-decoration: none;
	transition: 0.4s;
}
.c_btn a::before,
.c_btn a::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 100px;
	transition: 0.4s;
}
.c_btn a::before {
	z-index: -1;
}
.c_btn a::after {
	z-index: -2;
	transform: scale(1.02, 1.04);
}
.c_btn a:hover::before {
	opacity: 0;
}
/* option - size */
.is_btn_sm a {
	font-size: 1.125em;
}
/* option - color */
.is_btn_pl a {
	border-color: var(--key-color);
}
.is_btn_pl a::before {
	background: linear-gradient(#fff, var(--key-color));
}
.is_btn_pl a::after {
	background: var(--key-color);
}
.is_btn_gr a {
	border-color: var(--main-color);
}
.is_btn_gr a::before {
	background: linear-gradient(#fff, var(--main-color));
}
.is_btn_gr a::after {
	background: var(--main-color);
}
@media (max-width: 640px) {
	.c_btn a {
		border-width: 2px;
		font-size: 1.4em;
	}
}
/*----------------------------------------------
	link
---------------------------------------------*/
.c_link_tr {
	transition: 0.3s;
}
.c_link_tr:hover {
	opacity: 0.6;
}
/*----------------------------------------------
	box
---------------------------------------------*/
/*  .c_cta_box
---------------------------------------------*/
.c_cta_box {
	position: relative;
	margin-bottom: 20px;
	text-align: center;
}
.c_cta_box::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	z-index: -10;
	width: 100%;
	height: 100%;
	background: var(--bk-color);
}
.c_cta_box .l_wrap {
	position: relative;
}
.c_cta_box .l_wrap::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	z-index: -9;
	width: 100%;
	height: calc(100% + 90px);
	background: url(../images/cta_left.png) no-repeat 0 bottom / auto 100%,
		url(../images/cta_right.png) no-repeat right bottom / auto 100%;
	transform: translateY(130px);
	opacity: 0;
}
.c_cta_box.active .l_wrap::after {
	animation: ctaFadeup 0.5s forwards;
}
.c_cta_ttl {
	font-size: 1.65em;
	color: #fff;
	font-weight: 600;
}
.c_cta_box .c_btn {
	margin: 20px 0;
}
.c_cta_fukidashi {
	position: relative;
	display: inline-block;
	margin-top: 20px;
	padding: 0.2em 0.5em 0.3em;
	background: var(--key-color);
	border-radius: 8px;
	color: #fff;
	font-weight: 600;
}
.c_cta_fukidashi::before {
	position: absolute;
	right: 0;
	top: -15px;
	left: 0;
	content: "";
	width: 20px;
	aspect-ratio: 1 / cos(30deg);
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	margin: auto;
	background: var(--key-color);
}
.c_cta_em {
	font-size: 1.3em;
}
@media screen and (max-width: 1024px) {
	.c_cta_box .l_wrap::after {
		transform: translateY(80px);
	}
}
@media screen and (max-width: 768px) {
	.c_cta_box .l_wrap::after {
		background-size: 15% auto;
	}
}
@media screen and (max-width: 640px) {
	.c_cta_box .l_wrap::after {
		background-size: 12% auto;
	}
	.c_cta_box.active .l_wrap::after {
		animation: ctaFadeupSP 0.5s forwards;
	}
	.c_cta_ttl {
		font-size: 1.3em;
	}
	.c_cta_box .c_btn {
		margin: 10px 0;
	}
	.c_cta_fukidashi {
		margin-top: 10px;
	}
	.c_cta_fukidashi::before {
		top: -13px;
	}
}
/*----------------------------------------------
	lead
---------------------------------------------*/
/*  .c_lead_lg
---------------------------------------------*/
.c_lead_lg {
	font-size: 2.9em;
	font-weight: 900;
	text-align: center;
}
.c_lead_md {
	font-size: 2.15em;
	font-weight: 900;
	text-align: center;
}
.c_lead_sm {
	font-size: 1.3em;
	font-weight: 600;
	text-align: center;
	line-height: 1.8;
}
.c_lead_em {
	font-size: 1.2em;
	font-weight: 900;
}
.c_lead_em_lg {
	font-size: 1.4em;
}
.c_lead_ttl {
	font-size: 2em;
	line-height: 1;
}
.c_lead_color {
	color: var(--key-color);
}
@media screen and (max-width: 640px) {
	.c_lead_lg {
		font-size: 1.6em;
	}
	.c_lead_md {
		font-size: 1.4em;
	}
	.c_lead_sm {
		font-size: 0.9em;
	}
	.c_lead_ttl {
		font-size: 1.8em;
	}
}
/*----------------------------------------------
	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_around {
	/* 左右中央 */
	justify-content: space-around;
}
.is_fl_jc_center {
	/* 左右中央 */
	justify-content: center;
}
.is_fl_jc_between {
	/* 均等 */
	justify-content: space-between;
}
.is_fl_al_center {
	/* 上下中央 */
	align-items: center;
}
.is_fl_al_start {
	/* 上 */
	align-items: start;
}
@media screen and (max-width: 768px) {
	.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);
	}
	.is_fl_bw_column2 > * {
		width: calc((100% / 2) - 10px);
	}
}
@media screen and (max-width: 640px) {
	.is_sp_fl_column_full_sp > * {
		width: 100%;
	}
}
