/* 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% - 340px);
    height: 50px;
    display: block;
    position: fixed;
    z-index: 19500;
    top: 40px;
    left: 250px;
    text-align: center;
    padding:0;
    margin:0;
    transition: .4s all;
  }

  nav.globalmenu ul {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin:0;
    transition: .4s all;
  }

  nav.globalmenu ul li {
    list-style-type: none;
    padding: 0;
    margin:0;
    flex: 1;
    height: 50px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1em;
  }

  nav.globalmenu ul li a {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0px;
    color: var(--color-white);
    text-decoration: none;
    padding:0px 5px 0px 5px;
    transition: .4s all;
  }

  nav.globalmenu ul li a:hover {
    color:var(--color-white);
    background-color: var(--color-1st);
    border-radius: 3px;
  }

/* Globalmenu(Active) */
  nav.globalmenu.op_active {
    height: 40px;
    top: 10px;
  }
  nav.globalmenu.op_active ul {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }

  nav.globalmenu.op_active ul li {
    list-style-type: none;
    padding: 0;
    flex: 1;
    height: 40px;
    font-size: 14px;
  }

  nav.globalmenu.op_active ul li a {
    width: 100%;
    height: 40px;
    display: flex;
    line-height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0px;
    color: var(--color-white);
    text-decoration: none;
    padding:0 5px;
    transition: .4s all;
  }

  nav.globalmenu.op_active ul li a:hover {
    color:var(--color-white);
    background-color: var(--color-1st);
  }
  nav.globalmenu.op_active ul li a:hover span {
    color:var(--color-ccc);
  }

}
