@charset "utf-8";

/* Header
--------------------------------------------- */
.site-header {
  position: absolute;
  width: 100%;
  max-width: 1440px;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.site-header h1 {
  height: 50px;
}

.site-header h1 a {
  display: block;
  background: url(../images/main/site-logo.png) 0 / 320px;
  width: 320px;
  height: 55px;
  font-size: 0;
  text-indent: -200%;
  overflow: hidden;
}

.light .site-header h1 a {
  background-image: url(../images/main/site-logo-light.png);
}

nav.site-nav > ul {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
}

nav.site-nav > ul > li {
  cursor: pointer;
}

nav.site-nav > ul > li > a {
  display: block;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 12px;
  transition: color .1s ease;
}

nav.site-nav > ul > li > a::after {
  border: solid #333;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  content: "";
  margin-left: 10px;
  vertical-align: 3px;
}

.light .site-header nav.site-nav > ul > li > a {
  color: #FFF;
}

.light .site-header nav.site-nav > ul > li > a::after {
  border-color: #FFF;
}

.site-header nav.site-nav > ul > li.on > a, 
.site-header nav.site-nav > ul > li:hover > a {
  color: var(--primary);
}

.light .site-header nav.site-nav > ul > li.on > a, 
.light .site-header nav.site-nav > ul > li:hover > a {
  color: rgb(255 255 255 / 60%);
}

.site-header nav.site-nav > ul > li.on > a::after, 
.site-header nav.site-nav > ul > li:hover > a::after {
  border-color: var(--primary);
}

.light .site-header nav.site-nav > ul > li.on > a::after, 
.light .site-header nav.site-nav > ul > li:hover > a::after {
  border-color: rgb(255 255 255 / 60%);
}

.site-header nav.site-nav > ul > li.alone > a::after {
  display: none;
}

.site-header nav.site-nav > ul > li > a.btn-top-download {
  color: #333;
  font-size: 14px;
  line-height: 1.0;
  padding: 10px 12px;
  border: 1px solid #333;
  border-radius: 6px;
  transition: color .2s ease, background-color .2s ease;
}

.site-header nav.site-nav > ul > li > a.btn-top-download:hover {
  color: #fff;
  background-color: var(--dark);
}

.light .site-header nav.site-nav > ul > li > a.btn-top-download {
  color: #FFF;
  border-color: #FFF;
}

.light .site-header nav.site-nav > ul > li > a.btn-top-download:hover {
  color: #333;
  background-color: #FFF;
}

.site-header nav.site-nav > ul > li > ul.sub-nav {
  position: absolute;
  left: 50%;
  width: 240px;
  max-width: 240px;
  border-radius: 12px;
  background-color: rgb(255 255 255 / 95%);
  transform: translateX(-50%);
  padding: 10px 14px;
  box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.12);
  visibility: hidden;
  opacity: 0;
}

.site-header nav.site-nav > ul > li:hover > ul.sub-nav {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: visibility .3s ease,  opacity .3s ease;
} 

ul.sub-nav li a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--dark);
  padding: 12px 4px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #E8E8E8;
  transition: color .15s ease;
}

ul.sub-nav li a span {
  color: var(--text);
  font-size: 12.5px;
  font-weight: 400;
  transition: color .15s ease;
}

ul.sub-nav li a:hover {
  color: var(--primary);
}

 ul.sub-nav li a:hover span {
  color: rgb(120 195 198 / 69%);
 }

ul.sub-nav li:last-child a {
  border-bottom-width: 0;
}

.site-header-mobile, .mobile-screen {
  display: none;
}

/* Footer
--------------------------------------------- */
.site-footer {
  width: 100%;
  background-color: #222;
}

.footer-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 0;
}

.footer-column {
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  margin-bottom: 28px;
}

.footer-address {
  display: flex;
  gap: 12px 18px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-address span {
  display: inline-block;
  color: #e9e9e9;
  font-size: 14px;
}

.footer-address span em {
  color: #9A9B9C;
  display: inline-block;
  margin-right: 0.5em;
}

.footer-link {
  display: flex;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 6px 0;
}

.footer-link a {
  display: inline-block;
  color: #e9e9e9;
  font-size: 14px;
}

.footer-link a:hover {
  text-decoration: underline;
}

.footer-link a::after {
  display: inline-block;
  width: 2px;
  height: 2px;
  background-color: #FFF;
  border-radius: 2px;
  content: "";
  vertical-align: middle;
  margin: .8em; 
}

.footer-link a:last-child::after {
  visibility: hidden;
}

.footer-cert {
	display: flex;
	gap: 12px;
	margin-top: 1rem;
}
  
.footer-btn-group {
  display: flex;
  gap: 12px;
}

.footer-btn {
  display: inline-block;
  color: #FFF;
  font-size: 13px;
  line-height: 1.0;
  padding: 10px;
  border: 1px solid #FFF;
  border-radius: 6px;
}

.footer-btn:hover {
  background-color: #FFF;
  color: #333;
}

.site-info p {
  color: #888;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 4px;
  word-break: keep-all;
}

.footer-cs-call {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.footer-cs-title {
  display: flex;
  gap: 12px;
  color: #9A9B9C;
  font-size: 15px;
  font-weight: 600;
  align-items: center;
}

.footer-cs-content {
  margin-top: -6px;
}

.footer-cs-number {
  display: block;
  color: #FFF;
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.footer-cs-content.footer-bank {
  margin-top: 0;
}

.footer-cs-content.footer-bank p {
  color: #9A9B9C;
  font-size: 14px;
}

.footer-cs-content.footer-bank p:not(:last-child) {
  margin-bottom: .5em;
}

.footer-cs-content.footer-bank .bank-number {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
}

.footer-rights {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 18px;
  border-top: 1px solid #666666;
}

.footer-rights p {
  color: #9A9B9C;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fix-bottom {
  position: fixed;
  right: 32px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.fix-bottom a {
  display: block;
  width: 58px;
  height: 58px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.1);
}

.fix-bottom.fix-abs {
  position: absolute;
  top: -102px;
}

.circle-kakao {
  background: #FDDF25 url(../images/main/ico-kakao.png) 50% no-repeat;
}

.circle-top {
  background: #FFF url(../images/main/ico-go-top.png) 50% no-repeat;
}

/* Slider
--------------------------------------------- */
.hero-section {
  width: 100%;
  height: 85vh;
  max-height: 900px;
  background-color: #333;
}

.hero-typography {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 32px;
  z-index: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.load-hide .hero-typography-lg {
  opacity: 0;  
}

.hero-typography-lg {
  opacity: 1;
  color: #FFF;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2em;
  text-align: center;
  letter-spacing: 0.02em;
  transition: opacity 2.0s ease;
  transition-delay: .5s;
}

.hero-typography-lg span {
  display: inline-block;
  color: #FFF;
}

.hero-typography-lg span::after {
  display: block;
  position: absolute;
  top: -0.5em;
  left: 25%;
  width: 35px;
  height: 32px;
  background: url(../images/front/ico-typo-check.svg) 0 no-repeat;
  content: "";
}

.load-hide .hero-typography-xs {
  opacity: 0;
  top: 20px;
}

.hero-typography-xs {
  color: #FFF;
  font-size: 32px;
  top: 0;
  opacity: 1;
  transition: opacity 1.2s ease, top 0.8s cubic-bezier(0.41, 0.11, 0.59, 1);
  transition-delay: 1.0s;
}

.hero-slider {
  height: 100%;
  margin-bottom: 0 !important;
  visibility: hidden;
}

.hero-slider.slick-slider .slick-track, 
.hero-slider.slick-slider .slick-list {
  height: 100%;
}

.hero-slider .slick-slide {
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-size: cover;
}

.hero-slider .slide-001 {
  background-image: url(../images/front/slide-001.jpg);
}

.hero-slider .slide-002 {
  background-image: url(../images/front/slide-002.jpg);
}

.hero-slider .slide-003 {
  background-image: url(../images/front/slide-003.jpg);
}

.slide-paging {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 100%;
  z-index: 1;
}

.slide-paging .slick-dots {
  position: relative;
  display: flex;
  bottom: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.slide-paging .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.slide-paging .slick-dots li button {
  width: 16px;
  height: 4px;
  padding: 0px;
  border-radius: 2px;
  background-color: rgba(255 255 255 / 30%);
  border: none;
}

.slide-paging .slick-dots li.slick-active button {
  width: 38px;
  background-color: #FFF;
}

.hero-typo {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #FFF;
  font-size: 24px;
  text-align: center;
  z-index: 10;
  padding: 0 1.0em;
}

.say-slide-container {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 80px;
  padding-bottom: 48px;
}

.slick-dotted.say-slider {
  margin-bottom: 0;
}

.say-slider.slick-slider .slick-track {
  display: flex;
  padding-bottom: 48px;
}

.say-btn-group {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.say-btn {
  display: block;
  width: 68px;
  height: 68px;
  cursor: pointer;
  text-indent: -200%;
  border-radius: 50%;
  background: var(--primary);
  transition: background .2s ease;
  box-shadow: 0px 12px 18px 0px rgb(75 153 155 / 20%);
  overflow: hidden;
}

.say-btn::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 12px;
  transform: translate(-45%, -50%);
  background: url(
  ../images/front/ico-slide-arrow.svg) 50% no-repeat;
  content:
  "";
}

.say-btn.say-prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.say-btn:hover {
  background-color: var(--dark);
}
.paging-circle {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  bottom: 0;
}

.paging-circle .slick-dots {
  position: relative;
  display: flex;
  bottom: 0;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.paging-circle .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background-color: #FFF;
  border: 1px solid var(--dark);
}

.paging-circle .slick-dots li.slick-active button {
  background-color: var(--primary);
  border-color: var(--primary);
}


/* Responesive
--------------------------------------------- */

/** Notebook 1536px **/
@media screen and (max-width: 1536px) {
  /* Nav */
  .site-header, .footer-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Say */
  .say-btn-group {
    padding: 0 24px;
  }

}

/** HD 1280px **/
@media screen and (max-width: 1280px) {
  /* say */
  .say-slider .say-slide-card.slick-slide {
    margin: 0 24px
  }
}

/** Apple iPad Pro 12.9 1024px **/
@media screen and (max-width: 1024px) {
  .site-header {
    display: none;
  }

  .site-header-mobile {
    display: block;
    width: 100%;
    z-index: 2001;
    position: fixed;
    top: 0;
  }

  .site-header-mobile.fix {
    position: fixed;
    top: 0;
  }

  html.nav-open, body.nav-open {
    overflow: hidden;
  }

  html.nav-open .mobile-header h1.mobile-logo {
    display: none;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: #FFF;
  }

  .mobile-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    z-index: 10;
    height: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) -202%, rgba(0, 0, 0, 0) 32%);
  }

  .nav-open .mobile-header::after {
    display: none;
  }

  .nav-open .mobile-header {
    border-bottom-width: 0;
    background-color: transparent;
  }

  .mobile-header h1.mobile-logo {
    padding-left: 12px;
  }

  .site-header-mobile h1.mobile-logo a img {
    display: block;
    height: 28px;
  }

  .mob-toggle {
    position: absolute;
    top: 12px;
    right: 10px;
    width: 34px;
    height: 30px;
    padding: 6px;
    z-index: 9000;
    font-size: 24px;
  }

  .mob-toggle:before, .mob-toggle:after {
    background-color: var(--dark);
    content: '';
    display: block;
    height: 2px;
    transition: all 0.15s ease-in-out;
  }

  .mob-toggle:before {
    box-shadow: 0 7px 0 0px var(--dark);
    margin-bottom: 12px;
  }

  .mob-toggle--active:before {
    background-color: var(--dark);
    box-shadow: 0 0 0 var(--dark);
    transform: translateY(6px) rotate(45deg);
  }

  .mob-toggle--active:after {
    background-color: var(--dark);
    transform: translateY(-8px) rotate(-45deg);
  }

  .mob-toggle:hover {
    cursor: pointer;
  }

  .mobile-screen {
    display: block;
    position: fixed;
    z-index: 2000;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    padding-top: 50px;
    opacity: 0;
    visibility: hidden;
    background-color: #FFF;
  }

  .mobile-screen--open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-container {
    height: calc(100vh - 50px);
    padding: 24px;
    overflow-y: auto;
  }

  .mobile-screen__symbol {
    margin: 16px auto 48px auto;
    color: var(--dark);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
  }

  .mobile-menu {
    border-bottom: 1px solid transparent;
  }

  .mobile-menu > a {
    display: block;
    padding: 16px 8px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
  }

  .mobile-menu ul.mobile-menu-sub {
    display: none;
    margin: 0 12px 16px 12px;
  }

  .mobile-menu ul.mobile-menu-sub li a {
    display: block;
    color: var(--text);
    font-size: 16px;
    padding: 8px 0;
  }

  .mobile-menu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu.alone > a::after {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/main/ico-arrow-right.svg) 0;
    background-size: 24px;
    content: "";
  }

  .mobile-menu.has-sub > a::after {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/main/ico-fold.svg) 0;
    background-size: 24px;
    content: "";
  }

  .mobile-menu.has-sub > a.fold::after {
    background: url(../images/main/ico-unfold.svg) 0 no-repeat;
  }

  .btn-mobile-download {
    display: block;
    width: 132px;
    margin: 32px auto;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.0;
    padding: 18px 32px;
    border-radius: 6px;
    background-color: var(--dark);
    box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.2);
  }

  /* Footer */
  .footer-column {
    flex-direction: column;
    gap: 48px;
  }

  .footer-cs-call {
    margin-bottom: 32px;
  }

  #page-up {
    display: none
  }

  .fix-bottom {
    right: 16px;
  }

  .fix-bottom.fix-abs {
    top: -29px;
  }

  /* Home */
  .hero-section {
    height: 60vh;
    margin-top: 50px;
  }

  .hero-typography {
    padding: 0 24px;
    gap: 18px;
  }

  .hero-typography-lg {
    font-size: 48px;
  }

  .hero-typography-lg span::after {
    top: -0.8em;
  }

  .hero-typography-xs {
    font-size: 21px;
  }

}

/** Tablet Apple iPad Pro 11 834px **/
@media screen and (max-width: 834px) {
  /* Home */
  .hero-section {
    height: 50vh;
  }

  .hero-typography-lg span::after {
    display: none;
  }

  .say-slide-container {
    padding-top: 38px;
    padding-bottom: 32px;
  }
}

/** Tablet 640px or landscape **/
@media screen and (max-width: 640px) {
  /* Footer */
  .footer-content {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .footer-column {
    gap: 32px 0;
  }

  .footer-logo {
    width: 100px;
    margin-bottom: 16px;
  }

  .footer-address {
    gap: 8px 12px;
  }

  .footer-address span, .footer-link a {
    font-size: 12px;
  }

  .footer-cs-call {
    margin-bottom: 24px;
    gap: 0 16px;
  }

  .footer-cs-title {
    font-size: 12px;
    flex-shrink: 0;
    gap: 8px;
  }

  .footer-cs-title img {
    display: none;
  }

  .footer-cs-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-btn {
    font-size: 12px;
    padding: 8px 10px;
  }

  .footer-cs-number {
    font-size: 20px;
    margin-bottom: 0;
  }

  .footer-cs-content.footer-bank p:not(:last-child) {
    margin-bottom: 0;
  }

  .footer-cs-content.footer-bank p {
    font-size: 12px;
  }

  .footer-cs-content.footer-bank .bank-number {
    font-size: 16px;
  }

  .footer-cs-content.footer-bank {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .footer-rights {   
    flex-direction: column;    
    align-items: center;    
    gap: 16px;
  }

  .footer-rights p {
    font-size: 10px;
  }

  /* Home */
  .hero-typography-lg {
    font-size: 32px;
    word-break: keep-all;
  }

  .hero-typography-xs {
    font-size: 16px;
  }

  .intro-screen img {
    width: 80%;
  }

}

/** Mobile iPhone Pro 12 Max 428px **/
@media screen and (max-width: 428px) {
  /* Home */
  .hero-section {
    height: 50vh;
  }

  .slide-paging {
    bottom: 16px;
  }

  .say-btn-group {
    display: none;
  }
}