@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/

/* IE 6 does not support max-width so default to width 100% */

img, object, embed, video {
	width: 100%;
	margin: auto;
}

.en { font-family: "Noto Sans JP", sans-serif; }


/* Mobile Layout: 480px and below. */


@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/*PC*/
@media print, screen and (min-width: 769px) {

/*--スクロールトップ---------*/
#totop {
bottom: 20px;
display: block;
position: fixed;
right: 20px;
z-index: 2000;
}

#totop a {
display: block;
width: 54px;
height: 54px;
text-indent: -1000em;
overflow: hidden;
background: url("../../images/com/btn_scroll_top.png") 0 0 no-repeat;
background-size: auto auto;
background-size: 100% auto;
}



/*btn*/
/*----------------------------*/
.btn {
    width: 300px;
    margin: 100px auto 0;
}
.btn a{
	border: 1px solid #333;
	color: #333;
	padding: 10px 0px;
	font-weight: 600;
	display: block;
	text-align: center;
    position: relative;
    box-shadow: 2px 2px 0px rgb(0, 0, 0);
}
.btn a:hover{
	color: #707070;
}

	

/*パンくず*/
/*----------------------------*/
#pan_area {
width: 100%;
font-size: 1.3rem;
padding-top: 15px;
margin-bottom: 15px;
}
#pan_area h3 {
font-size: 1.3rem;
font-weight: normal!important; 
}
#pan_area #pan_area_in {
width: 100%;
margin: 0 auto;
display: -webkit-flex;
display: -webkit-box;
display: -ms-flexbox;

display: flex;
justify-content: flex-end;
-webkit-box-pack: end;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#pan_area #pan_area_in .pan_list {
padding-right: 16px;
margin-right: 10px;
position: relative;
}
#pan_area #pan_area_in .pan_list::before {
position: absolute;
content: "";
right: 0;
top: 50%;
width: 4px;
height: 4px;
margin-top: -2px;
border-top: 1px solid #303030;
border-right: 1px solid #303030;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
#pan_area #pan_area_in .pan_list:last-child {
padding-right: 0;
margin-right: 0;
}
#pan_area #pan_area_in .pan_list:last-child::before {
display: none;
}
#pan_area #pan_area_in .pan_list a {
text-decoration: underline;
/*text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;*/
}



/*com*/
/*----------------------------*/
body { min-width: 1200px; }

.pcBr { display: inline-block; }
.spBr { display: none; }
.pc { display: block; }
.sp { display: none!important; }

#contents { width: 100%; min-width: 1200px; margin: 0 auto 200px; }

.comPd_80{ padding: 80px 0; }

.w1400 { max-width: 1400px; margin: auto;}
.w1200 { max-width: 1200px; margin: auto;}
.w1000 { max-width: 1000px; margin: auto;}
.w960 { max-width: 960px; margin: auto;}



/* header
--------------------------------------------*/
header { position: relative; min-width: 1200px; }
#header {
width: 100%;
min-width: 1200px;
height: 80px;
padding: 0px 40px;
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
transition: 0.5s;
}

.logo_wrap { width: 200px; transition: 0.5s; }

.menu_list { display: flex; }
.menu_list li { font-size: 0.9em; margin: 0 0 0 30px; }
.menu_list li:first-child { margin-left: 0; }
.menu_list li a { transition: all .3s; position: relative; }
.menu_list li a::before {
content: "";
position: absolute;
bottom: -5px; left: 0;
width: 0%; height: 1px;
background: #00488a;
transition: all 0.6s ease;
}
.menu_list li a:hover::before { width: 100%; }


#header.scroll-nav {
position: fixed;
top: 0;
height: 80px;
padding: 0px 30px;
transition: 0.5s;
background: rgba(255,255,255,0.8);
backdrop-filter: blur(10px);
z-index: 1000;
}
#header.scroll-nav .logo_wrap { width: 180px; }


.menu__floating_wrap { display: none; }



/* 以下、ハンバーガーボタン */ 
.burger-btn {
background: #000;
position: relative;
width: 80px;
height: 100%;
padding: 0;
border: none;
text-align: center;
z-index: 1;
cursor: pointer;
transition: all .5s;
}
.burger-btn span {
color: #fff;
}
.menu__floating_wrap.scroll-nav {
display: block;
}


.bar{      
width: 40px;      
height: 1px;        
display: block;      
position: absolute;      
left: 50%;      
transform: translateX(-50%);      
background-color: #fff;    
}    
.bar_top{   
top: 30px;
}
.bar_mid{    
top: 50%;
transform: translate(-50%,-50%);
}
.bar_bottom{
bottom: 30px;
}


.burger-btn.close .bar_top{      
transform: translate(-50%,10px) rotate(45deg);      
transition: transform .3s;    
}    
.burger-btn.close .bar_mid{      
opacity: 0;       
transition: opacity .3s;    
}    
.burger-btn.close .bar_bottom{      
transform: translate(-50%,-8px) rotate(-45deg);      
transition: transform .3s;    
}


/* 全画面表示 */
.menu_wrap02{      
visibility: hidden;     
background: rgba(255,255,255,0.9);
opacity: 0;  
width: 100vw;      
min-width: 1200px;
height: 100vh;      
position: fixed;      
top: 0;      
left: 0;
transition: all .5s;       
z-index: 2;     
}     

#menu_logo_img {
width: 200px;
position: absolute;
top: 10px;
left: 30px;
}

.menu02{
width: 85%;
z-index: 2;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin: 20% auto 0;
}     
.menu_list02{       
width: 40%;    
}
.menu_list02:last-child{            
width: 50%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.menu_list02 li{
margin-bottom: 100px;
font-size: 1.4em;
}
.menu_list02 li a{
position: relative;
}
.menu_list02:last-child li{              
width: 50%;
}
.menu_list02:last-child li a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #0024f5;
  transition: all 0.6s ease;
}
.menu_list02:last-child li a:hover::before {
  width: 100%;
}

.menu_list02 li.home{
font-size: 1.8em;
}
.menu_list02 li.official{
font-size: 1em;
}
.menu_list02 li.official a{
border: 1px solid #333;
padding: 15px 30px;
transition: all .5s; 
}
.menu_list02 li.official a:hover{
border: 1px solid #333;
background: #333;
color: #fff;
transition: all .5s; 
}


/* メニューオープン時 */
.menu_wrap02.fade {
visibility: visible;
opacity: 1;
}
.menu__floating_wrap.fade {
display: block;
}

.menu__floating_fade .menu_recruit {
display: none;
}
.menu__floating_fade .burger-btn {
background: none;
transition: all .5s;
}
.menu__floating_fade .burger-btn .bar {
background: none;
transition: all .5s;
background-color: #333;
width: 30px;
height: 2px;
}



/* footer
--------------------------------------------*/
.recruit-bottom a {
position: relative;
display: flex;
justify-content: space-around;
align-items: center;
margin: 0 auto;
font-size: 4em;
padding: 40px 20px;
color: #fff;
line-height: 1.8;
background: linear-gradient(270deg, #3bade3 0%, #6496c3 25%, #306596 51%, #00488a 100%);
background-position: 1% 50%;
background-size: 200% auto;
transition: all 0.3s ease-out;
}
.recruit-bottom a:hover { color: #fff; background-position: 99% 50%; }


.button a {
position: relative;
display: flex;
justify-content: space-around;
align-items: center;
margin: 0 auto;
border-radius: 9999px;
max-width: 250px;
padding: 10px 25px;
color: #fff;
line-height: 1.8;
background: linear-gradient(270deg, #3bade3 0%, #6496c3 25%, #306596 51%, #00488a 100%);
background-position: 1% 50%;
background-size: 200% auto;
transition: all 0.3s ease-out;
}


footer{ position: relative; }

#footer {
width: 100%;
padding: 50px 0;
box-sizing: border-box;
min-width: 1200px;
background: #333;
}

.footer_wrap{
display: flex;
justify-content: space-between;
width: 90%;
margin: auto;
}

.f_logo {
width: 150px;
margin: 0 0 20px;
}

.copy {
font-size: 10px;
font-weight: 300;
letter-spacing: 0.12em;
color: #fff;
}

.footer-nav .nav-global,
.footer-nav .nav-about{
margin: 0 0 25px;
display: flex;
justify-content: flex-end;
}
.footer-nav .nav-global li a,
.footer-nav .nav-about li a{
font-size: 0.9em;
text-decoration: none;
transition: color .4s cubic-bezier(.215,.61,.355,1);
color: #9da3a7;
margin-left: 25px;
}
.footer-nav .nav-global li a:hover,
.footer-nav .nav-about li a:hover{
color: #fff;
}



/* hed_img
--------------------------------------------*/

.hed_ttl .img { width: 90%; margin: 0 0 0 auto; }
.hed_ttl .txt {
position: relative;
margin: -50px 0 0 10%;
display: inline-block;
background: #fff;
padding: 20px 120px 0 10px;
}
.hed_ttl .sub_tit { font-size: 1em; color: #00488a; }
.hed_ttl h2 { font-size: 2.8em; }

.pankuzu {  width: 90%; margin: 30px auto 0; list-style: none; display: flex; box-sizing: border-box; justify-content: end; }
.pankuzu li { font-size: 0.9em; }
.pankuzu li::after { content: ">"; padding: 0 10px; text-decoration: nonep;}
.pankuzu li:nth-last-of-type(1)::after { content: none;}
.pankuzu li a { border-bottom: 1px solid #333; }



/* main_hed
--------------------------------------------*/

.main_hed { position: relative; width: 80%; }
.main_hed .main_hed_txt { text-align: center; line-height: 1.8; margin-bottom: 50px; }
.main_hed .main_hed_tit { text-align: center; line-height: 1.8; margin-bottom: 50px; font-size: 1.6em; }



/* button
--------------------------------------------*/
.button a {
position: relative;
display: flex;
justify-content: space-around;
align-items: center;
margin: 0 auto;
border-radius: 9999px;
max-width: 250px;
padding: 10px 25px;
color: #fff;
line-height: 1.8;
background: linear-gradient(270deg, #3bade3 0%, #6496c3 25%, #306596 51%, #00488a 100%);
background-position: 1% 50%;
background-size: 200% auto;
transition: all 0.3s ease-out;
}
.button a:hover { color: #fff; background-position: 99% 50%; }
.button a:after {
content: '';
width: 5px;
height: 5px;
border-top: 3px solid #fff;
border-right: 3px solid #fff;
transform: rotate(45deg) translateY(-50%);
position: absolute;
top: 50%;
right: 20px;
border-radius: 1px;
}



/* btnBk
--------------------------------------------*/

.btnBk { text-align: center;}
.btnBk a { position: relative; border: 1px solid #333; padding: 10px 60px; border-radius: 50px; font-size: 0.9em; display: inline-block;}
.btnBk a:hover { color: #d09c80; transition: all 0.3s ease-out;}





}




/*pcとsp共通*/
/*----------------------------*/
.gridContainer {
overflow: hidden;
}



.imgSlide {
width: 100%;
height: 100%;
overflow: hidden;
}
.imgSlide .imgSlideIn {
width: inherit;
height: inherit;
opacity: 0;
}
.isPlay {
animation-name: play;
animation-duration: .5s;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(.8,0,.5,1);
position: relative;
opacity: 1 !important;
}
.isPlay:before {
animation-name: maskOut;
animation-duration: .5s;
animation-delay: .5s;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(.8,0,.5,1);
content: '';
position: absolute;
top: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
background-color: #202020;
}
@keyframes play {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0);
}
}
@keyframes maskOut {
from {
transform: translateX(0);
}
to {
transform: translateX(100%);
}
}
/*----------------------------------------------------------------------*/







/*sp*/
@media only screen and (max-width: 768px) {
	
.side{
	display: none;
}



/*btn*/
/*----------------------------*/
.btn {
    width: 180px;
    margin: 50px auto 0;
}
.btn a{
	border: 1px solid #333;
	color: #333;
	padding: 10px 0px;
	font-weight: 600;
	display: block;
	text-align: center;
    position: relative;
    box-shadow: 2px 2px 0px rgb(0, 0, 0);
    font-size: 12px;
}




/*--パンくず---------*/
#pan_area {
width: 100%;
font-size: 10px;
padding-top: 10px;
}
#pan_area h3 {
font-size: 10px;
font-weight: 500;
}
#pan_area #pan_area_in {
width: 100%;
margin: 0 auto;
display: -webkit-flex;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
justify-content: flex-end;
}
#pan_area #pan_area_in .pan_list {
padding-right: 16px;
margin-right: 10px;
position: relative;
}
#pan_area #pan_area_in .pan_list::before {
position: absolute;
content: "";
right: 0;
top: 50%;
width: 4px;
height: 4px;
margin-top: -2px;
border-top: 1px solid #303030;
border-right: 1px solid #303030;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
#pan_area #pan_area_in .pan_list:last-child {
padding-right: 0;
margin-right: 0;
}
#pan_area #pan_area_in .pan_list:last-child::before {
display: none;
}
#pan_area #pan_area_in .pan_list a {
text-decoration: underline;
/*text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;*/
}

#totop {
bottom: 20px;
display: block;
position: fixed;
right: 15px;
z-index: 2000;
width: 45px;
}

#totop a {
display: block;
width: 50px;
height: 50px;
text-indent: -1000em;
overflow: hidden;
background: url(../../images/com/btn_scroll_top.png) 0 0 no-repeat;
background-size: auto auto;
background-size: 100% auto;
}

/* com
--------------------------------------------*/
.pcBr {
display: none;
}

.spBr {
display: inline-block;
}

.pc {
display: none!important;
}

.sp {
display: block;
}

#contents {
width: 100%;
margin: 50px auto 100px;
}

.w1400 { width: 90%; margin: auto;}
.w1200 { width: 90%; margin: auto;}
.w1000 { width: 85%; margin: auto;}
.w960 { width: 80%; margin: auto;}

.comPd01 {
padding: 0 0 80px;
}

.comInBox01 {
margin-bottom: 60px;
}

.comInBox01:last-child {
margin-bottom: 0px;
}

.comPd_80 {
padding: 40px 0;
}

.comPd_top80 {
padding: 40px 0 0;
}



/* header
--------------------------------------------*/
header {
    position: relative;
}

#header {
width: 100%;
z-index: 10;
position: fixed;
padding: 10px 0;
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.logo_wrap {
width: 120px;
margin-left: 10px;
position: relative;
z-index: 100;
}

.menu_wrap{
display: none;
}


.menu__floating_wrap{

}

.menu__floating{
position: fixed;
top: 0;
right: 0;
z-index: 101;
display: flex;
height: 50px;
transition: all .5s ease;
}

.menu__floating .menu_recruit{
display: none;
}


/* 以下、ハンバーガーボタン */ 
.burger-btn {
background: #000;
position: relative;
width: 50px;
height: 100%;
padding: 0;
border: none;
text-align: center;
z-index: 1;
cursor: pointer;
transition: all .5s;
}
.burger-btn span {
color: #fff;
}


.bar{      
width: 20px;      
height: 1px;        
display: block;      
position: absolute;      
left: 50%;      
transform: translateX(-50%);      
background-color: #fff;    
}    
.bar_top{   
top: 16px;
}
.bar_mid{    
top: 50%;
transform: translate(-50%,-50%);
}
.bar_bottom{
bottom: 15px;
}


.burger-btn.close .bar_top{      
transform: translate(-50%,10px) rotate(45deg);      
transition: transform .3s;    
}    
.burger-btn.close .bar_mid{      
opacity: 0;       
transition: opacity .3s;    
}    
.burger-btn.close .bar_bottom{      
transform: translate(-50%,-8px) rotate(-45deg);      
transition: transform .3s;    
}


/* 全画面表示 */
.menu_wrap02 {      
visibility: hidden;     
background: linear-gradient(90deg, #0050a6, #0071bf);
width: 80vw;
height: 100vh;      
position: fixed;      
top: 0;      
right: -80vw;
transition: all .5s;       
z-index: 10;     
}     

.menu02 {
width: 80%;
z-index: 2;
display: block;
position: absolute;
top: 50%; left: 48%;
transform: translate(-50%,-50%);     
}
.menu02 #menu_logo_img { width: 180px; margin-bottom: 50px; }

.menu_list02 {  }
.menu_list02:last-child { margin-bottom: 60px; }

.menu_list02 li { margin-bottom: 30px; }
.menu_list02 li a { position: relative; color: #fff; }

.menu_list02 li.official a { font-size: 1.4rem; }


/* メニューオープン時 */
.menu_wrap02.fade { visibility: visible; right: 0; }
.menu__floating_wrap.fade { display: block; }

.menu__floating_fade .burger-btn { background: none; transition: all .5s; }
.menu__floating_fade .burger-btn .bar {
background: none;
transition: all .5s;
background-color: #fff;
}
	
	

	
	
/* hed_img
--------------------------------------------*/

.hed_ttl .img { width: 90%; margin: 0 0 0 auto; }
.hed_ttl .txt {
position: relative;
margin: -20px 0 0 5%;
display: inline-block;
background: #fff;
padding: 20px 10px 0 10px;
width: 80%;
}
.hed_ttl .sub_tit { font-size: 0.8em; color: #00488a; }
.hed_ttl h2 { font-size: 1.8em; }

.pankuzu {  width: 90%; margin: 20px auto 0; list-style: none; display: flex; box-sizing: border-box; justify-content: end; }
.pankuzu li { font-size: 0.8em; }
.pankuzu li::after { content: ">"; padding: 0 10px; text-decoration: nonep;}
.pankuzu li:nth-last-of-type(1)::after { content: none;}
.pankuzu li a { border-bottom: 1px solid #333; }



/* main_hed
--------------------------------------------*/
.main_hed { position: relative; }
.main_hed .main_hed_txt { text-align: center; line-height: 1.8; margin-bottom: 50px; }
.main_hed .main_hed_tit { text-align: center; line-height: 1.8; margin-bottom: 50px; font-size: 1.2em; }



/* button
--------------------------------------------*/
.button a {
position: relative;
display: flex;
justify-content: space-around;
align-items: center;
margin: 30px auto 0px;
border-radius: 9999px;
max-width: 200px;
padding: 10px 25px;
color: #fff;
line-height: 1.8;
background: linear-gradient(270deg, #3bade3 0%, #6496c3 25%, #306596 51%, #00488a 100%);
background-position: 1% 50%;
background-size: 200% auto;
transition: all 0.3s ease-out;
}
.button a:hover { color: #fff; background-position: 99% 50%; }
.button a:after {
content: '';
width: 5px;
height: 5px;
border-top: 3px solid #fff;
border-right: 3px solid #fff;
transform: rotate(45deg) translateY(-50%);
position: absolute;
top: 50%;
right: 20px;
border-radius: 1px;
}



/* btnBk
--------------------------------------------*/

.btnBk { text-align: center;}
.btnBk a { position: relative; border: 1px solid #333; padding: 10px 60px; border-radius: 50px; font-size: 0.9em; display: inline-block;}
.btnBk a:hover { color: #d09c80; transition: all 0.3s ease-out;}
	
	


/* footer
--------------------------------------------*/
.recruit-bottom{ width: 90%; margin: 0 auto 50px; }
.recruit-bottom a { display: block; border: 2px solid #333; font-size: 1.4em; text-align: center; padding: 20px 0; position: relative; }
.recruit-bottom a::before { content: ""; width: 2px; height: 30px; background-color: #333; position: absolute; top: -30px; left: 50%; transform: translateX(-50%); }
.recruit-bottom a::after { content: ""; width: 2px; height: 10px; background-color: #333; position: absolute; top: 0; left: 50%; transform: translateX(-50%); }


#footer {
width: 100%;
padding: 20px 5%;
box-sizing: border-box;
margin: auto;
background: #333;
}

.f_logo {
width: 110px;
margin: 0 auto 10px;
}

#footer .address{
font-size: 12px;
text-align: center;
margin: 0 auto 20px;
color: #fff;
}


.copy {
width: 96%;
margin: 0 auto;
font-size: 12px;
font-weight: 300;

letter-spacing: 0.12em;
color: #fff;
text-align: center;
}
.copy span {
display: block;
}


#footer ul {
display: none;
}



/*--------スマホメニュー-------*/
.sp_list {
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: fixed;
bottom: 0;
z-index: 1000;
height: 60px;
background:rgba(255,255,255,1);
}
.sp_list li {
background: #20293b;
width:calc(50% - .5px);
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
}
.sp_list li a {
display: block;
color: #fff;
text-align: center;
font-size:.7rem;
}
.sp_list li a span.tit {
display: block;
line-height:1;
}
.sp_list li a i {
font-size: 16px;
margin: 0 0 10px;
}
.sp_list .end {
display: none;
}



}