@charset "utf-8";
/*----------------------------------------------
common
---------------------------------------------*/
/*----------------------------------------------
	section
---------------------------------------------*/
/*  .c_sec
---------------------------------------------*/
.c_sec {
	padding: 120px 0;
}
.c_sec_bottom_none{
	padding-bottom: 0;
}
.c_sec_sm {
	padding: 80px 0;
}
.c_sec_top {
	padding: 120px 0 0;
}
.c_sec_btm {
	padding: 0 0 120px;
}
.is_sec_bg {
	background: var(--base-color);
}
.is_sec_anchor {
	scroll-margin-top: 95px;
}
@media screen and (max-width: 960px) {
	.c_sec {
		padding: 60px 0;
	}
	.c_sec_sm {
		padding: 40px 0;
	}
	.c_sec_top {
		padding: 60px 0 0;
	}
	.c_sec_btm {
		padding: 0 0 60px;
	}
}
@media screen and (max-width: 640px) {
	.c_sec {
		padding: 40px 0;
	}
	.c_sec_sm {
		padding: 30px 0;
	}
	.c_sec_top {
		padding: 40px 0 0;
	}
	.c_sec_btm {
		padding: 0 0 40px;
	}
}
/*----------------------------------------------
	ttl
---------------------------------------------*/
.c_ttl_wrap {
	margin-bottom: 40px;
}
/*  .c_ttl_type01
---------------------------------------------*/
.c_ttl_type01 {
	font-size: 1em;
	color: var(--main-color);
	font-weight: 900;
}
.c_ttl_en {
	font-size: 4em;
	font-weight: 500;
	line-height: 1.2;
}
@media screen and (max-width: 768px) {
	.c_ttl_wrap {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 640px) {
	.c_ttl_wrap {
		margin-bottom: 10px;
	}
	/*  .c_ttl_type01
---------------------------------------------*/
	.c_ttl_type01 {
		font-size: 0.9em;
	}
	.c_ttl_en {
		font-size: 3em;
	}
}
/*----------------------------------------------
	btn
---------------------------------------------*/
/*  .c_btn_block
---------------------------------------------*/
.c_btn_block {
	display: flex;
	justify-content: center;
	width: min(100%, 1000px);
	margin-inline: auto;
}
.c_btn_block .c_btn {
	width: calc((100% / 3) - 10px);
	margin: 0 10px;
}
.c_btn_block .c_btn a {
	width: 100%;
	max-width: 100%;
}
/*  .c_btn
---------------------------------------------*/
.c_btn {
	position: relative;
	z-index: 1;
	text-align: center;
}
.c_btn a {
	display: inline-block;
	max-width: calc(100% - 40px);
	padding: 0.8em 1em 0.7em;
	background-color: rgba(var(--rgb-key-color), 1);
	border-radius: 10px;
	font-size: 1.25em;
	color: #fff;
	font-weight: 900;
	transition: 0.3s;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.c_btn a:hover {
	background-color: rgba(var(--rgb-key-color), 0.5);
}
/* option */
.is_btn_lg a {
	padding: 0.5em 2em 0.4em;
	border-radius: 15px;
	font-size: 2em;
}
.is_btn_wh a {
	background: #fff;
	color: var(--key-color);
}
.c_btn.is_btn_wh a:hover {
	background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 960px) {
	.c_btn a {
		margin-inline: auto;
		font-size: 1em;
	}
	.is_btn_lg a {
		border-radius: 10px;
		font-size: 1.6em;
	}
}
@media screen and (max-width: 640px) {
	/*  .c_btn_block
---------------------------------------------*/
	.c_btn_block {
		flex-direction: column;
		align-items: center;
	}
	.c_btn_block .c_btn {
		width: min(calc(100% - 40px), calc(100% - 40px));
		margin: 0;
	}
	.c_btn_block .c_btn + .c_btn {
		margin-top: 10px;
	}
	/*  .c_btn
---------------------------------------------*/
	.c_btn a {
		display: block;
	}
}
/*----------------------------------------------
	link
---------------------------------------------*/
.c_link_alpha {
	transition: 0.3s;
}
.c_link_alpha:hover {
	opacity: 0.5;
}
.c_link_footer{
	display: flex;
	align-items: end;
	justify-content: start;
	gap: 10px;
}
.c_link_footer span{
	font-size: 1em;
	font-weight: 500;
	line-height: 1;
}
.c_link_ex {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 5px;
	transform: translateY(4px);
}
.c_link_ex::before,
.c_link_ex::after {
	position: absolute;
	content: "";
}
.c_link_ex::before {
	top: 0;
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
.c_link_ex::after {
	top: 6px;
	right: -1px;
	width: 100%;
	height: 1px;
	background: #fff;
	transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
	.c_link_ex {
		transform: translateY(7px);
	}
}
@media screen and (max-width: 640px) {
	.c_link_ex {
		margin-left: 0;
	}
	.c_link_footer{
		margin-bottom: 20px;
		flex-direction: column;
		align-items: center;
	}
}
/*----------------------------------------------
	tbl
---------------------------------------------*/
.c_tbl {
	width: 100%;
	border-collapse: separate;
	border-spacing: 20px;
}
.c_tbl th,
.c_tbl td {
	padding: 0 15px 20px;
	border-bottom: 1px solid var(--bk-color);
	text-align: left;
	vertical-align: top;
}
.c_tbl th {
	min-width: 240px;
}
@media screen and (max-width: 768px) {
	.c_tbl th {
		min-width: 200px;
	}
}
@media screen and (max-width: 640px) {
	.c_tbl {
		border-collapse: collapse;
		border-top: 1px solid var(--bk-color);
	}
	.c_tbl th,
	.c_tbl td {
		width: 100%;
		float: left;
	}
	.c_tbl th {
		padding-top: 20px;
		border-bottom: none;
	}
	.c_tbl_td {
		border-top: none;
	}
}
/*----------------------------------------------
	slide
---------------------------------------------*/
.c_slide {
	display: flex;
	width: 100%;
	overflow: hidden;
}
.c_slide_container {
	display: flex;
	flex-shrink: 0;
}
.c_slide_ph {
	flex-shrink: 0;
	width: calc(100vw / 3);
	height: auto;
}
.c_slide_ph img {
	width: 100%;
}
.c_slide_txt {
	margin: 0 0.1em;
	font-size: 10em;
	font-weight: 500;
	line-height: 0.8em;
}
.c_sec_slide{
	padding: 100px 0;
}
@keyframes loop {
	0% {
		transform: translateX(100%);
	}

	to {
		transform: translateX(-100%);
	}
}
@keyframes loop2 {
	0% {
		transform: translateX(0);
	}

	to {
		transform: translateX(-200%);
	}
}
.c_slide_container:first-child {
	animation: loop 40s -20s linear infinite;
}
.c_slide_container:last-child {
	animation: loop2 40s linear infinite;
}
@media screen and (max-width: 768px) {
	.c_slide_ph {
		width: calc(100vw / 2);
	}
}
@media screen and (max-width: 640px) {
	.c_slide_txt {
		font-size: 5em;
	}
	.c_sec_slide{
		padding: 30px 0;
	}
}
/*----------------------------------------------
	gallery
---------------------------------------------*/
.c_gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -7.5px -15px;
}
.c_gallery_thumb {
	position: relative;
	width: calc(20% - 15px);
	margin: 0 7.5px 15px;
	cursor: pointer;
}
.c_gallery_thumb::before,
.c_gallery_thumb::after {
	position: absolute;
	inset: 0;
	content: "";
	margin: auto;
}
.c_gallery_thumb::before {
	width: 0;
	height: 0;
	opacity: 0;
	background: rgba(var(--rgb-main-color), 0.7);
	transition: 0.3s;
}
.c_gallery_thumb::after {
	content: "＋";
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	background: #fff;
	border-radius: 60px;
	font-size: 1.5em;
	color: var(--main-color);
	text-align: center;
}
.c_gallery_thumb:hover::before {
	width: 100%;
	height: 100%;
	opacity: 1;
}
.c_gallery_thumb:hover::after {
	width: 60px;
	height: 60px;
	opacity: 1;
	transition: 0.3s 0.2s;
}
.c_gallery_thumb img {
	height: 240px;
	object-fit: cover;
}
@media screen and (max-width: 960px) {
	.c_gallery_thumb {
		width: calc(25% - 15px);
	}
}
@media screen and (max-width: 768px) {
	.c_gallery_thumb::before,
	.c_gallery_thumb::after {
		content: none;
	}
}
@media screen and (max-width: 640px) {
	.c_gallery {
		margin: 0 -5px -10px;
	}
	.c_gallery_thumb {
		width: calc(50% - 10px);
		margin: 0 5px 10px;
	}
}
/*----------------------------------------------
	block
---------------------------------------------*/
/*  basic
---------------------------------------------*/
.c_basic_block {
	display: flex;
	justify-content: space-between;
}
.c_basic_block + .c_basic_block {
	margin-top: 80px;
}
.is_basic_reverse {
	flex-direction: row-reverse;
}
.c_basic_ph {
	width: 40%;
	max-width: 492px;
}
.c_basic_cont {
	width: calc(60% - 40px);
}
.c_basic_ttl {
	font-size: 2.5em;
	margin-bottom: 20px;
}
.c_basic_txt {
	line-height: var(--lh-lg);
}
.c_basic_txt:not(:last-child) {
	margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
	.c_basic_ttl {
		font-size: 2.5em;
	}
}
@media screen and (max-width: 1080px) {
	.c_basic_ttl {
		font-size: 2.35em;
	}
}
@media screen and (max-width: 960px) {
	.c_basic_block + .c_basic_block {
		margin-top: 60px;
	}
	.c_basic_cont {
		width: calc(60% - 20px);
	}
	.c_basic_ttl {
		margin-bottom: 20px;
		font-size: 2.1em;
	}
	.c_basic_txt {
		line-height: var(--lh-lg-resp);
	}
	.c_basic_txt:not(:last-child) {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 640px) {
	.c_basic_block {
		flex-direction: column;
		align-items: center;
	}
	.c_basic_block + .c_basic_block {
		margin-top: 40px;
	}
	.c_basic_ph {
		width: 50%;
	}
	.c_basic_cont {
		width: 100%;
		margin-top: 10px;
	}
	.c_basic_ttl {
		margin-bottom: 20px;
		font-size: 1.6em;
	}
	.c_basic_txt:not(:last-child) {
		margin-bottom: 10px;
	}
}
/*  popup
---------------------------------------------*/
.c_popup_block {
	display: flex;
}
.c_popup_box {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.c_popup_bg img{
	width: 100%;
	height: auto;
}
.c_popup_box:hover .c_popup_bg img {
	transform: scale(1.05);
}
.c_popup_box:hover .c_popup_open::before {
	transform: rotate(90deg);
}
.c_popup_box:hover .c_popup_open::after {
	transform: rotate(180deg);
}
.c_popup_box::after,
.c_popup_label,
.c_popup_open,
.c_popup_open::before,
.c_popup_open::after {
	position: absolute;
}
.c_popup_box::after,
.c_popup_label,
.c_popup_open::before,
.c_popup_open::after {
	inset: 0;
	margin: auto;
}
.c_popup_label,
.c_popup_open {
	z-index: 2;
}
.c_popup_box::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(var(--rgb-main-color), 0.7);
	mix-blend-mode: screen;
}
.c_popup_label {
	display: flex;
	justify-content: center;
	align-items: center;
}
.c_popup_label_inner {
	display: inline-block;
	min-width: calc(100% - 100px);
	padding: 0.2em 0.4em 0.1em;
	background: #fff;
	color: var(--main-color);
	/* font-size: 1.5em; */
	font-size: calc(25vw / 12);
	font-weight: 900;
	text-align: center;
}
.c_popup_bg img {
	transition: 0.5s;
}
.c_popup_open {
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
	background: var(--key-color);
	border-radius: 60px;
}
.c_popup_open::before,
.c_popup_open::after {
	content: "";
	z-index: 3;
	width: 24px;
	height: 2px;
	background: #fff;
	transition: 0.5s;
}
.c_popup_open::after {
	transform: rotate(90deg);
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.c_popup_container {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100% !important;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.c_popup_container:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.c_popup_container.active {
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.c_popup_body {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 1000px;
	width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.c_popup_close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -25px;
	right: -25px;
	width: 60px;
	height: 60px;
	background: var(--key-color);
	border-radius: 60px;
	cursor: pointer;
}
.c_popup_close::before,
.c_popup_close::after {
	position: absolute;
	inset: 0;
	content: "";
	width: 24px;
	height: 2px;
	margin: auto;
	background: #fff;
	transition: 0.5s;
}
.c_popup_close::before {
	transform: rotate(45deg);
}
.c_popup_close::after {
	transform: rotate(-45deg);
}
.c_popup_close:hover::before {
	transform: rotate(135deg);
}
.c_popup_close:hover::after {
	transform: rotate(45deg);
}
/*モーダル内のコンテンツの指定*/
.c_popup_content {
	overflow-y: auto;
	max-height: 90vh;
	height: 600px;
	background: #fff;
	border-radius: 20px;
	text-align: left;
	padding: 60px;
}
.c_popup_ttl {
	font-size: 1.5em;
	color: var(--main-color);
	font-weight: 900;
	text-align: center;
}
.c_popup_wrap {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.c_popup_ph {
	width: 45%;
	max-width: 400px;
}
.c_popup_cont {
	width: calc(55% - 40px);
	line-height: var(--lh-lg);
}
.c_popup_em {
	border-bottom: 3px solid var(--main-color);
	font-weight: 900;
}
@media screen and (max-width: 1024px) {
	.c_popup_open {
		right: 10px;
		bottom: 10px;
		width: 40px;
		height: 40px;
	}
	.c_popup_open::before,
	.c_popup_open::after {
		width: 18px;
	}
}
@media screen and (max-width: 960px) {
	.c_popup_content {
		padding: 40px;
	}
	.c_popup_wrap {
		flex-direction: column;
		align-items: center;
		margin-top: 20px;
	}
	.c_popup_ph {
		width: 30%;
		margin-bottom: 20px;
	}
	.c_popup_cont {
		width: 100%;
	}
}
@media screen and (max-width: 640px) {
	.c_popup_block {
		flex-wrap: wrap;
	}
	.c_popup_label_inner {
		font-size: calc(25vw / 6);
	}
	.c_popup_container {
		padding: 40px 10px;
	}
	.c_popup_body {
		width: 95%;
	}
	.c_popup_close {
		top: -15px;
		right: -15px;
		width: 40px;
		height: 40px;
	}
	.c_popup_close::before,
	.c_popup_close::after {
		width: 20px;
	}
	.c_popup_content {
		padding: 20px;
	}
	.c_popup_wrap {
		margin-top: 10px;
	}
	.c_popup_ph {
		width: 50%;
		margin-bottom: 10px;
	}
}
/*----------------------------------------------
	movie
---------------------------------------------*/
.c_movie {
	position: relative;
}
.c_movie::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	z-index: -1;
	width: 100%;
	height: 50%;
	background: var(--base-color);
}
/*----------------------------------------------
	list
---------------------------------------------*/
.c_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px -20px;
}
.c_list li::marker {
	display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	color: var(--main-color);
}
.c_list li {
	position: relative;
	list-style-type: decimal;
	list-style-position: inside;
	padding: 0.4em 0.1em 0.4em 0.7em;
	width: calc(50% - 20px);
	margin: 0 10px 20px;
	background: #fff;
	border-radius: 10px;
	font-size: 1.5em;
	font-weight: 900;
}
@media screen and (max-width: 1130px) {
	.c_list li {
		font-size: 1.4em;
	}
}
@media screen and (max-width: 960px) {
	.c_list {
		margin: 0 -5px -10px;
	}
	.c_list li {
		width: calc(50% - 10px);
		margin: 0 5px 10px;
		font-size: 1.2em;
	}
}
@media screen and (max-width: 768px) {
	.c_list li {
		font-size: 1.1em;
	}
}
@media screen and (max-width: 640px) {
	.c_list {
		flex-direction: column;
		margin: 0 0 -10px;
	}
	.c_list li {
		width: 100%;
		margin: 0 0 10px;
		border-radius: 5px;
	}
}
/*----------------------------------------------
	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);
	}
}
