.header01 {
  align-items: center;
  background: #fff;
  display: flex;
  height: 9rem;
  justify-content: space-between;
  left: 0;
  padding: 0 2rem;
  position: fixed;
  top: 0;
  transition: .6s;
  width: 100%;
  z-index: 100;
}

.scrolled .header01 {
  background: rgba(255, 255, 255, .3);
  box-shadow: 0 0 3rem rgba(255, 255, 255, .3);
}

.header01 .logo {
  width: 21.8rem;
}

.header01 .menu .links {
  align-items: center;
  display: flex;
  gap: 4rem;
}

.header01 .menu .links .link {
  align-items: center;
  border-radius: 100vh;
  box-shadow: 0 .4rem .6rem --.1rem rgba(0, 0, 0, .10), 0 .2rem .4rem -.2rem rgba(0, 0, 0, .10);
  color: #004098;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  gap: .8rem;
  justify-content: center;
  padding: 1.2rem 2.4rem;
}

.header01 .menu .links .link::before {
  background-color: #ffeb00;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.4rem;
  border-radius: 100%;
  content: '';
  height: 3rem;
  position: relative;
  top: 0;
  width: 3rem;
}

.header01 .menu .links .link.tel::before {
  background-image: url(../img/phone.svg);
}

.header01 .menu .links .link.mail::before {
  background-image: url(../img/mail.svg);
}

.header01 .menu .links .link.tel {
  background: #f9fafb;
  border: 2px solid #f3f4f6;
}

.header01 .menu .links .link.tel .forPC {
  font-family: Roboto;
  font-size: 2.4rem;
}

.header01 .menu .links .link.mail {
  background: #004098;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .header01 {
    height: 6rem;
    padding: 0 2rem;
  }

  .header01 .logo {
    width: 16.9rem;
  }

  .header01 .menu .links {
    background: rgba(255, 255, 255, .3);
    bottom: 6rem;
    bottom: 0;
    gap: .5rem;
    height: auto;
    left: 0;
    padding: 1rem;
    position: fixed;
    width: 100%;
  }

  .header01 .menu .links .link {
    color: #004098;
    font-size: 1.15rem;
    gap: .4rem;
    height: 4rem;
    padding: 0;
    white-space: nowrap;
    width: calc((100% - .5rem) / 2);
  }

  .header01 .menu .links .link::before {
    background-size: 1rem;
    height: 2rem;
    width: 2rem;
  }
}