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

body{
	font-family: 'Noto Sans JP', sans-serif; /*400 ,700*/
	font-weight: 400;
	color: #1a1a1a;
	font-size:16px;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
}

::-moz-selection {
  background-color: #9F9E9F; 
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background-color: #9F9E9F; 
  color: #ffffff;
  text-shadow: none;
}


*{
box-sizing: border-box;
outline:none!important;
}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	color: #1a1a1a;
	text-decoration: none;
    outline: none;
	transition: all 0.3s;
}
a:hover{
	color: #07B0C3;
	text-decoration: none;
    outline: none;
}

img{
    width: 100%;
    height: auto;
}


/*form*/
label {
    font-size: 1rem;
	margin-bottom: .2rem;
	}
textarea:focus, input:focus, input[type]:focus, .uneditable-input:focus { /*bootstrapの青枠を消す*/
  outline: none!important;
  box-shadow: none!important;
  border: 1px solid #99C7E2!important;
  background-color:  #EFF9FF!important;
}
.form-control {
	font-size: 1rem;
	padding: 12px 8px;
	line-height: 1.5;
	height: auto!important;
	border: 1px solid #C9DEEA;
	background-color:#F0F7FB!important;
}
.form-group{
	margin-bottom: 20px;
}
.text_required{
  background-color: #e60000;
  color:#ffffff;
  font-size:13px;
  padding: 2px 6px;
  font-weight: normal;
  margin-left: 10px;
  border-radius: 2px;
}



/*---------------------------------------------
 * loading
 * ---------------------------------------------*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999999;
	text-align:center;
}

#splash-logo{
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    color:#1a1a1a;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash-logo img{
	max-width:200px;
}

/*画面遷移アニメーション*/
.splashbg{
	display: none;
}
body.appear .splashbg{
    display: block;
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleY(0);
    background-color: #000000;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;

}

@keyframes PageAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:top;
	}
	100% {
		transform-origin:top;
		transform:scaleY(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#wrapper{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0s;
	animation-fill-mode:forwards;
	opacity: 0;
}
body#home.appear #wrapper{ /*トップページは画面遷移後*/
	animation-delay: 0.8s;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


/*---------------------------------------------
 * header
 * ---------------------------------------------*/
#header{
	position: absolute;
	top:0;
	left:0;
	height: 100px;/*Headerの高さ設定*/
	width:100%;
    z-index: 9;
	display: flex;
	justify-content: center;
	align-items: center;
    background-color:transparent;
	color: #ffffff;
}
#header h1{
    font-size: 1.5rem;	
	display: flex;
	align-items: center!important;
    line-height: 1;
	margin: 0!important;
	padding: 0!important;
}
#header h1 img{
	max-width: 220px;
}

/*globalMenu*/
#header nav{
	padding-right: 100px;/*humbergerのサイズを除く*/
}
#header nav ul{
list-style: none;
display: flex;
justify-content: center;
}

#header nav ul li a{
text-decoration: none;
color: #ffffff;
letter-spacing: 0.1rem;
padding:0 20px;
}
#header nav ul li a:hover{
color:#07B0C3;
}

/*===========================================================*/
/*humberger Menu
/*===========================================================*/
#g-nav{
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	bottom:-120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/

	background: rgb(5,2,48);
	background: -moz-linear-gradient(-45deg,  rgba(5,2,48,1) 20%, rgba(5,153,170,1) 100%);
	background: -webkit-linear-gradient(-45deg,  rgba(5,2,48,1) 20%,rgba(5,153,170,1) 100%);
	background: linear-gradient(135deg,  rgba(5,2,48,1) 20%,rgba(5,153,170,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#050230', endColorstr='#0599AA',GradientType=1 );

    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    bottom: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/
#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color:#ffffff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition: all 0.3s;
}
#g-nav li a:hover{
	color: #07B0C3;
}

/*===========================================================*/
/*MENUが×に */
/*===========================================================*/

.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:0;
	right: 0;
	cursor: pointer;
    width: 100px;
    height:100px;
   background-color: #000000;
}
	
/*ボタン内側*/
.openbtn > div{
	width: 50%;
	height: 50%;
	position:relative;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 0px;
    height: 4px;
    border-radius: 2px;
	background: #fff;
  	width: 100%;
  }

.openbtn span:nth-of-type(1) {
	top:/*15px;	*/25%;
}

.openbtn span:nth-of-type(2) {
	top:50%;
}

.openbtn span:nth-of-type(3) {
	top:75%;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
	top:50%;
	left:25%;
	 transform: rotate(-45deg);
    width: 50%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
	top:50%;
	left:25%;
	 transform: rotate(45deg);
    width: 50%;
}

/*mainimg----------------------------------*/
#mainimg{
position: relative;
padding: 0 0 0 0;
height: 100vh;
height: calc(var(--vh, 1vh) * 100);
}
#slider-area {
position: relative;
width:100%;
top: 0;
left:0;
z-index: -1;
}
#slider {
 height: calc(100vh); 
}

#particles-js {
    z-index:1;
	position: absolute;
	top :0;
	left: 0;
    width: 100%;
	height: 100%;
}
#main_catch{
	z-index: 2;
	width: 100%;
	text-align: center;
	letter-spacing: 0.1rem;
	
	position: absolute;
	top :50%;
	left:50%;
	transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#main_catch h2{
	margin-bottom: 50px;
}


/*===========================================================*/
/*footer*/
/*===========================================================*/
#footer{
	border-top: 1px solid #000000;
}
#footer_copy{
	height: 200px;
}
#footer_copy canvas{
position: absolute;
bottom: 0;
left:0;
width: 100%;
z-index: -1;	
}

#footer_logo img{ max-width: 200px;}


#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#000000;
	width: 50px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
}
#page-top a span:after {
      content: "";
      display: block;
      position: absolute;
      top: calc(50% - 4px);
	  left: calc(50% - 7px);
      width: 14px;
      height: 14px;
      border-right: 4px solid #ffffff;
      border-bottom: 4px solid #ffffff;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;

    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg); 
}

#page-top a:hover{
	background: #363536; 
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 0;
	bottom:0;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateX(100px);
}

/*　左の動き　*/
#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/*　右の動き　*/
#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}



/*home----------------------------------*/
.vision-lead {
    position: relative;
	padding-bottom: 30px;
}
.vision-lead::after{
	content: '';
    position: absolute;
    bottom:0;
    right: 0;
    background: #000000;
    width: 12em;
    height: 3px;
}

#home_service{
	margin-bottom: 100px;
}
.box_shadow{
    width: 100%;
    background: #fff;
    box-shadow: 0 0 20px #ccc;
	padding: 60px 30px;
	display: flex;
	flex-direction: column;
}
#home_service .box_shadow{
	position: absolute;
	left: 0;
	top:80px;
}

/*
#home_about{
background: -moz-linear-gradient(-45deg, rgba(5,2,48,0.9) 0%, rgba(2,42,81,0.9) 85%, rgba(2,42,81,0.9) 100%); 
background: -webkit-linear-gradient(-45deg, rgba(5,2,48,0.9) 0%,rgba(2,42,81,0.9) 85%,rgba(2,42,81,0.9) 100%); 
background: linear-gradient(135deg, rgba(5,2,48,0.9) 0%,rgba(2,42,81,0.9) 85%,rgba(2,42,81,0.9) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6050230', endColorstr='#e6022a51',GradientType=1 ); 
}
#home_about::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("../libs/vegas/overlays/02.png");
	background-repeat: repeat;
	position: absolute;
	left: 0;
	top: 0;
}
*/

/*subpagetop----------------------------------*/
#subpagetop {
  height:280px;
  width:100%;
  margin: 0;
	padding-top: 100px;/*headerの高さ*/
	overflow: hidden;
	/*position: relative;*/
	color: #ffffff;
	letter-spacing: 0.8rem;
/*	
background: -moz-linear-gradient(-45deg, rgba(5,2,48,0.9) 0%, rgba(2,42,81,0.9) 85%, rgba(2,42,81,0.9) 100%); 
background: -webkit-linear-gradient(-45deg, rgba(5,2,48,0.9) 0%,rgba(2,42,81,0.9) 85%,rgba(2,42,81,0.9) 100%); 
background: linear-gradient(135deg, rgba(5,2,48,0.9) 0%,rgba(2,42,81,0.9) 85%,rgba(2,42,81,0.9) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6050230', endColorstr='#e6022a51',GradientType=1 ); 	*/
}
/*
#subpagetop::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("../libs/vegas/overlays/02.png");
	background-repeat: repeat;
	position: absolute;
	left: 0;
	top: 0;
}
*/
#subpagetop h2{
	z-index: 1;
}
#policy #subpagetop h2{
	letter-spacing: 0!important;
	font-size: 1.125rem!important;
}


/*aboutus----------------------------------------------------*/
img.sign{width: 220px;}
.timeline li{
    position: relative;
	list-style: none;
	padding:0 0 10px 0;
}
.timeline dl{
	margin:0 0 10px 1em;
}
.border-line {
    /*線の位置*/
	position: absolute;
	left:2px;
	top:0;
	width:1px;
	height:0;/*はじめは高さを0に*/
	background:#c4eef7;
}

/*タイムラインの見出し横の丸の位置と形状*/
.timeline li::after{
	content:'';
	position: absolute;
	top:0;
	left:0;
	width:5px;
	height:5px;
	background: #07B0C3;
	border-radius: 50%;
}

/*serveces*/
/*modal lightbox2*/
.gallery{
	list-style: none;
    display:flex;
	flex-wrap:wrap; 
	/* justify-content:flex-start;*/
	justify-content: space-between;
	 align-items: flex-start;
}

.gallery li {
    margin: 0 10px 10px 10px;
	width: 30%;
}
.gallery li a:hover{
	cursor: zoom-in;
}

.gallery img{
	width:100%;
	height:auto;
	vertical-align:center;
}

.gallery_item{
	position: relative;
}
.gallery_item p{
  position: absolute;
  bottom:0 ;
  left: 0;
  margin: 0; 
  color:#ffffff;
  background:rgba(0,0,0,0.70);
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.8) 100%);
background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 30%,rgba(0,0,0,0.8) 100%);
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 30%,rgba(0,0,0,0.8) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#e6000000',GradientType=0 );
  font-size: 15px;
  line-height: 1.2;
  padding: 6px 10px;
  text-align: center;
  width: 100%;
 letter-spacing: 0.075rem;
}
.lb-nav a.lb-next,.lb-nav a.lb-prev{width:30%!important;}

.lb-data .lb-caption{
	font-size:1.125rem!important;
	font-weight: 600!important;
	letter-spacing: 0.1rem!important;
}
.lb-data .lb-number{
	display: inline!important;
	color: #ffffff!important;
	margin-left: 10px;
}
.lb-data .lb-close{
	background-size: contain!important;
}
.lb-nav a.lb-prev {
background-image: url( ../images/icon_prev.png)!important;
background-size: 30px 30px!important;
background-repeat: no-repeat!important;
background-position: center left 10%!important;
	
}
.lb-nav a.lb-next {
background-image: url( ../images/icon_next.png)!important;
background-size: 30px 30px!important;
background-repeat: no-repeat!important;
background-position: center right 10%!important;
	
}


/*---------------------------------------------
 * Bootstrap Override
 * ---------------------------------------------*/
.fs--1 {
  font-size: 0.75019rem !important;
}

.fs-0 {
  font-size: 1rem !important;
}

.fs-1 {
  font-size: 1.333rem !important;
}

.fs-2 {
  font-size: 1.77689rem !important;
}

.fs-3 {
  font-size: 2.36859rem !important;
}

.fs-4 {
  font-size: 3.15733rem !important;
}

.fs-5 {
  font-size: 4.20873rem !important;
}

.fs-6 {
  font-size: 5.61023rem !important;
}

.fs-7 {
  font-size: 7.47844rem !important;
}

.fs-8 {
  font-size: 9.96876rem !important;
}

.lh-0 {
  line-height: 0 !important;
}

.lh-f1 {
  line-height: 0.7 !important;
}

.lh-f2 {
  line-height: 0.85 !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-2 {
  line-height: 1.15 !important;
}

.lh-3 {
  line-height: 1.3 !important;
}

.lh-4 {
  line-height: 1.45 !important;
}

.lh-5 {
  line-height: 1.6 !important;
}

.lh-6 {
  line-height: 1.75 !important;
}

.lh-7 {
  line-height: 1.9 !important;
}

.lh-8 {
  line-height: 2.05 !important;
}


.fw-400 {
  font-weight: 400 !important;
}
.fw-700 {
  font-weight: 700 !important;
}

@media (min-width:575.9px) { /*≥576px*/
  .fs-sm--1 {
    font-size: 0.75019rem !important;
  }
  .fs-sm-0 {
    font-size: 1rem !important;
  }
  .fs-sm-1 {
    font-size: 1.333rem !important;
  }
  .fs-sm-2 {
    font-size: 1.77689rem !important;
  }
  .fs-sm-3 {
    font-size: 2.36859rem !important;
  }
  .fs-sm-4 {
    font-size: 3.15733rem !important;
  }
  .fs-sm-5 {
    font-size: 4.20873rem !important;
  }
  .fs-sm-6 {
    font-size: 5.61023rem !important;
  }
  .fs-sm-7 {
    font-size: 7.47844rem !important;
  }
  .fs-sm-8 {
    font-size: 9.96876rem !important;
  }
}

@media (min-width: 767.9px) {/*≥768px*/
  .fs-md--1 {
    font-size: 0.75019rem !important;
  }
  .fs-md-0 {
    font-size: 1rem !important;
  }
  .fs-md-1 {
    font-size: 1.333rem !important;
  }
  .fs-md-2 {
    font-size: 1.77689rem !important;
  }
  .fs-md-3 {
    font-size: 2.36859rem !important;
  }
  .fs-md-4 {
    font-size: 3.15733rem !important;
  }
  .fs-md-5 {
    font-size: 4.20873rem !important;
  }
  .fs-md-6 {
    font-size: 5.61023rem !important;
  }
  .fs-md-7 {
    font-size: 7.47844rem !important;
  }
  .fs-md-8 {
    font-size: 9.96876rem !important;
  }
}

@media (min-width: 991.9px) {/*≥992px*/
  .fs-lg--1 {
    font-size: 0.75019rem !important;
  }
  .fs-lg-0 {
    font-size: 1rem !important;
  }
  .fs-lg-1 {
    font-size: 1.333rem !important;
  }
  .fs-lg-2 {
    font-size: 1.77689rem !important;
  }
  .fs-lg-3 {
    font-size: 2.36859rem !important;
  }
  .fs-lg-4 {
    font-size: 3.15733rem !important;
  }
  .fs-lg-5 {
    font-size: 4.20873rem !important;
  }
  .fs-lg-6 {
    font-size: 5.61023rem !important;
  }
  .fs-lg-7 {
    font-size: 7.47844rem !important;
  }
  .fs-lg-8 {
    font-size: 9.96876rem !important;
  }
}

/*-----------------------------------------------------
dl
-----------------------------------------------------*/
dl.dl_table{
margin-left: 5px ;
margin-right: 5px;
margin-block-start: 0;
 margin-block-end: 0;
}

dl.dl_table{
 border-radius: 0.5px;
 }

dl.dl_table dt{
    border-top: 1px solid #cccccc;
	 border-radius: .5px;
     padding: 20px 5px 16px 15px;
	font-weight:normal;
	margin-bottom: 0;
}
dl.dl_table dd{
    border-top: 1px solid #cccccc;
	 border-radius: .5px;
    padding: 20px 5px 16px 15px;
	margin-bottom: 0;
}
dl.dl_table dt:last-of-type{
    border-bottom: 1px solid #cccccc;
}
dl.dl_table dd:last-of-type{
    border-bottom: 1px solid #cccccc;
}

@media (max-width:767px){
	dl.dl_table dt{border:none;background-color: #EFEFEF;padding-bottom: 5px;padding-top: 5px}
	dl.dl_table dd{border: none;padding-top: 14px; padding-bottom: 20px;}
	dl.dl_table dt:last-of-type,dl.dl_table dd:last-of-type{border: none;}
	
	dl.dl_topics dt,dl.dl_topics dd{padding:0 10px }
}
/*-----------------------------------------------------
animation
-----------------------------------------------------*/
/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 写真フリップ */
.flip{
transform: translate3d(0, 0, 0);
}
.flipLeft{
animation-name: flipLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
perspective-origin: left center;
opacity:0;
}

@keyframes flipLeftAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
 	opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.flipLeftTrigger{
    opacity: 0;
}


/*-----------------------------------------------------
ボタン
-----------------------------------------------------*/
.btn_box,.btn_box_black{
  border:1px solid #ffffff;
  position: relative;
  display: block;
  line-height: 1; 
  padding: 18px 10px ;
  text-align: center;
 color:#ffffff;
}
.btn_box_black{
	border:1px solid #000000;
	color: #1a1a1a;
}
 .btn_box span ,.btn_box_black span{
    position: relative;
    display: inline-block;
	letter-spacing: 0.2rem;
}

.btn_line {
  border-bottom: 4px solid #1a1a1a;
  position: relative;
  display: block;
  line-height: 1; 
  padding: 18px 20px 18px 10px ;
	text-align: right;
}
  .btn_line span {
    position: relative;
    display: inline-block;
    padding-right: 10px;
	  letter-spacing: 0.2rem;
}
  .btn_line::before ,.btn_box::before,.btn_box_black::before{
    content: "";
    background: #1a1a1a;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top; 
}
.btn_box:before{
	background-color: #ffffff;
}

  .btn_line:hover ,.btn_box:hover,.btn_box_black:hover{
    color: #fff;
    opacity: 1;
	cursor: pointer;
}
.btn_box:hover{
	color:#1a1a1a;
}
 .btn_line:hover:before,.btn_box:hover:before,.btn_box_black:hover::before {
      -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
      transform: scaleX(1);
      -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
      transform-origin: left top; 
}
  .btn_line span.arrow-r ,  .btn_box span.arrow-r ,.btn_box_black span.arrow-r{
    padding-right: 20px; 
}
 .btn_line span.arrow-r:after, .btn_box span.arrow-r:after,.btn_box_black span.arrow-r::after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      width: 12px;
      height: 12px;
      border-right: 3px solid #1a1a1a;
      border-bottom: 3px solid #1a1a1a;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
}
.btn_box span.arrow-r:after{
	  border-right: 3px solid #ffffff;
      border-bottom: 3px solid #ffffff;
}
.btn_line:hover span.arrow-r::after{
      border-right-color: #fff;
      border-bottom-color: #fff; 
}
.btn_box:hover span.arrow-r::after,.btn_box_black:hover span.arrow-r{
      border-right-color: #1a1a1a;
      border-bottom-color: #1a1a1a; }

  .btn_line span.arrow-r:after,  .btn_box span.arrow-r:after ,.btn_box_black span.arrow-r::after{
    right: 0px;
    margin-top: -4px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); 
}
 
/*-----------------------------------------------------
共通
-----------------------------------------------------*/
.font_en{font-family: 'Lato', sans-serif;}
.fs_14{font-size: 0.875rem;}
.fs_18{font-size: 1.125rem;}

.color_white{color:#ffffff;}
.color_red{color:#e60000;}

.ls_0{letter-spacing: 0!important;}
.ls_01{letter-spacing: 0.1rem;}
.ls_02{letter-spacing: 0.2rem;}

.bg_light{background-color: #f0f0f0;}
.bg_black{background-color: #000000;}
.bg_blue{background-color:#050230; }
.bg_after_gray::after{
	content: '';
    position: absolute;
    width: 70%;
    height: 23em;
    background:#f3f3f3;
    right: 10%;
    top: 20%;
    z-index: -1;
}

.bg_gradation{
	position: relative;
background: -moz-linear-gradient(-45deg, rgba(5,2,48,0.9) 0%, rgba(2,42,81,0.9) 85%, rgba(2,42,81,0.9) 100%); 
background: -webkit-linear-gradient(-45deg, rgba(5,2,48,0.9) 0%,rgba(2,42,81,0.9) 85%,rgba(2,42,81,0.9) 100%); 
background: linear-gradient(135deg, rgba(5,2,48,0.9) 0%,rgba(2,42,81,0.9) 85%,rgba(2,42,81,0.9) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6050230', endColorstr='#e6022a51',GradientType=1 ); 
}
.bg_gradation::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("../libs/vegas/overlays/02.png");
	background-repeat: repeat;
	position: absolute;
	left: 0;
	top: 0;
}

/*-----------------------------------------------------
レスポンシブ
-----------------------------------------------------*/
/*lg*/
@media(max-width:991.9px){
	#header {height: 75px;}
	.openbtn{width: 75px;height: 75px;}
	.vision-lead::after{left: 0;}
	/*.gallery {justify-content: space-between;}
	.gallery li {width: 30%;}	*/
}

@media (max-width:767.9px) {/*md: sp*/
	#home_service .box_shadow{position:static;}
	#home_service{margin-bottom: 0;}
	.gallery li {width: 45%;}	
}

/*sm*/
@media (max-width:575.9px){
	#subpagetop {  height:200px;padding-top:75px;}
	.gallery {justify-content: center;}
	.gallery li {width: 80%;}
}


@media (max-width:380px){
#header h1 img{max-width: 160px;}
}