@charset "utf-8";

/*----------------------------------------------
共通設定
---------------------------------------------*/
.c_body {
	background-image: linear-gradient(90deg, #FBFBFF, #DCD8F6);
}

.c_tac {
	text-align: center;
}

.c_tar {
	text-align: right;
}

.c_flexc {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.c_link {
	transition: .3s;
}

.c_link:hover {
	filter: opacity(0.7);
}

/*幅の設定
---------------------------------------------*/
.c_w960 {
	width: 960px;
	margin: 0 auto;
}

.c_w1280 {
	width: 1280px;
	margin: 0 auto;
}

@media (max-width: 1320px) {
	.c_w1280 {
		width: 100%;
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 1040px) {
	.c_w960 {
		width: 100%;
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 500px) {

	.c_w960,
	.c_w1280 {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
}

/*マージンの設定
---------------------------------------------*/
.c_mb160 {
	margin-bottom: 160px;
}

.c_mb100 {
	margin-bottom: 100px;
}

.c_mb80 {
	margin-bottom: 80px;
}

.c_mb40 {
	margin-bottom: 40px;
}

.c_mb30 {
	margin-bottom: 30px;
}

.c_mb20 {
	margin-bottom: 20px;
}

.c_mb10 {
	margin-bottom: 10px;
}

.c_mb5 {
	margin-bottom: 5px;
}

@media (max-width: 1050px) {
	.c_mb160 {
		margin-bottom: 80px;
	}

	.c_mb100 {
		margin-bottom: 50px;
	}

	.c_mb80 {
		margin-bottom: 40px;
	}

	.c_mb40 {
		margin-bottom: 20px;
	}

	.c_mb20 {
		margin-bottom: 10px;
	}
}

/*フォント
---------------------------------------------*/
.c_fw500 {
	font-weight: 500;
}

.c_fw700 {
	font-weight: 700;
}

.c_fw900 {
	font-weight: 900;
}

.c_lh18 {
	line-height: 1.8;
}

.c_lh25 {
	line-height: 2.5;
}

.c_fz24 {
	font-size: 2.4rem;
}

.c_fz18 {
	font-size: 1.8rem;
}

@media (max-width: 1160px) {
	.c_fz24 {
		font-size: 1.8rem;
	}

	.c_fz18 {
		font-size: 1.6rem;
	}
}

@media (max-width: 500px) {
	.c_fz24 {
		font-size: 1.6rem;
	}

	.c_lh25 {
		line-height: 2;
	}
}


/*カラー
---------------------------------------------*/
.c_cl_wh {
	color: var(--wh);
}

.c_cl_navy {
	color: var(--navy);
}

.c_cl_bk {
	color: var(--bk);
}

.c_cl_lpa {
	color: var(--lpa);
}

.c_cl_dpa {
	color: var(--dpa);
}

.c_bg_wh {
	background-color: var(--wh);
}

.c_bg_navy {
	background-color: var(--navy);
}

.c_bg_lpa {
	background-color: var(--lpa);
}

.c_bg_dpa {
	background-color: var(--dpa);
}

.c_bg_grt {
	background-image: linear-gradient(var(--lpa), var(--dpa));
}

.c_bg_grl {
	background-image: linear-gradient(90deg, var(--lpa), var(--dpa));
}

/*----------------------------------------------
改行設定
---------------------------------------------*/
.c_br-pc {
	display: block;
}

.c_br-tab {
	display: none;
}

.c_br-sp {
	display: none;
}

@media (max-width: 1160px) {
	.c_br-pc {
		display: none;
	}

	.c_br-tab {
		display: block;
	}

	.c_br-sp {
		display: none;
	}
}

@media (max-width: 500px) {
	.c_br-pc {
		display: none;
	}

	.c_br-tab {
		display: none;
	}

	.c_br-sp {
		display: block;
	}
}

/*----------------------------------------------
共通タイトル
---------------------------------------------*/
.c_ttl {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.c_ttl-c {
	align-items: center;
}

.c_ttl_en {
	font-weight: 700;
	font-size: 2.5rem;
	letter-spacing: 1rem;
	line-height: 1;
}

.c_ttl_jp {
	font-weight: 700;
	font-size: 4.5rem;
	line-height: 1;
}

@media (max-width: 1160px) {
	.c_ttl_en {
		font-size: 1.6rem;
	}

	.c_ttl_jp {
		font-size: 3rem;
	}
}

@media (max-width: 500px) {
	.c_ttl_en {
		font-size: 1.2rem;
	}

	.c_ttl_jp {
		font-size: 2.4rem;
	}
}

/*----------------------------------------------
共通ボタン
---------------------------------------------*/
.c_btn {
	width: 420px;
	height: 80px;
	border-radius: 50px;
	background-image: linear-gradient(90deg, var(--lpa), var(--dpa));
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	font-size: 2.8rem;
	color: var(--wh);
	transition: .3s;
}

.c_btn:hover {
	padding: 0 10px;
	filter: opacity(0.7);
}

.c_btn-c {
	margin: 0 auto;
}

@media (max-width: 1280px) {
	.c_btn {
		width: 360px;
		height: 60px;
		font-size: 2.4rem;
	}
}

@media (max-width: 500px) {
	.c_btn {
		width: 220px;
		height: 40px;
		font-size: 1.6rem;
	}

	.c_btn_arrow {
		width: 20px;
		height: 20px;
	}
}

/*----------------------------------------------
下層共通
---------------------------------------------*/
.c_page_head {
	background-image: url(../img/common/common_head-pc.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: top;
}

.c_page_ttl {
	padding-top: 170px;
}

.c_page_ttl {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}

.c_page_en {
	font-size: 1.8rem;
	letter-spacing: 1rem;
}

.c_page_jp {
	font-size: 5.5rem;
}

.c_page_pic {
	overflow: hidden;
	border-radius: 20px;
}

.c_page_subttl {
	font-size: 4.5rem;
}

@media (max-width: 1280px) {
	.c_page_head {
		background-image: url(../img/common/common_head-tab.png);
	}

	.c_page_ttl {
		padding-top: 90px;
	}

	.c_page_en {
		font-size: 1.4rem;
	}

	.c_page_jp {
		font-size: 3.5rem;
	}

	.c_page_subttl {
		font-size: 3rem;
	}
}

@media (max-width: 500px) {
	.c_page_head {
		background-image: url(../img/common/common_head-sp.png);
	}

	.c_page_en {
		font-size: 1.2rem;
	}

	.c_page_jp {
		font-size: 2.8rem;
	}

	.c_page_pic {
		border-radius: 10px;
	}

	.c_page_subttl {
		font-size: 2.4rem;
	}
}

/*----------------------------------------------
共通の動き
---------------------------------------------*/


.c_poyo,
.c_fuwa,
.c_mvfade,
.c_fadeUp,
.c_fadeLeft,
.c_fadeScale {
	opacity: 0;
}

/* その場で */
.is_fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeInAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* 下から */

.is_fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 左から */

.is_fadeLeft {
	animation-name: fadeLeftAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeLeftAnime {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.is_fadeScale {
	animation-name: fadeScaleAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;

}

@keyframes fadeScaleAnime {
	from {
		transform: scale(0.5) translateY(200px);
		opacity: 0;
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0px);
	}
}

.is_poyo {
	animation: poyoyon2 1s ease-in-out forwards;
}

@keyframes poyoyon2 {
	0% {
		transform: scale(1.0, 1.0) translate(0, 0);
	}

	15% {
		transform: scale(0.98, 0.9) translate(0, 5px);
	}

	30% {
		transform: scale(1.02, 1.0) translate(0, 8px);
	}

	50% {
		transform: scale(0.98, 1.05) translate(0, -8px);
	}

	70% {
		transform: scale(1.0, 0.9) translate(0, 5px);
	}

	100% {
		transform: scale(1.0, 1.0) translate(0, 0);
	}

	0%,
	100% {
		opacity: 1;
	}
}