@charset "utf-8";


header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}

header h1 img {
  margin-left: 40px;
}

/*---.wrapper---*/
.wrapper {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
}


/* -----.breadcrumb ----- */
.breadcrumb_frame {
  overflow-x: auto;
  margin-bottom: 60px;
}
ul.breadcrumb {
  display: flex;
}
ul.breadcrumb li {
  flex-shrink: 0;
}

ul.breadcrumb li:not(:last-of-type):after {
  content: "/";
  margin: 0 6px;
}
ul.breadcrumb li a {
  color: #0b41a0;
  text-decoration: none;
}



/* -----.gnavi_btn ----- */
.gnavi_btn {
  padding: 0 14px;
  width: 27px;
  height: 55px;
  display: flex;
  align-items: center;
  transition-duration: .4s;
  background-color: #0B41A1;
}
.gnavi_btn.open {
  background-color: #0B41A1;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 100%;
  height: 19px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 9px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.gnavi_btn.open .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}


/* -----.gnavi ----- */
.gnavi {
  width: 100%;
  height: 0vh;
  position: absolute;
  top: 55px;
  right: 0;
  background: rgba(11,65,161,0.97);
  transition: 0.4s;
  z-index: 999;
  overflow: hidden;
}
.gnavi.active {
  height: 100vh;
}
.gnavi nav {
  overflow-y: auto;
  height: calc(100vh - 55px);
  padding-bottom: 100px;
}
.gnavi nav ul li {
  border-bottom: 1px solid #FFF;
}
.gnavi nav a {
  line-height: 42px;
  display: block;
  color: #fff;
  text-decoration: none;
}
.gnavi nav a i {
  margin-right: 5px;
}

/* -----.gnavi .lang_page ----- */
.gnavi .lang_page h2 {
  background-color: #0A2F80;
  color: #577AB4;
  font-weight: bold;
  padding: 10px;
}
.gnavi .lang_page ul {
  margin: 10px;
}
.gnavi .lang_page ul li {
  padding: 0 10px;
  border-bottom: 1px solid #587BB3;
}
.gnavi .lang_page ul li a {
  color: #ffffff;
  text-decoration: none;
}


/*---.contents---*/
.contents {
  width: 1040px;
  margin: 0 auto;
}
.contents:not(:last-of-type) {
  margin-bottom: 100px;
}



/* ----- modal ----- */
.modal{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 999;
}
.modal__bg{
  background: rgba(0,0,0,0.5);
  position: absolute;
  height: 100vh;
  width: 100vw;
}


/* -----.sidebar ----- */
.sidebar {
  background-color: #0B41A1;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  right: -700px;
  top: 0;
  width: 900px;
  transition: all .3s ease;
}
.sidebar.open {
  right: 0;
}
.sidebar #menu_btn_close {
  text-align: right;
}

.sidebar .scroll {
  overflow: auto;
  height: calc(100vh - 90px);
}

.sidebar .lang_page h2 {
  background-color: #0A2F80;
  color: #577AB4;
  font-weight: bold;
  /*padding-left: 20px;*/
  padding: 5px 70px;
}
.sidebar .lang_page h2:before {
  content: "●";
  margin-right: 10px;
}
.sidebar .lang_page ul {
  margin: 20px 90px 60px 90px;
}
.sidebar .lang_page ul li {
  margin-bottom: 16px;
  border-bottom: 1px solid #587BB3;
}
.sidebar .lang_page ul li a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding-bottom: 8px;
  background-image: url(../img/common/nav_arr_r.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
}



/* -----#go_top ----- */
#go_top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 99;
  opacity: 0;
}
#go_top.on {
  opacity: 1;
  pointer-events: auto;
}
footer {
  background-color: #192A48;
}
footer div.footer_inner {
  width: 1076px;
  margin: 0 auto;
  color: #ffffff;
  padding: 10px 0 5px 0;
}
footer div.footer_inner div.copyright_footerlink {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: 10px;
}
footer div.footer_inner div.copyright_footerlink p.copyright {
  font-size: 12px;
}
footer div.footer_inner div.copyright_footerlink ul {
  display: flex;
}
footer div.footer_inner div.copyright_footerlink ul li:not(:last-of-type) {
  margin-right: 16px;
}
footer div.footer_inner div.copyright_footerlink ul li a {
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
}



@media screen and (max-width:1219px) {
  .wrapper {
    width: 100%;
  }
  .contents {
    width: 90%;
    margin: 0 auto;
  }
  .breadcrumb_frame {
    margin-bottom: 40px;
    margin-left: 5%;
  }
  footer div.footer_inner {
    width: 90%;
  }
}




/* -----sp ----- */
@media screen and (max-width:767px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
  header {
    height: 55px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
  }
  header.hideClass {
    top: -55px;
  }
  main {
    margin-top: 55px;
  }
  .wrapper {
    padding-bottom: 10px;
  }
  header h1 img {
    width: 177px;
    margin-left: 10px;
  }
  .gnavi nav a {
    line-height: 20px;
    padding: 10px 0;
  }
  ul.breadcrumb li,
  ul.breadcrumb li a {
    font-size: 10px;
  }

  #go_top {
    bottom: 75px;
    right: 20px;
  }
  footer div.footer_inner {
    padding: 28px 0 14px 0;
  }
  .breadcrumb_frame {
    margin-bottom: 20px;
  }
  footer img#foot_logo {
    width: 222px;
    margin-left: 20px;
  }
  footer div.footer_inner div.copyright_footerlink {
    display: block;
    margin: 28px 20px 0 20px;
  }

}
