@charset "utf-8";
/*----------------------------------------------
common
---------------------------------------------*/
/*----------------------------------------------
	section
---------------------------------------------*/
/*  .c_sec
---------------------------------------------*/
.c_sec {
	padding: 80px 0;
}
.c_sec_bg_bl {
	background-color: var(--secondary-color);
}
.c_sec_bg_base {
	background-color: var(--base-color);
}
@media screen and (max-width: 768px) {
	.c_sec {
		padding: 40px 0;
	}
}
/*----------------------------------------------
	ttl
---------------------------------------------*/
/*  .c_ttl_wrap
---------------------------------------------*/
.c_ttl_wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 40px;
	text-align: center;
}
/*  .c_ttl_type01
---------------------------------------------*/
.c_ttl_type01 {
	display: inline-block;
	margin-top: 10px;
	background: linear-gradient(
		90deg,
		var(--secondary-color) 0%,
		var(--primary-color) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: var(--size-40);
}
/* option - color */
.c_ttl_type01.is_ttl_wh {
	background: linear-gradient(90deg, #fff 0%, #bff1fa 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/*  .c_ttl_en
---------------------------------------------*/
.c_ttl_en {
	position: relative;
	min-width: 240px;
	padding: 0.5em;
	background: var(--primary-color);
	font-family: var(--font-alex);
	color: #fff;
	font-size: var(--size-20);
	font-weight: 500;
	line-height: 1;
	text-align: center;
}
.c_ttl_ribbon_left,
.c_ttl_ribbon_right {
	position: absolute;
	top: 10px;
	display: block;
	width: 20px;
	height: 34px;
	background-color: var(--primary-color);
}
.c_ttl_ribbon_left {
	left: -24px;
}
.c_ttl_ribbon_right {
	right: -24px;
}
.c_ttl_ribbon_left::after,
.c_ttl_ribbon_right::after {
	position: absolute;
	top: 0;
	content: "";
	z-index: 1;
	width: 0px;
	height: 0px;
}
.c_ttl_ribbon_left::after {
	left: 0;
	border-width: 17px 0 17px 5px;
	border-color: transparent transparent transparent #fff;
	border-style: solid;
}
.c_ttl_ribbon_right::after {
	right: 0;
	border-width: 17px 5px 17px 0px;
	border-color: transparent #fff transparent transparent;
	border-style: solid;
}
/* option - bg */
.c_sec_bg_secondary .c_ttl_ribbon_left::after {
	border-color: transparent transparent transparent var(--secondary-color);
}
.c_sec_bg_secondary .c_ttl_ribbon_right::after {
	border-color: transparent var(--secondary-color) transparent transparent;
}
.c_sec_bg_base .c_ttl_ribbon_left::after {
	border-color: transparent transparent transparent var(--base-color);
}
.c_sec_bg_base .c_ttl_ribbon_right::after {
	border-color: transparent var(--base-color) transparent transparent;
}
/*  .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
	padding: 0.5em;
	background-color: var(--primary-color);
	color: #fff;
	font-size: var(--size-24);
	font-weight: 900;
	text-align: center;
}
/*  .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
	color: var(--primary-color);
	font-size: var(--size-30);
	font-weight: 900;
	text-align: center;
}
@media screen and (max-width: 1080px) {
	/*  .c_ttl_type01
---------------------------------------------*/
	.c_ttl_en + .c_ttl_type01 {
		margin-top: 20px;
	}
}
@media screen and (max-width: 768px) {
	/*  .c_ttl_wrap
---------------------------------------------*/
	.c_ttl_wrap {
		margin-bottom: 20px;
	}
	/*  .c_ttl_type01
---------------------------------------------*/
	.c_ttl_en + .c_ttl_type01 {
		margin-top: 10px;
	}
	/*  .c_ttl_en
---------------------------------------------*/
	.c_ttl_ribbon_left,
	.c_ttl_ribbon_right {
		height: 26px;
	}
	.c_ttl_ribbon_left::after {
		border-width: 13px 0 13px 5px;
	}
	.c_ttl_ribbon_right::after {
		border-width: 13px 5px 13px 0px;
	}
}
@media screen and (max-width: 640px) {
	/*  .c_ttl_en
---------------------------------------------*/
	.c_ttl_en {
		min-width: 160px;
	}
}
@media screen and (max-width: 320px) {
	/*  .c_ttl_type01
---------------------------------------------*/
	.c_ttl_type01 {
		font-size: var(--size-30);
	}
}
/*----------------------------------------------
	btn
---------------------------------------------*/
/*  .c_btn
---------------------------------------------*/
.c_btn a {
	position: relative;
	display: block;
	padding: 0.8em calc(1em + 20px + 5px) 0.8em 1em;
	background-color: var(--primary-color);
	color: #fff !important;
	font-weight: 900;
}
.c_btn *,
.c_btn *::before,
.c_btn *::after {
	transition: all 0.3s ease;
}
.c_btn a:hover {
	background-color: var(--secondary-color);
}
.c_btn_icon {
	position: absolute;
	top: 0;
	right: 1em;
	bottom: 0;
	width: 20px;
	height: 20px;
	margin: auto;
	border-radius: 20px;
	background: #fff;
}
/* option - icon */
.is_btn_exlink::before,
.is_btn_exlink::after {
	position: absolute;
	inset: 0;
	content: "";
	margin: auto;
}
.is_btn_exlink::before {
	bottom: -2px;
	left: -2px;
	width: 7px;
	height: 6px;
	background-color: var(--primary-color);
}
.is_btn_exlink::after {
	top: -3px;
	right: -4px;
	width: 4px;
	height: 4px;
	border-top: 1px solid var(--primary-color);
	border-right: 1px solid var(--primary-color);
}
.c_btn a:hover .is_btn_exlink::before {
	background-color: var(--secondary-color);
}
.c_btn a:hover .is_btn_exlink::after {
	border-top: 1px solid var(--secondary-color);
	border-right: 1px solid var(--secondary-color);
}
.is_btn_arrow,
.is_btn_arrow::before {
	transition: all 0.3s ease;
}
.is_btn_arrow::before {
	position: absolute;
	inset: 0;
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: auto;
	border-top: 2px solid var(--primary-color);
	border-right: 2px solid var(--primary-color);
	transform: rotate(45deg) translateX(-1px) translateY(1px);
}
.c_btn a:hover .is_btn_arrow {
	transform: translateX(5px);
}
.c_btn a:hover .is_btn_arrow::before {
	border-top-color: var(--secondary-color);
	border-right-color: var(--secondary-color);
}
/* option - color */
.is_btn_nv a {
	background-color: var(--hsuh-color);
}
.is_btn_nv a:hover {
	background-color: var(--rinsho-color);
}
.is_btn_nv .is_btn_exlink::before {
	background-color: var(--hsuh-color);
}
.is_btn_nv .is_btn_exlink::after {
	border-top: 1px solid var(--hsuh-color);
	border-right: 1px solid var(--hsuh-color);
}
.is_btn_nv a:hover .is_btn_exlink::before {
	background-color: var(--rinsho-color);
}
.is_btn_nv a:hover .is_btn_exlink::after {
	border-top: 1px solid var(--rinsho-color);
	border-right: 1px solid var(--rinsho-color);
}
/* option - size */
.is_btn_sm {
	font-size: var(--size-14);
}
/*----------------------------------------------
	link
---------------------------------------------*/
.c_link_alpha {
	transition: 0.3s;
}
.c_link_alpha:hover {
	opacity: 0.7;
}
/*----------------------------------------------
	table
---------------------------------------------*/
.c_table {
	width: 100%;
}
.c_table thead th,
.c_table thead td {
	font-weight: 700;
}
.c_table th,
.c_table td {
	padding: 0.8em 1em;
	vertical-align: top;
	font-weight: normal;
	text-align: left;
}
.c_table thead,
.c_table tr:nth-child(even) {
	background-color: var(--base-color);
}
.is_table_schedule th {
	width: 200px;
}
@media screen and (max-width: 640px) {
	.c_table tr {
		display: flex;
		flex-wrap: wrap;
	}
	.c_table th:not(:has(th)),
	.c_table td {
		width: 100% !important;
	}
	.c_table th:has(+ th),
	.c_table th + th {
		width: 50% !important;
	}
	.c_table td {
		padding-top: 0;
	}
}
@media screen and (max-width: 768px) {
	.is_table_schedule th {
		width: 140px;
	}
}
/*----------------------------------------------
	cont
---------------------------------------------*/
.c_cont + .c_cont {
	margin-top: 60px;
}
@media screen and (max-width: 768px) {
	.c_cont + .c_cont {
		margin-top: 30px;
	}
}
/*----------------------------------------------
	box
---------------------------------------------*/
/*  .c_box
---------------------------------------------*/
.c_box {
	margin-top: 20px;
	border: 5px solid var(--base-color);
}
.c_box + .c_box {
	margin-top: 30px;
}
.c_box_head {
	padding: 5px 10px 10px;
	background-color: var(--base-color);
	color: var(--primary-color);
	font-size: var(--size-20);
	font-weight: 900;
	text-align: center;
}
.c_box_body {
	padding: 30px;
}
.c_box:has(.s_free_fukidashi) {
	position: relative;
}
/*  .c_box_recommend
---------------------------------------------*/
.c_box_recommend {
	padding: 30px;
	background-color: var(--key-color);
	border-radius: 20px;
	text-align: center;
}
.c_box_recommend_head {
	margin-bottom: 20px;
	font-size: var(--size-24);
	font-weight: 900;
}
.c_box_recommend_body.is_box_reverse {
	flex-direction: row-reverse;
}
.c_box_recommend_body {
	display: flex;
	justify-content: space-between;
	align-items: end;
}
.c_box_recommend_body img {
	width: min(200px, 20%);
	transform: translateY(30px);
}
.c_box_recommend_cont {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: max(calc(100% - 220px), calc(80% - 20px));
}
.c_box_recommend_label {
	margin-bottom: 10px;
	padding: 0.2em;
	background-color: var(--primary-color);
	border-radius: 100px;
	color: #fff;
}
.c_box_recommend_label:not(:first-child) {
	margin-top: 20px;
}
.c_box_recommend_li li::before {
	content: "★";
	color: var(--primary-color);
}
@media screen and (max-width: 768px) {
	.c_box + .c_box {
		margin-top: 20px;
	}
	.c_box_body {
		padding: 20px;
	}
}
@media screen and (max-width: 640px) {
	.c_box_recommend {
		position: relative;
		padding: 20px 30px;
	}
	.c_box_recommend_body img {
		position: absolute;
		bottom: 0;
		left: -30px;
		width: 60px;
		transform: translateY(0);
	}
	.c_box_recommend_body.is_box_reverse img {
		left: inherit;
		right: -30px;
	}
	.c_box_recommend_cont {
		width: 100%;
	}
	.c_box_recommend_li {
		margin: 0 0 10px 10px;
		text-align: left;
	}
	.c_box_recommend_li li {
		margin-left: 1em;
		text-indent: -1em;
	}
}
/*----------------------------------------------
	list
---------------------------------------------*/
/*  .c_li_num
---------------------------------------------*/
.c_li_num {
	counter-reset: cnt;
	list-style: none;
	padding-left: 0;
}
.c_li_num > li {
	margin-left: 1.6em;
	text-indent: -1.6em;
	counter-increment: cnt;
}
.c_li_num > li::before {
	content: counter(cnt) "）";
}
/*  .c_li_disc
---------------------------------------------*/
.c_li_disc > li {
	margin-left: 1em;
	text-indent: -1em;
}
.c_li_disc > li::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 10px;
	background-color: var(--bk-color);
	border-radius: 10px;
	transform: translateY(-4px);
}
@media screen and (max-width: 768px) {
	.c_li_disc > li::before {
		margin-right: 7px;
	}
}
/*----------------------------------------------
	slide
---------------------------------------------*/
.c_slide {
	display: flex;
	align-items: center;
	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);
	height: auto;
}
.c_slide:has(.c_slide_txt) {
	mix-blend-mode: multiply;
}
.c_slide_txt {
	margin: 0 0.1em;
	font-family: var(--font-alex);
	color: var(--base-color);
	font-size: 8.889em;
	font-weight: 500;
}
.c_slide_container:first-child {
	animation: loop 200s -100s linear infinite;
}
.c_slide_container:last-child {
	animation: loop2 200s 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_img {
		width: calc(100vw / 2);
	}
	.c_slide_txt {
		font-size: 5em;
	}
}
/*----------------------------------------------
	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);
	}
}
