@charset "UTF-8";

body.is-fixed a.header-bnr {
  background-color: #fff;
}
body.is-fixed a.header-bnr p {
  color: #0c2c81;
}

.header {
  left: 0;
  padding-inline: 20px;
  position: fixed;
  top: 34px;
  width: 100%;
  z-index: 999;
}

.header__contents {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo__link {
  aspect-ratio: 132/60;
  width: 100px;
}
.header-logo__link img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header-list {
  align-items: center;
  border-radius: 999px;
  padding: 15px 25px;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: #fff;
  display: none;
}

a.header-list__item {
  font-size: 13px;
  font-weight: 500;
  line-height: calc(19 / 13);
}

.header-nuv {
  align-items: center;
  display: flex;
  gap: 10px;
}

a.header-bnr {
  align-items: center;
  background: #0c2c81;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  transition: background 0.3s ease;
}
a.header-bnr p {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-btn {
  background-color: #fff;
  border: solid 1px rgba(12, 44, 129, 0.05);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  height: 49px;
  overflow: hidden;
  transition: opacity 0.3s ease;
  width: 49px;
}
.header-btn:hover {
  opacity: 0.7;
}
.header-btn.is-open .header-btn__bar-line:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
}
.header-btn.is-open .header-btn__bar-line:nth-of-type(2) {
  display: none;
}
.header-btn.is-open .header-btn__bar-line:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
}

.header-btn__bar {
  height: 100%;
  position: relative;
  width: 100%;
}

.header-btn__bar-line {
  background: #0c2c81;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease-in, top 0.3s ease-in;
  width: 10px;
}
.header-btn__bar-line:nth-of-type(1) {
  top: calc(50% - 6px);
}
.header-btn__bar-line:nth-of-type(3) {
  top: calc(50% + 6px);
}

.header-drawer {
  background-color: #0c2c81;
  color: #fff;
  height: 100vh;
  min-width: 275px;
  overflow: auto;
  padding-inline: 40px;
  padding-top: 140px;
  position: fixed;
  right: 0;
  top: 0px;
  transform: translateX(100%);
  transition: transform 0.6s ease;
  width: 50%;
  z-index: 98;
}
.header-drawer.is-checked {
  transform: translateX(0);
}
.header-drawer .header-link-head__sns {
  gap: 20px;
  justify-content: center;
  margin-top: 22px;
}

.header-drawer__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 250px;
  width: 100%;
}

.header-drawer__item {
  font-size: 15px;
  font-weight: 500;
  padding-block: 15px;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .header-logo__link {
    width: 132px;
  }
  a.header-bnr {
    padding: 10px 40px;
  }
}

@media (min-width: 1024px) {
  .header-list {
    display: flex;
    gap: 15px;
  }
  .header-drawer {
    width: 30%;
  }
}

@media (min-width: 1366px) {
  .header {
    padding-inline: 30px 35px;
  }
  .header-logo {
    width: 222px;
  }
  .header-list {
    gap: 31px;
  }
}