.common-header--md {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  background-color: #FFF;
  box-sizing: border-box;
  padding: 0 20px;
  transition: background 1s ease-in-out; }
  @media screen and (max-width: 414px) {
    .common-header--md {
      display: none; } }
  .common-header--md.no-bg {
   /* background-color: transparent; */ }
  .common-header--md .logo {
    margin-right: 28px; }
  .common-header--md .gnav ul {
    display: flex; }
  .common-header--md .gnav li.link-crt, .common-header--md .gnav li.link-rec {
    border-left: solid 1px #092AA3;
    border-right: solid 1px #092AA3; }
  .common-header--md .gnav li.link-rec {
    margin-left: -1px; }
  .common-header--md .gnav li a {
    position: relative;
    display: block;
    padding-top: 40px; }
    .common-header--md .gnav li a:before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 100%;
      background: #092AA3 left bottom no-repeat;
      background-size: 100%;
      transition: opacity 0.3s ease-in-out;
      opacity: 0; }
  .common-header--md .gnav li:nth-child(1):hover a:before, .common-header--md .gnav li.current:nth-child(1) a:before {
    background-image: url("gnav_01_on20210322.png"); }
  .common-header--md .gnav li:nth-child(2):hover a:before, .common-header--md .gnav li.current:nth-child(2) a:before {
    background-image: url("gnav_02_on.png"); }
  .common-header--md .gnav li:nth-child(3):hover a:before, .common-header--md .gnav li.current:nth-child(3) a:before {
    background-image: url("gnav_03_on.png"); }
  .common-header--md .gnav li:nth-child(4):hover a:before, .common-header--md .gnav li.current:nth-child(4) a:before {
    background-image: url("gnav_04_on.png"); }
  .common-header--md .gnav li:nth-child(5):hover a:before, .common-header--md .gnav li.current:nth-child(5) a:before {
    background-image: url("gnav_05_on.png"); }
  .common-header--md .gnav li:nth-child(6):hover a:before, .common-header--md .gnav li.current:nth-child(6) a:before {
    background-image: url("gnav_06_on.png"); }
  .common-header--md .gnav li:nth-child(7):hover a:before, .common-header--md .gnav li.current:nth-child(7) a:before {
    background-image: url("gnav_07_on.png"); }
  .common-header--md .gnav li:nth-child(8):hover a:before, .common-header--md .gnav li.current:nth-child(8) a:before {
    background-image: url("gnav_08_on.png"); }
  .common-header--md .gnav li:nth-child(9):hover a:before, .common-header--md .gnav li.current:nth-child(9) a:before {
    background-image: url("gnav_09_on.png"); }
  .common-header--md .gnav li:hover a:before, .common-header--md .gnav li.current a:before {
    opacity: 1; }

.common-header--sm {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  background-color: #FFF;
  transition: background 1s ease-in-out; }
  @media screen and (min-width: 415px) {
    .common-header--sm {
      display: none; } }
  .common-header--sm.no-bg {
    /* background-color: transparent; */}
  .common-header--sm .logo {
    margin-left: 25px; }
    .common-header--sm .logo img {
      height: 32px;
      width: auto; }
  .common-header--sm .gnav-btn {
    position: relative;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60px;
    height: 60px;
    background-color: #092AA3;
    outline: none; }
    .common-header--sm .gnav-btn i, .common-header--sm .gnav-btn:before, .common-header--sm .gnav-btn:after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      background-color: #FFFFFF;
      margin: 3px 0;
      transition: 0.3s ease-in-out;
      opacity: 1; }
    .common-header--sm .gnav-btn.close {
      position: fixed;
      z-index: 101; }
      .common-header--sm .gnav-btn.close i {
        opacity: 0; }
      .common-header--sm .gnav-btn.close:before {
        transform: rotate(45deg) scaleX(1.3) translate(5px, 5px); }
      .common-header--sm .gnav-btn.close:after {
        transform: rotate(-45deg) scaleX(1.3) translate(5px, -5px); }
  .common-header--sm .gnav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100vw;
    height: 100vh;
    background-color: #092AA3;
    visibility: hidden;
    transition: 0.5s ease-in-out;
    opacity: 0; }
    .common-header--sm .gnav.show {
      visibility: visible;
      opacity: 1; }
    .common-header--sm .gnav ul {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: wrap; }
      .common-header--sm .gnav ul li {
        width: 33.3333333%; }
        .common-header--sm .gnav ul li a {
          position: relative;
          display: block;
          padding: 32px 0;
          text-align: center; }
          .common-header--sm .gnav ul li a:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            display: block;
            width: 100%;
            height: 100%;
            background: #FFFFFF center center no-repeat;
            background-size: 92px 45px;
            transition: 0.5s ease-in-out;
            opacity: 0; }
        .common-header--sm .gnav ul li:nth-child(1):active a:before, .common-header--sm .gnav ul li.current:nth-child(1) a:before {
          background-image: url("../sp_nav/nav_01_on202103.png"); }
        .common-header--sm .gnav ul li:nth-child(2):active a:before, .common-header--sm .gnav ul li.current:nth-child(2) a:before {
          background-image: url("../sp_nav/nav_02_on.png"); }
        .common-header--sm .gnav ul li:nth-child(3):active a:before, .common-header--sm .gnav ul li.current:nth-child(3) a:before {
          background-image: url("../sp_nav/nav_03_on.png"); }
        .common-header--sm .gnav ul li:nth-child(4):active a:before, .common-header--sm .gnav ul li.current:nth-child(4) a:before {
          background-image: url("../sp_nav/nav_04_on.png"); }
        .common-header--sm .gnav ul li:nth-child(5):active a:before, .common-header--sm .gnav ul li.current:nth-child(5) a:before {
          background-image: url("../sp_nav/nav_05_on.png"); }
        .common-header--sm .gnav ul li:nth-child(6):active a:before, .common-header--sm .gnav ul li.current:nth-child(6) a:before {
          background-image: url("../sp_nav/nav_06_on.png"); }
        .common-header--sm .gnav ul li:nth-child(7):active a:before, .common-header--sm .gnav ul li.current:nth-child(7) a:before {
          background-image: url("../sp_nav/nav_07_on.png"); }
        .common-header--sm .gnav ul li:nth-child(8):active a:before, .common-header--sm .gnav ul li.current:nth-child(8) a:before {
          background-image: url("../sp_nav/nav_08_on.png"); }
        .common-header--sm .gnav ul li:nth-child(9):active a:before, .common-header--sm .gnav ul li.current:nth-child(9) a:before {
          background-image: url("../sp_nav/nav_09_on.png"); }
        .common-header--sm .gnav ul li:active a:before, .common-header--sm .gnav ul li.current a:before {
          opacity: 1; }

/* end */


li.link-crt{
	display:none !important;
}
