/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  color: #1d1d1d;
  font-family: "Pretendard Variable", "Open Sans", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-size: 62.5% !important;
  word-break: keep-all;
  word-wrap: break-word;
  box-sizing: border-box;
  animation: entry 0.3s ease forwards;
  opacity: 0;
  letter-spacing: -0.022em;
}

/* html::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
} */

body {
  font-size: 1.6rem;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

b,
strong {
  font-weight: 700;
}

img {
  max-width: 100%;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

select {
  outline: none;
  border: 1px solid transparent;
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  /* background-size:9px auto; */
  /* background-image: url('/en/img/bbs/select.png'); */
  background-repeat: no-repeat;
  /* background-position:right 15px center; */
}

input,
textarea {
  font-family: inherit;
  outline: none;
  border: 1px solid transparent;
}

:focus {
  outline: none;
}

::placeholder {
  color: #ccc;
}

@-webkit-keyframes entry {
  to {
    opacity: 1;
  }
}

@keyframes entry {
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
  /* select {
    background-size:7px auto;
    background-position:right 10px center;
  } */
}
@media screen and (max-width: 576px) {
}

/* Overflow */
.hidden {
  overflow: hidden;
}

/* Display */
.sp {
  display: none;
}
.mo {
  display: none;
}

@media screen and (max-width: 992px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .tb {
    display: none;
  }
  .mo {
    display: block;
  }
}

/* Ellip */
.ellip {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Blind */
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  cursor: pointer;
}

@media screen and (min-width: 1201px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 576px) {
}

/* Font Family */
.font-family--pretendard {
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

/* Container */
.container {
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 15px;
}

.container--sub {
  max-width: 1310px;
}

/* Wrap */
.wrap {
  /* padding-top: 104px; */
  overflow-x: hidden;
}

.wrap--sub {
  padding-top: 104px;
}

@media screen and (max-width: 1200px) {
  .wrap {
    padding-top: 60px;
  }

  .wrap--sub {
    padding-top: 60px;
  }
}
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 576px) {
}

/* Main */
#main {
  min-height: calc(100vh - 340px);
}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 576px) {
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0%;
  width: 100%;
  z-index: 9999;
  transition: all 0.4s ease-out;
}

#header .header-container {
  max-width: 1710px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

#header .header-inner {
  position: relative;
}

#header .header_logo {
  display: block;
  width: 230px;
  aspect-ratio: 4.1071 / 1;
  /* height: 56px; */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* top: 24px; */
  left: 0;
  z-index: 99999;
}

#header .header_logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/en/img/inc/logo.png") no-repeat center;
  background-size: cover;
}

#header .header_menu {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
}

#header .header_menu::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  height: 0;
  background-color: #f0f0f0;
  transition: height 0.3s ease-out;
}

#header .header_menu.menu-active::after {
  height: 64px;
}

#header .header_menu__list {
  position: relative;
}

#header .header_menu__link {
  display: flex;
  align-items: center;
  position: relative;
  height: 104px;
  padding: 0 50px;
}

#header .header_menu__link h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

#header .header_menu__link::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  z-index: 9;
  background-color: #0d8afc;
  transition: width 0.3s ease-out;
}

#header .header_menu__list .header_submenu {
  display: flex;
  position: absolute;
  justify-content: center;
  top: calc(100% - 1px);
  left: 0;
  z-index: 2;
  height: 0;
  width: auto;
  background-color: #f0f0f0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

#header .header_menu__list .header_submenu a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 25px;
  margin: 0 25px;
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
}

#header[data-header="sticky"] {
  top: -104px;
}

#header.header-active,
#header.active {
  background-color: #fff;
}

#header.header-active .header_menu__link h2,
#header.active .header_menu__link h2 {
  color: #000;
}

#header.header-active .header_logo a,
#header.active .header_logo a {
  background: url("/en/img/inc/header-logo.svg") no-repeat center;
  background-size: cover;
}


#header .header_menu__list.menu-active .header_submenu {
  height: 64px;
}

#header .header_menu__list.menu-active, 
.wrap--sub #header .header_menu__link h2 {
  color: #000;
}

.wrap--sub  #header {
  border-bottom: 1px solid #eaeaea;
}

.wrap--sub  #header .header_logo a {
  background: url("/en/img/inc/header-logo.svg") no-repeat center;
}

@media(min-width:1201px) {
  #header .header_menu__list:hover .header_menu__link::after {
    width: calc(100% - 75px);
  }
}


@media(max-width:1600px) {
  #header .header_menu__link {
    padding: 0 30px;
  }
  
  #header .header_menu__list .header_submenu a {
    margin: 0 15px;
    padding: 0 15px;
  }
}

@media(max-width:1400px) {
  #header .header_logo {
    width: 180px;
  }
  
  #header .header_menu__link {
    padding: 0 20px;
  }
}

@media (max-width: 1200px) {
  #header {
    height: 60px;
  }

  #header .header_main {
    display: none;
  }

  #header .header_logo {
    top: 9px;
    width: 165px;
    transform: translateY(0);
  }


  #header .header_logo a {
    background: url("/en/img/inc/logo-hover.png") no-repeat center;
    background-size: cover;
  }

}

@media (max-width: 1024px) {
  #header .header_logo {
    top: 10px;
    width: 173px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  #header .header_logo {
    top: 12px;
    width: 148px;
    height: 36px;
  }
}

/* Site Map */
#header .site-map-wrap {
  position: absolute;
  top: 32px;
  right: 0;
  display: flex;
}

#header .language-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 160px;
  height: 40px;
  padding: 0 10px;
  margin: 0 15px;
  border-radius: 20px;
  transition: all 0.3s ease-out;
  z-index: 9999;
}

#header .language_icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: block;
  width: 28px;
  height: 28px;
  background-image: url("/en/img/inc/language-icon.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

#header.header-active .language_icon,
#header.active .language_icon,
.wrap--sub #header .language_icon {
  background-image: url("/en/img/inc/language-icon-hover.svg");
}

#header .language-box ul {
  display: none;
  align-items: center;
}

#header .language-box ul li {
  padding: 0 12px;
  font-size: 1.6rem;
  font-weight: 600;
}

#header .language-box ul li:first-of-type {
  border-right: 2px solid #000;
}

#header .language-box ul li.on {
  color: #0842cc;
}

#header .language-box.on {
  border: 1px solid #000;
}

#header .language-box.on ul {
  display: flex;
}

#header .site-map_icon {
  position: relative;
  width: 32px;
  height: 40px;
  cursor: pointer;
  z-index: 999;
}


#header .site-map_icon span {
  display: block;
  width: 32px;
  height: 2px;
  background-color: #fff;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#header.header-active .site-map_icon span,
#header.active .site-map_icon span,
.wrap--sub #header .site-map_icon span {
  background-color: #000;
}

#header .site-map_icon span:nth-child(3) {
  width: 24px;
  margin: 8px 0 0 0px;
}

#header .site-map_menu {
  position: fixed;
  top: 102px;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  /* right: -160%; */
  width: 100vw;
  height: 0;
  overflow: hidden;
  /* height: calc(100vh - 100px); */
  /* background-color: #fff; */
  background-color: #f8f8f8;
  transition: all 0.3s ease-out;
}

#header .site-map_menu::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

#header .site-map_menu_list {
  display: flex;
  align-items: start;
  justify-content: center;
  position: relative;
  max-width: 1710px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 30px 15px;
  background-color: #f8f8f8;
}

#header .site-map_menu_list::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #f8f8f8;
}

#header .site-map_menu__item {
  width: 15%;
  height: 100%;
  padding-top: 50px;
}

#header .site-map_menu__item:last-of-type {
  border-right: none;
}

#header .site-map_menu__title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 2rem;
}

#header .site-map_menu__title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}

#header .site-map_menu__title h2 {
  font-size: inherit;
  font-weight: inherit;
}

#header .site-map_menu__title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 22px auto 0;
  background-color: #0d8afc;
}

#header .site-map_submenu {
  display: flex;
  position: relative;
  align-items: start;
  max-width: 1200px;
  width: 100%;
  padding: 30px 0;
}

#header .site-map_menu__item:first-of-type .site-map_submenu {
  padding: 0 0 30px;
}

#header .site-map_submenu::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #eaeaea;
}

#header .site-map_menu__item:last-of-type .site-map_submenu::after {
  display: none;
}

#header .site-map_submenu > li {
  max-width: 220px;
  width: 100%;
  margin: 0 30px;
}

#header .site-map_submenu > li:last-of-type {
  margin: 0 0 0 30px;
}

#header .site-map_menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  text-align: left;
}

#header .site-map_menu__link i {
  display: none;
  position: relative;
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

#header .site-map_menu__link i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0d8afc;
  transition: transform 0.2s ease;
}

#header .site-map_menu__link i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1px;
  height: 100%;
  background-color: #0d8afc;
  transition: transform 0.2s ease;
}

#header .site-map_menu__item:last-of-type .site-map_submenu li a {
  margin: 0;
}

#header .site-map_submenu_depth {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  transition: all 0.3s ease-out;
  color: #565656;
}
    
#header .site-map_submenu_depth a {
  display: block;
  width: 100%;
}

#header .site-map_submenu_depth li {
  padding: 7px 0;
  margin: 0 0 18px;
}

#header .site-map_submenu_depth li:last-of-type {
  margin: 0;
}

#header .site-map_menu.on {
  right: 0;
  overflow: visible;
  height: 500px;
  /* height: calc(100vh - 100px); */
}

#header .site-map_icon.active span:nth-child(2) {
  opacity: 0;
}

#header .site-map_icon.active span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  -o-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}

#header .site-map_icon.active span:nth-child(3) {
  width: 32px;
  margin: 8px auto;
  -webkit-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  -o-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

#header .site-map_menu__link.on i {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

#header .site-map_menu__link.on i::before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}


@media(max-width:1400px) {

  #header .language-box {
    width: 80px;
  }
}

@media (max-width: 1200px) {
  #header .language_icon {
    background: url("/en/img/inc/language-icon-hover.svg");
  }

  #header .site-map_icon span {
    background-color: #000;
  }
  
  #header .language-box ul li {
    font-size: 1.5rem;
  }

  #header .language_icon {
    right: 8px;
  }

  #header .site-map_menu {
    top: 59px;
    align-items: center;
    padding: 0;
  }

  #header .site-map-wrap {
    position: absolute;
    top: 10px;
  }

  #header .site-map_menu__item {
    padding-top: 40px;
    width: 17%
  }

  #header .site-map_menu__title {
    margin-bottom: 25px;
    font-size: 2.8rem;
  }

  #header .site-map_submenu {
    padding: 25px 0;
  }

  #header .site-map_submenu > li {
    max-width: 175px;
    margin: 0 20px;
  }

  #header .site-map_submenu > li:last-of-type {
    margin: 0 0 0 20px;
  }

  #header .site-map_menu__link {
    font-size: 2.2rem;
  }

  #header .site-map_submenu_depth {
    font-size: 1.6rem;
  }

  #header .site-map_submenu_depth li {
    margin: 0 0 10px;
  }
}

@media (max-width: 1024px) {
  #header .language-box {
    width: 145px;
    margin: 0 10px;
    padding: 0 8px;
  }

  #header .language-box {
    height: 37px;
    margin: 0 10px;
  }

  #header .language-box ul li {
    font-size: 1.4rem;
  }

  #header .language_icon {
    width: 25px;
    height: 25px;
  }

  #header .site-map-wrap {
    align-items: center;
  }

  #header .site-map_icon {
    width: 27px;
    height: 30px;
  }

  #header .site-map_icon span {
    width: 27px;
  }

  #header .site-map_icon span:nth-child(3) {
    width: 19px;
  }

  #header .site-map_icon.active span:nth-child(3) {
    width: 27px;
  }

  #header .site-map_menu {
    right: -100%;
    height: calc(100vh - 60px);
    align-items: start;
  }

  #header .site-map_menu.on {
    right: 0;
    height: calc(100vh - 60px);
  }
  
  #header .site-map_menu_list {
    flex-wrap: wrap;
    padding: 40px 0;
  }
  
  #header .site-map_menu__item {
    position: relative;
    width: 33.333%;
    height: 50%;
    padding-top: 30px;
  }

  #header .site-map_menu__item::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background-color: #eaeaea;
  }
  
  #header .site-map_menu__item:nth-child(n+4)::after {
    display: none;
  }
  
  #header .site-map_menu__item:nth-of-type(3) {
    border-right: none;
  }
  
  
  #header .site-map_menu__title {
    margin-bottom: 20px;
    font-size: 2.6rem;
  }

  #header .site-map_menu__title::after {
    width: 35px;
    margin: 20px auto 0;
  }

  #header .site-map_menu__link {
    font-size: 2rem;
  }

}

@media (max-width: 810px) {
  #header .language-box ul li {
    padding: 0 8px;
  }

  #header .language-box ul li:first-of-type {
    border-right: 1px solid #000;
  }

  #header .language-box {
    width: 125px;
    height: 35px;
    margin: 0 5px;
    padding: 0 5px;
  }

  #header .language_icon {
    right: 5px;
    width: 23px;
    height: 23px;
  }

  #header .site-map_icon {
    width: 25px;
    height: 30px;
  }

  #header .site-map_icon span {
    width: 25px;
  }

  #header .site-map_icon span:nth-child(3) {
    width: 17px;
  }

  #header .site-map_icon.active span:nth-child(3) {
    width: 25px;
  }
  
  #header .site-map_menu_list {
    display: block;
    padding: 10px 15px 0;
  }

  #header .site-map_menu__title {
    font-size: 2.2rem;
  }

  #header .site-map_menu__link {
    font-size: 1.8rem;
  }
  
  #header .site-map_menu__link i {
    display: block;
  }
  

  #header .site-map_menu__item {
    width: 100%;
    height: auto;
    border-right: none;
    padding: 20px 0 20px;
    border-bottom: 1px solid #eaeaea;
  }

  #header .site-map_menu__item::after {
    display: none;
  }
  
  #header .site-map_menu__title {
    margin-bottom: 0;
    text-align: left;
    font-size: 2rem;
  }
  
  #header .site-map_menu__title::after {
    display: none;
  }
  
  #header .site-map_submenu_depth {
    height: 0;
    margin: 0;
    overflow: hidden;
    text-align: left;
  }

  
  #header .site-map_submenu_depth.on {
    height: fit-content;
    margin: 15px 0 0;
  }
  
  #header .site-map_submenu_depth li:last-of-type {
    margin-bottom: 0;
  }
}

@media (max-width: 500px) {
  #header .site-map_menu__item:nth-of-type(3) {
    padding: 15px 0;
  }

  #header .site-map_menu__item {
    padding: 15px 0 10px;
  }
  
  #header .site-map_menu__title {
    font-size: 2.2rem;
  }

  #header .site-map_menu__link {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
  
  #header .site-map_menu__title {
    font-size: 1.8rem;
  }
  
  #header .site-map_submenu_depth.on {
    height: fit-content;
    margin: 15px 0 0;
  }
  
  #header .site-map_submenu_depth li {
    margin: 0 0 5px;
  }
}

/* Footer */
#footer {
  padding: 40px 0;
  background-color: #3e3e3e;
}

#footer .footer-container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  font-size: 1.4rem;
}

#footer .footer-inner {
  width: 100%;
}

#footer .footer_logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin: 0 0 10px;
}

#footer .footer_menu {
  position: relative;
}

#footer .footer_menu ul {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  margin: 0 0 20px;
  line-height: 1;
  color: #fff;
}

#footer .footer_menu ul li {
  display: flex;
  align-items: center;
  font-weight: 500;
}

#footer .footer_menu ul li::after {
  content: "";
  display: block;
  width: 2px;
  height: 10px;
  margin: 0 22px;
  background-color: #fff;
}

#footer .footer_menu ul li:last-of-type::after {
  display: none;
}

#footer .footer_menu .family-site {
  position: absolute;
  top: -10px;
  right: 0;
  width: 150px;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  text-indent: 10px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  letter-spacing: 0;
}

#footer .footer_menu .family-site p {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

#footer .footer_menu .family-site p i {
  display: block;
  margin: 0 0 0 17px;
  font-style: normal;
}

#footer .footer_menu .family-site a {
  display: none;
  padding: 5px 0 18px;
  transition: display 0.3s ease-out;
}

#footer .footer_copyright {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

#footer .footer_copyright p {
  margin: 0 50px 0 0;
  color: #c4c4c4;
}

#footer .footer_copyright .privacy_wrap {
  display: flex;
  align-items: center;
}

#footer .footer_copyright .footer_privacy,
#footer .footer_copyright .footer_terms {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

#footer .footer_copyright .footer_terms {
  display: block;
  margin: 0 0 0 20px;
  font-weight: 500;
}

#footer .footer_menu .family-site.on {
  color: #1d1d1d;
  background-color: #fff;
}

#footer .footer_menu .family-site.on p i {
  display: none;
}

#footer .footer_menu .family-site.on a {
  display: block;
}

#footer .footer-top-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px 0;
  position: absolute;
  right: 15px;
  top: 0;
  transform: translateY(-100%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #2d9afc;
  cursor: pointer;
}

#footer .footer-top-btn i {
  display: block;
  width: 20px;
  height: 24px;
  background: url('/child/img/icon/top-btn-icon.png') no-repeat, center;
  background-size: cover;
}

#footer .footer-top-btn p {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

@media (max-width: 1200px) {
  #footer {
    padding: 35px 0;
  }

  #footer .footer_logo {
    font-size: 1.5rem;
  }

  #footer .footer_menu .family-site {
    width: 140px;
    text-indent: 8px;
  }
  
  #footer .footer-top-btn {
    right: 10px;
    width: 65px;
    height: 65px;
  }

  #footer .footer-top-btn i {
    width: 18px;
    height: 22px;
  }

  #footer .footer-top-btn p {
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  #footer {
    padding: 30px 0;
  }

  #footer .footer_logo {
    font-size: 1.4rem;
  }

  #footer .footer-container {
    font-size: 1.3rem;
  }

  #footer .footer_menu ul {
    width: 600px;
    margin: 0 0 15px;
  }

  #footer .footer_menu ul li {
    position: relative;
    width: 48%;
    margin: 0 10px 10px 0;
  }

  #footer .footer_menu ul li::after {
    position: absolute;
    top: 50%;
    left: 90%;
    transform: translateY(-50%);
    margin: 0;
  }

  #footer .footer_menu ul li:nth-of-type(2)::after {
    display: none;
  }

  #footer .footer_menu .family-site {
    width: 130px;
  }

  #footer .footer_menu .family-site p i {
    margin: 0 0 0 10px;
  }
  
  
  #footer .footer_copyright .footer_privacy,
  #footer .footer_copyright .footer_terms {
    font-size: 1.3rem;
  }

  #footer .footer-top-btn {
    right: 10px;
    width: 55px;
    height: 55px;
  }

  #footer .footer-top-btn i {
    width: 15px;
    height: 19px;
  }

  #footer .footer-top-btn p {
    font-size: 1.4rem;
  }
}

@media(max-width:991px) {
  #footer .mo {
    display: block;
  }
}

@media (max-width: 768px) {
  #footer {
    padding: 25px 0;
  }

  #footer .footer-container {
    font-size: 1.2rem;
  }

  #footer .footer_menu ul {
    margin: 0 0 12px;
  }

  #footer .footer_menu ul li {
    width: 100%;
  }

  #footer .footer_menu ul li::after {
    display: none;
  }

  #footer .footer_menu .family-site {
    top: -32px;
    width: 120px;
  }

  #footer .footer_copyright {
    justify-content: space-between;
  }

  #footer .footer_copyright p {
    margin: 0;
  }

  #footer .footer_copyright .footer_terms {
    margin: 0 0 0 15px;
  }
    
  #footer .footer-top-btn {
    top: -5px;
    right: 10px;
    width: 50px;
    height: 50px;
  }

  #footer .footer-top-btn i {
    width: 10px;
    height: 14px;
  }

  #footer .footer-top-btn p {
    font-size: 1.3rem;
  }
}

@media (max-width: 500px) {
  #footer {
    padding: 20px 0;
  }

  #footer .footer-container {
    font-size: 1.1rem;
  }

  #footer .footer_menu .family-site {
    width: 110px;
  }

  #footer .footer_copyright {
    flex-direction: column-reverse;
    align-items: start;
  }

  #footer .footer_copyright .privacy_wrap {
    margin: 0 0 10px;
  }
    
  #footer .footer-top-btn {
    top: 75%;
    right: 10px;
    transform: translateY(-100%);
    width: 45px;
    height: 45px;
  }

  #footer .footer-top-btn i {
    width: 9px;
    height: 13px;
  }

  #footer .footer-top-btn p {
    font-size: 1.2rem;
  }
}


/* ----- S: Modal  -----*/
.bbs-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  display: none;
  visibility: hidden;
  transition: all .3s ease-out;
}

.bbs-modal .modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1310px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.bbs-modal .modal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-height: none;
  height: 100%;
  width: 100%;
  max-height: calc(100% - 160px);
}

.bbs-modal .modal-content {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.bbs-modal .modal-content .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  transform: rotate(45deg);
  z-index: 10;
  cursor: pointer;
}

.bbs-modal .modal-content .close::after, 
.bbs-modal .modal-content .close::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  background-color: #fff;
}

.bbs-modal .modal-content .close::after {
  width: 100%;
  height: 2px;
}

.bbs-modal .modal-content .close::before {
  width: 2px;
  height: 100%;
}

.bbs-modal .modal-content .title {
  margin-bottom: 20px;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.bbs-modal .con-area {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 20px;
}

.bbs-modal .con-area .text-area {
  width: 100%;
  padding: 20px;
  height: 450px;
  overflow: auto;
  border: 1px solid #acacac;
}

.bbs-modal .con-area .text-area p {
  font-size: 1.8rem;
  line-height: 1.4;
}

.bbs-modal .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.bbs-modal.open {
  display: flex;
  align-items: center;
  visibility: visible;
}

@media(max-width:1200px) {
  .bbs-modal .modal-content .close {
    width: 30px;
    height: 30px;
  }

  .bbs-modal .modal-content .title {
    margin-bottom: 15px;
    font-size: 2.8rem;
  }
  
  .bbs-modal .con-area {
    padding: 15px;
  }
  
  .bbs-modal .con-area .text-area {
    padding: 15px;
    height: 400px;
  }
  
  .bbs-modal .con-area .text-area p {
    font-size: 1.8rem;
  }
}

@media(max-width:1024px) {
  .bbs-modal .modal-content .close {
    width: 28px;
    height: 28px;
  }

  .bbs-modal .modal-content .title {
    margin-bottom: 12px;
    font-size: 2.4rem;
  }
  
  .bbs-modal .con-area {
    padding: 12px;
  }
  
  .bbs-modal .con-area .text-area {
    padding: 15px;
    height: 350px;
  }
  
  .bbs-modal .con-area .text-area p {
    font-size: 1.6rem;
  }
}

@media(max-width:768px) {
  .bbs-modal .modal-content .close {
    width: 25px;
    height: 25px;
  }

  .bbs-modal .modal-content .title {
    margin-bottom: 12px;
    font-size: 2.2rem;
  }
  
  .bbs-modal .con-area .text-area {
    height: 300px;
  }
  
  .bbs-modal .con-area .text-area p {
    font-size: 1.4rem;
  }
}

@media(max-width:500px) {
  .bbs-modal .modal-content .close {
    width: 23px;
    height: 23px;
  }

  .bbs-modal .modal-content .title {
    margin-bottom: 10px;
    font-size: 2rem;
  }
  
  .bbs-modal .con-area .text-area {
    height: 250px;
  }
  
  .bbs-modal .con-area .text-area p {
    font-size: 1.3rem;
  }
}
/* ----- E: Modal  -----*/