:root {
  --color-main: #255CA7;
  --color-sub: #1EB9EE;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-pretendard: 'Pretendard', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --gradient: linear-gradient(90deg, #255CA7 0%, #154595 100%);
}

.font45 {
  --fontsize: 4.5rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font60 {
  --fontsize: 6.0rem;
  font-size: var(--fontsize);
}

* {
  line-height: 1;
}

html,
body {
  width: 100%;
  max-width: 100%;
}

figure {
  margin: 0;
}

#wrap {
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  overflow: hidden;
}

.w1780 {
  width: 100%;
  height: 100%;
  max-width: 1780px;
  margin: 0 auto;
}

.w1600 {
  width: 100%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.w1400 {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.colorM {
  color: var(--color-main);
}

.colorS {
  color: var(--color-sub);
}

.ani {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.ani.down {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

.ani.up {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

.ani.left {
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
}

.ani.right {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
}

.ani.zoom {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 2.0s;
  transition: all 2.0s;
}

.ani.opacity {
  opacity: 0;
}

.ani.on.down, .ani.on.up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.ani.on.left, .ani.on.right {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.ani.on.zoom {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ani.on.opacity {
  opacity: 1;
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flexBox.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flexBox.end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flexBox.space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tabContents > div {
  position: absolute;
  top: -222222px;
  left: -222222px;
}

.tabContents > div.on {
  position: relative;
  top: auto;
  left: auto;
}

.paddingBox {
  padding: 150px 0;
}

.paddingBox.topX {
  padding: 0 0 150px;
}

.paddingBox.bottomX {
  padding: 150px 0 0;
}

.marginTop120 {
  margin-top: 120px;
}

.light {
  font-weight: 300;
}

.semi {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.menuButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menuButton span {
  display: block;
  width: 100%;
  height: 2px;
  background: #09357F;
}

header {
  width: 100%;
  height: 90px;
  position: relative;
}

header .headerBox {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav {
  margin: 0 40px 0 auto;
}

header .depth1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .depth1 > li > a {
  display: inline-block;
  color: #222;
  font-size: 1.8rem;
  padding: 0 40px;
}

header .menuOpen {
  width: 22px;
  height: 22px;
  gap: 8px 0;
}

header .menuOpen span:nth-child(2) {
  width: 14px;
}

.siteMap {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  display: none;
}

.siteMap .cover {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.siteMap .inner {
  width: 100%;
  max-width: 530px;
  height: 100%;
  background: var(--color-white);
  padding: 0 60px 0 50px;
  position: absolute;
  top: 0;
  right: -80%;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.siteMap .top {
  width: 100%;
  height: 90px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.siteMap .menuClose {
  width: 26px;
  height: 26px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.siteMap .menuClose span:first-child {
  -webkit-transform: translate(0, 1px) rotate(-45deg);
          transform: translate(0, 1px) rotate(-45deg);
}

.siteMap .menuClose span:last-child {
  -webkit-transform: translate(0, -1px) rotate(45deg);
          transform: translate(0, -1px) rotate(45deg);
}

.siteMap nav {
  padding: 60px 0;
}

.siteMap .depth1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px 0;
}

.siteMap .depth1 > li > a {
  color: #222;
  font-size: 3.8rem;
  font-weight: 600;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.siteMap .depth1 > li:hover > a, .siteMap .depth1 > li.on > a {
  color: #09357F;
}

.siteMap .depth2 {
  margin: 25px 0 0;
  display: none;
}

.siteMap .depth2 > li > a {
  color: #aaa;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 2.1;
}

.siteMap.on .inner {
  right: 0;
  opacity: 1;
}

.topButton {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  color: #222;
  font-size: 1.4rem;
  position: fixed;
  right: 35px;
  bottom: 30px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 1;
}

.topButton.absolute {
  position: absolute;
  top: -100px;
  bottom: auto;
}

footer {
  background: #1e222b;
  font-size: 1.6rem;
  padding: 70px 0 80px;
  position: relative;
}

footer * {
  color: rgba(255, 255, 255, 0.2);
}

footer .footerBox {
  gap: 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .contact,
footer .contact > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .contact {
  gap: 0 15px;
}

footer .contact > div {
  gap: 0 10px;
}

footer .contact span {
  color: var(--color-white);
}

footer .contact hr {
  width: 1px;
  height: 12px;
  background: #565964;
  border: none;
  margin: 0;
}

footer .copy {
  font-size: 1.8rem;
  font-family: var(--font-pretendard);
  margin: 25px 0 0;
}

footer .family {
  width: 240px;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 1;
}

footer .family > * {
  width: 100%;
}

footer .family button,
footer .family button > * {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

footer .family button {
  height: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: transparent;
  border: 1px solid #454a59;
  border-radius: 30px;
  font-size: 1.6rem;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .family button i {
  font-size: 2.2rem;
}

footer .family ul {
  background: #3e424e;
  border-radius: 20px;
  padding: 6px 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 70px;
  display: none;
}

footer .family ul li a {
  width: 100%;
  display: inline-block;
  color: var(--color-white);
  font-weight: 300;
  padding: 7px 30px;
}

footer .family.on button {
  background: #3e424e;
}

footer .family.on button span {
  color: var(--color-white);
}

footer .family.on button i {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
