@charset "utf-8";

img {max-width: 100%;}
div, p {word-break: keep-all}
.fade-up {
  opacity: 0;
  transition: all 0.8s ease-in-out;
  transform: translate3d(0, 100px, 0);
}
.fade-up.move-up {
  opacity: 1;
  transform: translateZ(0);
}
.fade-right {
  opacity: 0;
  transition: all 0.8s ease-in-out;
  transform: translate3d(-100px, 0, 0);
}
.fade-right.move-right {
  opacity: 1;
  transform: translateZ(0);
}
.fade-left {
  opacity: 0;
  transition: all 0.8s ease-in-out;
  transform: translate3d(100px, 0, 0);
}
.fade-left.move-left {
  opacity: 1;
  transform: translateZ(0);
}
.fade-in {
  opacity: 0;
  transition: all 0.5s ease-in;
}
.fade-in.fade-in-visible {
  opacity: 1;
}
.delay-100 {transition-delay: 0.1s;}
.delay-200 {transition-delay: 0.2s;}
.delay-300 {transition-delay: 0.3s;}
.delay-400 {transition-delay: 0.4s;}
.delay-500 {transition-delay: 0.5s;}

.obj-symbol {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}
.obj-symbol svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130vw;
  height: 130vw;
  transform: translate(-50%,-50%) rotate(0);
  transform-origin: center;
  transition: all 1s ease;
}
.intro {
  position: fixed;
  top: 0;
  left: 0;
  background: #002548;
  z-index: 50;
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}
.intro svg {
  width: 30vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: all 1s ease;
}
.scroll-down {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: opacity 0.5s ease;
  cursor: pointer;
}
.scroll-down img {
  transform: rotate(90deg) translate(-3px, 0);
  animation: scrollDown 0.8s ease-in-out 0s infinite alternate;
}
@keyframes scrollDown  {
  0% {transform: rotate(90deg) translate(-3px, 0);}
  100% {transform: rotate(90deg) translate(3px, 0);}
}
.go-insights {margin-top: 40px;}
.go-insights a {
  background: #5686bf;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 52px;
  transition: all .2s;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: fit-content;
}
.go-insights a::before {
  content:"";
  position:absolute;
  width:20px;
  height:20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  background:#2f5f9f;
  border-radius:50%;
  transition: transform .45s ease;
  z-index:0;
}
.go-insights a b {
  font-size: 20px;
  border-right: 1px solid rgba(255,255,255,0.3);
  width: calc(100% - 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  height: 100%;
  position: relative;
  z-index:1;
}
.go-insights a span {
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index:1;
}
.go-insights a:hover::before {transform: translate(-50%, -50%) scale(20);}

.main .txt {
  position: absolute;
  color: #fff;
  z-index: 5;
}
.main .txt h2 {
  font-size: 50px;
  margin-bottom: 40px;
  word-break: keep-all;
  font-family: "DM Serif Display", serif;
}
.main .txt h3 {
  font-size: 26px;
  font-weight: bold;
  word-break: keep-all;
  margin-bottom: 25px;
  font-family: "Pretendard";
}
.main .txt p {
  font-size: 20px;
  word-break: keep-all;
  line-height: 1.6;
}
.main .txt .note {
  font-size: 24px;
  margin-top: 30px;
  font-weight: bold;
}
.main .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main .img .img-inner {
  width: 100%;
  height: 100%;
}
.main .img .img-inner .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}
.main .bg {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}
.main .bg.visible {
  opacity: 1;
}
.main .symbol {
  display: none;
  position: absolute;
}
#section_1 .txt {
  width: 60%;
  left: 10%;
  bottom: 7%;
}
#section_1 .bg {
  left: 0;
  top: 0;
}
#section_1 .bg svg {
  width: auto;
  height: 100vh;
}
#section_1 .swiper-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  margin-top: 50px;
}
#section_1 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
  margin: 0;
  margin-right: 10px;
}
#section_1 .swiper-pagination-bullet:last-child {margin-right: 0;}
#section_1 .swiper-pagination-bullet-active {background: #fff;}
#section_2 .img {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1600px;
  margin: 0 auto;
}
#section_2 .img li {
  width: 50%;
  text-align: center;
}
#section_2 .img li .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
}
#section_2 .img li h4 {
  font-size: 36px;
  color: #002548;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: "Pretendard";
}
#section_2 .img li p {
  font-size: 20px;
  line-height: 1.5;
}
#section_2 .img li p span {
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
#section_2 .txt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20%;
  text-align: center;
}
#section_2 .txt p {
  font-size: 24px;
  font-weight: bold;
  color: #002548;
  line-height: 1.7;
}
#section_3 .txt {
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
}
#section_3 .bg {
  right: 0;
  top: 0;
}
#section_3 .bg svg {
  width: 50vw;
  height: 100vh;
}
#section_3 .bg svg path {fill: #5686bf;}
#section_4 h2 {
  font-size: 50px;
  color: #002548;
  margin-bottom: 80px;
  text-align: center;
  font-weight: bold;
  font-family: "Pretendard";
}
#section_4 .img {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  position: static;
  height: auto;
}
#section_4 .img li {
  width: calc((100% - 90px)/4);
  margin-right: 30px;
  text-align: center;
  background: #fff;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
#section_4 .img li:last-child {margin-right: 0;}
#section_4 .img li p {
  font-size: 25px;
  color: #555;
  margin-top: 30px;
  font-weight: bold;
  line-height: 1.4;
}
#section_4 .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
#section_4 .bg img {
  max-width: none;
  width: 100%;
}
#section_5 .txt {
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}
#section_5 .txt p span {display: block;}
#section_5 .bg {
  left: 0;
  top: 0;
}
#section_5 .bg svg {
  width: 64vw;
  height: 100vh;
}
#section_5 .bg svg path {fill: #1b9e85;}
#section_6 .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
#section_6 h3 {
  font-size: 30px;
  color: #002548;
  margin-bottom: 50px;
  font-family:'Pretendard', dotum, sans-serif;
  font-weight: bold;
  text-align: center;
}
#section_6 .map {
  border-right: 1px solid #ddd;
  padding-right: 100px;
  margin-right: 100px;
}
#section_6 .map ul {
  display: flex;
  flex-wrap: wrap;
}
#section_6 .map ul li {
  width: calc((100% - 60px)/2);
  margin-right: 60px;
  text-align: center;
}
#section_6 .map ul li:last-child {margin-right: 0;}
#section_6 .map ul li h4 {
  font-size: 24px;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
  font-family:'Pretendard', dotum, sans-serif;
  font-weight: bold;
  background: #f5f5f5;
  padding: 10px 30px;
  border-radius: 50px;
  display: inline-block;
}
#section_6 .map ul li .ico img {max-width: none;}
#section_6 .img {
  position: static;
  width: auto;
  height: auto;
}
#section_6 .img h3 {text-align: center;}
#section_6 .img ul li {
  text-align: center;
  margin-bottom: 30px;
}
#section_6 .img ul li:last-child {margin-bottom: 0;}
#section_6 .img li .ico img {
  max-height: 120px;
  max-width: 165px;
}
#section_6 .img li p {
  font-size: 20px;
  color: #555;
  font-weight: bold;
  margin-top: 20px;
}
#section_7 {background: #f1f5f8;}
#section_7 h2 {
  font-size: 50px;
  color: #002548;
  margin-top: 80px;
  margin-bottom: 50px;
  text-align: center;
  font-family: "DM Serif Display", serif;
}
#section_7 .board-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
#section_7 .tab-menu {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
#section_7 .tab-menu li {
  font-size: 25px;
  font-weight: bold;
  color: #9a9ea2;
  margin-right: 30px;
  cursor: pointer;
}
#section_7 .tab-menu li:last-child {margin-right: 0;}
#section_7 .tab-menu li.active {color: #002548;}
#section_7 .tab-content > div {display: none;}
#section_7 .tab-content > div.active {display: block}
#section_7 .board-list {border-top: 2px solid #002548;}
#section_7 .board-list li {border-bottom: 1px solid #dee0e1;}
#section_7 .board-list li a {
  padding: 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
}
#section_7 .board-list .subject {
  width: calc(100% - 100px);
  transition: all .2s;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
}
#section_7 .board-list .date {
  width: 100px;
  font-size: 16px;
  color: #8e9295;
}
#section_7 .board-list li a:hover .subject {
  color: #002548;
  text-decoration: underline;
}
#section_7 .gallery-list {
  display: flex;
  flex-wrap: wrap;
  border-top: 2px solid #002548;
  padding-top: 40px;
}
#section_7 .gallery-list li {
  width: calc((100% - 80px)/3);
  margin-right: 40px;
}
#section_7 .gallery-list li:last-child {margin-right: 0;}
#section_7 .gallery-list li a {display: block;}
#section_7 .gallery-list li .img {
  aspect-ratio: 767 / 551;
  overflow: hidden;
  width: 100%;
  position: relative;
  top: auto;
  left: auto;
  height: auto;
  background: #e6ebef;
}
#section_7 .gallery-list li .img::after {
  content: "";
  background: url(/img/assets/logotype_v4.svg) center / cover no-repeat;
  display: block;
  aspect-ratio: 200 / 14;
  max-width: 70%;
  opacity: 0.2;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: all .2s;
}
#section_7 .gallery-list li .img span {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  display: block;
  transition: all .2s;
  position: relative;
  z-index: 1;
}
#section_7 .gallery-list li:hover .img::after {  transform: translate(-50%,-50%) scale(1.1);}
#section_7 .gallery-list li:hover .img span {transform: scale(1.1)}
#section_7 .gallery-list li .subject {
  font-size: 18px;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
  margin-top: 25px;
}
#section_7 .gallery-list li .date {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 15px;
  display: block;
}
#section_7 .more-btn {
  width: 250px;
  height: 50px;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  background: #002548;
  margin: 50px auto 0;
  transition: all .2s;
}
#section_7 .more-btn:hover {background: #0f5996;}
#section_7 .more-btn span {
  position: relative;
  width: 12px;
  height: 12px;
  margin-left: 10px;
}
#section_7 .more-btn span::before {
  content: "";
  background: #fff;
  width: 12px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
}
#section_7 .more-btn span::after {
  content: "";
  background: #fff;
  width: 2px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
}
#section_8 .txt {
  left: 20%;
  top: 20%;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
#section_8 .txt ul {padding-left: 80px;}
#section_8 .txt ul li {
  margin-top: 5px;
  margin-bottom: 12px;
  font-size: 20px;
}
#section_8 .txt ul li b {color: #9fd9ed;}
#section_8 .bg {
  right: 0;
  top: 0;
}
#section_8 .bg svg {
  width: 102vw;
  height: 70vh;
  transform: skewY(-3deg);
}
#section_8 .bg svg path {fill: #4fadcf;}
@media (orientation: portrait) {
  .obj-symbol svg {
    width: 180vw;
    height: 180vw;
  }
  #section_1 .bg {
    top: auto;
    bottom: 0;
    left: -20%;
  }
  #section_1 .bg svg {
    height: 82vh;
    transform: skewX(-2deg);
  }
  #section_3 .bg {right: -10%;}
  #section_3 .bg svg {
    width: 57vw;
    transform: skewX(9deg);
  }
  #section_3 .txt,
  #section_5 .txt {
    top: 10%;
    transform: none;
  }
  #section_5 .bg {left: -7%;}
  #section_5 .bg svg {
    width: 85vw;
    height: 93vh;
    transform: skewX(-5deg);
  }
  #section_8 .bg svg {
    width: 110vw;
    height: 69vh;
    transform: scaleX(1.5);
  }
  #section_8 .txt {left: 6%}
}
@media all and (min-width: 1921px) {
  #section_3 .bg {right: 0;}
}
@media all and (max-width: 1720px) {
  #section_1 .txt {left: 6%;}
  #section_3 .txt {right: 8%;}
  #section_5 .txt {left: 6%;}
}
@media all and (max-width: 1600px) {
  #section_1 .bg {left: -5%;}
  #section_1 .bg svg {
    width: 87vw;
    transform: skewX(3deg);
  }
  #section_3 .txt {right: 11%;}
  #section_3 .bg {right: -2%;}
  #section_3 .bg svg {
    width: 53vw;
    transform: skewX(1deg);
  }
  #section_5 .bg svg {width: 69vw;}
  #section_8 .bg svg {height: 59vh;}
}
@media all and (max-width: 1400px) {
  #section_3 .txt {right: 6%;}
  #section_4 .img {
    max-width: 1200px;
  }
}
@media all and (max-width: 1400px) and (max-height: 820px) {
  #section_1 .txt {width: 50%;}
  #section_1 .txt p {font-size: 17px;}
}
@media all and (max-width: 1300px) {
  #section_6 .map {
    padding-right: 60px;
    margin-right: 60px;
  }
  #section_6 .map ul li .ico img {max-width: 100%;}
}
@media all and (max-width: 1199px) {
  .scroll-down {display: none;}
  .obj-symbol,
  .main .bg {display: none;}
  .main .symbol {
    display: block;
    font-size: 0;
    z-index: 2;
  }
  .main section {
    height: auto !important;
    padding-bottom: 100px;
  }
  .main .fp-tableCell {
    display: block !important;
    height: auto !important;
  }
  .main .img {
    position: relative;
    height: auto;
    top: auto;
    left: auto;
    aspect-ratio: 1199 / 800;
  }
  .main .txt {
    color: #111;
    padding: 0 50px;
    position: static;
    margin-top: 50px;
    transform: none !important;
  }
  .main .txt h2 {color: #002548}
  #section_1 .img .symbol {
    left: 0;
    bottom: 0;
    width: 88%;
    height: auto;
  }
  #section_1 .txt {width: 100%;}
  #section_1 .swiper-pagination {
    margin-top: 50px;
  }
  #section_1 .swiper-pagination-bullet {background: rgba(0,0,0,0.3);}
  #section_1 .swiper-pagination-bullet-active {background: #002548;}
  #section_2 .img {aspect-ratio: auto;}
  #section_2 .img li .ico {margin-bottom: 30px;}
  #section_2 .img li h4 {font-size: 24px;}
  #section_2 .txt {
    position: static;
    margin-bottom: 80px;
  }
  #section_3 .img .symbol {
    left: 0;
    bottom: -1%;
    width: auto;
    height: 102%;
  }
  #section_4 h2 {
    font-size: 40px;
    margin-bottom: 50px;
  }
  #section_4 .img {
    aspect-ratio: auto;
    padding: 0 30px;
  }
  #section_4 .img li {
    aspect-ratio: auto;
    padding: 50px 20px;
  }
  #section_4 .img li p {
    font-size: 20px;
    word-break: keep-all;
  }
  #section_5 .img .symbol {
    left: 0;
    top: -1%;
    width: auto;
    height: 102%;
  }
  #section_6 .inner {padding: 0 30px}
  #section_6 h3 {text-align: center !important;}
  #section_6 .map {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0 0 100px;
  }
  #section_6 .img {
    aspect-ratio: auto;
    width: 100%;
  }
  #section_6 .img ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  #section_6 .img ul li {
    width: 33.33%;
    margin: 0;
    padding: 0 20px;
  }
  #section_7 {padding: 120px 30px;}
  #section_7 h2 {
    font-size: 40px;
    margin: 0 0 50px;
  }
  #section_8 .img .symbol {
    left: 0;
    top: -1%;
    width: 100%;
    height: auto;
  }
  #section_8 .txt ul {
    width: 100%;
    padding: 0;
  }
  #section_8 .txt ul li b {color: #002548}
}
@media all and (max-width: 991px) {
  .main {padding-top: 80px;}
  #section_1 .txt p {min-height: 100px;}
  #section_2 .img {align-items: start;}
  #section_4 .img li {
    width: calc((100% - 30px) / 2);
    margin-bottom: 30px;
    padding: 30px 20px;
  }
  #section_4 .img li:nth-child(2n) {margin-right: 0;}
}
@media all and (max-width: 860px) {
  #section_1 .txt p {min-height: 130px;}
}
@media all and (max-width: 767px) {
  .go-insights a {height: 42px;}
  .go-insights a b {
    font-size: 16px;
    padding: 0 15px;
    width: calc(100% - 42px);
  }
  .go-insights a span {width: 42px;}
  .go-insights a img {width: 14px;}
  .main {padding-top: 50px;}
  .main section {padding-bottom: 80px;}
  .main .txt {
    padding: 0 15px;
    margin-top: 40px;
  }
  .main .txt h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .main .txt h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .main .txt p {
    font-size: 16px;
    line-height: 1.5;
  }
  .main .txt .note {
    font-size: 16px;
    margin-top: 20px;
  }
  #section_1 .txt p {min-height: 100px;}
  #section_1 .swiper-pagination {margin-top: 30px;}
  #section_1 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  #section_2 .img {padding: 0 20px;}
  #section_2 .img li:first-child {padding-right: 10px;}
  #section_2 .img li:last-child {padding-left: 10px;}
  #section_2 .img li .ico {margin-bottom: 20px;}
  #section_2 .img li .ico img {height: 80px;}
  #section_2 .img li h4 {font-size: 18px;}
  #section_2 .img li p {font-size: 16px;}
  #section_2 .img li p span {
    font-size: 16px;
    font-weight: bold;
  }
  #section_2 .txt {margin: 0 0 40px;}
  #section_2 .txt p {
    font-size: 16px;
    margin: 0;
  }
  #section_4 h2 {
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1.3;
  }
  #section_4 .img {
    padding: 0 15px;
    margin-bottom: -10px;
  }
  #section_4 .img li {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 20px;
  }
  #section_4 .img li img {height: 70px;}
  #section_4 .img li p {
    font-size: 16px;
    margin-top: 15px;
  }
  #section_6 h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  #section_6 .inner {padding: 0 15px;}
  #section_6 .map {margin-bottom: 50px;}
  #section_6 .map ul li {
    width: 100%;
    margin: 0 0 30px;
  }
  #section_6 .map ul li:last-child {margin-bottom: 0;}
  #section_6 .map ul li h4 {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 8px 15px;
  }
  #section_6 .map ul li .ico img {
    max-width: 350px;
    max-height: 380px;
  }
  #section_6 .img ul li {padding: 0 5px;}
  #section_6 .img li p {
    font-size: 16px;
    margin-top: 15px;
  }
  #section_6 .img li .ico {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #section_6 .img li .ico img {
    max-width: 80px;
    max-height: 60px;
  }
  #section_7 {padding: 80px 30px;}
  #section_7 h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  #section_7 .tab-menu {margin-bottom: 15px;}
  #section_7 .tab-menu li {
    font-size: 16px;
    margin-right: 15px;
  }
  #section_7 .board-list li a {
    padding: 12px 5px;
    font-size: 15px;
  }
  #section_7 .board-list .subject {
    width: calc(100% - 70px);
    padding-right: 20px;
  }
  #section_7 .board-list .date {
    font-size: 12px;
    width: 70px;
    text-align: right;
  }
  #section_7 .gallery-list {padding-top: 20px;}
  #section_7 .gallery-list li {
    width: 100%;
    margin: 0 0 30px;
  }
  #section_7 .gallery-list li:last-child {margin-bottom: 0;}
  #section_7 .gallery-list li .subject {
    font-size: 16px;
    margin-top: 15px;
  }
  #section_7 .gallery-list li .date {
    font-size: 12px;
    margin-top: 8px;
  }
  #section_7 .more-btn {
    width: 150px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin-top: 25px;
  }
  #section_8 .txt ul li {
    font-size: 16px;
  }
}
@media all and (max-width: 360px) {
  #section_1 .txt p {min-height: 120px;}
}