/* Style for PCs */
@media screen and (min-width: 1025px) {

  /* Menu botton*/
  .menubn {
    display: none;
  }

  .menubn span {
    display: none;
  }

  .menubn span:nth-child(1) {
    display: none;
  }

  .menubn span:nth-child(2) {
    display: none;
  }

  .menubn span:nth-child(3) {
    display: none;
  }

  /* ナビ開いてる時のボタン */
  .menubn.active span:nth-child(1) {
    display: none;
  }

  .menubn.active span:nth-child(2),
  .menubn.active span:nth-child(3) {
    display: none;
  }

  nav.globalmenu {
    width: calc(100% - 350px);
    height: 70px;
    display: block;
    position: fixed;
    z-index: 19500;
    top: 65px;
    left: 320px;
    text-align: center;
    padding:0;
    overflow: hidden;
    transition: .4s all;
  }
  nav.globalmenu.up_act {
    top:15px!important;
  }

  nav.globalmenu ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }

  nav.globalmenu ul li {
    list-style-type: none;
    padding: 0;
    flex: 1;
    font-size: clamp(12px, 1vw, 16px);
    font-weight: 500;
    letter-spacing: -0.5px;
    font-family: var(--font-en);
    transition: .4s all;
  }

  nav.globalmenu ul li a {
    width: 100%;
    height: auto;
    display: block;
    line-height: 1em;
    text-decoration: none;
    transition: .4s all;
  }

  nav.globalmenu ul li a span {
    display: block;
    text-align: center;
    font-size:10px;
    font-weight: 400;
    line-height: 1em;
    padding-top:5px
  }

}
