@charset "UTF-8";
/* スマホサイズで見た場合のスタイル */
@media screen and (max-width: 480px) {
  /* ハンバーガーのマーク */
  .gnav_toggle {
    display: block;
    position: fixed;
    right: 14px;
    top: 18px;
    width: 26px;
    height: 4px;
    cursor: pointer;
    z-index: 200;
    text-align: center;
 padding: 10px 0;
  }
  .gnav_toggle i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: transform 0.5s, opacity 0.5s;
  }
  .gnav_toggle i:nth-child(1) {
    top: 0;
  }
  .gnav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnav_toggle i:nth-child(3) {
    bottom: 0;
  }
  /* クリックされた後のハンバーガーのマーク */
  .gnav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .gnav_toggle.show i:nth-child(2) {
    opacity: 0;
  }
  .gnav_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
  }
  /* クリックで表示されるメニュー：クリックされる前 */
  .gnav {
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: visible;
    transition: opacity 0.5s, visibility 0.5s;
    background-color: #faf8f5;
    z-index: 90;
  }
  /* クリックで表示されるメニュー：クリックされた後 */
  .gnav.show {
    opacity: 1;
    visibility: visible;
    display: table;
    padding: 60px 0 30px;
  }
  .gnav-list li {
    padding: 20px 0;
    margin: 0 auto;
  }
  @media(max-width:480px) {
    .gnav ul li {
      width: 110px;
      padding: 10px;
    }
  }
}


.lang_menu {
  width: 100px;
  height: 40px;
  background: #ccc;
  position: absolute;
  display: inline-block;
  box-sizing: border-box;
}


