@charset "utf-8";
/*----------------------------------------------
common
---------------------------------------------*/
.inview.active {
	opacity: 1;
	transform: none;
} /* WORKS EVERYWHERE */
/*----------------------------------------------
	section
---------------------------------------------*/
/*  .c_sec
---------------------------------------------*/
.c_sec {
	padding: 120px 0;
}
.c_sec + .c_sec {
	padding-top: 0;
}
@media screen and (max-width: 1024px) {
	.c_sec {
		padding: 80px 0;
	}
}
@media screen and (max-width: 768px) {
	.c_sec {
		padding: 30px 0;
	}
}
/*----------------------------------------------
	container
---------------------------------------------*/
.c_container + .c_container {
	margin-top: 60px;
}

.c_indeed_structure_container {
	display: block;
	margin: auto;
	width: 90%;
	justify-items: center;
}
.wd-container {
	width: 70%;
}
@media screen and (max-width: 1024px) {
	.c_container + .c_container {
		margin-top: 40px;
	}
}
@media screen and (max-width: 800px) {
	.wd-container {
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 376px) {
	.c_indeed_structure_container {
		padding: 0px 0px;
	}
}
/*----------------------------------------------
	ttl
---------------------------------------------*/
.c_ttl_wrap {
	position: relative;
	z-index: 2;
}
/*  .c_ttl_type01
---------------------------------------------*/
.c_ttl_type01 {
	position: relative;
	padding-left: 20px;
	font-size: 1em;
	font-weight: 900;
}
.c_ttl_type01::before {
	position: absolute;
	top: 0.4em;
	left: 0;
	content: "";
	width: 10px;
	height: 10px;
	background: var(--main-color);
	border-radius: 10px;
}
.c_ttl_type01 a {
	color: var(--bk-color);
	transition: 0.3s;
}
.c_ttl_type01 a:hover {
	color: var(--main-color);
}
#top .c_ttl_type01 {
	margin-bottom: 40px;
	padding-bottom: 1em;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#top .is_bg_bl .c_ttl_type01 {
	border-bottom-color: rgba(255, 255, 255, 0.5);
}
#top .is_bg_bl .c_ttl_type01::before {
	background: #fff;
}
/*  .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
	font-size: 5em;
	font-weight: 700;
	line-height: 1;
}
/*  .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
	margin-bottom: 1em;
	font-size: 2.5em;
	font-weight: 900;
}
/*  .c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
	margin-bottom: 30px;
	padding: 0.5em 0.7em 0.45em;
	background: #fff;
	border-radius: 10px;
	color: var(--main-color);
	font-size: 1.5em;
	font-weight: 900;
}
.is_ttl_bl {
	background-color: var(--main-color);
	color: #fff;
}
/*  .c_ttl_type05
---------------------------------------------*/
.c_ttl_type05,
.c_ttl_type06 {
	position: relative;
	margin-bottom: 20px;
	padding: 0.5em 0.5em 0.45em 40px;
	background: var(--main-color);
	border-radius: 10px;
	font-size: 1.25em;
	color: #fff;
	font-weight: 900;
}
.c_ttl_type05::before {
	position: absolute;
	top: 1em;
	left: 20px;
	content: "";
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 10px;
}
@media screen and (max-width: 1280px) {
	#top .c_ttl_type01 {
		margin-bottom: 20px;
		padding-bottom: 1em;
	}
}
@media screen and (max-width: 768px) {
	#top .c_ttl_type01 {
		margin-bottom: 0;
	}
	#top .c_ttl_type02 {
		margin: 10px 0;
	}
	.c_ttl_type02 {
		font-size: 4em;
	}
	.c_ttl_type03 {
		margin-bottom: 0.5em;
		font-size: 1.8em;
	}
	.c_ttl_type04 {
		margin-bottom: 20px;
		border-radius: 5px;
	}
	.c_ttl_type05 {
		margin-bottom: 10px;
		padding: 0.5em 0.5em 0.45em 20px;
		border-radius: 5px;
	}
	.c_ttl_type05::before {
		left: 10px;
		width: 6px;
		height: 6px;
	}
}

/*----------------------------------------------
	btn
---------------------------------------------*/
/*  .c_btn
---------------------------------------------*/
.c_btn a {
	position: relative;
	display: block;
	padding: 1em 1.5em 0.9em;
	background-color: var(--main-color);
	border-radius: 100px;
	color: #fff;
	font-size: 1.2em;
	font-weight: 900;
	transition: all 0.3s;
}
.c_btn a:hover {
	background-color: var(--bl-color) !important;
}
.c_btn_arrow {
	position: absolute;
	top: 0;
	right: 1em;
	bottom: 0;
	width: 6px;
	height: 6px;
	margin: auto;
	background: #fff;
	border-radius: 10px;
	transition: all 0.2s;
}
.c_btn_arrow::before {
	position: absolute;
	top: -100%;
	right: 0;
	bottom: -100%;
	content: "";
	opacity: 0;
	width: 12px;
	height: 12px;
	margin: auto;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	border-radius: 2px;
	transform: rotate(45deg);
}
a:hover .c_btn_arrow,
.s_contact_btn:hover .c_btn_arrow {
	width: 20px;
	height: 4px;
}
a:hover .c_btn_arrow::before,
.s_contact_btn:hover .c_btn_arrow::before {
	opacity: 1;
	transition: all 0.2s 0.2s;
}
/* option - size */
.is_btn_w490 a {
	width: 490px;
	max-width: 100%;
	margin-inline: auto;
}
/* option - color */
.is_btn_bk a {
	background-color: var(--bk-color);
}
/* option - arrow */
.c_btn_arrow.is_arrow_bl {
	background: var(--main-color);
}
.c_btn_arrow.is_arrow_bl::before {
	border-top-color: var(--main-color);
	border-right-color: var(--main-color);
}
@media screen and (max-width: 1024px) {
	a .c_btn_arrow,
	.s_contact_btn .c_btn_arrow {
		width: 20px;
		height: 4px;
	}
	a .c_btn_arrow::before,
	.s_contact_btn .c_btn_arrow::before {
		opacity: 1;
	}
}
/*----------------------------------------------
	link
---------------------------------------------*/
.c_link_alpha {
	transition: 0.3s;
}
.c_link_alpha:hover {
	opacity: 0.5;
}
/*----------------------------------------------
	box
---------------------------------------------*/
/*  .c_box_trans
---------------------------------------------*/
.c_box_trans {
	padding: 20px 0;
	background: rgba(var(--rgb-bl-color), 0.6);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-top: 1px solid var(--bl-color);
	border-bottom: 1px solid var(--bl-color);
}
/*----------------------------------------------
	tbl
---------------------------------------------*/
.c_tbl {
	width: calc(100% + 20px);
	margin-left: -20px;
	border-collapse: separate;
	border-spacing: 20px 0;
}
.c_tbl th,
.c_tbl td {
	padding: 0.8em 0;
	border-top: 1px dashed rgba(0, 0, 0, 0.2);
	text-align: left;
	vertical-align: top;
}
.c_tbl tr:last-child th,
.c_tbl tr:last-child td {
	border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.c_tbl th {
	min-width: 200px;
}
@media screen and (max-width: 640px) {
	.c_tbl {
		width: calc(100% + 10px);
		margin-left: -10px;
		border-spacing: 10px 0;
	}
	.c_tbl th {
		min-width: 100px;
	}
}
/*----------------------------------------------
	tabs
---------------------------------------------*/
.c_tabs .c_tabs_list {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.c_tabs .c_tabs_item {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.3;
	width: 200px;
	padding: 0.8em 0;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 20px 20px 0 0;
	color: rgba(0, 0, 0, 0.5);
	font-weight: 900;
	text-align: center;
	transition: all 0.2s ease;
	cursor: pointer;
}
.c_tabs_item + .c_tabs_item {
	margin-left: 10px;
}
.c_tabs .c_tabs_item:hover,
.c_tabs .c_tabs_item:has(input:hover) {
	background-color: var(--bl-color);
	color: #fff !important;
}
.c_tabs input {
	border: 0 !important;
	clip: rect(0, 0, 0, 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}
.c_tabs .c_tabs_content {
	overflow: hidden;
	position: absolute;
	height: 0;
}
.c_tabs .c_tabs_list:has(#tab_flesh > input:checked) ~ #tab_flesh_content,
.c_tabs .c_tabs_list:has(#tab_middle > input:checked) ~ #tab_middle_content,
.c_tabs .c_tabs_list:has(#tab_event > input:checked) ~ #tab_event_content,
.c_tabs .c_tabs_list:has(#tab_part > input:checked) ~ #tab_part_content,
.c_tabs .c_tabs_list:has(#tab_scout > input:checked) ~ #tab_scout_content {
	overflow: visible;
	position: static;
	height: auto;
	padding: 40px;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 0 30px 30px 30px;
	color: var(--bk-color);
}
.c_tabs .c_tabs_item:has(input:checked),
.c_tabs .c_tabs_item:has(input:focus:checked) {
	opacity: 1;
	color: var(--bk-color);
}
@media screen and (max-width: 1280px) {
	.c_tabs .c_tabs_item {
		width: calc((100% - 100px) / 5);
	}
}
@media screen and (max-width: 640px) {
	.c_tabs .c_tabs_item {
		width: calc(100% / 5);
		padding: 1em 0 0.8em;
		border-radius: 10px 10px 0 0;
		font-size: 0.7em;
	}
	.c_tabs_item + .c_tabs_item {
		margin-left: 5px;
	}
	.c_tabs .c_tabs_list:has(#tab_flesh > input:checked) ~ #tab_flesh_content,
	.c_tabs .c_tabs_list:has(#tab_middle > input:checked) ~ #tab_middle_content,
	.c_tabs .c_tabs_list:has(#tab_event > input:checked) ~ #tab_event_content,
	.c_tabs .c_tabs_list:has(#tab_part > input:checked) ~ #tab_part_content,
	.c_tabs .c_tabs_list:has(#tab_scout > input:checked) ~ #tab_scout_content {
		padding: 20px;
		border-radius: 0 0 20px 20px;
	}
}
/*----------------------------------------------
	list
---------------------------------------------*/
.c_logo_list {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 -10px;
}
.c_logo_list li {
	width: calc((100% / 4) - 30px);
	margin: 5px 10px;
}
@media screen and (max-width: 640px) {
	.c_logo_list {
		flex-wrap: wrap;
	}
	.c_logo_list li {
		width: calc((100% / 2) - 30px);
	}
}
/*----------------------------------------------
	lead
---------------------------------------------*/
/*  .c_lead_type01
---------------------------------------------*/
.c_lead_type01 {
	font-size: 1.2em;
	line-height: 1.6;
}
.c_lead_type01 + .c_lead_type01 {
	margin-top: 1em;
}
/*  .c_lead_type02
---------------------------------------------*/
.c_lead_type02 {
	line-height: 1.6;
}
@media screen and (max-width: 640px) {
}
/*----------------------------------------------
	slide
---------------------------------------------*/
.c_slide {
	display: flex;
	align-items: center;
	margin-top: 60px;
	width: 100%;
	overflow: hidden;
}
.c_slide_container {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.c_slide_img {
	flex-shrink: 0;
	width: calc((100vw / 5) - 40px);
	height: auto;
	margin: 0 40px;
}
.c_slide_shufukita {
	margin: 0 10px;
	transform: scale(0.8);
}
.c_slide_txt {
	margin: 0 0.1em;
	color: rgba(var(--rgb-bl-color), 1);
	font-size: 10em;
	font-weight: 700;
	line-height: 0.8em;
}
.c_slide_container:first-child {
	animation: loop 40s -20s linear infinite;
}
.c_slide_container:last-child {
	animation: loop2 40s linear infinite;
}
.c_slide_container:has(.c_slide_txt):first-child {
	animation: loop 60s -30s linear infinite;
}
.c_slide_container:has(.c_slide_txt):last-child {
	animation: loop2 60s linear infinite;
}
@media screen and (max-width: 1024px) {
	.c_slide_img {
		width: calc(100vw / 4);
	}
}
@media screen and (max-width: 768px) {
	.c_slide_img {
		width: calc(100vw / 3);
	}
}
@media screen and (max-width: 640px) {
	.c_slide {
		margin: 20px 0 40px;
	}
	.c_slide_img {
		width: calc(100vw / 2);
		margin: 0 20px;
	}
	.c_slide_txt {
		font-size: 5em;
	}
}
/*----------------------------------------------
	news
---------------------------------------------*/
.c_news {
	margin-top: 60px;
	margin-inline: auto;
	width: 800px;
	max-width: 100%;
}
.c_news li {
	border-bottom: 2px dashed rgba(0, 0, 0, 0.1);
}
.c_news a {
	position: relative;
	display: flex;
	padding: 1em;
	color: #333;
	transition: all 0.3s ease;
}
.c_news a:hover {
	color: var(--main-color);
}
.c_news .c_news_date {
	width: 20%;
}
.c_news .c_news_title {
	width: 80%;
}
@media screen and (max-width: 1024px) {
	.c_news {
		margin-top: 20px;
	}
}
@media screen and (max-width: 820px) {
	.c_news {
		font-size: 1.2em;
	}
}
@media screen and (max-width: 640px) {
	.c_news a {
		flex-direction: column;
	}
	.c_news .c_news_date,
	.c_news .c_news_title {
		width: 100%;
	}
}
/*----------------------------------------------
	pagenation
---------------------------------------------*/
.c_pagenation {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}
.c_pagenation a,
.c_pagenation span {
	display: inline-block;
	margin: 0 2px;
	padding: 0.2em 0.4em;
	font-weight: 900;
	transition: 0.3s;
}
.c_pagenation a {
	background-color: var(--main-color);
	border-radius: 5px;
	color: #fff;
}
.c_pagenation a.c_pagenation_back {
	background-color: var(--bk-color);
}
.c_pagenation a:hover {
	background-color: var(--bl-color);
}
@media screen and (max-width: 640px) {
	.c_pagenation {
		margin-top: 30px;
	}
	.c_pagenation a,
	.c_pagenation span {
		padding: 0.6em 0.8em;
		border-radius: 3px;
	}
}
/*----------------------------------------------
	animation
---------------------------------------------*/
.c_anime_fadeup {
	opacity: 0;
	transform: translateY(60px);
}
.c_anime_blur {
	opacity: 0;
	-ms-filter: blur(30px);
	filter: blur(30px);
}
/*----------------------------------------------
	flex
---------------------------------------------*/
.c_flex {
	display: flex;
	flex-wrap: wrap;
	/* align-items: center;
    justify-content: center;
	gap: 20px; */
}
/*  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_column2_sm > * {
	width: calc((100% / 2) - 10px);
}
.is_fl_bw_column3 > * {
	width: calc((100% / 3) - 20px);
}
.is_fl_bw_column3_sm > * {
	width: calc((100% / 3) - 10px);
}
.is_fl_bw_column4 > * {
	width: calc((100% / 4) - 20px);
}
.is_fl_bw_column4_sm > * {
	width: calc((100% / 4) - 10px);
}
.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;
}

.is_fl_al_start {
	/* 上部 */
	align-items: start;
}
@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);
	}
	.is_sp_fl_bw_column2_sm > * {
		width: calc((100% / 2) - 5px);
	}
}
@media screen and (max-width: 627px) {
	.is_sp_fl_column_full > *:not(:last-child) {
		margin-bottom: 60px;
	}
}
