/* Style for PC (large) */
@media screen and (min-width: 1440px) {

  /* Globalmenu position setting */
  nav.globalmenu {
    right: 250px;
  }
  nav.globalmenu ul li {
    width:180px;
  }

}
/* Style for PC (large) */
@media screen and (min-width: 1024px) and (max-width: 1439px) {

  /* Globalmenu position setting */
  nav.globalmenu {
    right: 5%;
  }
  nav.globalmenu ul li {
    width: 155px;
  }

}


/* 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: fit-content;
    height: 40px;
    display: block;
    position: fixed;
    z-index: 19500;
    top: 70px;
    text-align: center;
    padding:0 30px;
    margin:0;
    background-color: rgba(0,0,0,0.9);
    clip-path: polygon(40px 0%, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
  }

  nav.globalmenu ul {
    width: fit-content;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin:0;
  }

  nav.globalmenu ul li {
    list-style-type: none;
    padding: 0;
    margin:0;
    height: 40px;
    font-size: 14px;
    letter-spacing: -0.05em;
  }

  nav.globalmenu ul li a {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 40px;
    color: var(--color-white);
    text-decoration: none;
    padding:0px;
    transition: .4s all;
  }

  nav.globalmenu ul li a:hover {
    color:var(--color-white);
    background-color: var(--color-1st);
  }

/* Globalmenu(Active) */
  nav.globalmenu.ausp_active {
    height: 80px;
    top: 0px;
    right:0;
    clip-path: polygon(70px 0%, 100% 0%, 100% 100%, 0% 100%);
    padding-left:100px;
  }
  nav.globalmenu.ausp_active ul {
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }

  nav.globalmenu.ausp_active ul li {
    list-style-type: none;
    padding: 0;
    flex: 1;
    height: 80px;
    font-size: 14px;
    border-right:1px solid rgba(255,255,255,0.4);
  }
  nav.globalmenu.ausp_active ul li:last-child {
    border-right: none;
  }

  nav.globalmenu.ausp_active ul li a {
    width: 100%;
    height: 80px;
    line-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0px;
    color: var(--color-white);
    text-decoration: none;
    padding:0 0;
    transition: .4s all;
  }

  nav.globalmenu.ausp_active ul li a span {
    display: block;
    text-align: center;
    font-size:0.7em;
    font-weight: 400;
    font-family: var(--font-en);
    line-height: 8px;
    color: var(--color-777);
    margin-top:10px;
  }

  nav.globalmenu.ausp_active ul li a:hover {
    color:var(--color-white);
    background-color: var(--color-333);
  }
  nav.globalmenu.ausp_active ul li a:hover span {
    color:var(--color-ccc);
  }

}
