@media (min-width: 1024px) {
  header {
    height: 12.5vh;
    padding: 0 12.5%;
  }

  header h1 {
    width: 200px;
  }

  header h1 a div {
    height: 35px;
  }

  .menu-toggle,
  .nav-mobile {
    display: none;
  }

  .nav-pc {
    display: block;
    width: 70%;
  }

  .nav-pc ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-pc a,
  .nav-pc button {
    color: var(--text-main);
    font-size: 1.3rem;
    padding: 0 20px;
    font-weight: bold;
  }

  footer {
    margin-top: 30px;
  }

  address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  address > h6 {
    position: relative;
    width: fit-content;
    padding: 0 10px;
  }

  address > h6:not(:last-child)::after {
    position: absolute;
    content: "|";
    margin: 0 30px;
  }

  .mobile {
    display: none;
  }

  .pc {
    display: flex;
  }

  .floating-buttons {
    align-items: flex-end;
  }

  .float-btn.pc {
    width: 360px;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ch-btn.pc {
    background-color: #f9e000;
  }

  .float-btn.pc i {
    width: 60px;
    left: 0;
    top: 0;
    transform: translate(0, 0);
  }

  .float-btn:not(.ch-btn) i {
    left: 10px;
  }
}
@media (min-width: 1600px) {
  .nav-pc {
    display: block;
    width: 60%;
  }

  footer {
    padding: 0 12.5%;
  }
}
