/* 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: 70%;
    height: 50px;
    display: block;
    position: absolute;
    z-index: 19500;
    top: 30px;
    right: 0.5%;
  }

  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;
    width:18%;
    height: 50px;
    font-size: clamp(8px, 1vw, 14px);
    font-family: var(--font-min);
    line-height: 1em;
  }

  nav.globalmenu ul li a {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-black);
    text-decoration: none;
    padding:0 0;
    transition: .4s all;
    border-bottom: 2px solid transparent;
  }
  nav.globalmenu ul li a:hover {
    color:var(--color-2nd);
    border-bottom: 2px solid var(--color-2nd);
  }

  nav.globalmenu ul li.menuic {
    width:50px;
    height: 50px;
    display: block;
  }
  nav.globalmenu ul li.menuic a {
    width:50px;
    height: 50px;
    display: block;
    text-indent: -9999px;
    background-image: url(../img/ic-search.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 25px 25px;
    border:none;
  }
  nav.globalmenu ul li.menuic a:hover {
    opacity: 0.3;
    border:none;
  }


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

  }

}
