@charset "utf-8";
/* CSS Document */
/* ここから */
#header {
  position: fixed;
  z-index: 998;
  top: 0;
  height: 70px;
}
/*----------ふわっ----------*/
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 2.0s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　----------上に上がる動き----------　*/
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　----------下に下がる動き----------　*/
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------ロゴ----------*/
#header_logo {
  width: 180px;
}
#logo_1_w, #logo_5_s {
  fill: #024e8f;
}
#logo_2_o, #logo_3_r, logo_4_k, logo_6_t, logo_7_a, logo_8_f, logo_9_f {
  fill: #fff;
}
.logo_item {
  fill: #fff;
  stroke-width: 2;
  stroke-dasharray: 1500;
  stroke-dashoffset: 0;
  animation-name: anime-logo;
  animation-duration: 5s;
  animation-timing-function: linear;
}
.pc body.admin-bar {
  padding-top: 0;
}
/* ロゴアニメーション設定 */
@keyframes anime-logo {
  0% {
    fill: #0480DC;
    stroke-dashoffset: 1500;
    stroke: #fff;
  }
  80% {
    fill: #fff;
  }
  100% {
    stroke-dashoffset: 0;
    stroke: #fff;
  }
}
/*メニュー*/
.head_cont {
  width: 100%;
  justify-content: center;
  align-items: center;
  background: rgba(0, 147, 233, 0.8);
}
.nav_cont {
  width: 1290px;
  margin: 5px auto;
  align-items: center;
  justify-content: space-between;
}
ul.nav_menu {
  justify-content: center;
}
.nav_menu > li > a {
  background-image: linear-gradient(to right, #024e8f, #024e8f 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  margin: 0 15px;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}
.nav_menu > li > a:before {
  content: '';
  background: #024e8f;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}
.nav_menu > li > a:hover {
  background-position: 0;
}
.nav_menu > li > a:hover::before {
  width: 100%;
}
@media (max-width: 1290px) {
  ul.nav_menu {
    font-size: 0.8em;
  }
}
/*==========================
          tablet
========================== */
/* ------ 960px以下 ------- */
@media (max-width: 960px) {
  /*----------ふわっ----------*/
  .fadeDown {
    animation-name: none;
    animation-duration: none;
    animation-fill-mode: none;
    opacity: none;
  }
  @keyframes fadeDownAnime {
    from {
      opacity: none;
      transform: none;
    }
    to {
      opacity: none;
      transform: none;
    }
  }
  /*　----------上に上がる動き----------　*/
  #header.UpMove {
    animation: none;
  }
  @keyframes UpAnime {
    from {
      opacity: none;
      transform: none;
    }
    to {
      opacity: none;
      transform: none;
    }
  }
  /*　----------下に下がる動き----------　*/
  #header.DownMove {
    animation: none;
  }
  @keyframes DownAnime {
    from {
      opacity: none;
      transform: none;
    }
    to {
      opacity: none;
      transform: none;
    }
  }
  /* ロゴアニメーション設定 */
  .logo_item {
    fill: #fff;
    stroke: #0480DC;
    stroke-width: 2;
    stroke-dasharray: 1500;
    stroke-dashoffset: 0;
    animation-name: anime-logo;
    animation-duration: 5s;
    animation-timing-function: linear;
  }
  @keyframes anime-logo {
    0% {
      fill: #0480DC;
      stroke-dashoffset: 1500;
      stroke: #0480DC;
    }
    80% {
      fill: #fff;
    }
    100% {
      stroke-dashoffset: 0;
      stroke: #0480DC;
    }
  }
  /*ヘッダー*/
  #header {
    z-index: 10;
    height: 60px;
  }
  #header_splogo {
    width: 150px;
  }
  .mg_splogo {
    margin-top: 20px;
    margin-left: 5px;
  }
  /*ドロワー*/
  .menu-checkbox {
    display: none;
  }
  .drawer-bg {
    background: #0480DE;
  }
  .drawer-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 250px;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out 0s;
    background-color: #024e8f;
    z-index: 20;
  }
  .drawer-menu-list {
    margin-top: 80px;
  }
  .drawer-menu-item {
    padding: 0 0 0 25px;
  }
  .drawer-menu-item-link {
    display: block;
    text-align: left;
    font-size: 20px;
    color: #fff;
    margin-top: 30px;
  }
  .menu-checkbox:checked ~ .drawer-menu {
    transform: translateX(0);
  }
  .drawer-icon {
    cursor: pointer;
    position: fixed;
    top: 35px;
    right: 60px;
    justify-content: center;
    align-items: center;
    z-index: 30;
    background-color: #fff;
  }
  .drawer-icon span, .drawer-icon span:before, .drawer-icon span:after {
    content: '';
    display: block;
    height: 6px;
    width: 40px;
    border-radius: 3px;
    background-color: #024e8f;
    position: absolute;
    transition: all 0.5s ease-in-out 0s;
    /*box-shadow: 0 3px 0px 0 rgb(2, 78, 143, 0.7);*/
  }
  .drawer-icon span::before {
    bottom: 12px;
  }
  .drawer-icon span::after {
    top: 12px;
  }
  .menu-checkbox:checked ~ .drawer-icon {
    background-color: #fff;
  }
  .menu-checkbox:checked ~ .drawer-icon span {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: none;
  }
  .menu-checkbox:checked ~ .drawer-icon span::before {
    bottom: 0;
    transform: rotate(-45deg);
    background-color: #fff;
    box-shadow: none;
  }
  .menu-checkbox:checked ~ .drawer-icon span::after {
    top: 0;
    transform: rotate(45deg);
    background-color: #fff;
    box-shadow: none;
  }
  .menu-background {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.5s ease-in-out 0s;
  }
  .menu-checkbox:checked ~ .menu-background {
    display: block;
    opacity: 0.3;
  }

}
/*==========================
            SP
========================== */
/* ------ 500px以下 ------- */
@media (max-width: 500px) {

}