/* Reset */
*, *::before, *::after {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  color:#121212;
  font-family: "Pretendard Variable", "Wanted Sans",  "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 .3s ease forwards;
  opacity: 0;
  /* letter-spacing: -0.02em; */
}

html::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  font-size:1.6rem;
}

body.non-scroll {
  /* position: fixed;
  top: 0;
  left: 0; */
  height: 100vh;
  overflow: hidden;
  touch-action: none; 
}

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:#cecece;
}

@-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 .3s;
  transition: all ease .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: 1430px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
}


/* Wrap */
.wrap {
  /* padding-top:104px; */
}

.sub-wrap {
  padding-top: 90px;
}

@media screen and (max-width:1200px) {
  .wrap {
    padding-top:60px;
  }

  .sub-wrap {
    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) {

}

/* ----- S: Header ----- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all .3s ease-out;
  box-sizing: border-box;
}

#header::after {
  content: "";
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  /* height: 1px; */
  background-color: #fff;
  z-index: 99;
}

#header .h-container {
  max-width: 1430px;
  width: 100%;
  padding: 0 15px;
  height: 90px;
  margin: 0 auto;
}

/* Header Mobile */
#header .h-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 100000;
}

#header .h-mobile-btn {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

#header .h-mobile-btn span {
  position: relative;
  margin: 0 auto;
}

#header .h-mobile-btn span::before,
#header .h-mobile-btn span::after {
  content: "";
  position: absolute;
}

#header .h-mobile-btn span,
#header .h-mobile-btn span::before,
#header .h-mobile-btn span::after {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #191919;
}

#header .h-mobile-btn span::before {
  margin-top: -8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

#header .h-mobile-btn span::after {
  margin-top: 8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

#header .h-mobile-btn[aria-pressed="true"] span {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#header .h-mobile-btn[aria-pressed="true"] span::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  background-color: #191919;
  transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

#header .h-mobile-btn[aria-pressed="true"] span::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  background-color: #191919;
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}


/* header PC */
#header .h-inner {
  width: 100%;
  height: 100%;
}

#header .h-logo {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 197px;
  height: 39px;
  z-index: 99999;
}

#header .h-logo a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/en/img/inc/logo.svg');
  transition: all .3s ease-out;
}

#header .h-main {
  position: relative;
  max-width: 1430px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

#header .h-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#header .h-menu-list {
  height: 100%; 
  position: relative;
  transition: all .3s ease-out;
  /* padding: 0 40px; */
}

#header .h-menu-link  {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 50px;
  /* padding: 0 10px; */
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: #fff;
  transition: all .3s ease-out;
}

#header .h-menu-link h2 {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

#header .h-menu-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 0;
  height: 3px;
  background-color: #036eb8;
  transition: all .3s ease-out;
}

#header .h-submenu {
  height: 0;
  /* padding-top: 20px; */
  text-align: center;
  transition: opacity .3s ease-out;
  opacity: 0;
  overflow: hidden;
}

#header .h-submenu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 0 9px;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  transition: all .3s ease-out;
}

#header .h-background {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100%;
  height: 0;
  background-color: #fff;
  transition: opacity .3s ease-out;
}


/* 다국어 Language */
#header .language {
  position: absolute;
  top: 50%;
  right: 220px;
  z-index: 999;
  transform: translateY(-50%);
  width: 40px;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px;
  background-image: url('/en/img/inc/language-icon.svg');
  cursor: pointer;
}

#header .language .box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  top: calc(100% - 20px);
  width: 70px;
  height: 0;
  padding: 0 6px;
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
  transition: all .3s ease-out;
}

#header .language .box a {
  display: block;
  width: 100%;
  padding: 7px 0 6px;
  font-size: 1.6rem;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}

#header .language .box a:last-of-type {
  border-bottom: none;
}

/* 스크롤 이벤트(sticky) */
#header[data-header="sticky"] {
  top:-100px;
}

body.non-scroll #header[data-header="sticky"] {
  top: 0;
}

/* 스크롤, 호버 효과 */
#header.active,
#header.header-active ,
.sub-wrap #header {
  background-color: #fff;
}

#header.active::after,
#header.header-active::after {
  display: block;
}

#header.active .h-menu-link,
#header.header-active .h-menu-link,
.sub-wrap #header .h-menu-link {
  color: #191919;
}

#header.active .h-logo a,
#header.header-active .h-logo a,
.sub-wrap #header .h-logo a {
  background-image: url('/en/img/inc/logo-on.svg');
}



/* Header Mobile */
#header .h-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 100000;
}

#header .h-mobile-btn {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

#header .h-mobile-btn span {
  position: relative;
  margin: 0 auto;
}

#header .h-mobile-btn span::before,
#header .h-mobile-btn span::after {
  content: "";
  position: absolute;
}

#header .h-mobile-btn span,
#header .h-mobile-btn span::before,
#header .h-mobile-btn span::after {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #191919;
}

#header .h-mobile-btn span::before {
  margin-top: -8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

#header .h-mobile-btn span::after {
  margin-top: 8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

#header .h-mobile-btn[aria-pressed="true"] span {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#header .h-mobile-btn[aria-pressed="true"] span::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  background-color: #191919;
  transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

#header .h-mobile-btn[aria-pressed="true"] span::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  background-color: #191919;
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

.sub-wrap #header::after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  z-index: -1;
  background-color: #d2d2d2;
} 

@media(max-width:1550px) {
  #header .language {
    right: 32px;
  }
  
  #header .h-logo {
    left: 15px;
    width: 160px;
    height: 31px;
  }
  
  #header .h-menu-list {
    padding:  0 20px;
  }
  
    
  #header .h-menu-link  {
    padding: 0 10px;
  }
}

@media(min-width:1201px) {
  #header.header-active .language {
    background-image: url('/en/img/inc/language-icon-on.svg');
  }
  
  #header:hover::after {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    z-index: -1;
    background-color: #d2d2d2;
  }
  
  #header .h-menu-list.menu-active .h-menu-link::after {
    width: calc(100% - 80px);
    z-index: 3;
    transition: all .2s ease-out;
  }
  
    
  #header.menu-on .h-submenu {
    height: auto;
    padding-top: 20px;
    opacity: 1;
    visibility: visible;
  }

  #header.menu-on .h-submenu::after {
    max-height: 210px;
    opacity: 1;
    visibility: visible;
  }

  #header.menu-on .h-background {
    height: 210px;
    opacity: 1;
  }
  
  #header .language:hover .box {
    height: auto;
  }
}

@media(max-width:1200px) {
  #header .h-mobile {
    display: block;
  }
  
  
  #header .h-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 9999;
    background-color: #fff;
  }
  
  #header[data-header-mobile="on"] .h-main {
    right: 0;
    height: 100%;
    overflow: hidden;
    padding-bottom: 0;
  }

  /* #header[data-header-mobile="on"] .header-background {
    display:block;
  } */

  #header .h-menu-toggle[data-menu-link="true"]::before {
    background-color: #9cc813;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  #header .h-menu-toggle[data-menu-link="true"]::after {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  #header .h-container {
    height: 60px;
  }

  #header.menu-on .h-logo,
  #header .h-logo {
    left: 15px;
    width: 135px;
    height: 26px;
  }

  #header .h-logo a {
    background-image: url('/en/img/inc/logo-on.svg');
  }

  #header .h-mobile-btn span, 
  #header .h-mobile-btn span::before, 
  #header .h-mobile-btn span::after {
    background-color: #191919;
  }
  
  #header .h-mobile {
    display: block;
  }
  
  #header .h-main {
    display: block;
    z-index: 10000;
    position: fixed;
    top: 0;
    right: -100%;
    max-width: 500px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 65px 15px;
    -webkit-transition: all ease 0.35s;
    transition: all ease 0.35s;
    z-index: 999;
  }
  
  #header .h-menu {
    flex-direction: column;
    align-items: start;
    height: auto;
    margin-left: 0;
  }
  
  #header .h-menu-list {
    width: 100%;
    height: auto;
    padding: 0;
  }
  
  #header .h-menu-link {
    display: block;
    position: relative;
    justify-content:start;
    width: 100%;
    padding: 15px 0;
    font-size: 1.6rem;
    color:#191919;
  }

  #header .h-menu-toggle::before,
  #header .h-menu-toggle::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    width: 12px;
    margin-top: -1px;
    background-color: #1c2d56;
    /* background-color: #3b3b3b; */
    height: 2px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  #header .h-menu-toggle::before {
    right: 6px;
    z-index: 2;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 1;
  }

  #header .h-submenu  {
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 1;
    top: unset;
    left: unset;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    max-height: 0px;
    height: auto;
    overflow: hidden;
    padding: 0px 10px;
    margin: -15px 0px 15px;
    text-align: left;
    background-color: transparent;
    transition: all .3s ease-in;
  }
  
  #header .h-submenu li a {
    display: block;
    font-size: 1.4rem;
  }
  #header .h-submenu-container {
    flex-direction: column;
    align-items: start;
    width: 100%;
    padding: 0 15px;
    border-left: 1px solid #aeaeae;
  }
  
  #header .h-submenu-container li {
    width: 100%;
  }
  
  #header .h-menu-toggle[data-menu-link="true"] + .h-submenu {
    visibility: visible;
    opacity: 1;
    max-height: fit-content;
    margin: 0px;
    padding: 0 10px 5px;
    /* border-left: 1px solid #959595; */
  }
  
  #header .h-submenu-link {
    display: block;
    padding: 10px 2px 10px 10px;
    margin-bottom: 0;
    font-size: 1.4rem;
  }

  #header .h-submenu li:first-of-type .h-submenu-link {
    padding: 10px 2px 10px 10px;
  }
  
  #header .h-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  #header .h-submenu-toggle i {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #1c2d56;
    border-right: 1px solid #1c2d56;
    transform: rotate(45deg);
    transition: all .3s ease-out;
  }
  
  #header .h-submenu-toggle i::after,
  #header .h-submenu-toggle i::before {
    display: none;
  }
  
  #header .h-submenu-toggle[data-submenu-link="true"] i {
    transform: rotate(225deg);
  }
  
  #header .h-submenu-depth {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    position: relative;
    top: unset;
    left: unset;
    overflow: hidden;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    padding: 0px;
    max-height: 0;
    height: auto;
    text-align: left;
    background-color: transparent;
    transition: all .2s ease-out;
  }
  
  #header .h-submenu-toggle[data-submenu-link="true"] + .h-submenu-depth {
    max-height: fit-content;
    opacity: 1;
    padding: 5px 0;
  }

  #header .h-submenu-toggle[data-submenu-link="true"]::after  {
    transform: rotate(225deg);
  }
  
  #header .h-submenu-depth li {
    width: 100%;
    padding: 0 10px;
  }

  #header .h-submenu-depth li a {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  
  #header .h-member {
    right: 60px;
    z-index: 99999;
  }

  #header .h-member-menu {
    display: none;
  }

  #header .h-member-menu.mo {
    display: flex;
    margin-left: -10px;
    margin-top: 20px;
  }
  
  #header .h-member-menu.mo a {
    padding: 0 10px;
    font-size: 1.4rem;
    color: #191919;
  }
  
  #header .h-member-menu span {
    width: 1px;
    height: 15px;
    background-color: #191919;
  }
  
  #header .language {
    height: 60px;
    right: 60px;
    background-size: 35px;
  }
  
  #header .language.on .box {
    height: auto;
  }
  
  #header .language .box {
    width: 60px;
    top: 100%;
  }
  
  #header .language .box a {
    font-size: 1.4rem;
  }
  
}
/* ----- E:Header ----- */

/* ----- S:Footer ----- */
#footer {
  padding: 50px 0 48px;
  background-color: #005088;
}

#footer .f-container {
  max-width: 1430px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

#footer .f-inner {
  position: relative;
  padding-bottom: 18px;
}

#footer .f-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}

#footer .f-heading .logo {
  width: 288px;
  aspect-ratio: 5.052 / 1;
}

#footer .f-heading .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/en/img/inc/logo.svg');
}

#footer .f-heading .etc a, 
#footer .f-heading .etc button  {
  font-size: 1.8rem;
  color: #fff;
  vertical-align: middle;
}

#footer .f-heading .etc span {
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 16px;
  margin: 0 16px;
  background-color: #fff;
}

#footer .f-menu {
  display: flex;
  align-items: center;
  margin-left: -10px;
  margin-top: 27px;
}

#footer .f-menu li {
  padding: 0 10px;
  font-size: 1.8rem;
  color: #fff;
  border-right: 1px solid #fff;
}

#footer .f-menu li:last-of-type {
  border-right: none;
}

#footer .copy {
  margin-top: 9px;
  font-size: 1.6rem;
  color: #fff;
}

#footer .button-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}

@media(max-width:1280px) {
  #footer .f-menu {
    flex-direction: column;
    align-items: start;
    gap: 8px 0;
    margin-left: -10px;
    margin-top: 27px;
  }
  
  #footer .f-menu li {
    border: none;
  }
}

@media(max-width:1200px) {
  #footer {
    padding: 45px 0;
  }
  
  #footer .f-inner {
    padding-bottom: 18px;
  }
  
  #footer .f-heading {
    padding-bottom: 25px;
  }
  
  #footer .f-heading .logo {
    width: 250px;
  }
  
  #footer .f-heading .etc a, 
  #footer .f-heading .etc button  {
    font-size: 1.6rem;
  }
  
  #footer .f-heading .etc span {
    height: 14px;
    margin: 0 16px;
  }
  
  #footer .f-menu {
    margin-left: -10px;
    margin-top: 25px;
  }
  
  #footer .f-menu li {
    padding: 0 10px;
    font-size: 1.6rem;
  }
  
  #footer .copy {
    margin-top: 9px;
    font-size: 1.5rem;
  }
  
  #footer .button-top {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
}

@media(max-width:1024px) {
  #footer {
    padding: 40px 0;
  }
  
  #footer .f-inner {
    padding-bottom: 15px;
  }
  
  #footer .f-heading {
    padding-bottom: 20px;
  }
  
  #footer .f-heading .logo {
    width: 230px;
  }
  
  #footer .f-heading .etc a, 
  #footer .f-heading .etc button  {
    font-size: 1.5rem;
  }
  
  #footer .f-heading .etc span {
    height: 12px;
    margin: 0 10px;
  }
  
  #footer .f-menu {
    margin-left: -8px;
    margin-top: 20px;
  }
  
  #footer .f-menu li {
    padding: 0 8px;
    font-size: 1.5rem;
  }
  
  #footer .copy {
    margin-top: 9px;
    font-size: 1.4rem;
  }
  
  #footer .button-top {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
}

@media(max-width:768px) {
  #footer {
    padding: 35px 0;
  }
  
  #footer .f-inner {
    padding-bottom: 12px;
  }
  
  #footer .f-heading {
    flex-direction: column;
    align-items: start;
    gap: 10px 0;
    padding-bottom: 15px;
  }
  
  #footer .f-heading .logo {
    width: 200px;
  }
  
  #footer .f-heading .etc a, 
  #footer .f-heading .etc button  {
    font-size: 1.4rem;
  }
  
  #footer .f-heading .etc span {
    height: 10px;
    margin: 0 8px;
  }
  
  #footer .f-menu {
    margin-left: -5px;
    margin-top: 15px;
  }
  
  #footer .f-menu li {
    padding: 0 5px;
    font-size: 1.4rem;
  }
  
  #footer .copy {
    margin-top: 5px;
    font-size: 1.3rem;
  }
  
  #footer .button-top {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

@media(max-width:600px) {
  #footer .f-menu {
    flex-direction: column;
    align-items: start;
    gap: 8px 0;
    margin-left: 0;
  }
  
  #footer .f-menu li {
    padding: 0;
    border-right: none;
  }
}

@media(max-width:500px) {
  #footer {
    padding: 30px 0;
  }
  
  #footer .f-inner {
    padding-bottom: 0;
  }
  
  #footer .f-heading {
    padding-bottom: 15px;
  }
  
  #footer .f-heading .logo {
    width: 180px;
    margin-bottom: 10px;
  }
  
  #footer .f-heading .etc a, 
  #footer .f-heading .etc button  {
    font-size: 1.3rem;
  }
  
  #footer .f-heading .etc a {
    display: inline-block;
  }
  
  #footer .f-heading .etc span {
    height: 8px;
    margin: 0 5px;
  }
  
  #footer .f-menu {
    gap: 5px 0;
    margin-top: 15px;
    align-items: center;
  }
  
  #footer .f-menu li {
    text-align: center;
    font-size: 1.3rem;
  }
  
  #footer .copy {
    font-size: 1.2rem;
    text-align: center;
  }
  
  #footer .button-top {
    position: unset;
    width: 40px;
    height: 40px;
    margin: 20px auto 0;
    font-size: 1.2rem;
  }
}

/* ----- E:Footer ----- */



/* ----- S: Modal ----- */
.bbs-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  padding: 15px;
  display: none;
  visibility: hidden;
  transition: all .3s ease-out;
}


.bbs-modal .modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  min-height: calc(100% - 160px);
  max-height: calc(100% - 160px);
  margin: 0 auto;
}

.bbs-modal .modal-inner {
  position: relative;
  max-height: none;
  height: 100%;
  width: 100%;
}

.bbs-modal .modal-content {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.bbs-modal .modal-content .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  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: #bbbbbb;
}

.bbs-modal .modal-content .close::after {
  width: 100%;
  height: 1px;
}

.bbs-modal .modal-content .close::before {
  width: 1px;
  height: 100%;
}

.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.5);
  cursor: pointer;
}

.bbs-modal.open {
  display: flex;
  align-items: center;
  visibility: visible;
}

@media(max-width:1200px) {
  .bbs-modal .modal-content .close {
    width: 20px;
    height: 20px;
  }
  
}

@media(max-width:768px) {
  .bbs-modal .modal-content .close {
    width: 15px;
    height: 15px;
  }
  
}
/* ----- E: Modal ----- */

/* ----- S: Modal Terms ----- */
.bbs-modal-privacy .modal-inner,
.bbs-modal-information .modal-inner, 
.bbs-modal-ethics .modal-inner {
  background-color: #fff;
  padding: 40px 31px;
}

.bbs-modal-privacy .title,
.bbs-modal-information .title,
.bbs-modal-ethics .title {
  width: 100%;
  margin-bottom: 19px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #005088;
}

.bbs-modal-privacy .title p,
.bbs-modal-information .title p,
.bss-modal-ethics .title p {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

.bbs-modal-privacy .text-area,
.bbs-modal-information .text-area,
.bbs-modal-ethics .text-area {
  height: 480px;
  overflow-y: auto;
  padding: 16px 0;
  margin-bottom: 30px;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

.bbs-modal-privacy .text-area p,
.bbs-modal-information .text-area p,
.bbs-modal-ethics .text-area p {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.bbs-modal-privacy .text-area p:last-of-type,
.bbs-modal-information .text-area p:last-of-type,
.bbs-modal-ethics .text-area p:last-of-type {
  margin-bottom: 0;
}

.bbs-modal-privacy .close-check,
.bbs-modal-information .close-check,
.bbs-modal-ethics .close-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 45px;
  margin: 0 auto;
  background-color: #092956;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
}

.bbs-modal .text-area h3 {
  margin: 10px auto;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 700;
}

.bbs-modal .text-area h4 {
  margin: 10px 0;
  font-size: 2rem;
  font-weight: 600;
}

.bbs-modal .text-area p.dot {
  padding-left: 15px;
}

.bbs-modal .text-area p.dot2 {
  padding-left: 25px;
}
@media(max-width:1200px) {
  
  .bbs-modal-privacy .modal-inner,
  .bbs-modal-information .modal-inner, 
  .bbs-modal-ethics .modal-inner {
    padding: 35px 25px;
  }

  .bbs-modal-privacy .title,
  .bbs-modal-information .title,
  .bbs-modal-ethics .title {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  
  .bbs-modal-privacy .text-area,
  .bbs-modal-information .text-area,
  .bbs-modal-ethics .text-area {
    max-height: 400px;
    padding: 16px 0;
    margin-bottom: 25px;
  }
  
  .bbs-modal-privacy .text-area p,
  .bbs-modal-information .text-area p,
  .bbs-modal-ethics .text-area p {
    font-size: 1.5rem;
  }
  
  .bbs-modal-privacy .close-check,
  .bbs-modal-information .close-check,
  .bbs-modal-ethics .close-check {
    width: 185px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .bbs-modal .text-area h3 {
    font-size: 2rem;
  }
  
  .bbs-modal .text-area h4 {
    font-size: 1.8rem;
  }
  
  .bbs-modal .text-area p.dot {
    padding-left: 13px;
  }
  
  .bbs-modal .text-area p.dot2 {
    padding-left: 23px;
  }
}

@media(max-width:1024px) {
  .bbs-modal-privacy .modal-inner,
  .bbs-modal-information .modal-inner, 
  .bbs-modal-ethics .modal-inner {
    padding: 30px 20px;
  }
  
  .bbs-modal-privacy .title,
  .bbs-modal-information .title,
  .bbs-modal-ethics .title {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
  
  .bbs-modal-privacy .text-area,
  .bbs-modal-information .text-area,
  .bbs-modal-ethics .text-area {
    max-height: 370px;
    padding: 12px 0;
    margin-bottom: 20px;
  }
  
  .bbs-modal-privacy .text-area p,
  .bbs-modal-information .text-area p,
  .bbs-modal-ethics .text-area p {
    font-size: 1.4rem;
  }
  
  .bbs-modal-privacy .close-check,
  .bbs-modal-information .close-check,
  .bbs-modal-ethics .close-check {
    width: 170px;
    height: 35px;
    font-size: 1.4rem;
  }
  
  .bbs-modal .text-area h3 {
    font-size: 1.8rem;
  }
  
  .bbs-modal .text-area h4 {
    font-size: 1.6rem;
  }
  
  .bbs-modal .text-area p.dot {
    padding-left: 10px;
  }
  
  .bbs-modal .text-area p.dot2 {
    padding-left: 20px;
  }
}

@media(max-width:768px) {
  .bbs-modal-privacy .modal-inner,
  .bbs-modal-information .modal-inner, 
  .bbs-modal-ethics .modal-inner {
    padding: 25px 15px;
  }
  
  .bbs-modal-privacy .title,
  .bbs-modal-information .title,
  .bbs-modal-ethics .title {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  
  .bbs-modal-privacy .text-area,
  .bbs-modal-information .text-area,
  .bbs-modal-ethics .text-area {
    max-height: 340px;
    padding: 10px 0;
    margin-bottom: 15px;
  }
  
  .bbs-modal-privacy .text-area p,
  .bbs-modal-information .text-area p,
  .bbs-modal-ethics .text-area p {
    font-size: 1.3rem;
  }
  
  .bbs-modal-privacy .close-check,
  .bbs-modal-information .close-check,
  .bbs-modal-ethics .close-check {
    width: 155px;
    height: 30px;
    font-size: 1.3rem;
  }
  
    
  .bbs-modal .text-area h3 {
    font-size: 1.6rem;
  }
  
  .bbs-modal .text-area h4 {
    font-size: 1.5rem;
  }
  
  .bbs-modal .text-area p.dot {
    padding-left: 10px;
  }
  
  .bbs-modal .text-area p.dot2 {
    padding-left: 18px;
  }
}

@media(max-width:500px) {
  .bbs-modal-privacy .modal-inner,
  .bbs-modal-information .modal-inner, 
  .bbs-modal-ethics .modal-inner {
    padding: 20px 12px;
  }
  
  .bbs-modal-privacy .title,
  .bbs-modal-information .title,
  .bbs-modal-ethics .title {
    font-size: 1.3rem;
  }
  
  .bbs-modal-privacy .text-area,
  .bbs-modal-information .text-area,
  .bbs-modal-ethics .text-area {
    max-height: 310px;
    margin-bottom: 12px;
  }
  
  .bbs-modal-privacy .text-area p,
  .bbs-modal-information .text-area p,
  .bbs-modal-ethics .text-area p {
    margin-bottom: 6px;
    font-size: 1.2rem;
  }
  
  .bbs-modal-privacy .text-area p:last-of-type,
  .bbs-modal-information .text-area p:last-of-type,
  .bbs-modal-ethics .text-area p:last-of-type {
    margin-bottom: 0;
  }
  
  .bbs-modal-privacy .close-check,
  .bbs-modal-information .close-check,
  .bbs-modal-ethics .close-check {
    width: 140px;
    font-size: 1.2rem;
  }
  
  .bbs-modal .text-area h3 {
    font-size: 1.5rem;
  }
  
  .bbs-modal .text-area h4 {
    font-size: 1.4rem;
  }
  
  .bbs-modal .text-area p.dot {
    padding-left: 8px;
  }
  
  .bbs-modal .text-area p.dot2 {
    padding-left: 15px;
  }
}
/* ----- E: Modal Terms ----- */