/* layout */
.inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.object-fit--contain > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.object-fit--cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* layer (이미지 확대) */
.layer-wrap {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
.layer-inner {
  width: 85%;
  position: relative;
}
.layer-inner .p-bg-box {
  margin: 0;
}
.layer--btn-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: -36px;
  background-color: var(--color-secondary);
  border: 0;
  font-size: 0;
}
.layer--btn-close::after {
  content: "\e5cd";
  font-family: "Material Symbols Outlined";
  font-size: 27px;
  color: var(--color-white);
}

/* header */
.header {
  border-bottom: 1px solid var(--color-gray-200);
  z-index: 999;
}
.header > .inner {
  max-width: var(--max-width--wide);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}
.hd-logo-wrap {
  width: fit-content;
  height: min(45px, 3.5vw);
}
.hd-gnb {
  display: flex;
  align-items: center;
}
.hd-gnb .item {
  width: min(165px, 11vw);
  position: relative;
  padding: 15px;
  box-sizing: border-box;
}
.hd-gnb .item > .link {
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 500;
}
.hd-gnb--second {
  height: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: absolute;
  top: 75px;
  left: 0;
  padding: 0 15px;
  border-left: 1px solid var(--color-gray-200);
  transition: 0.3s;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 991;
}
.pc-open .hd-gnb--second {
  /* 높이는 pc-bg와 동일 */
  height: 250px;
  padding: 15px;
}
.hd-gnb .item-second > .link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-dark);
  font-size: 17px;
  font-weight: 300;
}
.hd-gnb .item-second > .link:hover {
  font-weight: 500;
}
.hd-gnb .link_outward > img {
  width: 13px;
  height: 13px;
}
.header .pc-bg {
  width: 100%;
  height: 0;
  position: absolute;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray-200);
  transition: 0.3s;
  overflow: hidden;
  z-index: 990;
}
.header .pc-bg > .inner {
  max-width: var(--max-width--wide);
}
.pc-open .pc-bg {
  height: 250px;
}
.header-textwrap {
  width: min(370px, 20%);
  position: absolute;
  bottom: 30px;
}
.header-title1 {
  color: #3b8ec9;
  font-size: 20px;
  font-weight: 700;
}
.header-title2 {
  margin-top: 8px;
  color: #525b66;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

/* header - mobile */
.hd-mnav-btn {
  width: 30px;
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border: 0;
  outline: 0;
  font-size: 0;
  aspect-ratio: 1;
}
.hd-mnav-btn::after {
  content: "\e5d2";
  font-family: "Material Symbols Outlined";
  font-size: 30px;
  color: var(--color-dark);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.m-nav {
  display: flex;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -55%;
  z-index: 999;
  transition: 0.3s;
}
.m-nav::before {
  content: "";
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.mobile-gnb {
  width: min(250px, 45vw);
  height: 100%;
  flex-direction: column;
  background-color: var(--color-white);
  z-index: 999;
}

/* footer */
.footer {
  padding: 30px 0 50px;
  background-color: var(--bg-footer);
}
.footer > .inner {
  display: flex;
  justify-content: space-between;
}
.ft-logo-wrap {
  width: fit-content;
  height: min(35px, 6vw);
}
.ft-info-wrap {
}
.ft-info-item {
  color: var(--color-white);
  opacity: 0.9;
  line-height: 1.6;
}
.ft-btn-wrap {
  display: flex;
  flex-direction: column;
  justify-self: flex-end;
  gap: 8px;
}
.ft-btn-wrap .link {
  width: 160px;
  height: 45px;
  padding: 12px 0;
  border: 1px solid var(--color-gray-450);
  color: var(--color-gray-450);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 15px;
  box-sizing: border-box;
}
.copyright {
  margin-top: 40px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 200;
  line-height: 1.4;
  opacity: 0.6;
}

/* table */
.tb-1 {
  width: 100%;
}
.tb-1 th, .tb-1 td {
  padding: 15px;
  border: 1px solid var(--color-gray-300);
  text-align: center;
  line-height: 1.3;
  vertical-align: middle;
}
.tb-1 .left {
  text-align: left;
}
.tb-1 thead {
  border-top: 2px solid var(--color-primary);
}
.tb-1 th,
.tb-1 .td-head {
  background-color: var(--color-gray-50);
}
.tb-1 .tb-footer td {
  background-color: var(--color-gray-50);
  font-weight: 600;
}
.tb-1 td strong {
  font-weight: 600;
}
.tb-1 td .link {
  color: var(--color-gray-450);
}