@charset "utf-8";
/*----------------------------------------------
common
---------------------------------------------*/
/*----------------------------------------------
	section
---------------------------------------------*/
/*  .c_sec
---------------------------------------------*/
.c_sec {
	padding: 140px 0;
}
.c_sec_btm {
	padding: 0 0 140px;
}
.c_sec_top {
	padding: 140px 0 0;
}
@media (max-width: 960px) {
	.c_sec {
		padding: 80px 0;
	}
	.c_sec_btm {
		padding: 0 0 80px;
	}
	.c_sec_top {
		padding: 80px 0 0;
	}
}
@media screen and (max-width: 768px) {
	.c_sec {
		padding: 40px 0;
	}
	.c_sec_btm {
		padding: 0 0 40px;
	}
	.c_sec_top {
		padding: 40px 0 0;
	}
}
/*----------------------------------------------
	ttl
---------------------------------------------*/
.c_ttl_wrap {
	margin-bottom: 40px;
	text-align: center;
}
/*  .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
	position: relative;
	display: inline-block;
	font-size: 5rem;
	font-weight: 900;
	vertical-align: baseline;
}
.c_ttl_cont {
	position: relative;
	z-index: 2;
	display: inline-block;
	line-height: 1.1;
}
.is_ttl_flex {
	display: flex;
	justify-content: center;
	align-items: end;
}
.c_ttl_em {
	color: var(--main-color);
	font-size: 1.6em;
}
.c_ttl_en {
	position: absolute;
	bottom: 30%;
	left: calc(100% - 1.4em);
	z-index: 1;
	color: rgba(var(--rgb-sub-color), 0.5);
	text-align: left;
	font-family: "Square Peg", cursive;
	font-size: 8rem;
	font-weight: 500;
	white-space: nowrap;
	transform: rotate(-15deg);
}
/* 固有CSS */
.c_ttl_about {
	width: 270px;
}
@media (max-width: 1280px) {
	.c_ttl_type02 {
		font-size: calc(24px + 8 * (100vw - 768px) / 512);
	}
	.c_ttl_en {
		font-size: calc(40px + 30 * (100vw - 768px) / 512);
	}
	.c_ttl_about {
		width: 180px;
	}
}
@media (max-width: 768px) {
	.c_ttl_wrap {
		margin-bottom: 20px;
	}
	/*  .c_ttl_type02
---------------------------------------------*/
	.c_ttl_type02 {
		font-size: 2rem;
	}
	.c_ttl_en {
		bottom: 60%;
		left: calc(100% - 2.4em);
		font-size: 2.4rem;
	}
	.c_ttl_about {
		width: 160px;
	}
}
@media (max-width: 640px) {
	.c_ttl_about {
		width: 100px;
	}
}
/*----------------------------------------------
	btn
---------------------------------------------*/
/*  .c_btn
---------------------------------------------*/
.c_btn a {
	position: relative;
	overflow: hidden;
	max-width: 740px;
	width: 80%;
	margin: auto;
	display: block;
	padding: 0.6em 0.8em;
	border-radius: 20px;
	color: #fff;
	font-size: 4rem;
	font-weight: 600;
	line-height: 1.4;
	transition: all 0.3s ease;
}
.c_btn a::before,
.c_btn a::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 20px;
	transform: translateZ(0);
	backface-visibility: hidden;
	transition: all 0.3s ease;
}
.c_btn a::before {
	background: var(--sub-color);
	z-index: -2;
}
.c_btn a::after {
	background: linear-gradient(135deg, var(--grad-color));
	z-index: -1;
}
.c_btn a:hover::after {
	opacity: 0;
}
/*  .c_exlink_arrow
---------------------------------------------*/
.c_exlink_arrow {
	position: absolute;
	top: 0;
	right: 0.67em;
	bottom: 0;
	margin: auto;
	width: 24px;
	height: 24px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	transition: 0.3s;
}
.c_exlink_arrow::after {
	position: absolute;
	top: 8px;
	right: -7px;
	content: "";
	width: 34px;
	height: 4px;
	background: #fff;
	transform: rotate(-45deg);
	transition: 0.3s;
}
.c_btn a:hover .c_exlink_arrow {
	transform: rotate(45deg);
}
@media (max-width: 1280px) {
	.c_btn a {
		font-size: calc(20px + 20 * (100vw - 768px) / 512);
	}
}
@media (max-width: 960px) {
	.c_btn a {
		border-radius: 10px;
		font-size: 2rem;
		max-width: 80%;
		width: 400px;
	}
	/*  .c_exlink_arrow
---------------------------------------------*/
	.c_exlink_arrow {
		width: 16px;
		height: 16px;
		border-top-width: 2px;
		border-right-width: 2px;
	}
	.c_exlink_arrow::after {
		top: 6px;
		right: -5px;
		width: 24px;
		height: 2px;
	}
}
@media (max-width: 640px) {
	.c_btn a {
		max-width: 70%;
		width: 300px;
	}
}
/*----------------------------------------------
	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_al_center {
		align-items: 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_al_center {
		align-items: 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);
	}
}
