@keyframes subvisual_ani {
  from {
    transform: scale(1.2);
  }

  to {    
    transform: scale(1);
  }
}

@keyframes subcontainer_ani {
  from {
    margin-top: 50px;
    opacity: 0;
  }

  to {    
    margin-top: 0px;
    opacity: 1;
  }
}


#sub_visual {
  position: relative; 
  text-align: center; 
  padding: 0; 
  margin: 0 auto; 
  background-color: #505050;
}
#sub_visual_bg{
  width:100%; 
  height:550px; 
  background-position: center center; 
  background-repeat: no-repeat; 
  background-size: cover; 
  overflow: hidden;
}
#sub_visual .bg{
  width:100%; 
  height:550px; 
  background-position: center center; 
  background-repeat: no-repeat; 
  background-size: cover; 
  text-align: center; 
  padding: 0; 
  margin: 0; 
  overflow: hidden;
  animation-name: subvisual_ani; 
  animation-duration: 10s; 
  animation-direction: alternate;
  /* animation-iteration-count: infinite; */
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
#sub_visual .tt_wrap{
  position: absolute; 
  top: 50%; 
  left: 50%; 
  width:100%; 
  text-align: center; 
  transform: translate(-50%, -50%);
}
#sub_visual .tt{
  font-family: 'Jost','Roboto','OneMobileTitle','SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-weight: 300;
  font-size: 2.5rem; 
  color: rgba(255,255,255,.7); 
  /* text-shadow: -1px 0 rgba(255,255,255,.4), 0 1px rgba(255,255,255,.4), 1px 0 rgba(255,255,255,.4), 0 -1px rgba(255,255,255,.4); */
  text-shadow: 2px 2px 3px rgba(0,0,0,.3);
}
#sub_visual .tt span{
  font-weight: 400;
  color: #6eb5e2;
}
#sub_visual .tt2{
  position: relative;
  margin-top: 2rem;
  font-family: 'SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-weight: 400;
  font-size: .8rem; 
  color: rgba(255,255,255,.6); 
  text-align: center; 
}
#sub_visual .tt2::before{
  position: absolute;
  top: 0;
  left:50%;
  width: 30px;
  height: 1px;
  content:'';
  background: rgba(255,255,255,1);
  transform: translate(-50%, -1.5rem);
  -webkit-transform: translate(-50%, -1.5rem);
  -moz-transform: translate(-50%, -1.5rem);
  -ms-transform: translate(-50%, -1.5rem);
  -o-transform: translate(-50%, -1.5rem);
}
#sub_visual .path{
  position: absolute;
  bottom: -25px; 
  left: 50%; 
  transform: translateX(-50%); 
  max-width:1180px; 
  width: 100%; 
  height: 40px; 
  background-color: #0c2069; 
  font-family: 'SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-weight: 400;
  font-size: 0.85rem; 
  color: #fff; 
  text-align: left; 
  padding: 0; 
  z-index: 10;
}
#sub_visual .path li{float:left; list-style: none; width:30%; height: 100%;}
#sub_visual .path li:hover{background-color: #0c2069; }
#sub_visual .path li.home{width:40px; padding:0; text-align: center;}
#sub_visual .path li.path2{width:50%;}

.dropbtn {
  position: relative;    
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  border: none;
  background-color: #0c2069; 
  font-family: 'SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #fff;
  text-align: left;
  }
  .dropbtn span{
      position: absolute;
      top: 50%;
      right: 10%;
      transform: translateY(-50%);
  }
  .dropbtn .fa-angle-right{
    transition: all .2s ease;
  }
  .dropdown {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  z-index: 500;
  }  
  .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  }
  .dropdown-content a {
  border-top: 1px solid #f1f1f1;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  }
  .dropdown-content a:hover {background-color: #f0f0f0;}
  .dropdown:hover .dropdown-content {display: block;}
  .dropdown:hover .dropbtn {background-color: #0b1d5c;}    
  .dropdown:hover .dropbtn .fa-angle-right{transform: rotate(90deg);transform-origin: center;}


#sub_visual .path_w{
  display: flex;
  justify-content: center;
  position: absolute;  
  bottom: 0px; 
  left: 0; 
  width: 100%;   
  height: 40px; 
  background: linear-gradient(to right, #fff, #fff 50%, transparent 50%, transparent);
  padding: 0; 
  z-index: 10;
}
#sub_visual .path_box{
  display: flex;
  justify-content: flex-start;
  width: 1180px;
  height: 40px;
  font-family: 'SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-weight: 400;
  font-size: 0.85rem; 
  color: #4e4e4e;   
  text-align: left;
  padding: 0;
  z-index: 1;
}
#sub_visual .path_w li{float:left; list-style: none; min-width: 20%; height: 100%;}
#sub_visual .path_w li:hover{background-color: #e4e4e4; }
#sub_visual .path_w li.home{min-width: 40px; width:40px; line-height: 40px; font-size: .7rem; text-align: center;  background: #003587 ; color: #fff; margin-right: 1rem; }
#sub_visual .path_w li.path2{width:50%;}
#sub_visual .path_w .path_end{ position: relative;}
#sub_visual .path_w .path_end::after{
  position: absolute;
  content: '';
  top: 0px;
  right: -120px;
  width: 300px;
  height: 60px;
  border-radius: 0 1rem 0 0;
  background: #fff;
  transform: skewX(40deg);
  z-index: 20;
}
#sub_visual .path_w .dropbtn {
position: relative;    
width: 100%;
height: 100%;
padding: .5rem 1rem 0 1rem;
border: none;
background-color: #fff; 
font-family: 'SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
font-weight: 500;
font-size: 0.95rem;
color: rgb(0, 0, 0);
text-align: left;
}
#sub_visual .path_w .dropbtn span{
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}
#sub_visual .path_w .dropbtn .fa-angle-right{  
	transition: all .2s ease;
}
#sub_visual .path_w .dropdown {
width: 100%;
height: 100%;
position: relative;
display: inline-block;
z-index: 500;
}  
#sub_visual .path_w .dropdown-content {
display: none;
position: absolute;
background-color: #fff;
width: 100%;
box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);
}
#sub_visual .path_w .dropdown-content a {
border-top: 1px solid #f1f1f1;
font-size: .8rem;
color: #000;
padding: 10px 14px;
text-decoration: none;
display: block;
}
#sub_visual .path_w .dropdown-content a:hover {background-color: #f6fafd; font-weight: 500; color:#003587;}
#sub_visual .path_w .dropdown:hover .dropdown-content {display: block;}
#sub_visual .path_w .dropdown:hover .dropbtn {margin-top: 1px; border-bottom: 1px solid #003587;}    
#sub_visual .path_w .dropdown:hover .dropbtn .fa-angle-right{transform: rotate(90deg);transform-origin: center;}

.sub_container{
  max-width:1180px;
  min-height: 500px; 
  margin:0px auto; 
  padding: 4rem 0 5rem 0;
  animation-name: subcontainer_ani; 
  animation-duration: .5s; 
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.page_title{
  padding: 0 0 1rem 0;
  margin: 0 auto 2rem auto;
  font-family: 'OneMobileTitle','SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 1.8rem;
  color: #000;
  letter-spacing: -0.5;
  border-bottom:1px solid #999999;
}
.page_title span{position:relative; color:#0c2069;}
.page_title span::after{ 
  content:'';
  position: absolute; right: -1.5rem; top: -.7rem; 
  width: 12px; height:12px; 
  background: #145bd6;
  border-radius:6px; 
  -webkit-border-radius:6px ; 
  -moz-border-radius:6px ; 
  -ms-border-radius:6px ; 
  -o-border-radius:6px ; 
}

.page_title_sub{
  padding: 0px 0px 20px 0px;
  margin: 0 auto;
  text-align: center;
  font-family: 'SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #5c5b5b;
  letter-spacing: -0.5;
  word-break:keep-all; 
  word-wrap:break-word;
}


@media (max-width: 1199.98px) {
  .sub_container, 
  #sub_visual .path
  #sub_visual .path_w{
      width: 97%;
  }
  #sub_visual .path_box{
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  #sub_visual_bg, #sub_visual .bg{height:400px; }
  #sub_visual .tt{font-size:1.8rem;}
  #sub_visual .path li, #sub_visual .path_w li{min-width:30%;}
  #container {padding-top:55px}
  #container_title{font-size:1.5em;padding:20px}
  .page_title{
      padding: 10px 0px;
      font-size: 1.6rem;
  }
}
@media (max-width: 767.98px) {
  #sub_visual_bg, #sub_visual .bg{height:300px; }
  #sub_visual .tt_wrap{top: 55%; padding: 0 2rem; opacity: .6; }
  #sub_visual .tt{font-size:1.1rem; }
  #sub_visual .tt2{margin-top: 1.7rem; font-size:0.6rem; word-break:keep-all; word-wrap:break-word; }    
  #sub_visual .tt2::before{
    width: 20px;
    transform: translate(-50%, -1.0rem);
    -webkit-transform: translate(-50%, -1.0rem);
    -moz-transform: translate(-50%, -1.0rem);
    -ms-transform: translate(-50%, -1.0rem);
    -o-transform: translate(-50%, -1.0rem);
}
  #sub_visual .path, #sub_visual .path_w{ font-size: 0.75rem;}
  #sub_visual .path li, #sub_visual .path_w li{width:45%;}
  #sub_visual .path li.home, #sub_visual .path_w li.home{width:10%;}
  #sub_visual .path .hide, #sub_visual .path_w .hide{display:none;}
  #sub_visual .path_w .path_end::after{
    display:none;
  }
  .dropbtn {font-size: 0.75rem;}    
  .sub_container{
    padding: 1.5rem 0 2rem 0;
  }
  .page_title{
    margin: 0 auto 2rem auto;
  }
}