header .headerMenu {
  display: flex;
  padding: 16px 40px;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid #ffffff;
  background: #0069c3;
}

header .headerMenu .headerContent {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
  gap: 32px;
}

header .headerMenu .headerContent .headerLink {
  text-align: right;
  display: flex;
  align-items: center;
  gap: 24px;
}

header .headerMenu .headerContent .headerLink .modalBtn {
  display: flex;
  align-items: center;
}

header .headerMenu .headerContent .headerLink .modalBtn .modalBtnArrow {
  width: 24px;
  height: 24px;
}

header .headerMenu .headerContent .headerLink .title {
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  background: transparent;
  border: none;
  cursor: pointer;
}

header .headerMenu .headerContent .headerLink a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

header .headerMenu .headerContent .headerLink .request {
  display: flex;
  padding: 8px 16px 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  border: 1px solid #ffffff;
}

header .headerMenu .headerContent .headerLink .myPage {
  display: flex;
  padding: 8px 16px 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  background: #ffffff;
  color: #333333;
}

header .smp {
  display: none;
}

header .smpMenu .content {
  text-align: right;
}

header .modalOuter {
  display: none;
}

header .modalOuter .modal {
  position: fixed;
  top: 200px;
  left: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%);
  width: 712px;
  border-radius: 8px;
  background: #ffffff;
}

header .modalOuter .modal .modalInner {
  display: inline-flex;
  padding: 24px;
  align-items: flex-start;
  gap: 16px;
  border-radius: 8px;
  background: #ffffff;
}

header .modalOuter .modal .modalInner .content {
  display: flex;
  min-width: 200px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

header .modalOuter .modal .modalInner .content .title {
  color: #0069c3;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

header .modalOuter .modal .modalInner .content .links {
  align-self: stretch;
  color: #333333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

header .modalOuter .modal .modalInner .content .links a {
  margin-top: 12px;
  display: block;
  text-decoration: none;
  color: #333333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

header .modalOuter .modal .modalInner .content .links a:hover {
  opacity: 0.3;
}

header .modalOuter .modal .modalInner .content .links a:first-child {
  margin-top: 0px;
}

header .modalOuter .modal .modalClose {
  display: grid;
  place-content: center;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

header .modalOuter .modalBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 480px) {
  header .headerMenu {
    padding: 0px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
  }

  header .headerMenu .icon {
    padding: 0px 0px 5px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
  }

  header .headerMenu .icon img {
    display: flex;
    width: 121px;
    padding: 1px;
    justify-content: center;
    align-items: center;
  }

  header .headerMenu .headerContent {
    display: flex;
  }

  header .headerMenu .headerContent .headerLink {
    gap: 0px;
    display: flex;
    width: auto;
    padding: 0px;
    justify-content: center;
    align-items: center;
  }

  header .headerMenu .headerContent .headerLink a {
    font-size: 12px;
    display: flex;
    width: 76px;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  header .headerMenu .headerContent .headerLink .pc {
    display: none;
  }

  header .headerMenu .headerContent .headerLink .smp {
    display: block;
  }

  header .headerMenu .headerContent .headerLink .request {
    padding: 8px 0px;
    border: none;
    border-radius: 0;
    border-left: 0.5px solid #f2f7fc;
  }

  header .headerMenu .headerContent .headerLink .myPage {
    color: #ffffff;
    padding: 8px 0px;
    border: none;
    background: none;
    border-radius: 0;
    border-left: 0.5px solid #f2f7fc;
  }

  header .headerMenu .headerContent .headerLink .smpMenuBtn {
    display: flex;
    padding: 8px 0px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-left: 0.5px solid #f2f7fc;
  }

  header .smpMenu {
    display: none;
  }

  header .smpMenu .content {
    width: auto;
    gap: 0px;
    display: flex;
    padding: 0px 24px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-top: 0.5px solid #d3d3d3;
    border-bottom: 0.5px solid #d3d3d3;
    background: #ffffff;
  }

  header .smpMenu .content:first-child {
    border-top: none;
  }

  header .smpMenu .content div {
    height: 0px;
    padding: 0px;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;
  }

  header .smpMenu .content input {
    display: none;
  }

  header .smpMenu .content label {
    display: flex;
  }

  header .smpMenu .content .links {
    display: none;
  }

  header .smpMenu .content .title {
    color: #0069c3;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0px;
    gap: 0px;
  }

  header .smpMenu .content .title:after {
    text-align: right;
    width: 24px;
    height: 24px;
    content: url(../Header/img/size24typearrowbottomcolorgray.svg);
  }

  header .smpMenu .content .links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
  }

  header .smpMenu .content .links .subtitle {
    color: #0069c3;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0px;
    gap: 0px;
    padding: 24px 0px 0px 0px;
  }

  header .smpMenu .content .links .subtitle:first-child {
    padding: 0px;
  }

  header .smpMenu .content .links a {
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
  }

  header .smpMenu .content input:checked~div {
    height: auto;
    opacity: 1;
    margin-bottom: 24px;
  }

  header .smpMenu .content input:checked~.title::after {
    text-align: right;
    content: url(../Header/img/size24typearrowtopcolorgray.svg);
  }

  header .smpMenu .content a {
    display: flex;
    min-width: 200px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }

  header .smpMenu .contentJump {
    display: flex;
    text-align: left;
    padding: 0px 24px;
    flex-direction: column;
    gap: 24px;
    border-top: 0.5px solid #d3d3d3;
    border-bottom: 0.5px solid #d3d3d3;
    background: #ffffff;
  }

  header .smpMenu .contentJump p {
    margin: 0px;
  }

  header .smpMenu .contentJump .jumpLink {
    display: flex;
    text-decoration: none;
    width: 100%;
  }

  header .smpMenu .contentJump .jumpLink .date {
    color: #555555;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-right: 32px;
  }

  header .smpMenu .contentJump .jumpLink div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  header .smpMenu .contentJump .jumpLink div p {
    color: #0069c3;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0px;
    gap: 0px;
  }

  header .smpMenu .contentJump .jumpLink div img {
    margin-left: 16px;
    width: 24px;
    height: 24px;
  }
}

/*# sourceMappingURL=index.css.map */