@charset "utf-8";
/* top.css：TOPページ用CSS */
/* 規則
・CSS記述規則：kebab-case記法
・以下の意味で使用
　xl：1367px以上／lg：1366px以下／md：1024px以下／sm：896px以下／xs：576px以下
　mt：マージン上／ml：マージン左／mr：マージン右／mb：マージン下
　txt：テキスト配置／bg：背景／btn：ボタン／　…etc.
*/


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
キービジュアル
class: top-key～
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.top-key-bg {
	position: relative;
	background-image: url("../images/keyvisual/top_key_bg.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: calc(80px + 2%);
	padding-bottom: 3%;
	height: 100vh;
}
/*.top-key-bg::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url("../images/keyvisual/top_key_bg2.png") no-repeat right 2% center / 80%;
	mix-blend-mode: color-dodge;
	pointer-events: none;
	background-size: 600px;
}*/
.top-key-title {
	color: var(--white);
	line-height: 1.6;
	margin-bottom: 20px;
	text-shadow: 0 0 20px rgba(26, 43, 133, .8), 0 0 5px rgba(26, 43, 133, .8);
}
.top-key-txt {
	color: var(--white);
	position: relative;
	padding-left: 0px;
	text-shadow: 0 0 10px rgba(26, 43, 133, 1), 0 0 4px rgba(26, 43, 133, 1);
}

.top-key-contact {
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
	text-align: center;
	background-color: rgba(255, 255, 255, .2);
	border: 1px solid rgba(255, 255, 255, .4);
	border-radius: 12px;
	z-index: 2;
}

/*********************** ▼▼▼デバイス対応 1366px以下▼▼▼ ***********************/
@media screen and (max-width: 1365.98px) {
	.top-key-bg::after {
		background: url("../images/keyvisual/top_key_bg2.png") no-repeat right 2% center / 60%;
		background-size: 450px;
	}
}

/*********************** ▼▼▼デバイス対応 1024px以下▼▼▼ ***********************/
@media screen and (max-width: 1023.98px) {
	.top-key-bg {
		height: auto;
		min-height: 500px;
	}
	.top-key-bg::after {
		background: url("../images/keyvisual/top_key_bg2.png") no-repeat right 2% center / 50%;
		background-size: 400px;
	}
	.top-key-contact {
		position: relative;
		top: 0;
		left: 0;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
		margin: 100px auto 0;
		transform: none;
	}
}

/*********************** ▼▼▼デバイス対応 896px以下▼▼▼ ***********************/
@media screen and (max-width: 895.98px) {
	.top-key-bg {
		min-height: 400px;
		padding-top: 60px;
		padding-bottom: 30px;
	}
	.top-key-bg::after {
		background: url("../images/keyvisual/top_key_bg2.png") no-repeat right 20px center;
		background-size: 300px;
	}
	.top-key-title {
		margin-bottom: 10px;
	}
	/*.top-key-txt {
		padding-left: 120px;
	}
	.top-key-txt::before {
		width: 100px;
	}*/
	.top-key-contact {
		margin-top: 60px;
		padding: 15px;
	}
}

/*********************** ▼▼▼デバイス対応 576px以下▼▼▼ ***********************/
@media screen and (max-width: 575.98px) {
	.top-key-bg::after {
		background: url("../images/keyvisual/top_key_bg2.png") no-repeat right -40px center;
		background-size: 300px;
	}
	/*.top-key-txt {
		padding-left: 35px;
	}
	.top-key-txt::before {
		width: 20px;
	}*/
	.top-key-contact {
		margin-top: 30px;
		padding: 15px;
	}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Cytonaの使命とビジョン
class: top-mis～
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.top-mis-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.top-mis-box, .top-mis-box-lg {
	position: relative;
	border-radius: 80px;
	margin-left: -15px;
	margin-right: -15px;
	padding: 30px;
	text-align: center;
	width: 32%;
	border: 3px solid;
	font-weight: 500;
	z-index: 1;
}

/* 白背景ぼかし */
.top-mis-box::before, .top-mis-box-lg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	z-index: -1;
	transform: scale(0.8);
	filter: blur(8px);
}
.top-mis-box::before {
	background: rgba(255, 255, 255, 0.9);
}
.top-mis-box-lg::before {
	background: rgba(232, 105, 41, 0.9);
}

/* オレンジ */
.top-mis-orange {
	border-color: var(--orange);
	color: var(--orange);
}
/* ネイビーブルー */
.top-mis-navy-blue {
	border-color: var(--navy-blue);
	color: var(--navy-blue);
}
.top-mis-box-lg {
	width: 36%;
	padding: 40px;
	background: rgba(232, 105, 41, 0.6);
	color: var(--white);
	border: none;
}

/*********************** ▼▼▼デバイス対応 896px以下▼▼▼ ***********************/
@media screen and (max-width: 895.98px) {
	.top-mis-wrap {
		margin-left: -20px;
		margin-right: -20px;
	}
	.top-mis-box {
		margin-left: -10px;
		margin-right: -10px;
		padding: 20px;
		border-width: 2px;
	}
	.top-mis-box-lg {
		margin-left: -10px;
		margin-right: -10px;
		padding: 25px 20px;
	}
}

/*********************** ▼▼▼デバイス対応 576px以下▼▼▼ ***********************/
@media screen and (max-width: 575.98px) {
	.top-mis-wrap {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.top-mis-box, .top-mis-box-lg {
		margin-left: auto;
		margin-right: auto;
		margin-top: -10px;
		margin-bottom: -10px;
		padding: 15px 15px;
		width: 100%;
		max-width: 280px;
	}
	.top-mis-box-lg {
		padding: 20px 15px;
	}	

}


