@charset "UTF-8";
/**************************************** custom 시작*/
.wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.br_mo {
  display: none;
}

/* ::selection {
    background-color: transparent
  } */
.mont {
  font-family: "Montserrat", sans-serif;
}

.esa {
  font-family: "EsaManru";
}

.blank {
  padding-top: 80px;
  padding-bottom: 150px;
}
.blank.top {
  padding-top: 80px;
  padding-bottom: 0;
}
.blank.bottom {
  padding-top: 0;
  padding-bottom: 150px;
}
.blank.end {
  padding-top: 100px;
  padding-bottom: 150px;
}

.btn_t1 {
  max-width: 120px;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.sub_banner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 20px;
  padding: 100px 0 80px;
}
.sub_banner .title {
  font-family: "esamanru";
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
}
.sub_banner .subtitle {
  font-size: 1.625rem;
  text-align: center;
}

main {
  margin-top: 120px;
}

.sub__category_t1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  margin-bottom: 30px;
}
.sub__category_t1 li {
  position: relative;
  font-family: "esamanru";
  font-size: 1.25rem;
  font-weight: 300;
  color: #CCCCCC;
}
.sub__category_t1 li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: #ccc;
}
.sub__category_t1 li:last-child::after {
  display: none;
}
.sub__category_t1 li.active {
  color: #222;
}

.sub__category_t2 {
  width: 100%;
}
.sub__category_t2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  cursor: pointer;
  height: 60px;
  background: #F6F6F6;
  border-radius: 200px;
  font-family: "esamanru";
  font-weight: 300;
  font-size: 1.25rem;
  color: #AAAAAA;
}
.sub__category_t2 li.active {
  background: #030BB6;
  -webkit-box-shadow: 10px 10px 15px rgba(3, 11, 182, 0.15);
          box-shadow: 10px 10px 15px rgba(3, 11, 182, 0.15);
  color: #fff;
}
.sub__category_t2.two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.sub__category_t2.two li {
  max-width: 460px;
  width: 100%;
}
.sub__category_t2.other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.sub__category_t2.other li {
  max-width: 300px;
  width: 100%;
}

.sub__big_title {
  width: 100%;
  text-align: center;
  font-family: "esamanru";
  font-weight: 500;
  font-size: 2.5rem;
}

.sub__title {
  width: 100%;
  font-size: 1.625rem;
  font-weight: 500;
  font-family: "esamanru";
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid #222;
}

/**************************************** custom 끝*/
/**************************************** header 시작*/
header {
  width: 100%;
  height: 120px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 999;
  border-bottom: 1px solid #E6E6E6;
}
header .header__wrap {
  max-width: 1400px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header__wrap .header__logo {
  max-width: 205px;
}
header .header__wrap nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
header .header__wrap nav > ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}
header .header__wrap nav > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
}
header .header__wrap nav > ul > li > a {
  font-family: "EsaManru";
  font-weight: 300;
  font-size: 1.0625rem;
  z-index: 3;
}
header .header__wrap nav > ul > li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 160px;
  height: 100%;
  background-color: #1A1B30;
  z-index: 1;
  opacity: 0;
}
header .header__wrap nav > ul > li .depth2 {
  min-width: 160px;
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
  padding: 45px 18px 50px;
  background-color: #1A1B30;
  display: none;
  z-index: 2;
}
header .header__wrap nav > ul > li .depth2 li a {
  font-family: "EsaManru";
  font-weight: 300;
  font-size: 0.9375rem;
  color: #fff;
}
header .header__wrap nav > ul > li:hover a {
  color: #fff;
}
header .header__wrap nav > ul > li:hover::after {
  opacity: 1;
}
header .header__wrap nav > ul > li:hover .depth2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__ham {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  display: none;
}
.header__ham .header__ham_btn {
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.header__ham .header__ham_btn .line {
  fill: none;
  -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #222;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.header__ham .header__ham_btn .line.top {
  stroke-dasharray: 40 160;
}
.header__ham .header__ham_btn .line.middle {
  stroke-dasharray: 40 142;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
}
.header__ham .header__ham_btn .line.bottom {
  stroke-dasharray: 40 85;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transition: stroke-dashoffset 400ms, -webkit-transform 400ms;
  transition: stroke-dashoffset 400ms, -webkit-transform 400ms;
  transition: transform 400ms, stroke-dashoffset 400ms;
  transition: transform 400ms, stroke-dashoffset 400ms, -webkit-transform 400ms;
}
.header__ham .header__ham_btn.active {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__ham .header__ham_btn.active .line.top {
  stroke-dashoffset: -64px;
}
.header__ham .header__ham_btn.active .line.middle {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.header__ham .header__ham_btn.active .line.bottom {
  stroke-dashoffset: -64px;
}

.header__mo {
  position: fixed;
  top: -200%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 998;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.header__mo.active {
  top: 0;
}
.header__mo nav {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
}
.header__mo nav .depth1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
.header__mo nav .depth1 .depth1_title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.125rem;
  font-family: "esamanru";
  font-weight: 300;
  padding-bottom: 10px;
  border-bottom: 1px solid #E6E6E6;
}
.header__mo nav .depth1 .depth1_title i {
  font-size: 25px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header__mo nav .depth1 .depth1_title i.active {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__mo nav .depth2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
  margin-top: 10px;
  display: none;
}

/**************************************** header 끝*/
/**************************************** quick 시작*/
.quick_wrap {
  position: fixed;
  top: 15rem;
  right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 10px;
  z-index: 999;
}
.quick_wrap li {
  width: 75px;
  height: 75px;
  background-color: #1A1B30;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.quick_wrap li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 5px;
  color: #fff;
  border-radius: 100%;
}
.quick_wrap li a span {
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
}

/**************************************** quick 끝*/
/**************************************** footer 시작*/
footer {
  width: 100%;
  padding: 45px 0 50px;
  border-top: 1px solid #E6E6E6;
}
footer .footer__wrap {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer__wrap > div {
  height: 100%;
}

.footer__lt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}
.footer__lt .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.footer__lt .footer__logo {
  max-width: 205px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.4;
}
.footer__lt .sns_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.footer__lt .sns_wrap a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F6F6F6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer__lt .sns_wrap a img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer__lt .sns_wrap a:hover {
  background-color: #1A1B30;
}
.footer__lt .sns_wrap a:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer__lt .info_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
.footer__lt .info_wrap li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.footer__lt .info_wrap li span {
  display: block;
  width: 1px;
  height: 10px;
  background-color: #ccc;
}
.footer__lt .info_wrap .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.footer__lt .info_wrap .line > div {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #666666;
}
.footer__lt .info_wrap .line .title {
  color: #AAAAAA;
}

.footer__rt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 60px;
}
.footer__rt .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}
.footer__rt .link li a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #666;
}
.footer__rt .cap {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #aaa;
}

/**************************************** footer 끝*/
/**************************************** table 시작*/
table {
  border-top: 2px solid #111;
}

/**************************************** table 끝*/
/**************************************** pagination 시작*/
.pager {
  text-align: center;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.pager button {
  font-size: 1.25rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #ccc;
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 100%;
}
.pager button i {
  font-size: 36px;
}
.pager button.active {
  color: #111;
  border: 1px solid #111;
}
.pager button:hover {
  color: #111;
}
.pager .page {
  font-size: 1.0625rem;
  font-weight: 500;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #aaa;
}
.pager .page.active {
  color: #111;
}
.pager .page:hover {
  color: #111;
}

/**************************************** pagination 끝*/
/**************************************** input checkbox,radio 시작*/
input[type=checkbox],
input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  font-family: "esamanru";
  font-weight: 300;
  font-size: 0.8125rem;
}

input[type=checkbox]:checked + label,
input[type=radio]:checked + label {
  color: #030BB6;
  opacity: 1;
}

input[type=checkbox] + label::before,
input[type=radio] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ccc;
  border-radius: 3px;
}

input[type=checkbox]:checked + label::before,
input[type=radio]:checked + label::before {
  content: "";
  background-image: url(/img/chk_icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #030BB6;
  background-size: 8px;
  border: 0;
}

/* normal popup */
.common_popup .onday_close input[type=checkbox] + label,
.common_popup .onday_close input[type=radio] + label {
  font-size: 0.9375rem;
  padding-left: 25px;
}

.common_popup .onday_close input[type=checkbox] + label::before,
.common_popup .onday_close input[type=radio] + label::before {
  width: 15px;
  height: 15px;
}

.common_popup .onday_close input[type=checkbox]:checked + label::before,
.common_popup .onday_close input[type=radio]:checked + label::before {
  width: 15px;
  height: 15px;
  line-height: 14px;
}

/**************************************** input checkbox,radio 끝*/
/**************************************** select 시작*/
select {
  background-image: url(/img/select_arrow.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  border: 1px solid #E6E6E6;
  border-radius: 5px;
}

/**************************************** select 끝*/
/**************************************** responsive*/
@media screen and (max-width: 1440px) {
  .wrapper {
    padding: 0 20px;
  }
  header .header__wrap {
    padding: 0 20px;
  }
  footer .footer__wrap {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1240px) {
  main {
    margin-top: 90px;
  }
  header {
    height: 90px;
  }
  header .header__wrap nav {
    display: none;
  }
  .header__ham {
    display: block;
  }
  .quick_wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .quick_wrap li {
    width: 100%;
    height: 60px;
    border-radius: 0;
    position: relative;
  }
  .quick_wrap li a br {
    display: none;
  }
  .quick_wrap li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background-color: #fff;
  }
  footer {
    padding: 45px 0 110px;
  }
  .sub_banner {
    padding: 80px 0 60px;
  }
  .sub__big_title {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__mo nav {
    padding: 0 20px;
  }
  footer .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    row-gap: 30px;
  }
  .footer__rt {
    row-gap: 30px;
  }
  .footer__rt .link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .pager {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .blank {
    padding-top: 80px;
    padding-bottom: 150px;
  }
  .blank.top {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .blank.bottom {
    padding-top: 0;
    padding-bottom: 120px;
  }
  .blank.end {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .sub_banner .title {
    font-size: 2.25rem;
  }
  .sub_banner .subtitle {
    font-size: 1.375rem;
  }
  .sub__category_t1 {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
  .sub__category_t1 li::after {
    right: -30px;
    height: 10px;
  }
  .sub__category_t2 li {
    height: 50px;
  }
  .sub__title {
    font-size: 1.375rem;
  }
  .sub__big_title {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  html,
body {
    font-size: 14px;
  }
  /**************************************** pagination 768*/
  .pager .pager-btn i {
    font-size: 30px;
  }
  /**************************************** pagination 768*/
}
@media screen and (max-width: 540px) {
  html,
body {
    font-size: 13px;
  }
  main {
    margin-top: 60px;
  }
  header {
    height: 60px;
  }
  header .header__wrap .header__logo {
    max-width: 120px;
  }
  header .header__wrap nav {
    display: none;
  }
  .pager {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .pager .pager-btn i {
    font-size: 25px;
  }
  .quick_wrap li a figure.num1 {
    max-width: 14px;
  }
  .quick_wrap li a figure.num2 {
    max-width: 13px;
  }
  .quick_wrap li a figure.num3 {
    max-width: 18px;
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  .quick_wrap li a figure.num4 {
    max-width: 12px;
  }
  .header__mo nav .depth1 {
    row-gap: 25px;
  }
  .header__mo nav .depth1 .depth1_title {
    font-size: 1.25rem;
    padding-bottom: 8px;
  }
  .header__mo nav .depth1 .depth1_title i {
    font-size: 20px;
  }
  .header__mo nav .depth2 {
    row-gap: 10px;
    margin-top: 15px;
  }
  .header__mo nav .depth2 li {
    font-size: 1.0625rem;
  }
  footer {
    padding: 30px 0 80px;
  }
  footer .footer__wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
  }
  .footer__lt {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 20px;
  }
  .footer__lt .link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: 10px;
  }
  .footer__lt .sns_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .footer__lt .sns_wrap a {
    width: 35px;
    height: 35px;
  }
  .footer__lt .sns_wrap a img {
    max-width: 16px;
  }
  .footer__lt .info_wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 3px;
  }
  .footer__lt .info_wrap li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 5px;
  }
  .footer__lt .info_wrap li span {
    display: none;
  }
  .footer__rt {
    row-gap: 10px;
  }
  .footer__rt .cap {
    text-align: center;
  }
  .blank {
    padding-top: 80px;
    padding-bottom: 150px;
  }
  .blank.top {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .blank.bottom {
    padding-top: 0;
    padding-bottom: 80px;
  }
  .blank.end {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .sub_banner {
    padding: 70px 0 50px;
    row-gap: 10px;
  }
  .sub_banner .title {
    font-size: 1.625rem;
  }
  .sub_banner .subtitle {
    font-size: 1.125rem;
  }
  .sub__category_t1 {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .sub__category_t1 li {
    font-size: 1.0625rem;
  }
  .sub__category_t1 li::after {
    right: -20px;
    height: 10px;
  }
  .sub__category_t2 li {
    font-size: 1.0625rem;
    height: 40px;
  }
  .sub__title {
    font-size: 1.25rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .sub__big_title {
    word-break: keep-all;
    font-size: 1.375rem;
  }
  .quick_wrap li {
    height: 50px;
  }
}/*# sourceMappingURL=common.css.map */