body.under {
  /* background: rgb(242, 242, 242);
  background: -moz-linear-gradient(top, #f7f7f7 0%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-linear-gradient(top, #f7f7f7 0%, rgba(255, 255, 255, 1) 100%);
  background: linear-gradient(to bottom, #f7f7f7 0%, rgba(255, 255, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#ffffff', GradientType=0); */
  background: #f7f7f7;
}
.kv {
  /* background: url(/common/june/img/privacy/kv.png) 50% 30%; */
  height: 275px;
  width: 100%;
  position: relative;
}
.kv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(56, 81, 150);
  /* Old browsers */
  background: -moz-linear-gradient(left, rgba(56, 81, 150, .67) 0%, rgba(37, 33, 93, .67) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(56, 81, 150, .67) 0%, rgba(37, 33, 93, .67) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(56, 81, 150, .67) 0%, rgba(37, 33, 93, .67) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#385196', endColorstr='#25215d', GradientType=1);
}
.breadcrumb {
  margin: 0;
  padding: 20px 0 0 0;
  position: relative;
  z-index: 2;
}
.kv_wrap {
  max-width: 1400px;
  margin: auto;
}

.breadcrumb li a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb li a::after {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.breadcrumb li {
  color: #fff;
  letter-spacing: 1.5px;
}

/* .breadcrumb li span {
  color: rgba(255, 255, 255, 0.5);
} */

.page_title_wrap {
  /* max-width: 1200px;
  margin: auto;
  position: relative; */
  position:relative;
  max-width:1400px;
  margin:0 auto;
  padding:0 10px;
  box-sizing:border-box;
  z-index:2;
  top:30px;

}

.page_title_wrap h2 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 62px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.page_title_wrap p {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.subnav {
  background: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 0 15px rgba(102, 102, 102, 0.15);
  position: relative;
  z-index: 2;
}

.subnav ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  /*Android4.3*/
  -moz-box-pack: center;
  /*Firefox21*/
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-justify-content: center;
  /*PC-Safari,iOS8.4*/
  justify-content: center;
}

.subnav ul li {
  margin: 0 40px;
}

.subnav ul li a {
  font-size: 14px;
  color: #000000;
  display: block;
  /* padding-bottom: 15px; */
  padding: 15px 0 0 0;
}
nav ul li a img.hover_a {
	display: none;
}
nav ul li a:hover img {
	display: none;
}
nav ul li a:hover img.hover_a {
	display: block;
}

.subnav ul li.current a {
  position: relative;
}

.subnav ul li.current a::after {
  content: "";
  background: #2B3990;
  width: 100%;
  height: 2px;
  bottom: 0;
  display: block;
  left: 0;
  margin-top: 15px;
}

.under_contents {
  max-width: 1200px;
  margin: auto;
  padding: 80px 0 100px 0;
}

.subnav.fixed {
  position: fixed;
  width: 100%;
  top: 71px;
  transform: translateY(0);
  border-top: 1px solid #eee;
  z-index: 2;
}

.subnav.fixed.open_nav {
  transform: translateY(70px);
  transition-property: all;
  transition-duration: .4s;
  /*easeInOutCubic*/
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

.subnav.fixed.open_nav.open_nav_down {
  transform: translateY(129px);
  transition-property: all;
  transition-duration: .4s;
  /*easeInOutCubic*/
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}


@media only screen and (max-width:736px) {
	.breadcrumb{
		display:none;
	}
  .under_contents{
    padding: 40px 0 40px 0;
  }
  .kv {
  /* background: url(/common/june/img/privacy/kv.png) 50% 30%; */
  height: 185px;
  width: 100%;
  position: relative;
}
  .kv_wrap{
    padding: 0 15px;
  }
  .page_title_wrap{
    margin-left: 0;
    left: 15px;
	padding:0;
  }
  .page_title_wrap h2{
    font-size: 40px;
    margin-bottom: 10px;
	line-height:110%;
  }
  .page_title_wrap p{
    font-size: 14px;
  }
  .subnav ul{
    /* -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between; */
    text-align: start;
  	-webkit-box-pack: start;
  	/*Android4.3*/
  	-moz-box-pack: start;
  	/*Firefox21*/
  	-ms-flex-pack: start;
  	/*IE10*/
  	-webkit-justify-content: flex-start;
  	/*PC-Safari,iOS8.4*/
  	justify-content: flex-start;
    padding: 0 15px;
  }
  .subnav ul li{
    margin: 0 10px;
  }
  .subnav ul li a{
    font-size: 12px;
  }
  nav ul li a img.hover_a {
  	display: inline-block;
  }
  nav ul li a:hover img {
  	display: none;
  }
  nav ul li a:hover img.hover_a {
  	display: inline-block;
  }
}
