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

/* .header01::before {
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
} */
.scrolled .header01 {
  background: rgba(255, 255, 255, .3);
  box-shadow: 0 0 3rem rgba(255, 255, 255, .3);
}

.header01 .logo {
  width: 26.7rem;
}

.header01 .logo strong {
  background: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  display: block;
  margin-top: .7rem;
}

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

.header01 .menu .links .link {
  border: solid 1px transparent;
  display: block;
  font-size: 1.6rem;
  height: 2.5rem;
  letter-spacing: calc(1em * (.8 / 16));
  position: relative;
}

.header01 .menu .links .link:before {
  background: #1a3544;
  bottom: 0;
  content: '';
  height: 1px;
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: .3s;
  width: 100%;
}

.header01 .menu .links .link:hover:before,
.header01 .menu .links .link.active:before,
.header01 .menu .links .group:has(.active) .link:before {
  opacity: 1;
}

.header01 .menu .links .group {
  position: relative;
  transition: .3s;
}

.header01 .menu .links .group:has(.active) .link,
.header01 .menu .links .group:hover .link {
  padding: 0 3rem;
}

.header01 .menu .links .group .childs {
  align-items: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  gap: 1.5rem;
  left: 0;
  letter-spacing: calc(1em * (.8 / 16));
  opacity: 0;
  padding: 2rem 1rem;
  pointer-events: none;
  position: absolute;
  top: 2.5rem;
  transition: .3s;
  white-space: nowrap;
  width: 100%;
  z-index: 101;
}

.header01 .menu .links .group .childs.active {
  opacity: 1;
  pointer-events: all;
}

.header01 .menu .links .group .childs .child {
  border-bottom: transparent 1px solid;
}

.header01 .menu .links .group .childs .child:hover {
  border-bottom: #1a3544 1px solid;
}

.header01 .menu .links .btn {
  align-items: center;
  background: #1a3544;
  border: solid 1px #1a3544;
  color: #fff;
  display: flex;
  font-size: 1.4rem;
  height: 4.6rem;
  justify-content: center;
  padding: 0 2rem;
}

.header01 .menu .links .btn:hover {
  background: transparent;
  color: #1a3544;
}

.header01 .menu .links .other {
  display: none;
}

.header01 .h_btn {
  display: none;
}

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

  .header01 .logo {
    position: relative;
    top: -.3rem;
    width: 16.9rem;
  }

  .header01 .logo strong {
    font-size: 1.2rem;
    margin-top: .5rem;
  }

  .header01 .menu {
    background: #e6e4df;
    left: 0;
    max-height: 100vh;
    max-height: 100svh;
    opacity: 0;
    overflow: auto;
    padding: 7rem 3.5rem 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: .3s;
    width: 100%;
  }

  .open .header01 .menu {
    opacity: 1;
    pointer-events: all;
  }

  .header01 .menu .links {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 3.5rem 3rem;
  }

  .header01 .menu .links .link {
    font-weight: 700;
    height: 3rem !important;
    letter-spacing: calc(1em * (.8 / 16));
    padding: 0 !important;
    position: relative;
    width: 100%;
  }

  .header01 .menu .links .link:before {
    opacity: .3 !important;
  }

  .header01 .menu .links .link::after {
    background-color: #1a3544;
    background-image: url(../img/common/arrow01_white.svg);
    background-position: center left .65rem;
    background-repeat: no-repeat;
    background-size: .5rem;
    border-radius: 100%;
    bottom: .2rem;
    content: '';
    height: 1.6rem;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.6rem;
  }

  .header01 .menu .links .group {
    width: calc((100% - 3rem) / 2);
  }

  .header01 .menu .links .group .childs {
    align-items: stretch;
    background: none;
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    font-weight: 400;
    gap: .5rem;
    margin-top: 1rem;
    opacity: 1;
    padding: 0;
    position: static;
  }

  .header01 .menu .links .group .childs .child {
    border-bottom: transparent !important;
  }

  .header01 .menu .links .bottom {
    background: #e6e4df;
    flex-grow: 1;
    left: 0;
    mix-blend-mode: multiply;
    padding: 3.5rem 0 8.5rem;
    position: relative;
    position: relative;
    width: 100%;
    width: calc(100% + 7rem);
  }

  .header01 .menu .links .bottom::before,
  .header01 .menu .links .bottom::after {
    background: #e6e4df;
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    width: 3.5rem;
  }

  .header01 .menu .links .bottom::before {
    left: -3.5rem;
  }

  .header01 .menu .links .bottom::after {
    right: -3.5rem;
  }

  .header01 .menu .links .bottom span {
    background-image: url(../img/common/header_bottom.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 13.5rem;
    margin: 3rem auto 0;
    width: 22.5rem;
  }

  .header01 .menu .links .btn {
    background: none;
    border: none;
    color: #1a3544;
    display: block;
    font-size: 1.6rem;
    justify-content: center;
    padding: 0 2rem;
  }

  .header01 .menu .links .btn:hover {
    background: transparent;
    color: #1a3544;
  }

  .header01 .menu .links .other {
    display: flex;
    font-size: 1.2rem;
    font-weight: 400;
    justify-content: space-between;
    width: 100%;
  }

  .header01 .h_btn {
    display: block;
    height: 7rem;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(-90deg);
    width: 7rem;
    z-index: 102;
  }

  .header01 .h_btn span {
    background: #1a3544;
    height: .2rem;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    transition: .3s;
    width: 2.3rem;
  }

  .header01 .h_btn span:nth-of-type(1) {
    top: 2.5rem;
  }

  .header01 .h_btn span:nth-of-type(2) {
    top: 3.5rem;
  }

  .header01 .h_btn span:nth-of-type(3) {
    top: 4.5rem;
  }

  .open .header01 .h_btn span:nth-of-type(1) {
    top: 3.5rem;
    transform: rotate(-45deg);
  }

  .open .header01 .h_btn span:nth-of-type(2) {
    transform: rotate(-225deg);
  }

  .open .header01 .h_btn span:nth-of-type(3) {
    top: 3.5rem;
    transform: rotate(45deg);
  }
}