@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Akshar:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;600;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

/*----------------------------------------------------------------------
基本レイアウト
----------------------------------------------------------------------*/

html{
	font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
	line-height: 1.6;
	color: #333;
	font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	letter-spacing: .05rem;
	overflow: hidden;
}

.wrapper {
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.header a img {
  transition: .3s;
}

.header a img:hover {
  opacity: 0.5;
}

.sp{
	display: none;
}

.inner{
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}

.en{
	font-family: 'Akshar';
}

.ttl{
	font-size: clamp(1.6rem, 1.508rem + 0.41vw, 2rem);
	font-weight: 700;
	letter-spacing: .05em;
}

.ttl .en{
	font-weight: 500;
	line-height: 1.3;
	position: relative;
	font-size: clamp(4.5rem, 4.154rem + 1.54vw, 6rem);
	display: block;
	margin-bottom: 8px;
}

.ttl .en::before{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 1px;
	width: 65px;	
}

.gray_bg{
background: #EDF2F4;
}

.bg-ttl::before{
    position: absolute;
	display: inline-block;
    font-family: 'Akshar';
    font-weight: 500;
    font-style: normal;
    font-size: 20rem;
	line-height: 0;
    white-space: nowrap;
}


.more_btn{
	text-align: right;
}

.more_btn a{
	font-family: 'Akshar';
	font-size: clamp(1.8rem, 1.708rem + 0.41vw, 2.2rem);
	position: relative;
	background: #4392F1;
	color: #fff;
	display: inline-block;
	padding: 10px 45px 5px 35px;
	border-radius: 25px;
	line-height: 1;
	font-weight: 500;
	transition: .3s all;
}

.more_btn a::before{
	position: absolute;
	content: '';
	background: url("../images/arrows_white.svg") no-repeat center / contain;
	width: 16px;
	height: 11px;
	right: 15px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: .2s all;
}

.more_btn a:hover{
	opacity: .6;
}

.more_btn a:hover::before{
	right: 10px;
}


/*----------------------------------------------------------------------
ヘッダー
----------------------------------------------------------------------*/
	
.wrapper{
	position: relative;
}

.header{
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	width: 100%;
	z-index: 999;
}

.header.fixed + .container{
	padding-top:80px;
}
	
.header.fixed{
    position: fixed;
    z-index: 999999;
	left: 0;
	right: 0;
	top:0;
	margin: auto;
	animation: DownAnime 0.5s forwards;
    width: 100%;
	background: rgba(255,255,255,.95);
	box-shadow: 7.5px 8px 30px 0 rgba(75,168,248,0.05);
}

.header.fixed .g-nav-list a{
	color: #333;
}

.toggle{
	display: none;
}

.logo{
	width: min(280px,20vw);
	line-height: 0;
	margin-left: 20px;
}
.g-nav-list ul{
	margin: 0 60px 0 0;
}
.g-nav-list li{
	margin-left: 50px;
}

.g-subnav-list{
	display: flex;
}

.g-subnav-list a{
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 100px;
	width: 140px;
	font-size: 1.4rem;
	position: relative;
	padding-bottom: 1em;
	transition: .3s all;
}

.g-subnav-list span {
  position: relative;
  z-index: 3
}

.g-subnav-list a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background:rgba(75,168,248,.3);
  width: 100%;
  height: 100%;
  transition: .3s all;
  opacity: 0;
}

.g-subnav-list a:hover::after{
	opacity: 1;
}
.recruit_btn a{
	color: #fff;
	background: #003F91;
}

.contact_btn a{
	color: #003F91;
	background: #fff;
}
.recruit_btn a::before,
.contact_btn a::before{
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	margin: auto;
	z-index: 3;
  transition: transform .5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

.recruit_btn a::before{
	background: url("../images/recruit_ico.svg") no-repeat center / contain;
	width: 60px;
	height: 60px;
	top: 10px;
}

.contact_btn a::before{
	background: url("../images/contact_ico.svg") no-repeat center / contain;
	width: 45px;
	height: 45px;
	top: 17px;
}



/*----------------------------------------------------------------------
新着情報
----------------------------------------------------------------------*/

/** 新着情報一覧 **/
.news_list li{
	display: flex;
	text-align: left;
	border-bottom: 1px solid #4392F1;
	font-size: 1.6rem;
}
.news_list a{
	position: relative;
	color: #333;
	width: 100%;
	display: block;
	transition: .3s all;
}
.news_list a::before{
	position: absolute;
	content: '';
	background: url("../images/arrows_blue.svg") no-repeat center / contain;
	width: 15px;
	height: 13px;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: .2s all;
}
.news_list a:hover::before{
	right: 5px;
}
.news_list a:hover{
	opacity: .6;
}
.up_ymd{
	color: #9F9F9F;
	font-weight: bold;
	margin-right: 2em;
	padding: 1.5em 0;
}
.news_list .title{
	padding: 1.5em 0;
	width: 100%;
}



/*----------------------------------------------------------------------
フッター
----------------------------------------------------------------------*/

footer{
	padding: 40px 0;
	color: #fff;
	background: #4392F1;
}

footer a{
	color: #fff;
	transition: .3s all;
}

footer a:hover{
	opacity: .6;
}

.foot_wrap{
	width: 1220px;
	max-width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.foot_wrap .l_box{
	margin-right: 40px;
}

.foot_logo{
	width: 250px;
}

.foot_info{
	font-size: 1.4rem;
	text-align: left;
}

.foot_c_name{
	font-size: 2rem;
	margin: .5em 0 .25em;
}

.foot_address{
	font-style: normal;
}

.foot_tel a{
	color: #fff;
}

.foot_wrap .r_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 75%;
}

.foot_nav{
	width: 120px;
	margin: 0 0 30px 20px;
}

.foot_nav li{
	text-align: left;
}

.foot_nav-mainmenu{
	font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
	font-weight: 500;
	padding-bottom: .75em;
	margin-bottom: .75em;
	border-bottom: 1px solid #fff;
}

.foot_nav-submenu{
	font-size: clamp(1.3rem, 1.254rem + 0.21vw, 1.5rem);
	margin-bottom:.5em;
}


.copy{
	font-size: 1.3rem;
}

.backtotop a{
	position: fixed;
	bottom: 15px;
	right: 15px;
	background: #4392F1;
	width: 60px;
	height: 60px;
    z-index: 100;
	border-radius: 50px;
	transition: .3s all;
}

.backtotop a::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 1em;
	height: 1em;
	border: 3px solid #fff;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(25%) rotate(-45deg);
}

.backtotop a:hover{
	opacity: .5;
}


 @media screen and (max-width: 1680px) {	 
.bg-ttl::before{
     font-size: 15vw;
}
	 
}


@media screen and (min-width: 1061px) {

.g-nav_wrap{
	display: flex;
	align-items: center;
}

.g-nav-list ul{
	display: flex;
	align-items: center;
}

.g-nav-list a{
	display: inline-block;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: .3s all;
	overflow: hidden;
}

.g-nav-list a span {
	position: relative;
	display: inline-block;
	transition: transform 0.3s;
}

.g-nav-list a span::before {
	position: absolute;
	top: 100%;
	content: attr(data-hover);
	font-weight: 700;
	transform: translate3d(0,0,0);
}

.g-nav-list a:hover span,
.g-nav-list a:focus span {
	transform: translateY(-100%);
}


}
 @media screen and (max-width: 1060px) {
	 
body {
	font-size: 1.4rem;
	font-weight: 400;
}
	 
.sp{
	display: block;
}
	 
.pc{
	 display: none;
}

.header{
	height: 60px;
	padding: 0;
}
	 
/*========= ボタンのためのCSS ===============*/
.toggle{
  display: block;
  position:absolute;
  z-index: 9999;/*ボタンを最前面に*/
  top:18px;
  right: 18px;
  cursor: pointer;
  width: 30px;
  height:30px;
}

/*×に変化*/  
.toggle span{
    display: inline-block;
    transition: 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: absolute;
    left: 0;
	height: 3px;
	border-radius: 3px;
    background: #fff;
    width: 100%;
  }

.toggle span:nth-of-type(1) {
  top:0; 
}

.toggle span:nth-of-type(2) {
  top:10px;
}

.toggle span:nth-of-type(3) {
  top:20px;
}

.toggle .openbtn-area{
    transition: 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.toggle.active .openbtn-area{
  transform: rotateY(-180deg);
}

.toggle.active span:nth-of-type(1) {
    top: 3px;
    transform: translateY(6px) rotate(-45deg);
}

.toggle.active span:nth-of-type(2) {
  opacity: 0;
}

.toggle.active span:nth-of-type(3){
    top: 15px;
    transform: translateY(-6px) rotate(45deg);
}
	 
.toggle.active span,
.header.fixed .toggle span{
	background: #4392F1;
}
 
.logo {
    width: 200px;
	margin-left: 10px;
}
.js-logo_active {
	transform: translate(15px, 0px);
}

.g-nav{
  position:fixed;
  width:100%;
  height: 100vh;
  z-index:9998;
  top: 0;
  margin: auto;
  /*transition:.7s ease-in-out;*/
  visibility: hidden;
  transition: visibility 0s linear .6s,clip-path .6s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  background: #EDF2F4;
}

.g-nav.panelactive{
  visibility: visible;
  transition: visibility 0s linear 0s,clip-path .6s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/*ナビゲーションの縦スクロール*/
.g-nav_wrap{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
	height: 100dvh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
 	padding: 60px 20px 20px;
	opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear .6s,opacity .6s cubic-bezier(0.5, 1, 0.89, 1) 0s;
}
	 
.g-nav.panelactive .g-nav_wrap{
	opacity: 1;
  visibility: visible;
  transition: visibility 0s linear 0s,opacity .6s cubic-bezier(0.5, 1, 0.89, 1) .25s;
}

/*ナビゲーション*/
 .g-nav-list ul {
	width: 100%;
}
.g-nav-list li {
    margin-left: 0;
    border-bottom: 1px solid #e4ebed;
}
.g-nav-list a{
  position: relative;
  color: #333;
  text-decoration: none;
  padding:1.5em 1em;
  display: block;
  letter-spacing: 0.1em;
	font-size: min(1.8rem,4vw);
	font-weight: 500;
	text-align: left;
}
.g-nav-list a::before{
	position: absolute;
	content: '';
	background: url("../images/arrows_blue.svg") no-repeat center / contain;
	width: 15px;
	height: 13px;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: .2s all;
}

.g-subnav-list{
	margin-top: 30px;
	display: flex;
	margin-left: -15px;
}
	 
.g-subnav-list li{
	width: 100%;
    margin-left: 15px;
}

.g-subnav-list a{
	width: 100%;
}


/*----------------------------------------------------------------------
フッター
----------------------------------------------------------------------*/

.foot_wrap{
	flex-wrap: wrap;
}
	 
.foot_wrap .l_box{
	 margin: 0 0 30px 0;
}

.foot_info{
	line-height: 1.8;
	text-align:center; 
}
	 
.foot_c_name {
	margin: .25em 0 0;
}	 
.foot_wrap .r_box{
    width: 100%;
 	margin-left: -30px;
}
	 
.foot_nav{
	width: calc(100% / 4 - 30px);
	margin-left: 30px;
}
	 
.foot_nav li{

}
	 
.copy {
    font-size: 1rem;
    margin-top: 1em;
}
	 
}


@media screen and (max-width: 834px) {

.bg-ttl::before{
	font-size: 20vw;
}
	
/*----------------------------------------------------------------------
新着情報
----------------------------------------------------------------------*/

.news_list li {
    font-size: 1.4rem;
    flex-direction: column;
}
.up_ymd {
    margin-right: 0;
    padding: 1em 0 0;
}
.news_list .title{
	 padding: 0 0 1em;
}

	
.foot_nav{
	width: calc(100% / 2 - 30px);
}
	
.foot_nav-mainmenu {
	margin-bottom: 1em;
}
	
.foot_nav-mainmenu a{
	position: relative;
	display: block;
}	
.foot_nav a::before{
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: .2s all;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
	
.foot_nav-submenu {
  margin-bottom: .75em;
}
	
}

 @media screen and (max-width: 480px) {


}