@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');
html,body{
	font-family: 'Noto Sans JP', sans-serif;
}


/* ボタン白 */
.btn-wht {
    position: relative;
	display: block;
    cursor: pointer;
    padding:30px;
    background-color: #fff;
	font-size: 16px;
    color: #00459D;
    font-weight:600;
    text-align: center;
    text-decoration: none;
}
.btn-wht:hover{
	background-color:rgba(255,255,255,0.8);
	transition: .3s;
}
.btn-wht::after {
	content:'';
	display: inline-block;/*忘れずに！*/
	background-image: url("../img/arrow_blu.svg");
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
    position: absolute;
	top:33px;
    right: 20px;
    padding-left: 6px;
	width: 10px;
	height:10px;
    transition: .3s;
}
.btn-wht:hover::after {
    border-left: none;
    right:15px;
}

/* ボタン青 */
.btn-blu {
    position: relative;
	display: block;
    cursor: pointer;
    padding:23px;
    background-color:#014DAF;
	font-size: 13px;
    color: #fff;
    font-weight:600;
    text-align: center;
    text-decoration: none;
	font-family: 'Montserrat', sans-serif;
}
.btn-blu:hover{
	background-color:#00B8C7;
	transition: .3s;
}
.btn-blu::after {
	content:'';
	display: inline-block;/*忘れずに！*/
	background-image: url("../img/arrow_wht.svg");
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
    position: absolute;
	top:27px;
    right: 20px;
    padding-left: 6px;
	width: 10px;
	height:10px;
    transition: .3s;
}
.btn-blu:hover::after {
    border-left: none;
    right:15px;
}

/* ボタン青2 */
.btn-blu2 {
    position: relative;
	display: block;
    cursor: pointer;
    padding:23px;
    background-color:#327bd9;
	font-size: 13px;
    color: #fff;
    font-weight:600;
    text-align: center;
    text-decoration: none;
	font-family: 'Montserrat', sans-serif;
}
.btn-blu:hover2{
	background-color:#00B8C7;
	transition: .3s;
}
.btn-blu2::after {
	content:'';
	display: inline-block;/*忘れずに！*/
	background-image: url("../img/arrow_wht.svg");
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
    position: absolute;
	top:27px;
    right: 20px;
    padding-left: 6px;
	width: 10px;
	height:10px;
    transition: .3s;
}
.btn-blu2:hover::after {
    border-left: none;
    right:15px;
}

/* ボタン緑 */
.btn-grn {
    position: relative;
	display: block;
    cursor: pointer;
    padding:23px;
    background-color:#00B8C7;
	font-size: 13px;
    color: #fff;
    font-weight:600;
    text-align: center;
    text-decoration: none;
	font-family: 'Montserrat', sans-serif;
}
.btn-grn:hover{
	background-color:#00459D;
	transition: .3s;
}
.btn-grn::after {
	content:'';
	display: inline-block;/*忘れずに！*/
	background-image: url("../img/arrow_wht.svg");
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
    position: absolute;
	top:27px;
    right: 20px;
    padding-left: 6px;
	width: 10px;
	height:10px;
    transition: .3s;
}
.btn-grn:hover::after {
    border-left: none;
    right:15px;
}

/* ボタンボックス */
.btn_box{
	width: 250px;
}

.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

/* 改行 */
.pc{
	display: block;
}
.sp{
	display: none;
}

@media screen and (max-width: 768px){
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
}

.left_cont{
	width: 20%;
}
.right-cont{
	width: 80%;
}
.inner_l,
.inner_r{
	flex: 1;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.left_cont, .right-cont{
		width: 100%;
	}
}


/* header */
header{
	position:relative;
	z-index:999;
	width: 100%;
}
.header_wrapper{
	justify-content: space-between;
}
h1 img{
	width:auto;
	height:54px;
}

@media screen and (max-width: 768px) {
	.gnavi__wrap{
		display:none;
	}
	h1 img{
		width:auto;
		height:30px;
	}
}

/* main_hero */
#main_hero{
	border:5px solid #08459D;
	margin-top:-150px; 
}
@media screen and (max-width: 768px) {
	#main_hero{
		margin-top:-70px; 
	}
}
#main_hero .main_hero_wrapper{
	min-height: 100vh;
	position: relative;
}
#main_hero .main_hero_wrapper img{
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
.zoom {
overflow: hidden
}
.zoom-2 img {
animation: animationZoom2 20s ease-in-out infinite;
}
@keyframes animationZoom2 {
50% { transform: scale(1.1)}
}
#main_hero .headline_area{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	flex-direction: column;
	justify-content: center;
	padding: 110px;
	width: 100%;
}
#main_hero .headline_area h2{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 10vw;
	color:#fff;
	text-align: center;
}
#main_hero .headline_area p{
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	margin-top: 40px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	#main_hero .headline_area{
		padding:40px;
	}
	#main_hero .headline_area h2{
		font-size:15vw;
	}
	#main_hero .headline_area p{
		font-size:24px;
	}
}


/* main_about */
#main_about{
	background-color:#08459D;
	padding: 100px 0;
	position: relative;
}
#main_about .main_about_bg{
	position:absolute;
	background: #fff;
	border-radius: 5px 0 0 5px;
	height:calc(100% - 200px);
	width:85%;
	right:0;
}
#main_about .main_about_wrapper{
	position: relative;
}
#main_about .inner_l img{
	width:calc(100% + 110px);
	max-width:calc(100% + 110px);
	height: auto;
	margin-left: -110px;
}
#main_about .inner_l,
#main_about .inner_r{
	flex-direction: column;
	justify-content: center;
}
#main_about .inner_l{
	padding: 50px 0;
}
#main_about .inner_r{
	padding: 80px;
}
#main_about h2{
	font-size: 70px;
	color: #00459D;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	margin-bottom: 30px;
}
#main_about p{
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 40px;
	line-height: 1.68;
}

@media screen and (max-width: 768px){
	#main_about{
		padding: 60px 0;
	}
	#main_about .main_about_wrapper{
		flex-direction: column;
	}
	#main_about .main_about_bg{
		height:calc(100% - 120px);
		width:calc(100% - 20px);
	}
	#main_about h2{
		font-size: 50px;
	}
	#main_about .inner_r{
		padding: 0 20px 40px 40px;
	}
	#main_about p{
		font-size: 14px;
		letter-spacing: 0;
	}
	#main_about .btn_box{
		width: 100%;
	}
	#main_about .inner_l img{
		width:calc(100% + 20px);
		max-width:calc(100% + 20px);
		margin-left: -20px;
	}
}


/* main_company */
#main_company{
	background-image: url("../img/gradation.png");
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 110px;
}
#main_company .inner_r img{
	max-width: 100%;
	height:auto;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#main_company .inner_l,
#main_company .inner_r{
	flex-direction: column;
	justify-content: center;
}
#main_company h2{
	font-size: 70px;
	color: #00459D;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	margin-bottom: 30px;
}
#main_company p{
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 40px;
	line-height: 1.68;
}

@media screen and (max-width: 768px) {
	#main_company{
		padding: 60px 20px
	}
	#main_company .main_company_wrapper{;
		flex-direction: column;
	}
	#main_company h2{
		font-size: 50px;
		text-align: center;
	}
	#main_company p{
		font-size: 14px;
		letter-spacing: 0;
		text-align: center;
	}
	#main_company .main_company_inner_l{
		margin: 0 auto;
	}
	#main_company .btn_box{
		width: 100%;
		margin-bottom: 40px;
	}
}


/* main_gallery */
#main_gallery{
	padding: 110px 0 110px 110px;
	margin: 0 auto;
}
#main_gallery h2{
	font-size: 50px;
	text-align: center;
	color: #00459D;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
	#main_gallery{
		padding: 60px 0 60px 20px;
	}
}


/* main_recruit */
#main_recruit{
	background:#00459D;
}
#main_recruit .main_recruit_wrapper{
	padding: 110px;
	margin: 0 auto;
	color: #fff;
	background-image: url("../img/interview_bg.svg");
	background-size:80%;
	background-repeat: no-repeat;
	background-position: right 110px;
}
#main_recruit h2{
	font-size: 20px;
	color:#fff;
	font-weight: 700;
	line-height: 1.8;
}
#main_recruit h2 span{
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color:rgba(255,255,255,0.3);
}
#main_recruit .interview_box{
	margin-top: 90px;
	gap:50px;
	line-height: 1.5;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding-bottom: 60px;
}
#main_recruit .interview_box article{
	flex: 1;
}
#main_recruit .interview_box article img{
	width: 100%;
	height: auto;
	border-radius: 5px;
}
#main_recruit .interview_box article p{
	margin: 10px 0 30px 0;
}
#main_recruit .interview_btn_box{
	padding-top: 60px;
	gap:40px;
}
#main_recruit .interview_btn_box a{
	flex: 1;
}
#main_recruit .btn_recruit{
	text-align: left;
	font-size: 20px;
	border-radius: 5px;
	line-height: 1.5;
}
#main_recruit .btn_recruit span{
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color: #B6C8E2;
}
#main_recruit .btn_recruit::after{
	top:55px
}

@media screen and (max-width: 768px) {
	#main_recruit .main_recruit_wrapper{
		padding: 60px 20px;
		background-size:100%;
		background-position: center top;
		flex-direction: column;
	}
	#main_recruit h2{
		margin-bottom: 40px;
	}
	#main_recruit .interview_box{
		margin-top: 0;
	}
	#main_recruit .interview_box article{
		width: 80%;
		margin: 0 auto;
		font-size: 14px;
	}
	#main_recruit .interview_box{
		flex-direction: column;
	}
	#main_recruit .interview_btn_box{
		flex-direction: column;
	}
}


/* main_news */
#main_news{
	background: #fff;
}
#main_news .main_news_wrapper{
	padding: 110px;
	margin: 0 auto;
}
#main_news h2{
	font-size: 20px;
	color:#00459D;
	font-weight: 700;
	line-height: 1.8;
}
#main_news h2 span{
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color:#B6B6B6;
}
#main_news #information{
	margin-top: -40px;
}
#main_news #information dl{
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	line-height: 1.6;
	border-bottom: 1px solid #C3C3C3;
	padding-top:40px;
	padding-bottom: 40px;
}
#main_news #information dt{
	width: 120px;
}

@media screen and (max-width: 768px) {
	#main_news .main_news_wrapper{
		padding: 60px 20px;
		flex-direction: column;
	}
	#main_news h2{
		margin-bottom: 40px;
	}
	#main_news #information dl{
		font-size: 14px;
	}
}


/* main_contact */
#main_contact{
	background: rgb(0,69,157);
	background: linear-gradient(0deg, rgba(0,69,157,1) 0%, rgba(0,69,157,1) 30%, rgba(255,255,255,1) 30%, rgba(255,255,255,1) 100%);
	text-align: center;
}
#main_contact .main_contact_wrapper{
	max-width:calc(100% - 120px);
	margin: 0 auto;
	padding: 60px 0;
	background-image: url("../img/footer_contact_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 5px;
}
#main_contact h2{
	font-size: 20px;
	color:#fff;
	font-weight: 700;
	line-height: 1.8;
}
#main_contact h2 span{
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color:#fff;
}
#main_contact ul.contact_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	padding:0 120px;
	margin-top: 60px;
}
#main_contact .contact_box li{
	flex:1;
	border-right:1px solid #fff;
	padding: 0 30px;
}
#main_contact .contact_box li:last-child{
	border-right:none;
}
#main_contact .contact_box p{
	color:#fff;
	margin-bottom:50px;
	font-weight: 600;
}

@media screen and (max-width: 768px) {
	#main_contact .main_contact_wrapper{
	max-width:calc(100% - 20px);
	margin: 0 auto;
	}
	#main_contact ul.contact_box{
		flex-direction: column;
		margin-top:40px;
		padding:0 40px;
	}
	#main_contact .contact_box li{
		border-right: none;
		border-bottom:1px solid #fff;
		padding: 30px 0;
		width: 100%;
	}
	#main_contact .contact_box li:last-child{
		border-bottom:none;
	}
	#main_contact .contact_box p{
		margin-bottom:30px;
	}
}


/* footer*/
footer{
	font-size: 16px;
	color: #fff;
	background: #00459D;
}
footer .company_info{
	padding: 40px 110px;
	margin: 0 auto;
}
footer .company_info p{
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
	margin-top: 20px;
}
footer .group_logo{	
	background: #fff;
	color: #00459D;
	font-size:15px;
	font-weight: 700;
}
footer .group_logo_inner{
	padding: 40px 110px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
}
footer .group_logo_inner ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap:0 30px;
	margin-top:10px;
}
footer .copyright{
	padding: 40px 110px;
	margin: 0 auto;
	font-size: 10px;
	text-align: right;
}
footer .group_logo_inner ul li img{
		width: 100%;
		max-width: 100%;
		height:auto;
	}

@media screen and (max-width: 768px) {
	footer .company_info{
		max-width: 100%;
		padding:20px;
	}
	footer .company_info img{
		width: 70%;
		height:auto;
	}
	footer .company_info p{
		font-size: 14px;
	}
	footer .group_logo_inner{
		max-width: 100%;
		padding: 20px;
	}
	footer .group_logo_inner ul{
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		align-items: center;
		justify-content:space-between;
		gap:20px;
	}
	footer .group_logo_inner li{
		width: calc(50% - 20px);
	}
	footer .group_logo_inner ul li img{
		width: 100%;
		max-width: 100%;
		height:auto;
	}
	footer .copyright{
		max-width: 100%;
		padding: 20px;
	}
}


/* 動きフェードアップ */
.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);
  }
}
.fadeUpTrigger{
    opacity: 0;
}

/* ランダムにテキスト出現 */
.TextRandomAnime span{
  opacity: 0;
}
.TextRandomAnime.appearRandomtext span{ 
  animation:text_randomanime_on .5s ease-out forwards;
}

@keyframes text_randomanime_on {
  0% {opacity:0;}
  100% {opacity:1;}
}
.TextRandomAnime.appearRandomtext span:nth-child(2n) {
  animation-delay: .5s;/* spanのついた2の倍数の文字列の変化を0.5秒遅らせる*/
}
.TextRandomAnime.appearRandomtext span:nth-child(3n+1) {
  animation-delay: .15s;/* spanのついた3の倍数＋1の文字列の変化を0.15秒遅らせる*/
}


/* タイトルエリア */
#title_area{
	width:100%;
	height:auto;
	margin-top: -150px;
}
#title_area .title_area_wrapper{
	flex-direction:row;
}
#title_area .title_left{
	background: #08459D;
	width:25%;
	position: relative;
}
#title_area .title_inner{
	position: absolute;
	left:110px;
	top:50%;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#title_area .title_left h2{
	margin-top:100px;
	color:#fff;
	font-family: 'Montserrat', sans-serif;
	font-size:70px;
	font-weight:600;
}
#title_area .title_left p{
	color:#fff;
	font-size:18px;
	font-weight:600;
	margin-top:10px;
}
#title_area .title_right{
	width:75%;
}
#title_area .title_right img{
	width: 100%;
	height:auto;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	#title_area{
		margin-top:-70px;
		height:auto;
		max-height:auto;
	}
	#title_area .title_inner{
		left:20px;
	}
	#title_area .title_left h2{
		font-size:8vw;
		margin-top:30px;
	}
	#title_area .title_left p{
		font-size:16px;
	}
}
