/* 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% - 250px);
    height: 100px;
    display: block;
    position: fixed;
    z-index: 19500;
    top: 0px;
    left: 250px;
    text-align: center;
    padding:50px 0;
    background-color: #999;
  }

  nav.globalmenu ul {
    width: 100%;
    height: 50px;
    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: 14px;
    line-height: 50px;
    transition: .4s all;
    border-right: 1px dotted rgba(255, 255, 255, 0.5);
  }

  nav.globalmenu ul li:last-child {
    border-right: none;
  }

  nav.globalmenu ul li:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  nav.globalmenu ul li a {
    width: 100%;
    height: 50px;
    display: block;
    color: var(--color-white);
    text-decoration: none;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalmenu.active {
    opacity: 100;

  }

}
