/* 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:100%;
    height: 50px;
    display: block;
    position: fixed;
    z-index: 19500;
    top: 110px;
    left: 0;
    text-align: center;
  }

  nav.globalmenu ul {
    width: 100%;
    max-width:1600px;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0 auto;
  }

  nav.globalmenu ul li {
    list-style-type: none;
    padding: 0;
    flex: 1;
    font-size: clamp(12px, 1.1vw, 18px);
    font-weight: 500;
    text-shadow: 0px 1px 5px rgba(0,0,0,0.5);
    line-height: 1.2em;
    transition: .4s all;
  }

  nav.globalmenu ul li:last-child {
    border-right: none;
  }

  nav.globalmenu ul li a {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
  }

  nav.globalmenu ul li:hover {
    color: var(--color-1st);
    background: rgba(0, 116, 193, 0.75);
  }

  nav.globalmenu.zeal_act {
    width: 100%;
    height: 80px;
    display: block;
    position: fixed;
    z-index: 19500;
    top: 50px;
    left: 0%;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%);
  }

  nav.globalmenu.zeal_act ul {
    width: 100%;
    max-width:1600px;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0 auto;
  }

  nav.globalmenu.zeal_act ul li {
    list-style-type: none;
    padding: 0;
    flex: 1;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
    text-shadow: 0px 1px 5px rgba(0,0,0,0.5);
    line-height: 1.2em;
    transition: .4s all;
  }

  nav.globalmenu.zeal_act ul li:last-child {
    border-right: none;
  }

  nav.globalmenu.zeal_act ul li a {
    width: 100%;
    height: 80px;
    display: flex;
    padding-bottom:30px;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
  }

  nav.globalmenu.zeal_act ul li:hover {
    color: var(--color-1st);
    background: rgba(0, 116, 193, 0.75);
  }

}
