@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
#global-header {
  position: relative;
  z-index: 100;
}

@media screen and (min-width: 767px) {
  #global-header .gnav_logo {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: var(--gnav-w);
    padding: 30px 20px 20px 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
  }
  #global-header .gnav_logo a {
    margin-bottom: 25px;
  }
  #global-header .gnav_logo a img {
    width: 100px;
    margin-left: 15px;
  }
  #global-header .pc_menu_list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: row;
    direction: rtl;
  }
  #global-header .pc_menu_list ul li {
    line-height: 1.6;
    margin: 0;
    padding: 0;
    writing-mode: vertical-rl;
    letter-spacing: 1px;
  }
  #global-header .pc_menu_list ul li a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
  }
}
@media screen and (max-width: 766px) {
  #global-header .gnav_logo {
    position: absolute;
    background-color: #FFF;
    width: 75px;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #global-header .gnav_logo img {
    width: 40px;
    margin-left: 10px;
  }
  .nav {
    position: fixed;
    right: -100%; /* 右から出てくる */
    top: 0;
    width: 100%;
    height: 100vh;
    padding-top: 10px;
    background-color: #fff;
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
    display: flex;
    flex-direction: column;
  }
  .nav .nav_logo {
    width: 150px;
    padding-left: 10px;
  }
  .nav .sp_menu_list ul {
    list-style: none;
    margin-top: 40px;
    text-align: center;
  }
  .nav .sp_menu_list ul li {
    line-height: 3;
  }
  .nav .sp_menu_list ul li a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    font-size: 4.8vw;
  }
  .nav .sns_btn {
    width: 40px;
    margin-top: 20px;
    justify-self: center;
    align-self: center;
  }
  .hamburger {
    background-color: #FFF;
    position: fixed;
    right: 0;
    top: 0;
    width: 45px; /* クリックしやすい幅 */
    height: 45px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 23px;
    height: 2px;
    background-color: #333;
    transition: all 0.6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}
/* sp *//*# sourceMappingURL=header.css.map */