:root {
  --primary: #0158c1;
  --secondary: #0d99ff;

  --white: #ffffff;

  --gray01: #f2f2f2;
  --gray02: #dddddd;
  --gray03: #f9f9f9;
  --gray04: #f6f6f6;
  --gray05: #999999;
  --gray06: #6a6a6a;
  --gray07: #a7a7a7;

  --size18: 1.125rem;
  --size20: 1.25rem;
  --size22: 1.375rem;
  --size24: 1.5rem;
  --size28: 1.75rem;
  --size34: 2.125rem;
  --size38: 2.375rem;
  --size40: 2.5rem;
  --size46: 2.875rem;
  --size50: 3.125rem;
}
/*reset*/
img {
  display: block;
  width: 100%;
}
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 1rem;
  border: none;
  background: transparent;
}
input:focus {
  outline-offset: 0px;
  outline: none;
}
input::placeholder {
  font-family: "Noto Sans SC", sans-serif;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}
button {
  border: 0;
  background: transparent;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 1rem;
}
html,
body {
  width: 100%;
  position: relative;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
/*common*/
.wrap {
  width: 100%;
  position: relative;
}
.inner {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}
/*toppopup*/
.top-popup {
  background: #444;
  padding: 10px 0;
}
.top-popup .inner {
  position: relative;
}
.top-popup .swiper {
  width: calc(100% - 80px);
  margin: auto;
}
.top-popup .popup-control {
  position: absolute;
  left: 0;
  top: 41%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.popup-control .swiper-button-next:after,
.popup-control .swiper-button-prev:after {
  display: none;
}
.popup-control .swiper-button-next img,
.popup-control .swiper-button-prev img {
  width: 18px;
}
.top-popup .close-btn {
  position: absolute;
  right: 0;
  bottom: -36px;
  color: var(--white);
  cursor: pointer;
  background: #444;
  border-radius: 0 0 5px 5px;
  padding: 2px 6px;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  z-index: 1;
}
.top-popup .close-btn img {
  width: 10px;
}
.top-popup .check-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.top-popup .check-wrap label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--white);
}
.top-popup .check-wrap label input {
  display: none;
}
.top-popup .check-wrap label .check {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  box-sizing: border-box;
  border: 1px solid var(--white);
  position: relative;
}
.top-popup .check-wrap label .check::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/icon/ic-check4.png) no-repeat;
  background-size: 12px;
  background-position: 50% 50%;
}
.top-popup .check-wrap label input:checked + .check {
  background: var(--white);
}
/*header*/
.pc-header {
  position: relative;
}
.pc-header .header-area {
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc-header .hamburger {
  display: none;
}
.pc-header .logo {
  width: 214px;
}
.pc-header .right-area {
  display: flex;
  align-items: center;
  gap: 200px;
}
.pc-header .main-nav {
  display: flex;
  gap: 112px;
}
.pc-header .main-nav > li > a {
  font-size: var(--size24);
  font-weight: 600;
}
.lang-nav {
  display: flex;
  gap: 20px;
  background: var(--secondary);
  padding: 10px 20px;
  border-radius: 10px;
}
.lang-nav > li > a {
  color: rgba(255, 255, 255, 0.6);
}
.lang-nav > li.on > a {
  color: var(--white);
}
.pc-header .sub-nav {
  background: var(--white);
  padding: 60px 70px;
  border-top: 1px solid var(--gray02);
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 50;
}
.pc-header .sub-nav .inner {
  display: flex;
  gap: 80px;
}
.pc-header .sub-nav .nav-box {
  width: calc(25% - 60px);
}
.pc-header .sub-nav .nav-box .title {
  padding-bottom: 30px;
  border-bottom: 2px solid #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--size24);
  font-weight: 700;
  margin-bottom: 30px;
}
.pc-header .sub-nav .nav-box .title span {
  color: #e6e6e6;
}
.pc-header .sub-nav .nav-box .depth2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pc-header .sub-nav .nav-box .depth2 > li > a {
  font-size: var(--size18);
  color: var(--gray06);
}
.pc-header .sub-nav .lang-nav {
  display: none;
}
.pc-header .sub-nav .nav-box .title img {
  display: none;
}
/*footer*/
/* 0724 ¼öÁ¤-- */
footer {
  border-top: 1px solid var(--gray02);
  padding: 42px 0 100px;
  background-color: #595959;
}
/* --0724 ¼öÁ¤ */


footer .f-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .f-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}


/* 0724 ¼öÁ¤-- */
footer .f-nav > li > a {
  color: var(--gray01);
  font-weight: 500;
}
/* --0724 ¼öÁ¤ */



footer .f-nav > li.sns > a {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .f-nav > li.sns > a img {
  width: 38px;
}
footer .site-box {
  position: relative;
}

/* 0724 ¼öÁ¤-- */
footer .site-box .site-btn {
  width: 200px;
  height: 38px;
  box-sizing: border-box;
  border: 1px solid var(--gray02);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
}
/* --0724 ¼öÁ¤ */


footer .site-box .site-list {
  position: absolute;
  left: 0;
  /*top: -142px;*/
  top: -100px;
  border: 1px solid var(--gray02);
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
  display: none;
  gap: 16px;
  width: 100%;
  background: var(--white);
  padding: 16px 0;
  z-index: 1;
}
footer .site-box .site-list > li > a {
  color: var(--gray06);
  text-align: center;
  display: block;
  margin-bottom: 16px;
}
footer .site-box .site-list > li:last-child > a {
  margin-bottom: 0;
}
footer .f-con {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  gap: 36px;
}
footer .f-con img {
  width: 142px;
}

/* 0724 ¼öÁ¤-- */
footer .f-con .f-txt p {
  margin-bottom: 3px;
}
footer .f-con .f-txt p:nth-child(3) {
    margin-bottom: 13px;
}
footer .f-con .txt1 {
  color: var(--white);
  font-size: var(--size18);
  font-weight: 500;
}
footer .f-con .txt2 {
  color: var(--gray01);
  display: flex;
  gap: 30px;
}
/* --0724 ¼öÁ¤ */

/*componet*/
.alert-txt {
  color: var(--gray06);
  padding-left: 16px;
  position: relative;
}
.alert-txt::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray06);
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
}
.dl-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.dl-layout dt {
  color: var(--primary);
  font-weight: 500;
}
.table-layout1 {
  border-top: 1px solid #222;
  width: 100%;
}
.table-layout1 tr {
  border-bottom: 1px solid var(--gray02);
}
.table-layout1 th {
  width: 240px;
  background: var(--gray01);
  padding: 16px 0;
  font-weight: 500;
}
.table-layout1 td {
  padding: 16px 24px;
}
.table-layout2 {
  width: 100%;
  border-top: 1px solid #222;
}
.table-layout2 thead th {
  background: var(--gray01);
}
.table-layout2 tr {
  border-bottom: 1px solid var(--gray02);
}
.table-layout2 th,
.table-layout2 td {
  vertical-align: middle;
  text-align: center;
  padding: 15px 0;
  font-weight: 500;
  border-right: 1px solid var(--gray02);
}
.table-layout2 th:last-child,
.table-layout2 td:last-child {
  border-right: 0;
}
.table-layout2 .img-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.table-layout2 .img-txt img {
  width: 30px;
}
.table-layout2 .img-txt div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.table-layout2 .wid30 {
  width: 30%;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 12px;
}
.pagination button {
  border: 0;
  background: transparent;
}
.pagination .arrow {
  display: flex;
  gap: 12px;
}
.pagination .arrow img {
  width: auto;
  height: 10px;
}
.pagination .num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--gray06);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .num.on {
  background: var(--primary);
  color: var(--white);
}
.bo-etc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.bo-etc .bo-num span {
  color: var(--secondary);
  font-weight: 600;
}
.bo-etc .bo-btn {
  display: flex;
  gap: 16px;
}
.bo-etc .search-wrap {
  display: flex;
  gap: 8px;
}
.bo-etc .search-wrap input {
  width: 288px;
  height: 38px;
  border-radius: 10px;
  box-sizing: border-box;
  border: 1px solid var(--gray02);
  padding: 0 16px;
  font-size: 14px;
}
.bo-etc .search-wrap input::placeholder {
  color: var(--gray05);
}
.bo-etc .search-wrap button {
  border-radius: 10px;
  background: var(--secondary);
  color: var(--white);
  padding: 0 30px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bo-etc .apply-btn {
  height: 38px;
  padding: 0 20px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
}

/* 0802 -- */
.pc-header .lang-mo {
  display: none;  
}

.select-box {
    position: relative;
    z-index: 9;
    width: 65px;
}

.select-box button {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    height: 40px;
    padding:0 12px;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
}

.select-box button:after {
    display: inline-block;
    content: "";
    width: 13px;
    height: 8px;
    background: url('../img/icon/ic_arrow_bottom.png') no-repeat center / cover;
}

.select-box div {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 35px;
    transition: all ease 0.5s;
    background: #fff;    
    border-radius: 8px;
    width: 100%;
}

.select-box div dl dd a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    height: 26px;
    padding:0 12px;
}

.select-box div dl dd.active a {
    color: var(--primary);
}

.select-box.active button:after {
    transform: rotate(180deg);
}

.select-box.active div {
    pointer-events: inherit;
    opacity: 1;
    top: 35px;
}
/* -- 0802 */