@charset "utf-8";
/*----------------------------------------------
common
---------------------------------------------*/
/*----------------------------------------------
	section
---------------------------------------------*/
/*  .c_sec
---------------------------------------------*/
.c_sec {
	padding: 100px 0;
}
.is_sec_anchor {
	scroll-margin-top: 95px;
}
@media screen and (max-width: 768px) {
	.c_sec {
		padding: 60px 0;
	}
}
@media screen and (max-width: 640px) {
	.c_sec {
		padding: 40px 0;
	}
}
/*----------------------------------------------
	ttl
---------------------------------------------*/
.c_ttl_wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
	text-align: center;
	overflow: hidden;
}
.c_ttl_wrap h2 {
	position: relative;
}
.c_ttl_wrap h2::before,
.c_ttl_wrap h2::after {
	position: absolute;
	font-size: 2em;
	font-weight: 200;
	opacity: 0;
	transition: 0.5s 0.3s;
}
.c_ttl_wrap h2::before {
	top: -0.4em;
	left: -1.5em;
	content: "「";
	transform: translateX(-20px);
}
.c_ttl_wrap h2::after {
	bottom: -0.3em;
	right: -1.5em;
	content: "」";
	transform: translateX(20px);
}
.active.c_ttl_wrap h2::before,
.active.c_ttl_wrap h2::after {
	opacity: 1;
	transform: translateX(0);
}
/*  .c_ttl_type01
---------------------------------------------*/
.c_ttl_type01 {
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
	font-size: 2.4em;
}
/* option */
.c_ttl_ai {
	background: linear-gradient(70deg, var(--grad-bl-pk));
	font-size: 1.4em;
	font-weight: 900;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1em;
}
.c_ttl_type01 .c_ttl_ai {
	font-size: 2.4em;
}
.c_ttl_type02 .c_ttl_ai {
	display: inline-block;
	transform: translateY(0.06em);
}
.c_ttl_bg {
	position: relative;
	overflow: hidden;
	display: inline-block;
	background: var(--bk-color);
	color: #fff;
	line-height: 1em;
}
.c_ttl_bg::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: var(--bk-color);
	transition: 0.5s 1s;
}
.active .c_ttl_bg::after {
	left: 100%;
}
.c_ttl_type01 .c_ttl_bg {
	padding: 0.1em 0 0.25em 0.2em;
	transform: translateY(0.15em);
}
.c_ttl_type02 .c_ttl_bg {
	padding: 0 0.05em 0.15em;
	transform: translateY(0.18em);
}
.c_ttl_lg {
	display: inline-block;
	font-size: 1.6em;
}
.c_ttl_gws {
	width: 400px;
	margin: 0 5px;
	transform: translateY(-0.1em);
}
@media (max-width: 768px) {
	.c_ttl_wrap {
		margin-bottom: 40px;
	}
	.c_ttl_gws {
		width: 240px;
	}
}
@media (max-width: 640px) {
	.c_ttl_wrap h2::before {
		left: -1em;
	}
	.c_ttl_wrap h2::after {
		right: -1em;
	}
	/*  .c_ttl_type01
---------------------------------------------*/
	.c_ttl_type01 {
		font-size: 2em;
	}
	/*  .c_ttl_type02
---------------------------------------------*/
	.c_ttl_type02 {
		font-size: 1.3em;
	}
}
/*----------------------------------------------
	btn
---------------------------------------------*/
/*  .c_btn
---------------------------------------------*/
.c_btn a {
	position: relative;
	z-index: 99;
	display: inline-block;
	overflow: hidden;
	padding: 0.6em 1em 0.65em;
	background: linear-gradient(90deg, var(--grad-gn-bl));
	border-radius: 100px;
	color: var(--bk-color);
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: 0.2s;
}
.c_btn a:hover {
	box-shadow: 5px 5px 0 var(--bk-color);
}
.c_btn a::after {
	position: absolute;
	top: -100%;
	left: -50px;
	bottom: -100%;
	content: "";
	width: 50px;
	height: 200%;
	background: rgba(255, 255, 255, 0.5);
	transform: skewX(-45deg);
	transition: 0.4s;
}
.c_btn a:hover::after {
	left: calc(100% + 50px);
}
.c_btn_arrow {
	position: relative;
	padding-right: 30px;
}
.c_btn_arrow::before,
.c_btn_arrow::after {
	position: absolute;
	top: 0;
	bottom: 0;
	content: "";
	margin: auto;
	transition: 0.2s;
}
.c_btn_arrow::before {
	right: 0;
	width: 24px;
	height: 24px;
	background: var(--bk-color);
	border-radius: 24px;
}
.c_btn_arrow::after {
	right: 6px;
	width: 12px;
	height: 12px;
	background: var(--bl-color);
	border-radius: 12px;
}
.c_btn a:hover .c_btn_arrow::after {
	top: 2px;
	right: 7px;
	width: 10px;
	height: 8px;
	border-radius: 0;
	aspect-ratio: 1/2;
	clip-path: polygon(50% 100%, 100% 0, 0 0);
}
/*  .c_btn_bl
---------------------------------------------*/
.c_btn_bl a,
.wp-block-button__link {
	display: inline-block;
	padding: calc(0.667em + 2px) calc(1.333em + 2px);
	background: linear-gradient(45deg, var(--grad-main));
	border-radius: 100px !important;
	color: #fff;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	transition: 0.2s;
}
.c_btn_bl a:hover,
.wp-block-button__link:hover {
	box-shadow: 5px 5px 0 var(--bk-color);
}
/*----------------------------------------------
	link
---------------------------------------------*/
.c_link_alpha {
	transition: 0.3s;
}
.c_link_alpha:hover {
	opacity: 0.5;
}
/*----------------------------------------------
	box
---------------------------------------------*/
/*  .c_box_cta
---------------------------------------------*/
.c_box_cta {
	position: relative;
	overflow: hidden;
	padding: 60px 0;
	background: linear-gradient(45deg, var(--grad-bl-pk));
	text-align: center;
}
.c_box_cta::before,
.c_box_cta::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: url(../images/cta_bg.png) no-repeat 0 center / auto 100%;
	mix-blend-mode: plus-lighter;
	opacity: 0.5;
}
.c_box_cta::after {
	transform: rotateY(180deg);
}
.c_box_cta_catch {
	margin-bottom: 20px;
	font-size: 2.4em;
}
.c_box_cta_bg {
	display: inline-block;
	padding: 0 0 0.1em;
	background: #fff;
	color: #fff;
	line-height: 0.83;
	transition: 0.5s 0.3s;
	mix-blend-mode: lighten;
}
.active .c_box_cta_bg {
	color: var(--bk-color);
}
.s_box_cta_em {
	font-size: 1.33em;
}
.c_box_cta .c_btn {
	position: relative;
	z-index: 1;
	opacity: 0;
	transform: translateY(20px);
	transition: 0.5s 1s;
}
.active.c_box_cta .c_btn {
	opacity: 1;
	transform: translateY(0);
}
@media screen and (max-width: 1024px) {
	.c_box_cta::before {
		transform: translateX(-100px);
	}
	.c_box_cta::after {
		transform: rotateY(180deg) translateX(-100px);
	}
}
@media screen and (max-width: 640px) {
	.c_box_cta {
		padding: 30px 0 25px;
	}
	.c_box_cta::before {
		transform: translateX(-160px);
	}
	.c_box_cta::after {
		transform: rotateY(180deg) translateX(-160px);
	}
	.c_box_cta_catch {
		margin-bottom: 10px;
		font-size: 2em;
	}
}
/*  .c_box_wh
---------------------------------------------*/
/*----------------------------------------------
	lead
---------------------------------------------*/
/*  .c_lead_type01
---------------------------------------------*/
.c_lead_type01 {
	width: 50%;
	margin: auto;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.c_lead_type01 {
		width: 80%;
	}
}
/*----------------------------------------------
	txt
---------------------------------------------*/
.c_txt_gws {
	display: inline-block;
	width: var(--size-500);
	max-width: 70%;
	height: calc(0.13 * var(--size-500));
	mask-image: url(../images/logo_gws.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: 0 bottom;
	background-color: #fff;
	transform: translateY(0.3em);
}
@media screen and (max-width: 1024px) {
	.c_txt_gws {
		width: 70%;
		height: 48%;
	}
}
@media screen and (max-width: 768px) {
	.c_txt_gws {
		height: 70%;
	}
}
@media screen and (max-width: 640px) {
	.c_txt_gws {
		height: 80%;
		margin-right: 5px;
		transform: translateY(0.5em);
	}
}
/*----------------------------------------------
	slick
---------------------------------------------*/
.slick-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	width: 60px;
	height: 60px;
	margin: auto;
	background: url(../images/icon_arrow_bk.png) no-repeat 0 0 / 100% auto;
	border: none;
	font-size: 0;
	cursor: pointer;
	transition: 0.3s;
}
.slick-arrow:hover {
	opacity: 0.5;
}
.slick-prev {
	left: -20px;
}
.slick-next {
	right: -20px;
	transform: rotateY(180deg);
}
.slick-disabled {
	visibility: hidden;
}
@media screen and (max-width: 1024px) {
	.slick-arrow {
		width: 40px;
		height: 40px;
	}
}
@media screen and (max-width: 640px) {
	.slick-prev {
		left: -10px;
	}
	.slick-next {
		right: -10px;
	}
}
/*----------------------------------------------
	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) - 10px);
}
.is_fl_bw_column3 > * {
	width: calc((100% / 3) - 10px);
}
.is_fl_bw_column4 > * {
	width: calc((100% / 4) - 10px);
}
.is_fl_bw_column5 > * {
	width: calc((100% / 5) - 10px);
}
.is_fl_bw_column6 > * {
	width: calc((100% / 6) - 10px);
}
/*  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_jc_around {
	/* 均等スペース */
	justify-content: space-around;
}
.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_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);
	}
}
