@charset "UTF-8";
html,
body {
  font-family: "Pretendard", sans-serif;
}

/* 공통 컨텐츠 font */
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("../font/pretendard/Pretendard-Thin.woff") format("woff");
  font-weight: 100;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("../font/pretendard/Pretendard-ExtraLight.woff") format("woff");
  font-weight: 200;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("../font/pretendard/Pretendard-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("../font/pretendard/Pretendard-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("../font/pretendard/Pretendard-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("../font/pretendard/Pretendard-SemiBold.woff") format("woff");
  font-weight: 600;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("../font/pretendard/Pretendard-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("../font/pretendard/Pretendard-ExtraBold.woff") format("woff");
  font-weight: 800;
}
/* Satoshi */
@font-face {
  font-family: "Satoshi";
  font-display: swap;
  font-style: normal;
  src: url("../font/Satoshi/Satoshi-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "Satoshi";
  font-display: swap;
  font-style: normal;
  src: url("../font/Satoshi/Satoshi-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Satoshi";
  font-display: swap;
  font-style: normal;
  src: url("../font/Satoshi/Satoshi-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Satoshi";
  font-display: swap;
  font-style: normal;
  src: url("../font/Satoshi/Satoshi-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Satoshi";
  font-display: swap;
  font-style: normal;
  src: url("../font/Satoshi/Satoshi-Black.woff") format("woff");
  font-weight: 900;
}
html,
body {
  background-color: #fff;
  font-size: 62.5%;
  color: #000;
}

body {
  overflow-x: hidden;
}

.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}

.pc_hidden {
  display: none !important;
}

.mo_hidden {
  display: block !important;
}

:root {
  --vh: 1vh;
}

#wrap {
  display: flex;
  flex-direction: column;
  min-height: calc(var(--vh, 1vh) * 100);
}
#wrap .content_wrap {
  position: relative;
  max-width: 175rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#wrap input,
#wrap textarea {
  font-family: "Pretendard", sans-serif;
}
#wrap .mask {
  overflow: hidden;
}
#wrap [data-aos=fade-up] {
  transform: translate3d(0, 30px, 0) !important;
}
#wrap [data-aos^=fade][data-aos^=fade].aos-animate {
  transform: translateZ(0) !important;
}
@keyframes slideUp {
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
#wrap .common_tit_wrap {
  overflow: hidden;
  padding: 2.8rem 0 9rem;
  border-bottom: 0.1rem solid #eaeaea;
}
#wrap .common_tit_wrap .content_wrap {
  display: flex;
  gap: 4.8rem;
  justify-content: space-between;
  align-items: flex-end;
}
#wrap .common_tit_wrap .content_wrap h2 .mask {
  display: inline-block;
  margin-right: 1.6rem;
}
#wrap .common_tit_wrap .content_wrap h2 .mask .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
  font-size: 8.6rem;
  font-weight: 600;
  line-height: 9.7rem;
  letter-spacing: -0.02em;
  color: #15181e;
}
#wrap .common_tit_wrap .content_wrap h2 .mask .text.text_gray {
  color: #b2b2b2;
}
#wrap .common_tit_wrap .content_wrap h2.active .mask .text {
  animation: slideUp 0.8s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}
#wrap .common_tit_wrap .content_wrap h2.active .mask .text.text_gray {
  animation-delay: 0.15s;
}
#wrap .common_tit_wrap .content_wrap .common_desc {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.17, 0.84, 0.44, 1) 0.4s;
  flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: rgba(21, 24, 30, 0.3);
  text-align: right;
}
#wrap .common_tit_wrap .content_wrap .common_desc.active {
  opacity: 1;
}

@media (max-width: 1280px) {
  #wrap .common_tit_wrap .content_wrap h2 .mask {
    margin-right: 1.2rem;
  }
  #wrap .common_tit_wrap .content_wrap h2 .mask .text {
    font-size: 5.5rem;
    line-height: 7rem;
  }
}
@media (max-width: 768px) {
  .pc_hidden {
    display: block !important;
  }
  .mo_hidden {
    display: none !important;
  }
  #wrap .common_tit_wrap {
    padding: 3rem 0 1.6rem;
  }
  #wrap .common_tit_wrap .content_wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  #wrap .common_tit_wrap .content_wrap h2 .mask {
    margin-right: 0.8rem;
  }
  #wrap .common_tit_wrap .content_wrap h2 .mask .text {
    font-size: 3.6rem;
    line-height: 4.2rem;
  }
  #wrap .common_tit_wrap .content_wrap .common_desc {
    font-size: 1.2rem;
    line-height: 1.6rem;
    text-align: left;
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.4s;
  width: 100%;
  height: 10.7rem;
  background-color: #fff;
  transition: all 0.2s linear;
}
#header .content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 175rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#header .content_wrap nav ul {
  display: flex;
  gap: 6rem;
  align-items: center;
}
#header .content_wrap nav ul li .depth1 {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 5rem;
  color: #232323;
}
#header .content_wrap .logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17.4rem;
  height: 3.4rem;
  background: url(../images/common/logo.svg) no-repeat center/cover;
  filter: invert(100%) sepia(3%) saturate(12%) hue-rotate(344deg) brightness(103%) contrast(103%);
}
#header .content_wrap .btn_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
  width: 16.3rem;
  height: 4.3rem;
  background-color: #232323;
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}
#header .content_wrap .btn_contact:hover {
  background-color: #474747;
}
#header .content_wrap .btn_menu,
#header .content_wrap .mo_nav_wrap {
  display: none;
}
#header.dark {
  background-color: #111111;
}
#header.dark .content_wrap nav ul li .depth1 {
  color: #fff;
}
#header.dark .content_wrap .logo {
  filter: none;
}
#header.dark .content_wrap .btn_contact {
  background-color: #fff;
  color: #111111;
}
#header.dark .content_wrap .btn_contact:hover {
  background-color: #EBEFF2;
}
#header.down {
  transform: translateY(-100%);
}
@media (max-width: 1024px) {
  #header .content_wrap nav ul {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  #header {
    height: 8rem;
  }
  #header .content_wrap nav,
  #header .content_wrap .btn_contact {
    display: none;
  }
  #header .content_wrap .logo {
    position: static;
    transform: translate(0, 0);
    width: 13.4rem;
    height: 2.6rem;
  }
  #header .content_wrap .btn_menu {
    display: flex;
    gap: 0.3rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 2.5rem;
    height: 2.5rem;
  }
  #header .content_wrap .btn_menu span {
    display: block;
    width: 1.7rem;
    height: 0.2rem;
    background-color: #000;
    transition: all 0.3s ease-in-out;
  }
  #header .content_wrap .btn_menu.active span:nth-child(1) {
    transform: translateY(0.6rem) rotate(45deg);
  }
  #header .content_wrap .btn_menu.active span:nth-child(2) {
    opacity: 0;
  }
  #header .content_wrap .btn_menu.active span:nth-child(3) {
    transform: translateY(-0.4rem) rotate(-45deg);
  }
  #header .content_wrap .mo_nav_wrap {
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 8rem;
    right: -100%;
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100 - 8rem);
    padding: 1.6rem 1.5rem 4rem;
    background-color: #111111;
    color: #fff;
  }
  #header .content_wrap .mo_nav_wrap.active {
    right: 0;
  }
  #header .content_wrap .mo_nav_wrap .mo_nav_list li .mo_depth1 {
    display: block;
    padding: 2rem 0;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 5rem;
    color: #fff;
  }
  #header .content_wrap .mo_nav_wrap .info_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #header .content_wrap .mo_nav_wrap .info_wrap .sns_list {
    display: flex;
    gap: 2rem;
  }
  #header .content_wrap .mo_nav_wrap .info_wrap .sns_list li .ic_sns {
    display: block;
    width: 3.2rem;
    height: 3.2rem;
  }
  #header .content_wrap .mo_nav_wrap .info_wrap .sns_list li .ic_sns.instagram {
    background: url(../images/common/logo_instagram.svg) no-repeat center/cover;
  }
  #header .content_wrap .mo_nav_wrap .info_wrap .sns_list li .ic_sns.naver {
    background: url(../images/common/logo_naver.svg) no-repeat center/cover;
  }
  #header .content_wrap .mo_nav_wrap .info_wrap .info_txt {
    opacity: 0.6;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.4rem;
    letter-spacing: -0.02em;
    text-align: right;
    text-transform: lowercase;
  }
  #header.dark .content_wrap .btn_menu {
    filter: invert(100%) sepia(3%) saturate(12%) hue-rotate(344deg) brightness(103%) contrast(103%);
  }
  #header.active {
    background-color: #111111;
  }
  #header.active .content_wrap .logo {
    filter: none;
  }
  #header.active .content_wrap .btn_menu {
    filter: invert(100%) sepia(3%) saturate(12%) hue-rotate(344deg) brightness(103%) contrast(103%);
  }
}

#footer {
  width: 100%;
  background-color: #111111;
  color: #fff;
}
#footer .content_wrap {
  display: flex;
  position: relative;
  max-width: 155rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#footer .top_wrap {
  padding: 9rem 0 16rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
}
#footer .top_wrap .content_wrap .desc_wrap .desc_tit {
  margin-bottom: 2rem;
  font-family: "Satoshi";
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 5.2rem;
  text-transform: uppercase;
}
#footer .top_wrap .content_wrap .desc_wrap .desc_desc {
  margin-bottom: 5.2rem;
  font-size: 1.8rem;
  line-height: 3.1rem;
  letter-spacing: -0.02em;
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch {
  transition: all 0.5s cubic-bezier(0.17, 0.84, 0.44, 1);
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 26.3rem;
  width: 100%;
  height: 7.6rem;
  padding: 0 0.6rem 0 2rem;
  background-color: #fff;
  border-radius: 1.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #111111;
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch .txt {
  display: inline-block;
  position: relative;
  overflow: hidden;
  line-height: 1.8rem;
  height: 1.8rem;
  will-change: transform;
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch .txt .txt_line {
  display: block;
  transition: transform 0.6s cubic-bezier(0.17, 0.84, 0.44, 1);
  will-change: transform;
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch .txt .txt_line_top {
  transform: translateY(0);
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch .txt .txt_line_bottom {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch .arrow {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 6.4rem;
  height: 6.4rem;
  background-color: #111111;
  border-radius: 0.8rem;
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch .arrow::before, #footer .top_wrap .content_wrap .desc_wrap .btn_touch .arrow::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1.3rem;
  background: url(../images/common/ic_footer_arrow.svg) no-repeat center/cover;
  transition: transform 0.5s cubic-bezier(0.17, 0.84, 0.44, 1), opacity 0.5s;
  will-change: transform;
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch .arrow::before {
  transform: translateX(0);
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch .arrow::after {
  position: absolute;
  transform: translateX(-350%);
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch:hover .txt .txt_line_top {
  transform: translateY(-100%);
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch:hover .txt .txt_line_bottom {
  transform: translateY(0);
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch:hover .arrow::before {
  transform: translateX(250%);
}
#footer .top_wrap .content_wrap .desc_wrap .btn_touch:hover .arrow::after {
  transform: translateX(0);
}
#footer .top_wrap .content_wrap .footer_link {
  display: flex;
  flex-direction: column;
  margin-left: auto;
}
#footer .top_wrap .content_wrap .footer_link li .btn_link {
  transition: all 0.4s cubic-bezier(0.17, 0.84, 0.44, 1);
  display: block;
  font-family: "Satoshi";
  font-size: 2.6rem;
  line-height: 5rem;
  color: #797979;
  text-transform: uppercase;
}
#footer .top_wrap .content_wrap .footer_link li .btn_link:hover {
  color: #fff;
}
#footer .top_wrap .content_wrap .info_wrap {
  margin-left: auto;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
}
#footer .top_wrap .content_wrap .info_wrap .info_email {
  text-transform: lowercase;
}
#footer .top_wrap .content_wrap .info_wrap .info_address {
  margin: 0.5rem 0;
}
#footer .top_wrap .content_wrap .info_wrap .sns_link {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  align-items: center;
  margin-top: 3.2rem;
}
#footer .top_wrap .content_wrap .info_wrap .sns_link li a {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
}
#footer .top_wrap .content_wrap .info_wrap .sns_link li a.sns_instagram {
  background: url(../images/common/logo_instagram.svg) no-repeat center/cover;
}
#footer .top_wrap .content_wrap .info_wrap .sns_link li a.sns_naver {
  background: url(../images/common/logo_naver.svg) no-repeat center/cover;
}
#footer .bottom_wrap {
  padding: 3.6rem 0;
}
#footer .bottom_wrap .content_wrap {
  justify-content: space-between;
  align-items: center;
}
#footer .bottom_wrap .content_wrap .copyright {
  opacity: 0.3;
  font-size: 1.6rem;
  font-weight: 500;
}
#footer .bottom_wrap .content_wrap .terms_link {
  display: flex;
  gap: 4.4rem;
  align-items: center;
}
#footer .bottom_wrap .content_wrap .terms_link li a {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #4e4e4e;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  #footer .top_wrap .content_wrap .footer_link {
    display: none;
  }
}
@media (max-width: 768px) {
  #footer .top_wrap {
    padding: 10rem 0 6rem;
  }
  #footer .top_wrap .content_wrap {
    gap: 12rem;
    flex-direction: column;
  }
  #footer .top_wrap .content_wrap .desc_wrap {
    text-align: center;
  }
  #footer .top_wrap .content_wrap .desc_wrap .desc_tit {
    margin-bottom: 1.2rem;
    font-size: 3.6rem;
    line-height: 4rem;
    letter-spacing: -0.01em;
  }
  #footer .top_wrap .content_wrap .desc_wrap .desc_desc {
    margin-bottom: 3.6rem;
    opacity: 0.8;
    font-size: 1.5rem;
    line-height: 2.4rem;
  }
  #footer .top_wrap .content_wrap .desc_wrap .btn_touch {
    width: 21.1rem;
    height: 6rem;
    margin: 0 auto;
    padding: 0 0.4rem 0 1.6rem;
    font-size: 1.5rem;
  }
  #footer .top_wrap .content_wrap .desc_wrap .btn_touch .arrow {
    top: 0.4rem;
    right: 0.4rem;
    width: 5.2rem;
    height: 5.2rem;
  }
  #footer .top_wrap .content_wrap .info_wrap {
    margin: 0 auto;
    text-align: center;
  }
  #footer .top_wrap .content_wrap .info_wrap .info_email,
  #footer .top_wrap .content_wrap .info_wrap .info_address,
  #footer .top_wrap .content_wrap .info_wrap .info_num {
    opacity: 0.8;
  }
  #footer .top_wrap .content_wrap .info_wrap .sns_link {
    justify-content: center;
  }
  #footer .bottom_wrap .content_wrap {
    gap: 2rem;
    flex-direction: column;
  }
}

.container {
  /* 메인 */
}
.container#main {
  padding-top: 10.7rem;
}
@keyframes revealUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes imgScale {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.container#main .visual .content_wrap .visual_list {
  display: flex;
  gap: 1.8rem;
}
.container#main .visual .content_wrap .visual_list .visual_img {
  overflow: hidden;
  flex: 1;
  align-self: baseline;
  position: relative;
  border-radius: 1rem;
}
.container#main .visual .content_wrap .visual_list .visual_img::before {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: translateY(0%);
  background: #fff;
}
.container#main .visual .content_wrap .visual_list .visual_img img {
  opacity: 0;
}
.container#main .visual .content_wrap .visual_list .visual_img:nth-child(3) {
  flex: 2.247;
}
.container#main .visual .content_wrap .visual_list .visual_img:nth-child(4) {
  flex: 1.217;
  margin-top: auto;
}
.container#main .visual .content_wrap .visual_list .visual_img:nth-child(5) {
  flex: 1.217;
  margin-top: auto;
}
.container#main .visual .content_wrap .visual_list .visual_img:nth-child(6) {
  margin-left: 6.338%;
}
.container#main .visual .content_wrap .visual_list.start .visual_img::before {
  opacity: 1;
  animation: revealUp 1.2s ease forwards;
}
.container#main .visual .content_wrap .visual_list.start .visual_img img {
  opacity: 1;
  animation: imgScale 1s ease forwards;
}
.container#main .visual .content_wrap .visual_list.start .visual_img:nth-child(2)::before {
  animation-delay: 0.2s;
}
.container#main .visual .content_wrap .visual_list.start .visual_img:nth-child(2) img {
  animation-delay: 0.2s;
}
.container#main .visual .content_wrap .visual_list.start .visual_img:nth-child(3)::before {
  animation: revealUp 1.55s ease forwards;
  animation-delay: 0.2s;
}
.container#main .visual .content_wrap .visual_list.start .visual_img:nth-child(3) img {
  animation-delay: 0.2s;
}
.container#main .visual .content_wrap .visual_list.start .visual_img:nth-child(4)::before {
  animation-delay: 0.4s;
}
.container#main .visual .content_wrap .visual_list.start .visual_img:nth-child(4) img {
  animation-delay: 0.4s;
}
.container#main .visual .content_wrap .visual_list.start .visual_img:nth-child(5)::before {
  animation-delay: 0.5s;
}
.container#main .visual .content_wrap .visual_list.start .visual_img:nth-child(5) img {
  animation-delay: 0.5s;
}
.container#main .visual .content_wrap .visual_list.start .visual_img:nth-child(6)::before {
  animation-delay: 0.3s;
}
.container#main .visual .content_wrap .visual_list.start .visual_img:nth-child(6) img {
  animation-delay: 0.3s;
}
.container#main .visual .txt_wrap {
  margin-top: 12rem;
  text-align: center;
}
.container#main .visual .txt_wrap .mask ~ .mask {
  height: 0;
  padding-bottom: 14%;
}
.container#main .visual .txt_wrap h3 {
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 1s ease forwards 0.6s;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3.2rem;
  color: rgba(21, 24, 30, 0.8);
}
.container#main .visual .txt_wrap h2 {
  opacity: 0;
  transform: translateY(70%);
  animation: slideUp 1s ease forwards;
  margin-top: -3vw;
  font-family: "Satoshi";
  font-size: 15.15vw;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #15181e;
}
.container#main .goals_wrap {
  margin-top: 8rem;
}
.container#main .goals_wrap .animation_box .img_grid {
  display: flex;
  gap: 1.3rem;
}
.container#main .goals_wrap .animation_box .img_grid .img_item {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.17, 0.84, 0.44, 1);
  overflow: hidden;
  position: relative;
}
.container#main .goals_wrap .animation_box .img_grid .img_item:first-child {
  border-radius: 0 0.8rem 0.8rem 0;
}
.container#main .goals_wrap .animation_box .img_grid .img_item:last-child {
  border-radius: 0.8rem 0 0 0.8rem;
}
.container#main .goals_wrap .animation_box .content_wrap .txt_wrap {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  max-width: 148rem;
  margin: 72px auto 168px;
}
.container#main .goals_wrap .animation_box .content_wrap .txt_wrap h3 {
  align-self: baseline;
  font-family: "Satoshi";
  font-size: clamp(1rem, 4.2vw, 6rem);
  font-weight: 700;
  line-height: clamp(1.2rem, 4.6vw, 6.6rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.container#main .goals_wrap .animation_box .content_wrap .txt_wrap h3 .mask {
  display: inline-block;
}
.container#main .goals_wrap .animation_box .content_wrap .txt_wrap h3 .mask .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#main .goals_wrap .animation_box .content_wrap .txt_wrap .txt_box {
  flex-shrink: 0;
  margin-top: 13rem;
}
.container#main .goals_wrap .animation_box .content_wrap .txt_wrap .txt_box .sub_tit {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.container#main .goals_wrap .animation_box .content_wrap .txt_wrap .txt_box .sub_tit .text {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}
.container#main .goals_wrap .animation_box .content_wrap .txt_wrap .txt_box .desc {
  opacity: 0.9;
  font-size: 1.8rem;
  line-height: 3.2rem;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.container#main .goals_wrap .animation_box .content_wrap .txt_wrap .txt_box .desc .text {
  display: inline-block;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.17, 0.84, 0.44, 1) 0.4s;
}
.container#main .goals_wrap .animation_box.active .img_grid .img_item {
  opacity: 1;
}
.container#main .goals_wrap .animation_box.active .content_wrap .txt_wrap h3 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}
.container#main .goals_wrap .animation_box.active .content_wrap .txt_wrap h3 .mask:nth-child(n+2) .text {
  animation-delay: 0.15s;
}
.container#main .goals_wrap .animation_box.active .content_wrap .txt_wrap .txt_box .sub_tit .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}
.container#main .goals_wrap .animation_box.active .content_wrap .txt_wrap .txt_box .desc .text {
  opacity: 1;
}
.container#main .solution_wrap {
  padding: 160px 0 220px;
  background-color: #131313;
  color: #fff;
}
.container#main .solution_wrap .txt_wrap {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.container#main .solution_wrap .txt_wrap h4 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.container#main .solution_wrap .txt_wrap h4 .mask {
  display: inline-block;
}
.container#main .solution_wrap .txt_wrap h4 .mask .text {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}
.container#main .solution_wrap .txt_wrap h3 {
  margin-top: 1.6rem;
  font-size: 7rem;
  font-weight: 700;
  line-height: 7.2rem;
  letter-spacing: -0.02em;
}
.container#main .solution_wrap .txt_wrap h3 .mask {
  display: inline-block;
}
.container#main .solution_wrap .txt_wrap h3 .mask .text {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}
.container#main .solution_wrap .txt_wrap.active h4 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}
.container#main .solution_wrap .txt_wrap.active h3 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards 0.2s;
}
.container#main .solution_wrap .txt_wrap.active h3 .mask:nth-child(n+2) .text {
  animation-delay: 0.35s;
}
.container#main .solution_wrap .img_list {
  max-width: 120rem;
  margin: 6.4rem auto 0;
}
.container#main .solution_wrap .img_list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container#main .solution_wrap .img_list li ~ li {
  margin-top: 10rem;
}
.container#main .solution_wrap .img_list li .img_wrap {
  width: 36rem;
}
.container#main .solution_wrap .img_list li .img_wrap img {
  width: 100%;
}
.container#main .solution_wrap .img_list li .info_box {
  max-width: 52.3rem;
  width: 100%;
}
.container#main .solution_wrap .img_list li .info_box .info_tit {
  overflow: hidden;
  margin-bottom: 3.8rem;
  font-family: "Satoshi";
  font-size: 6rem;
  font-weight: 700;
  line-height: 6.4rem;
  text-transform: uppercase;
}
.container#main .solution_wrap .img_list li .info_box .info_tit .text {
  opacity: 0;
  display: block;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) 0.2s, opacity 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) 0.2s;
  will-change: transform, opacity;
}
.container#main .solution_wrap .img_list li .info_box .info_sub_tit {
  overflow: hidden;
  margin-bottom: 1.2rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 3.2rem;
  letter-spacing: -0.02em;
}
.container#main .solution_wrap .img_list li .info_box .info_sub_tit .text {
  opacity: 0;
  display: block;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) 0.4s, opacity 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) 0.4s;
  will-change: transform, opacity;
}
.container#main .solution_wrap .img_list li .info_box .info_desc {
  opacity: 0;
  transition: opacity 0.8s ease 0.6s;
  font-size: 1.6rem;
  line-height: 3rem;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.container#main .solution_wrap .img_list li .info_box.active .info_tit .text,
.container#main .solution_wrap .img_list li .info_box.active .info_sub_tit .text {
  opacity: 1;
  transform: translateY(0);
}
.container#main .solution_wrap .img_list li .info_box.active .info_desc {
  opacity: 0.8;
}
.container#main .solution_wrap .img_list li:nth-child(1) .img_wrap {
  width: 478px;
}
.container#main .solution_wrap .img_list li:nth-child(2n) {
  flex-direction: row-reverse;
}
.container#main .partner_wrap {
  padding: 20rem 0 10rem;
}
.container#main .partner_wrap .content_wrap {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  max-width: 155rem;
}
.container#main .partner_wrap .content_wrap .left_box {
  flex-shrink: 0;
  width: 52.8rem;
}
.container#main .partner_wrap .content_wrap .left_box .sub_desc {
  margin-bottom: 28.5vh;
  font-size: 1.3rem;
  font-weight: 500;
  color: #bababa;
  text-transform: uppercase;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box {
  position: sticky;
  top: 16rem;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box h4 {
  margin-bottom: 2rem;
  padding-left: 0.4rem;
  font-size: 2rem;
  font-weight: 600;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box h4 .mask {
  display: inline-block;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box h4 .mask .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box h3 {
  font-family: "Satoshi";
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 6.4rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box h3 .mask {
  display: inline-block;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box h3 .mask .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box .desc {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.17, 0.84, 0.44, 1) 0.8s;
  margin-top: 2.8rem;
  font-size: 1.6rem;
  line-height: 3rem;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box .img_list {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.17, 0.84, 0.44, 1) 0.8s;
  display: flex;
  gap: 0.4rem;
  max-width: 43.6rem;
  margin-top: 7rem;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box .img_list li {
  overflow: hidden;
  position: relative;
  border-radius: 0.4rem;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box .img_list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem;
  transition: all 0.3s;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box .img_list li.active::before {
  border: 0.2rem solid #000;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box.active h4 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box.active h3 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards 0.2s;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box.active h3 .mask:nth-child(n+2) .text {
  animation-delay: 0.35s;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box.active h3 .mask:nth-child(n+4) .text {
  animation-delay: 0.5s;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box.active .desc {
  opacity: 0.9;
}
.container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box.active .img_list {
  opacity: 1;
}
.container#main .partner_wrap .content_wrap .right_box {
  flex: 1;
  max-width: 86.8rem;
}
.container#main .partner_wrap .content_wrap .right_box .img_box {
  overflow: hidden;
  position: relative;
}
.container#main .partner_wrap .content_wrap .right_box .img_box ~ .img_box {
  margin-top: 3rem;
}
.container#main .partner_wrap .content_wrap .right_box .img_box .location_box {
  position: absolute;
  right: 5.3%;
  bottom: 7.9%;
  color: #fff;
  text-align: right;
}
.container#main .partner_wrap .content_wrap .right_box .img_box .location_box .location {
  margin-bottom: 0.4rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: -0.02em;
}
.container#main .partner_wrap .content_wrap .right_box .img_box .location_box .detail {
  font-size: 1.5rem;
  line-height: 3rem;
  letter-spacing: -0.02em;
}
.container#main .quality_wrap {
  padding: 14rem 0 20rem;
}
.container#main .quality_wrap .content_wrap {
  max-width: 155rem;
}
.container#main .quality_wrap .content_wrap .txt_wrap {
  text-align: center;
}
.container#main .quality_wrap .content_wrap .txt_wrap h4 {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.container#main .quality_wrap .content_wrap .txt_wrap h4 .mask {
  display: inline-block;
}
.container#main .quality_wrap .content_wrap .txt_wrap h4 .mask .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#main .quality_wrap .content_wrap .txt_wrap h3 {
  font-family: "Satoshi";
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.container#main .quality_wrap .content_wrap .txt_wrap h3 .mask {
  display: inline-block;
}
.container#main .quality_wrap .content_wrap .txt_wrap h3 .mask .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#main .quality_wrap .content_wrap .txt_wrap .desc {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.17, 0.84, 0.44, 1) 0.8s;
  margin: 3.2rem 0 7rem;
  font-size: 1.6rem;
  line-height: 3rem;
  letter-spacing: -0.02em;
}
.container#main .quality_wrap .content_wrap .txt_wrap.active h4 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}
.container#main .quality_wrap .content_wrap .txt_wrap.active h3 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards 0.2s;
}
.container#main .quality_wrap .content_wrap .txt_wrap.active h3 .mask:nth-child(n+4) .text {
  animation-delay: 0.35s;
}
.container#main .quality_wrap .content_wrap .txt_wrap.active .desc {
  opacity: 1;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper {
  display: flex;
  gap: 1.6rem;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide {
  overflow: hidden;
  flex: 1;
  height: 60.4rem;
  background-color: #000;
  border-radius: 0.8rem;
  transition: flex 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  will-change: flex;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 3.2rem 6.452%;
  color: #fff;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .link_tit {
  display: block;
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .link_desc {
  overflow: hidden;
  width: 89%;
  margin-bottom: 3rem;
  font-size: 1.8rem;
  line-height: 3.2rem;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .txt_no_active,
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .txt_has_active {
  will-change: opacity, transform;
  position: absolute;
  bottom: 11.5rem;
  left: 6.452%;
  right: 0;
  transition: opacity 0.45s cubic-bezier(0.17, 0.95, 0.44, 1), transform 0.45s cubic-bezier(0.17, 0.95, 0.44, 1);
  width: 87.096%;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .txt_no_active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .txt_no_active .link_tit {
  font-size: 2.4rem;
  line-height: 3.4rem;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .txt_has_active {
  opacity: 0;
  transform: translateY(1.4rem);
  transition-delay: 0s;
  width: 200%;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .txt_has_active .link_tit {
  margin-bottom: 1.2rem;
  font-size: 3.2rem;
  line-height: 4rem;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .btn_more_detail {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
  width: 100%;
  height: 5.2rem;
  padding: 0 3.2rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.8);
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .btn_more_detail::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 1.2rem;
  background: url(../images/main/ic_arrow_quality_white.svg) no-repeat center/cover;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide:first-child {
  background: url(../images/main/quality01.png) no-repeat right 12% center/cover;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide:nth-child(2) {
  background: url(../images/main/quality02.png) no-repeat center/cover;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide:nth-child(3) {
  background: url(../images/main/quality03.png) no-repeat center/cover;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide.active {
  flex: 2;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide.active .go_link .txt_no_active {
  opacity: 0;
  transform: translateY(-1.4rem);
  transition-delay: 0s;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide.active .go_link .txt_has_active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
  width: 87.096%;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide.active .go_link .btn_more_detail {
  background-color: #fff;
  color: #000;
}
.container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide.active .go_link .btn_more_detail::after {
  background-image: url(../images/main/ic_arrow_quality.svg);
}
@media (max-width: 1024px) {
  .container#main .visual .content_wrap .visual_list {
    gap: 0.3rem;
  }
  .container#main .visual .content_wrap .visual_list .visual_img:nth-child(6) {
    margin-left: 0;
  }
  .container#main .goals_wrap .animation_box .content_wrap .txt_wrap {
    gap: 2.8rem;
    flex-direction: column;
  }
  .container#main .goals_wrap .animation_box .content_wrap .txt_wrap .txt_box {
    margin-top: 0;
    width: 100%;
  }
  .container#main .goals_wrap .animation_box .content_wrap .txt_wrap .txt_box .desc br {
    display: none;
  }
  .container#main .solution_wrap .img_list li {
    gap: 2.5rem;
    flex-direction: column;
    text-align: center;
  }
  .container#main .solution_wrap .img_list li:nth-child(2n) {
    flex-direction: column;
  }
  .container#main .partner_wrap .content_wrap .left_box {
    width: 45.6rem;
  }
  .container#main .partner_wrap .content_wrap .left_box .sub_desc {
    margin-bottom: 10vh;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper {
    gap: 1rem;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide {
    flex: 1.2;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .btn_more_detail {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .container#main .visual .content_wrap .visual_list {
    flex-wrap: wrap;
  }
  .container#main .visual .content_wrap .visual_list .visual_img {
    flex: none;
    width: calc((100% - 0.6rem) / 3);
    border-radius: 1rem;
  }
  .container#main .visual .content_wrap .visual_list .visual_img:nth-child(2) {
    margin-right: 1rem;
  }
  .container#main .visual .content_wrap .visual_list .visual_img:nth-child(3) {
    order: 2;
    flex: none;
    width: calc((100% - 0.6rem) / 3 * 2);
  }
  .container#main .visual .content_wrap .visual_list .visual_img:nth-child(4) {
    order: 1;
    flex: none;
    transform: scaleX(-1);
  }
  .container#main .visual .content_wrap .visual_list .visual_img:nth-child(5) {
    order: 3;
    flex: none;
  }
  .container#main .visual .content_wrap .visual_list .visual_img:nth-child(6) {
    order: 4;
    margin-left: auto;
  }
  .container#main .visual .txt_wrap {
    margin-top: 4.2rem;
  }
  .container#main .visual .txt_wrap h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .container#main .goals_wrap {
    margin-top: 9.8rem;
  }
  .container#main .goals_wrap .animation_box .img_grid {
    gap: 1rem;
    flex-direction: column-reverse;
    padding: 0 1.5rem;
  }
  .container#main .goals_wrap .animation_box .img_grid .img_item {
    border-radius: 0.4rem !important;
  }
  .container#main .goals_wrap .animation_box .content_wrap .txt_wrap {
    margin-top: 5rem;
    margin-bottom: 8.4rem;
    padding: 0 1rem;
  }
  .container#main .goals_wrap .animation_box .content_wrap .txt_wrap h3 {
    font-size: clamp(1rem, 8.5vw, 3.2rem);
    line-height: clamp(1.2rem, 9vw, 3.15rem);
  }
  .container#main .goals_wrap .animation_box .content_wrap .txt_wrap .txt_box .sub_tit {
    margin-bottom: 1rem;
    font-size: 1.7rem;
  }
  .container#main .goals_wrap .animation_box .content_wrap .txt_wrap .txt_box .desc {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  .container#main .solution_wrap {
    padding: 6.4rem 0.5rem 9.2rem;
  }
  .container#main .solution_wrap .txt_wrap h4 {
    font-size: 1.7rem;
  }
  .container#main .solution_wrap .txt_wrap h3 {
    font-size: 3.4rem;
    line-height: 3.55rem;
  }
  .container#main .solution_wrap .img_list li ~ li {
    margin-top: 7.2rem;
  }
  .container#main .solution_wrap .img_list li .img_wrap {
    width: 70.2%;
  }
  .container#main .solution_wrap .img_list li .info_box .info_tit {
    margin-bottom: 2rem;
    font-size: 4.4rem;
  }
  .container#main .solution_wrap .img_list li .info_box .info_sub_tit {
    font-size: 1.8rem;
    line-height: normal;
  }
  .container#main .solution_wrap .img_list li .info_box .info_desc {
    padding: 0 1rem;
    font-size: 1.5rem;
    line-height: 2.7rem;
  }
  .container#main .solution_wrap .img_list li .info_box .info_desc br {
    display: none;
  }
  .container#main .solution_wrap .img_list li:nth-child(1) .img_wrap {
    width: 78.1%;
  }
  .container#main .partner_wrap {
    padding-top: 5rem;
  }
  .container#main .partner_wrap .content_wrap {
    gap: 5rem;
    flex-direction: column;
  }
  .container#main .partner_wrap .content_wrap .left_box {
    width: 100%;
    padding-left: 1rem;
  }
  .container#main .partner_wrap .content_wrap .left_box .sub_desc {
    margin-bottom: 10rem;
    line-height: 2.2rem;
  }
  .container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box h4 {
    margin-bottom: 1.2rem;
    padding-left: 0;
    font-size: 1.7rem;
    letter-spacing: -0.02em;
  }
  .container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box h3 {
    font-size: 3.4rem;
    line-height: 3.35rem;
  }
  .container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box .desc {
    margin-top: 2.4rem;
    font-size: 1.5rem;
    line-height: 2.6rem;
  }
  .container#main .partner_wrap .content_wrap .left_box .sticky_box .animation_box .img_list {
    display: none;
  }
  .container#main .partner_wrap .content_wrap .right_box .img_box ~ .img_box {
    margin-top: 1rem;
  }
  .container#main .partner_wrap .content_wrap .right_box .img_box .location_box {
    right: 1.6rem;
    bottom: 1.6rem;
  }
  .container#main .partner_wrap .content_wrap .right_box .img_box .location_box .location {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    line-height: normal;
  }
  .container#main .partner_wrap .content_wrap .right_box .img_box .location_box .detail {
    font-size: 1.4rem;
    line-height: normal;
  }
  .container#main .quality_wrap {
    padding: 0 0 9rem;
  }
  .container#main .quality_wrap .content_wrap .txt_wrap {
    padding: 0 1rem;
    text-align: left;
  }
  .container#main .quality_wrap .content_wrap .txt_wrap h4 {
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
  }
  .container#main .quality_wrap .content_wrap .txt_wrap h3 {
    font-size: 3.4rem;
  }
  .container#main .quality_wrap .content_wrap .txt_wrap .desc {
    margin: 2.4rem 0 5rem;
    font-size: 1.5rem;
    line-height: 2.6rem;
  }
  .container#main .quality_wrap .content_wrap .txt_wrap.active h3 .mask:nth-child(n+2) .text {
    animation-delay: 0.35s;
  }
  .container#main .quality_wrap .content_wrap .txt_wrap.active h3 .mask:nth-child(n+4) .text {
    animation-delay: 0.5s;
  }
  .container#main .quality_wrap .content_wrap .txt_wrap.active h3 .mask:nth-child(n+6) .text {
    animation-delay: 0.65s;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container {
    padding: 0 1.5rem;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper {
    gap: 0;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide {
    flex: none;
    width: calc(100% - 1rem);
    height: 50.4rem;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link {
    padding: 2.8rem 2rem;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .txt_has_active .link_tit {
    margin-bottom: 1rem;
    font-size: 2rem;
    line-height: 2.7rem;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .link_desc {
    width: 100%;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .link_desc br {
    display: none;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide .go_link .btn_more_detail {
    height: 4rem;
    font-size: 1.4rem;
  }
  .container#main .quality_wrap .content_wrap .qualitySwiper .swiper-container .swiper-wrapper .swiper-slide.active {
    flex: none;
  }
}

.container {
  /* About us */
}
.container#aboutUsPage {
  padding-top: 10.7rem;
  overflow-x: hidden;
}
.container#aboutUsPage .visual {
  padding: 3rem 0 8rem;
}
.container#aboutUsPage .visual .content_wrap .img_grid {
  display: flex;
  justify-content: space-between;
}
.container#aboutUsPage .visual .content_wrap .img_grid .item .img_wrap {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.17, 0.84, 0.44, 1);
  overflow: hidden;
  position: relative;
}
.container#aboutUsPage .visual .content_wrap .img_grid .item.left {
  display: flex;
  gap: 7rem;
}
.container#aboutUsPage .visual .content_wrap .img_grid .item.left .img_wrap {
  width: 21.5rem;
}
.container#aboutUsPage .visual .content_wrap .img_grid .item.left .txt_wrap {
  padding-top: 3.2rem;
  color: #15181E;
}
.container#aboutUsPage .visual .content_wrap .img_grid .item.left .txt_wrap .tit {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.8rem;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}
.container#aboutUsPage .visual .content_wrap .img_grid .item.left .txt_wrap .desc {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3rem;
  letter-spacing: -0.02em;
}
.container#aboutUsPage .visual .content_wrap .img_grid .item.right {
  max-width: 61.9rem;
  width: 40%;
}
.container#aboutUsPage .visual .content_wrap .img_grid .item.right .sm_img {
  display: none;
}
.container#aboutUsPage .visual .content_wrap .img_grid .item.right .img_wrap {
  width: 100%;
}
.container#aboutUsPage .visual .content_wrap .img_grid.active .item .img_wrap {
  opacity: 1;
}
.container#aboutUsPage .our_value {
  padding: 12rem 0;
  background-color: #161617;
  color: #fff;
}
.container#aboutUsPage .our_value .content_wrap .tit_wrap {
  text-align: center;
}
.container#aboutUsPage .our_value .content_wrap .tit_wrap .sub_tit {
  margin-bottom: 1.2rem;
  padding-left: 0.4rem;
  font-size: 2rem;
  font-weight: 600;
}
.container#aboutUsPage .our_value .content_wrap .tit_wrap .sub_tit .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#aboutUsPage .our_value .content_wrap .tit_wrap h3 {
  font-family: "Satoshi";
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 7.6rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.container#aboutUsPage .our_value .content_wrap .tit_wrap h3 .mask {
  display: inline-block;
}
.container#aboutUsPage .our_value .content_wrap .tit_wrap h3 .mask .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#aboutUsPage .our_value .content_wrap .tit_wrap h3 .mask:nth-child(n+3) {
  transform: translateY(-3rem);
}
.container#aboutUsPage .our_value .content_wrap .tit_wrap.active .sub_tit .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}
.container#aboutUsPage .our_value .content_wrap .tit_wrap.active h3 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards 0.2s;
}
.container#aboutUsPage .our_value .content_wrap .tit_wrap.active h3 .mask:nth-child(n+4) .text {
  animation-delay: 0.35s;
}
.container#aboutUsPage .our_value .content_wrap .valueSwiper {
  max-width: 161.7rem;
  margin: 0 auto;
}
.container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper {
  display: flex;
  gap: 3rem;
}
.container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide {
  width: calc((100% - 6rem) / 3);
}
.container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item {
  overflow: hidden;
  flex: 1;
  position: relative;
  height: 39.1rem;
  padding: 3rem 9.3%;
  background-color: #1A1A1A;
  border-radius: 2.4rem;
}
.container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item .value_tit {
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item .value_desc {
  font-size: 1.8rem;
  line-height: 3.2rem;
  letter-spacing: -0.02em;
  color: #C5C5C5;
  word-break: keep-all;
}
.container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item .bg_wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 44.9rem;
  width: 88%;
}
.container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item.balanced_body {
  margin-top: 7.5rem;
}
.container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item.balanced_body .bg_wrap {
  max-width: 33.5rem;
  width: 72%;
}
.container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item.attentive_coaching {
  margin-top: 15rem;
}
.container#aboutUsPage .our_team {
  padding-top: 17.4rem;
}
.container#aboutUsPage .our_team .content_wrap {
  max-width: 155rem;
}
.container#aboutUsPage .our_team .content_wrap .tit_wrap {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 14rem;
}
.container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box .sub_tit {
  margin-bottom: 1.2rem;
  padding-left: 0.4rem;
  font-size: 2rem;
  font-weight: 600;
}
.container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box .sub_tit .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box h3 {
  font-family: "Satoshi";
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 6.3rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box h3 .mask {
  display: inline-block;
}
.container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box h3 .mask .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box.active .sub_tit .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}
.container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box.active h3 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards 0.2s;
}
.container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box.active h3 .mask:nth-child(n+8) .text {
  animation-delay: 0.35s;
}
.container#aboutUsPage .our_team .content_wrap .tit_wrap .desc {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.17, 0.84, 0.44, 1) 0.4s;
  max-width: 46.2rem;
  padding-bottom: 1.4rem;
  font-size: 1.6rem;
  line-height: 2.7rem;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.8);
}
.container#aboutUsPage .our_team .content_wrap .tit_wrap .desc.active {
  opacity: 1;
}
.container#aboutUsPage .our_team .content_wrap .trainer_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 127.8rem;
  margin-left: auto;
  margin-right: -3rem;
}
.container#aboutUsPage .our_team .content_wrap .trainer_list > li {
  overflow: hidden;
  flex: 1 1 33.3333%;
  position: relative;
  padding-right: 3rem;
  padding-bottom: 12.6rem;
}
.container#aboutUsPage .our_team .content_wrap .trainer_list > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1rem;
  height: 100%;
  background-color: #EBEBEB;
}
.container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_img {
  overflow: hidden;
  position: relative;
}
.container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: translateX(0%);
  transition: transform 1.2s ease;
  background-color: #fff;
}
.container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_img.active::after {
  transform: translateX(100%);
}
.container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_tit {
  padding-top: 7.6%;
  padding-left: 8.1%;
  font-family: "Satoshi";
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 3.8rem;
  letter-spacing: -0.01em;
  color: #B2B2B2;
  text-transform: uppercase;
}
.container#aboutUsPage .our_team .content_wrap .trainer_list > li .name {
  margin: 3rem 0 1.6rem;
  padding-left: 8.1%;
  font-family: "Satoshi";
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0F111A;
}
.container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_detail {
  padding-left: 8.1%;
}
.container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_detail li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.8rem;
  letter-spacing: -0.01em;
  color: #666666;
}
.container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_detail li ~ li {
  margin-top: 0.6rem;
}
.container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_detail li::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #5D5D5D;
  border-radius: 50%;
}
.container#aboutUsPage .life_style {
  overflow: hidden;
  position: relative;
  background-color: #111111;
  color: #fff;
}
.container#aboutUsPage .life_style .pin_wrap {
  display: grid;
  place-items: center;
  isolation: isolate;
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
}
.container#aboutUsPage .life_style .pin_wrap .img_wrap {
  inset: 0;
  position: absolute;
  z-index: 1;
  height: calc(var(--vh, 1vh) * 300);
  pointer-events: none;
}
.container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box {
  position: absolute;
  inset: 0;
  height: calc(var(--vh, 1vh) * 100);
}
.container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box.g2 {
  top: calc(var(--vh, 1vh) * 100);
}
.container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box.g3 {
  top: calc(var(--vh, 1vh) * 200);
}
.container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item {
  aspect-ratio: 160/218;
  will-change: transform;
  position: absolute;
  transform: translateZ(0);
  width: clamp(8rem, 12vw, 16rem);
}
.container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img01 {
  top: -3vh;
  left: 32.6vw;
}
.container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img02 {
  top: 16.5vh;
  right: 28vw;
}
.container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img03 {
  top: 26.5vh;
  left: 15.5vw;
}
.container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img04 {
  top: 42vh;
  left: 35.5vw;
}
.container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img05 {
  bottom: 14.8vh;
  left: 10.4vw;
}
.container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img06 {
  bottom: 27.8vh;
  right: 10.3vw;
}
.container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img07 {
  bottom: 3vh;
  right: 31.3vw;
}
.container#aboutUsPage .life_style .pin_wrap .txt_wrap {
  position: relative;
  z-index: 3;
  text-align: center;
}
.container#aboutUsPage .life_style .pin_wrap .txt_wrap .logo {
  width: 15.4rem;
  height: 3rem;
  margin: 0 auto;
  background: url(../images/sub/aboutUs/logo_opacity.svg) no-repeat center/cover;
}
.container#aboutUsPage .life_style .pin_wrap .txt_wrap .tit {
  margin: 3.2rem 0 2.8rem;
  font-family: "Satoshi";
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 7.4rem;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}
.container#aboutUsPage .life_style .pin_wrap .txt_wrap .desc {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3rem;
  letter-spacing: -0.02em;
  color: #8B8B8B;
}
.container#aboutUsPage .our_journey {
  padding: 17.2rem 0 20rem;
  overflow: hidden;
}
.container#aboutUsPage .our_journey .content_wrap {
  max-width: 155rem;
}
.container#aboutUsPage .our_journey .content_wrap .tit_wrap {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 14rem;
}
.container#aboutUsPage .our_journey .content_wrap .tit_wrap .animation_box .sub_tit {
  margin-bottom: 1.2rem;
  padding-left: 0.4rem;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.container#aboutUsPage .our_journey .content_wrap .tit_wrap .animation_box .sub_tit .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#aboutUsPage .our_journey .content_wrap .tit_wrap .animation_box h3 {
  font-family: "Satoshi";
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 6.3rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.container#aboutUsPage .our_journey .content_wrap .tit_wrap .animation_box h3 .mask {
  display: inline-block;
}
.container#aboutUsPage .our_journey .content_wrap .tit_wrap .animation_box h3 .mask .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#aboutUsPage .our_journey .content_wrap .tit_wrap .animation_box.active .sub_tit .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}
.container#aboutUsPage .our_journey .content_wrap .tit_wrap .animation_box.active h3 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards 0.2s;
}
.container#aboutUsPage .our_journey .content_wrap .tit_wrap .animation_box.active h3 .mask:nth-child(n+2) .text {
  animation-delay: 0.35s;
}
.container#aboutUsPage .our_journey .content_wrap .tit_wrap .desc {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.17, 0.84, 0.44, 1) 0.2s;
  max-width: 46.2rem;
  padding-bottom: 1.4rem;
  font-size: 1.6rem;
  line-height: 2.7rem;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.8);
}
.container#aboutUsPage .our_journey .content_wrap .tit_wrap .desc.active {
  opacity: 1;
}
.container#aboutUsPage .our_journey .history_wrap .history_list {
  position: relative;
}
@keyframes year-marquee {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  100% {
    transform: translateY(-50%) translateX(-50%);
  }
}
@keyframes yearSlide {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  50% {
    transform: translateY(-10%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.container#aboutUsPage .our_journey .history_wrap .history_list .year_wrap {
  display: flex;
  gap: 25rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.container#aboutUsPage .our_journey .history_wrap .history_list .year_wrap .year_txt {
  overflow: hidden;
  display: inline-block;
  flex: 0 0 auto;
  position: relative;
  font-family: "Satoshi";
  font-size: 33rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.1);
}
.container#aboutUsPage .our_journey .history_wrap .history_list .year_wrap .year_txt span {
  display: block;
  will-change: transform, opacity;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .year_wrap .year_txt span.old {
  opacity: 1;
  transform: translateY(0);
}
.container#aboutUsPage .our_journey .history_wrap .history_list .year_wrap .year_txt span.new {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}
.container#aboutUsPage .our_journey .history_wrap .history_list .year_wrap .year_txt.change span.old {
  opacity: 0;
  transform: translateY(-100%);
}
.container#aboutUsPage .our_journey .history_wrap .history_list .year_wrap .year_txt.change span.new {
  opacity: 1;
  transform: translateY(0%);
}
.container#aboutUsPage .our_journey .history_wrap .history_list .year_wrap.marquee {
  animation: year-marquee 48s linear infinite;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list {
  display: flex;
  gap: 3.2rem;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  max-width: 155rem;
  margin: 0 auto;
  margin-bottom: 7.5rem;
  padding: 0 1.5rem;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box {
  overflow: hidden;
  position: relative;
  max-width: 77.2rem;
  width: 100%;
  height: 52.8rem;
  border-radius: 2rem;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .year {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 4rem;
  right: 4rem;
  transform: translateY(2rem);
  transition: transform 0.8s ease, opacity 0.8s ease;
  width: 8.6rem;
  height: 4.5rem;
  background-color: #fff;
  border-radius: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #232323;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
  color: #fff;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li {
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li ~ li {
  margin-top: 1.6rem;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li .line {
  opacity: 0;
  display: block;
  transform: translateY(1.6rem);
  transition: transform 0.8s ease, opacity 0.8s ease;
  will-change: transform, opacity;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(1) .line {
  transition-delay: 0s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(2) .line {
  transition-delay: 0.05s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(3) .line {
  transition-delay: 0.1s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(4) .line {
  transition-delay: 0.15s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(5) .line {
  transition-delay: 0.2s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(6) .line {
  transition-delay: 0.25s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(7) .line {
  transition-delay: 0.3s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(8) .line {
  transition-delay: 0.35s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(9) .line {
  transition-delay: 0.4s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(10) .line {
  transition-delay: 0.45s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(11) .line {
  transition-delay: 0.5s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(12) .line {
  transition-delay: 0.55s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(13) .line {
  transition-delay: 0.6s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(14) .line {
  transition-delay: 0.65s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(15) .line {
  transition-delay: 0.7s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(16) .line {
  transition-delay: 0.75s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(17) .line {
  transition-delay: 0.8s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(18) .line {
  transition-delay: 0.85s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(19) .line {
  transition-delay: 0.9s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li:nth-child(20) .line {
  transition-delay: 0.95s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .bg_wrap {
  width: 100%;
  height: 100%;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .bg_wrap img {
  width: 100%;
  height: 100%;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box.leaving .year {
  opacity: 0;
  transform: translateY(-2rem);
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box.leaving .detail_list li .line {
  opacity: 0;
  transform: translateY(-0.8rem);
  transition-duration: 0.3s;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box.active .year {
  opacity: 1;
  transform: translateY(0);
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box.active .detail_list li .line {
  opacity: 1;
  transform: translateY(0);
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_arrow_wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_arrow_wrap button {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
  width: 4.5rem;
  height: 4.5rem;
  border: 0.1rem solid rgba(21, 24, 30, 0.1);
  border-radius: 50%;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_arrow_wrap button .ic_arrow {
  display: block;
  width: 2.9rem;
  height: 2.9rem;
  background: url(../images/sub/aboutUs/ic_history_arrow.svg) no-repeat center/cover;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_arrow_wrap button.btn_next {
  transform: scaleX(-1);
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_arrow_wrap button:hover {
  background-color: #15181E;
  border-color: #15181E;
}
.container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_arrow_wrap button:hover .ic_arrow {
  background-image: url(../images/sub/aboutUs/ic_history_arrow_white.svg);
  transform: rotate(180deg);
}
.container#aboutUsPage .our_journey .history_wrap .history_year_list {
  overflow: hidden;
  position: relative;
}
.container#aboutUsPage .our_journey .history_wrap .history_year_list::before {
  content: "";
  display: block;
  position: absolute;
  top: 2.2rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #E3E3E3;
}
.container#aboutUsPage .our_journey .history_wrap .history_year_list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 155rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container#aboutUsPage .our_journey .history_wrap .history_year_list ul li .btn_year {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
  width: 8.6rem;
  height: 4.5rem;
  background-color: #fff;
  border: 0.1rem solid #EAEAEA;
  border-radius: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #BBBBBB;
}
.container#aboutUsPage .our_journey .history_wrap .history_year_list ul li .btn_year.active {
  background-color: #212529;
  border-color: #212529;
  color: #fff;
}
@media (max-width: 1280px) {
  .container#aboutUsPage .visual .content_wrap .img_grid {
    gap: 3rem;
  }
  .container#aboutUsPage .visual .content_wrap .img_grid .item.left {
    gap: 3rem;
  }
  .container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item .value_desc br {
    display: none;
  }
}
@media (max-width: 1024px) {
  .container#aboutUsPage .visual .content_wrap .img_grid {
    gap: 3.4rem;
    flex-direction: column-reverse;
  }
  .container#aboutUsPage .visual .content_wrap .img_grid .item.left .img_wrap {
    display: none;
  }
  .container#aboutUsPage .visual .content_wrap .img_grid .item.left .txt_wrap {
    margin-top: 0;
    width: 100%;
    text-align: right;
  }
  .container#aboutUsPage .visual .content_wrap .img_grid .item.right {
    display: flex;
    gap: 0.7rem;
    max-width: none;
    width: 100%;
  }
  .container#aboutUsPage .visual .content_wrap .img_grid .item.right .sm_img {
    display: block;
    width: 45.7%;
  }
}
@media (max-width: 768px) {
  .container#aboutUsPage .visual {
    padding: 1.6rem 0 4.2rem;
  }
  .container#aboutUsPage .visual .content_wrap .img_grid .item.left .txt_wrap {
    padding-top: 0;
  }
  .container#aboutUsPage .visual .content_wrap .img_grid .item.left .txt_wrap .tit {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
  }
  .container#aboutUsPage .visual .content_wrap .img_grid .item.left .txt_wrap .desc {
    font-size: 1.5rem;
    line-height: 2.5rem;
    letter-spacing: -0.04em;
  }
  .container#aboutUsPage .our_value {
    padding: 7.6rem 0 8rem;
  }
  .container#aboutUsPage .our_value .content_wrap .tit_wrap {
    padding: 0 1rem;
    text-align: left;
  }
  .container#aboutUsPage .our_value .content_wrap .tit_wrap .sub_tit {
    padding-left: 0;
    font-size: 1.7rem;
    letter-spacing: -0.01em;
  }
  .container#aboutUsPage .our_value .content_wrap .tit_wrap h3 {
    font-size: 3.2rem;
    line-height: 3.2rem;
    letter-spacing: -0.01em;
  }
  .container#aboutUsPage .our_value .content_wrap .tit_wrap h3 .mask:nth-child(n+3) {
    transform: translateY(0);
  }
  .container#aboutUsPage .our_value .content_wrap .valueSwiper {
    max-width: none;
    width: calc(100% + 3rem);
    margin-top: 5rem;
    margin-left: -1.5rem;
  }
  .container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container {
    padding: 0 1.5rem;
  }
  .container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper {
    gap: 0;
  }
  .container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide {
    min-width: 24.8rem;
    width: calc(100% - 9.7rem);
  }
  .container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item {
    height: 38.5rem;
    padding: 3.4rem 2.4rem;
    border-radius: 2rem;
  }
  .container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item.balanced_body, .container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item.attentive_coaching {
    margin-top: 0;
  }
  .container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item .value_tit {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .container#aboutUsPage .our_value .content_wrap .valueSwiper .swiper-container .swiper-wrapper .swiper-slide .value_item .value_desc {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
  .container#aboutUsPage .our_team {
    padding: 7.4rem 0 0 1rem;
  }
  .container#aboutUsPage .our_team .content_wrap .tit_wrap {
    gap: 2.4rem;
    margin-bottom: 4.8rem;
  }
  .container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box .sub_tit {
    margin-bottom: 1.6rem;
    padding-left: 0;
    font-size: 1.7rem;
    letter-spacing: -0.01em;
  }
  .container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box h3 {
    font-size: 3rem;
    line-height: 3.3rem;
  }
  .container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box.active h3 .mask:nth-child(n+3) .text {
    animation-delay: 0.35s;
  }
  .container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box.active h3 .mask:nth-child(n+6) .text {
    animation-delay: 0.5s;
  }
  .container#aboutUsPage .our_team .content_wrap .tit_wrap .animation_box.active h3 .mask:nth-child(n+12) .text {
    animation-delay: 0.65s;
  }
  .container#aboutUsPage .our_team .content_wrap .tit_wrap .desc {
    padding-bottom: 0;
    font-size: 1.5rem;
    line-height: 2.6rem;
  }
  .container#aboutUsPage .our_team .content_wrap .trainer_list {
    margin-right: -0.5rem;
  }
  .container#aboutUsPage .our_team .content_wrap .trainer_list > li {
    flex: auto;
    max-width: 50%;
    width: 50%;
    padding-right: 0;
    padding-bottom: 7rem;
  }
  .container#aboutUsPage .our_team .content_wrap .trainer_list > li:first-child {
    max-width: 100%;
    width: 100%;
    padding-bottom: 3.5rem;
  }
  .container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_tit {
    padding-top: 0;
    padding-left: 1.2rem;
    font-size: 1.8rem;
    line-height: 2rem;
  }
  .container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_img {
    margin-right: 1.5rem;
  }
  .container#aboutUsPage .our_team .content_wrap .trainer_list > li .name {
    margin: 2rem 0 1.2rem;
    padding-left: 1.2rem;
    font-size: 1.8rem;
  }
  .container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_detail {
    padding-left: 1.2rem;
    padding-right: 1.5rem;
  }
  .container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_detail li {
    padding-left: 1.4rem;
    font-size: 1.4rem;
    line-height: normal;
  }
  .container#aboutUsPage .our_team .content_wrap .trainer_list > li .trainer_detail li::before {
    top: 0.6rem;
  }
  .container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img01 {
    left: 27.2vw;
  }
  .container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img02 {
    top: 11.6vh;
    right: 1.4vw;
  }
  .container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img03 {
    top: 21vh;
    left: -2.2vw;
  }
  .container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img04 {
    top: auto;
    bottom: 23.4vh;
    left: 50vw;
  }
  .container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img05 {
    left: -6.7vw;
    bottom: 9.5vh;
  }
  .container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img06 {
    display: none;
  }
  .container#aboutUsPage .life_style .pin_wrap .img_wrap .img_box .img_item.img07 {
    bottom: 0;
    right: -2.7vw;
  }
  .container#aboutUsPage .life_style .pin_wrap .txt_wrap .logo {
    width: 12.8rem;
    height: 2.5rem;
  }
  .container#aboutUsPage .life_style .pin_wrap .txt_wrap .tit {
    margin: 2.8rem 0 2.4rem;
    font-size: 3.4rem;
    line-height: 3.6rem;
  }
  .container#aboutUsPage .life_style .pin_wrap .txt_wrap .desc {
    padding: 0 1rem;
    font-size: 1.5rem;
    line-height: 2.4rem;
  }
  .container#aboutUsPage .our_journey {
    padding: 7.6rem 0 9.2rem;
  }
  .container#aboutUsPage .our_journey .content_wrap {
    padding: 0 2.5rem;
  }
  .container#aboutUsPage .our_journey .content_wrap .tit_wrap {
    gap: 2.4rem;
    margin-bottom: 5rem;
  }
  .container#aboutUsPage .our_journey .content_wrap .tit_wrap .animation_box .sub_tit {
    margin-bottom: 1.6rem;
    padding-left: 0;
    font-size: 1.7rem;
    letter-spacing: -0.01em;
  }
  .container#aboutUsPage .our_journey .content_wrap .tit_wrap .animation_box h3 {
    font-size: 3rem;
    line-height: 3.3rem;
  }
  .container#aboutUsPage .our_journey .content_wrap .tit_wrap .animation_box.active h3 .mask:nth-child(n+2) .text {
    animation-delay: 0.2s;
  }
  .container#aboutUsPage .our_journey .content_wrap .tit_wrap .animation_box.active h3 .mask:nth-child(n+4) .text {
    animation-delay: 0.35s;
  }
  .container#aboutUsPage .our_journey .content_wrap .tit_wrap .desc {
    padding-bottom: 0;
    font-size: 1.5rem;
    line-height: 2.6rem;
  }
  .container#aboutUsPage .our_journey .content_wrap .tit_wrap .desc br {
    display: none;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list {
    flex-direction: column;
    margin-bottom: 8rem;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box {
    height: 25.6rem;
    border-radius: 1.2rem;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .year {
    top: 2rem;
    right: 3rem;
    width: 7rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list {
    left: 2.4rem;
    bottom: 2.4rem;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li {
    font-size: 1.4rem;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_detail_box .history_box .detail_list li ~ li {
    margin-top: 0.8rem;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_arrow_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: auto;
    left: 0;
    bottom: -67%;
    width: 100%;
    padding: 0 1.5rem;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_arrow_wrap button {
    width: 3.6rem;
    height: 3.6rem;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_list .history_detail_list .history_arrow_wrap button .ic_arrow {
    width: 2.3rem;
    height: 2.3rem;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_list .year_wrap {
    gap: 3.5rem;
    top: auto;
    bottom: -54%;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_list .year_wrap .year_txt {
    font-size: 27vw;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_year_list ul {
    overflow-x: auto;
    gap: 1rem;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_year_list ul li {
    flex: 1;
  }
  .container#aboutUsPage .our_journey .history_wrap .history_year_list ul li .btn_year {
    width: 100%;
    height: 3.6rem;
    padding: 0 1.2rem;
    border-radius: 0.6rem;
    font-size: 1.4rem;
  }
}

.container {
  /* 위탁운영 */
}
.container#operatePage {
  padding-top: 10.7rem;
}
.container#operatePage .visual {
  padding: 3rem 0 8rem;
}
.container#operatePage .visual .content_wrap .img_grid {
  display: flex;
  justify-content: space-between;
}
.container#operatePage .visual .content_wrap .img_grid .item .img_wrap {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.17, 0.84, 0.44, 1);
  overflow: hidden;
  position: relative;
}
.container#operatePage .visual .content_wrap .img_grid .item .img_wrap img {
  width: 100%;
}
.container#operatePage .visual .content_wrap .img_grid .item.left {
  display: flex;
  gap: 7rem;
  flex-direction: column-reverse;
  justify-content: space-between;
  padding-top: 3.2rem;
}
.container#operatePage .visual .content_wrap .img_grid .item.left .img_wrap {
  width: 21.5rem;
}
.container#operatePage .visual .content_wrap .img_grid .item.left .txt_wrap {
  color: #15181E;
}
.container#operatePage .visual .content_wrap .img_grid .item.left .txt_wrap .tit {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.8rem;
  letter-spacing: -0.02em;
}
.container#operatePage .visual .content_wrap .img_grid .item.left .txt_wrap .desc {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3rem;
  letter-spacing: -0.02em;
}
.container#operatePage .visual .content_wrap .img_grid .item.right {
  max-width: 96.9rem;
  width: 58%;
}
.container#operatePage .visual .content_wrap .img_grid .item.right .sm_img,
.container#operatePage .visual .content_wrap .img_grid .item.right .sm {
  display: none;
}
.container#operatePage .visual .content_wrap .img_grid .item.right .img_wrap {
  width: 100%;
}
.container#operatePage .visual .content_wrap .img_grid.active .item .img_wrap {
  opacity: 1;
}
.container#operatePage .service_process {
  padding: 18rem 0;
  background-color: #161617;
  color: #fff;
}
.container#operatePage .service_process .content_wrap {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  max-width: 155rem;
}
.container#operatePage .service_process .content_wrap .left_box {
  flex-shrink: 0;
  width: 37.8rem;
}
.container#operatePage .service_process .content_wrap .left_box .sticky_box {
  position: sticky;
  top: 15rem;
}
.container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box .sub_tit {
  margin-bottom: 2.8rem;
  padding-left: 0.4rem;
  font-size: 2rem;
  font-weight: 600;
}
.container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box .sub_tit .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box h3 {
  font-family: "Satoshi";
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 6.4rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box h3 .mask {
  display: inline-block;
}
.container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box h3 .mask .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box.active .sub_tit .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}
.container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box.active h3 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards 0.2s;
}
.container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box.active h3 .mask:nth-child(n+2) .text {
  animation-delay: 0.35s;
}
.container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box.active h3 .mask:nth-child(n+4) .text {
  animation-delay: 0.5s;
}
.container#operatePage .service_process .content_wrap .right_box {
  flex: 1;
  max-width: 74.6rem;
}
.container#operatePage .service_process .content_wrap .right_box .process_box {
  opacity: 0.2;
  transition: all 0.3s;
  padding-top: 2rem;
  border-top: 0.1rem solid #3C3C3C;
}
.container#operatePage .service_process .content_wrap .right_box .process_box ~ .process_box {
  margin-top: 5rem;
}
.container#operatePage .service_process .content_wrap .right_box .process_box .num_wrap {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 5rem;
}
.container#operatePage .service_process .content_wrap .right_box .process_box .num_wrap .num {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background-color: #fff;
  border-radius: 50%;
  font-family: "Satoshi";
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111111;
}
.container#operatePage .service_process .content_wrap .right_box .process_box .num_wrap .process_tit {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.container#operatePage .service_process .content_wrap .right_box .process_box .process_desc {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: -0.02em;
}
.container#operatePage .service_process .content_wrap .right_box .process_box.active {
  opacity: 1;
}
.container#operatePage .our_project {
  padding: 18rem 0 20rem;
}
.container#operatePage .our_project .content_wrap {
  max-width: 155rem;
}
.container#operatePage .our_project .content_wrap .tit_wrap {
  margin-bottom: 8rem;
}
.container#operatePage .our_project .content_wrap .tit_wrap .sub_tit {
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: 600;
  color: #0F111A;
  text-transform: uppercase;
}
.container#operatePage .our_project .content_wrap .tit_wrap .sub_tit .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#operatePage .our_project .content_wrap .tit_wrap h3 {
  font-size: 5.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.container#operatePage .our_project .content_wrap .tit_wrap h3 .mask {
  display: inline-block;
}
.container#operatePage .our_project .content_wrap .tit_wrap h3 .mask .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#operatePage .our_project .content_wrap .tit_wrap.active .sub_tit .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}
.container#operatePage .our_project .content_wrap .tit_wrap.active h3 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards 0.2s;
}
.container#operatePage .our_project .content_wrap .project_list .project_item {
  display: flex;
  gap: 2.4rem;
}
.container#operatePage .our_project .content_wrap .project_list .project_item ~ .project_item {
  position: relative;
  margin-top: 12rem;
}
.container#operatePage .our_project .content_wrap .project_list .project_item ~ .project_item::before {
  content: "";
  display: block;
  position: absolute;
  top: -6rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #EAEAEA;
}
.container#operatePage .our_project .content_wrap .project_list .project_item .img_wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  border-radius: 0.4rem;
}
.container#operatePage .our_project .content_wrap .project_list .project_item .project_info {
  display: flex;
  flex-direction: column;
  width: 47rem;
  padding: 2rem 4rem 4rem;
  background-color: #F5F5F5;
  border-radius: 1.2rem;
}
.container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_tit {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 7.2rem;
  letter-spacing: -0.01em;
}
.container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_desc {
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: -0.01em;
  color: #15181E;
  word-break: keep-all;
}
.container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_detail {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_detail li .sort {
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 2.8rem;
  letter-spacing: -0.01em;
  color: #B8B8B8;
}
.container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_detail li .detail {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.3rem;
  letter-spacing: -0.01em;
  color: rgba(21, 24, 30, 0.8);
}
.container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_detail li.result {
  margin-left: 1.2rem;
}
.container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_detail li.main_program .detail {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_detail li.main_program .detail .program_type {
  display: flex;
  align-items: center;
  height: 3.2rem;
  padding: 0 1.2rem;
  background-color: #fff;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #555555;
}
.container#operatePage .our_project .content_wrap .project_list .project_item.active .img_wrap {
  opacity: 1;
}
@media (max-width: 1280px) {
  .container#operatePage .visual .content_wrap .img_grid {
    gap: 3rem;
  }
  .container#operatePage .visual .content_wrap .img_grid .item.left {
    gap: 3rem;
  }
}
@media (max-width: 1024px) {
  .container#operatePage .visual .content_wrap .img_grid {
    gap: 3.4rem;
    flex-direction: column-reverse;
  }
  .container#operatePage .visual .content_wrap .img_grid .item.left .img_wrap {
    display: none;
  }
  .container#operatePage .visual .content_wrap .img_grid .item.left .txt_wrap {
    margin-top: 0;
    width: 100%;
    text-align: right;
  }
  .container#operatePage .visual .content_wrap .img_grid .item.right {
    display: flex;
    gap: 0.7rem;
    align-items: flex-end;
    max-width: none;
    width: 100%;
  }
  .container#operatePage .visual .content_wrap .img_grid .item.right .sm_img {
    display: block;
    width: 45.7%;
  }
  .container#operatePage .visual .content_wrap .img_grid .item.right .lg {
    display: none;
  }
  .container#operatePage .visual .content_wrap .img_grid .item.right .sm {
    display: block;
  }
  .container#operatePage .service_process .content_wrap {
    gap: 5rem;
    flex-direction: column;
  }
  .container#operatePage .service_process .content_wrap .left_box {
    width: 100%;
  }
  .container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box h3 {
    max-width: 63rem;
  }
  .container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box h3 br {
    display: none;
  }
  .container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box.active h3 .mask:nth-child(n+4) .text {
    animation-delay: 0.35s;
  }
  .container#operatePage .service_process .content_wrap .right_box {
    max-width: none;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item {
    flex-direction: column;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item .project_info {
    width: 100%;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_detail {
    gap: 2.5rem;
    flex-direction: column;
    margin-top: 3.2rem;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_detail li.result {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .container#operatePage .visual {
    padding: 1.6rem 0 4.2rem;
  }
  .container#operatePage .visual .content_wrap .img_grid .item.left {
    padding-top: 0;
  }
  .container#operatePage .visual .content_wrap .img_grid .item.left .txt_wrap .tit {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
  }
  .container#operatePage .visual .content_wrap .img_grid .item.left .txt_wrap .desc {
    font-size: 1.5rem;
    line-height: 2.5rem;
    letter-spacing: -0.04em;
  }
  .container#operatePage .service_process {
    padding: 7.6rem 0 10rem;
  }
  .container#operatePage .service_process .content_wrap .left_box .sticky_box {
    max-width: 32rem;
  }
  .container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box {
    padding: 0 1rem;
  }
  .container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box .sub_tit {
    margin-bottom: 1.4rem;
    padding-left: 0;
    font-size: 1.6rem;
    letter-spacing: -0.01em;
  }
  .container#operatePage .service_process .content_wrap .left_box .sticky_box .animation_box h3 {
    font-size: 3.2rem;
    line-height: 3.2rem;
  }
  .container#operatePage .service_process .content_wrap .right_box .process_box {
    text-align: center;
  }
  .container#operatePage .service_process .content_wrap .right_box .process_box .num_wrap {
    margin-bottom: 2rem;
  }
  .container#operatePage .service_process .content_wrap .right_box .process_box .num_wrap .num {
    width: 4.4rem;
    height: 4.4rem;
  }
  .container#operatePage .service_process .content_wrap .right_box .process_box .num_wrap .process_tit {
    font-size: 1.8rem;
  }
  .container#operatePage .service_process .content_wrap .right_box .process_box img {
    width: calc(100% - 2rem);
  }
  .container#operatePage .service_process .content_wrap .right_box .process_box .process_desc {
    margin-top: 3.6rem;
    font-size: 1.5rem;
    line-height: 2.4rem;
    color: #AEAEAE;
    text-align: left;
    word-break: keep-all;
  }
  .container#operatePage .service_process .content_wrap .right_box .process_box .process_desc br {
    display: none;
  }
  .container#operatePage .our_project {
    padding: 7.6rem 0 13.5rem;
  }
  .container#operatePage .our_project .content_wrap .tit_wrap {
    margin-bottom: 5rem;
    padding: 0 1rem;
  }
  .container#operatePage .our_project .content_wrap .tit_wrap .sub_tit {
    font-size: 1.8rem;
    letter-spacing: -0.01em;
  }
  .container#operatePage .our_project .content_wrap .tit_wrap h3 {
    font-size: 3rem;
    line-height: 3.8rem;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item {
    gap: 1rem;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item ~ .project_item {
    margin-top: 6rem;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item ~ .project_item::before {
    top: -3rem;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item .project_info {
    padding: 3.6rem 2.4rem 2.4rem;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_tit {
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
    line-height: normal;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_desc {
    font-size: 1.5rem;
    line-height: 2.7rem;
    letter-spacing: -0.02em;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_desc br {
    display: none;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_detail li .sort {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_detail li .detail {
    font-size: 1.6rem;
  }
  .container#operatePage .our_project .content_wrap .project_list .project_item .project_info .project_detail li .detail .program_type {
    height: 3.6rem;
  }
}

.container {
  /* program */
}
.container#programPage {
  padding-top: 10.7rem;
}
.container#programPage .visual {
  padding: 3rem 0 8rem;
}
.container#programPage .visual .content_wrap .img_grid {
  display: flex;
  justify-content: space-between;
}
.container#programPage .visual .content_wrap .img_grid .item .img_wrap {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.17, 0.84, 0.44, 1);
  overflow: hidden;
  position: relative;
}
.container#programPage .visual .content_wrap .img_grid .item .img_wrap img {
  width: 100%;
}
.container#programPage .visual .content_wrap .img_grid .item.left {
  display: flex;
  gap: 7rem;
}
.container#programPage .visual .content_wrap .img_grid .item.left .img_wrap {
  width: 21.5rem;
}
.container#programPage .visual .content_wrap .img_grid .item.left .txt_wrap {
  margin-top: 3.2rem;
  color: #15181E;
}
.container#programPage .visual .content_wrap .img_grid .item.left .txt_wrap .tit {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.8rem;
  letter-spacing: -0.02em;
}
.container#programPage .visual .content_wrap .img_grid .item.left .txt_wrap .desc {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3rem;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.container#programPage .visual .content_wrap .img_grid .item.right {
  max-width: 61.9rem;
  width: 40%;
}
.container#programPage .visual .content_wrap .img_grid .item.right .sm_img {
  display: none;
}
.container#programPage .visual .content_wrap .img_grid .item.right .img_wrap {
  width: 100%;
}
.container#programPage .visual .content_wrap .img_grid.active .item .img_wrap {
  opacity: 1;
}
.container#programPage .explore_program {
  padding: 18rem 0 0;
  background-color: #161617;
  color: #fff;
}
.container#programPage .explore_program .content_wrap {
  max-width: 155rem;
}
.container#programPage .explore_program .content_wrap .tit_wrap .sub_tit {
  margin-bottom: 2.8rem;
  padding-left: 0.4rem;
  font-size: 2rem;
  font-weight: 600;
}
.container#programPage .explore_program .content_wrap .tit_wrap .sub_tit .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#programPage .explore_program .content_wrap .tit_wrap h3 {
  font-family: "Satoshi";
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 6.4rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.container#programPage .explore_program .content_wrap .tit_wrap h3 .mask {
  display: inline-block;
}
.container#programPage .explore_program .content_wrap .tit_wrap h3 .mask .text {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
}
.container#programPage .explore_program .content_wrap .tit_wrap.active .sub_tit .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}
.container#programPage .explore_program .content_wrap .tit_wrap.active h3 .mask .text {
  animation: slideUp 0.6s cubic-bezier(0.17, 0.84, 0.44, 1) forwards 0.2s;
}
.container#programPage .explore_program .content_wrap .tit_wrap.active h3 .mask:nth-child(n+2) .text {
  animation-delay: 0.35s;
}
.container#programPage .explore_program .content_wrap .sticky_wrap {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 8.6rem;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .left_box {
  position: relative;
  flex-shrink: 0;
  width: 37.8rem;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .left_box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1rem;
  height: 100%;
  background-color: #292929;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .left_box .sticky_box {
  position: sticky;
  top: 15rem;
  padding-bottom: 20rem;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .left_box .sticky_box .has_line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.3rem;
  height: 4.5rem;
  background-color: #fff;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .left_box .sticky_box .program_txt_list {
  padding-top: 2.4rem;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .left_box .sticky_box .program_txt_list li {
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.4s;
  padding-left: 3.2rem;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 5rem;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .left_box .sticky_box .program_txt_list li.active {
  opacity: 1;
  position: relative;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .right_box {
  flex: 1;
  max-width: 103.4rem;
  padding-bottom: 20rem;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .right_box .program_box {
  opacity: 0.2;
  transition: all 0.3s;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .right_box .program_box ~ .program_box {
  border-top: 0.1rem solid #292929;
  margin-top: 4.5rem;
  padding-top: 4.5rem;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .right_box .program_box .txt_wrap {
  margin-bottom: 4rem;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .right_box .program_box .txt_wrap .program_tit {
  margin-bottom: 0.4rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 5rem;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .right_box .program_box .txt_wrap .program_desc {
  font-size: 1.5rem;
  line-height: 2.7rem;
  letter-spacing: -0.01em;
  color: #AEAEAE;
  word-break: keep-all;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .right_box .program_box img {
  border-radius: 0.8rem;
}
.container#programPage .explore_program .content_wrap .sticky_wrap .right_box .program_box.active {
  opacity: 1;
}
@media (max-width: 1280px) {
}
@media (max-width: 1024px) {
  .container#programPage .explore_program .content_wrap .sticky_wrap .left_box {
    width: 26rem;
  }
}
@media (max-width: 768px) {
  .container#programPage .explore_program {
    padding: 8rem 1rem 9.2rem;
  }
  .container#programPage .explore_program .content_wrap .tit_wrap .sub_tit {
    margin-bottom: 1.6rem;
    padding-left: 0;
    font-size: 1.6rem;
    letter-spacing: -0.01em;
  }
  .container#programPage .explore_program .content_wrap .tit_wrap h3 {
    font-size: 3.2rem;
    line-height: 1;
  }
  .container#programPage .explore_program .content_wrap .sticky_wrap {
    gap: 0;
    margin-top: 6rem;
  }
  .container#programPage .explore_program .content_wrap .sticky_wrap .left_box {
    display: none;
  }
  .container#programPage .explore_program .content_wrap .sticky_wrap .right_box {
    padding-bottom: 0;
  }
  .container#programPage .explore_program .content_wrap .sticky_wrap .right_box .program_box ~ .program_box {
    margin-top: 4.8rem;
    padding-top: 4.8rem;
  }
  .container#programPage .explore_program .content_wrap .sticky_wrap .right_box .program_box .txt_wrap {
    margin-bottom: 3.6rem;
  }
  .container#programPage .explore_program .content_wrap .sticky_wrap .right_box .program_box .txt_wrap .program_tit {
    font-size: 2.3rem;
    line-height: normal;
  }
  .container#programPage .explore_program .content_wrap .sticky_wrap .right_box .program_box .txt_wrap .program_desc br {
    display: none;
  }
}

.container {
  /* contact */
}
.container#contactPage {
  padding-top: 10.7rem;
}
.container#contactPage .contact_info {
  padding: 3rem 0 12rem;
}
.container#contactPage .contact_info .content_wrap {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}
.container#contactPage .contact_info .content_wrap .info_wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 45rem;
}
.container#contactPage .contact_info .content_wrap .info_wrap .txt_wrap {
  margin-top: 1rem;
  color: #15181e;
}
.container#contactPage .contact_info .content_wrap .info_wrap .txt_wrap .sub_tit {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.8rem;
  letter-spacing: -0.02em;
}
.container#contactPage .contact_info .content_wrap .info_wrap .txt_wrap .sub_desc {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3rem;
  letter-spacing: -0.02em;
}
.container#contactPage .contact_info .content_wrap .info_wrap .txt_wrap .btn_contact_modal {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
  width: 18.8rem;
  height: 5.6rem;
  margin-top: 4.4rem;
  background-color: #000;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}
.container#contactPage .contact_info .content_wrap .info_wrap .txt_wrap .btn_contact_modal::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../images/sub/contact/ic_arrow_white.svg) no-repeat center/cover;
}
.container#contactPage .contact_info .content_wrap .info_wrap .txt_wrap .btn_contact_modal:hover {
  background-color: #474747;
}
.container#contactPage .contact_info .content_wrap .info_wrap .info_list {
  max-width: 96.4rem;
  margin-top: auto;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.container#contactPage .contact_info .content_wrap .info_wrap .info_list li {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.container#contactPage .contact_info .content_wrap .info_wrap .info_list li .sort {
  width: 22.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #b6b6b6;
}
.container#contactPage .contact_info .content_wrap .info_wrap .info_list li .detail {
  flex: 1;
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #0f111a;
  word-break: keep-all;
}
.container#contactPage .contact_info .content_wrap .info_wrap .info_list li .detail .btn_instagram {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.container#contactPage .contact_info .content_wrap .info_wrap .info_list li .detail .btn_instagram::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../images/sub/contact/ic_arrow_diagonal.svg) no-repeat center/cover;
}
.container#contactPage .contact_info .content_wrap .map_wrap {
  max-width: 57.6rem;
  width: 38%;
}
.container#contactPage .contact_info .content_wrap .map_wrap img {
  width: 100%;
}
.container#contactPage .contact_modal_box {
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 3rem;
  background-color: rgba(0, 0, 0, 0.2);
}
.container#contactPage .contact_modal_box .contact_box {
  overflow-y: auto;
  position: relative;
  max-width: 99.8rem;
  width: 100%;
  height: 100%;
  margin-left: auto;
  padding: 0 5rem 4rem;
  background-color: #fff;
  border-radius: 2rem;
}
.container#contactPage .contact_modal_box .contact_box::-webkit-scrollbar {
  display: none;
}
.container#contactPage .contact_modal_box .contact_box .tit_wrap {
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 4rem 0 5.6rem;
  background-color: #fff;
}
.container#contactPage .contact_modal_box .contact_box .tit_wrap .tit {
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.container#contactPage .contact_modal_box .contact_box .tit_wrap .btn_close {
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  background: url(../images/sub/contact/ic_close.svg) no-repeat center/cover;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item {
  padding-bottom: 4.8rem;
  border-bottom: 0.1rem solid #eaeaea;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item ~ .list_item {
  padding-top: 3.2rem;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .essential {
  color: #ee3744;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .txt_info {
  margin-bottom: 2.4rem;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .txt_info .num {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.9rem;
  letter-spacing: -0.02em;
  color: #b6b6b6;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .txt_info .tit {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.1rem;
  letter-spacing: -0.02em;
  color: #111111;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .txt_info .desc {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.2rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #111111;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .label_txt {
  margin: 3.2rem 0 1.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .radio_wrap {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .radio_wrap .radio_group {
  width: calc(50% - 0.4rem);
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .radio_wrap .radio_group input[type=radio] {
  display: none;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .radio_wrap .radio_group input[type=radio]:checked ~ label {
  background-color: #000;
  color: #fff;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .radio_wrap .radio_group label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 6rem;
  background-color: #f0f0f0;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f111a;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .input_wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 5rem;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .input_wrap .input_group {
  width: calc(50% - 1rem);
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .input_wrap .input_group label {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .input_wrap .input_group input {
  width: 100%;
  height: 6rem;
  padding: 0 2.6rem;
  background-color: #fff;
  border: 0.1rem solid #eaeaea;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .input_wrap .input_group input::placeholder {
  color: #b8b8b8;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .etc_input_wrap {
  margin-top: 2.2rem;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .etc_input_wrap label {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .etc_input_wrap input {
  display: block;
  width: 100%;
  height: 6rem;
  padding: 0 2.8rem;
  background-color: #fff;
  border: 0.1rem solid #eaeaea;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .etc_input_wrap input::placeholder {
  color: #b8b8b8;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .textarea_group label {
  display: block;
  margin: 4.8rem 0 1.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .textarea_group textarea {
  display: block;
  width: 100%;
  height: 20rem;
  padding: 2.4rem 2.8rem;
  background-color: #fff;
  border: 0.1rem solid #eaeaea;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  line-height: 2.3rem;
  letter-spacing: -0.02em;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .textarea_group textarea::placeholder {
  color: #b8b8b8;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap {
  margin-top: 2rem;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap .checkbox_desc_box {
  overflow: hidden;
  width: 100%;
  background-color: #f9f9f9;
  border: 0.1rem solid #f1f1f1;
  border-radius: 1rem;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap .checkbox_desc_box .checkbox_tit {
  width: 100%;
  height: 5rem;
  padding: 1.6rem 2.6rem;
  border-bottom: 0.1rem solid #eaeaea;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap .checkbox_desc_box .checkbox_tit .essential {
  margin-left: 0.4rem;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap .checkbox_desc_box .scroll_box {
  overflow-y: auto;
  height: 13.8rem;
  padding: 2.4rem 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.6rem;
  letter-spacing: -0.01em;
  color: #a2a2a2;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap .checkbox_desc_box .scroll_box::-webkit-scrollbar {
  display: none;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap .checkbox_group {
  margin-top: 2rem;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap .checkbox_group input[type=checkbox] {
  display: none;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap .checkbox_group input[type=checkbox]:checked ~ label::before {
  background: url(../images/sub/contact/ic_checkbox_active.svg) no-repeat center/cover;
  border: none;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap .checkbox_group label {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap .checkbox_group label::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.8rem;
  border: 0.1rem solid #dcdcdc;
  border-radius: 0.3rem;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .btn_submit {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  align-items: center;
  width: 29.8rem;
  height: 5.6rem;
  margin: 3.2rem 0 5rem auto;
  background-color: #000;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}
.container#contactPage .contact_modal_box .contact_box .contact_info_list .btn_submit::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../images/sub/contact/ic_arrow_white.svg) no-repeat center/cover;
}
@media (max-width: 1024px) {
  .container#contactPage .contact_info .content_wrap {
    flex-direction: column-reverse;
  }
  .container#contactPage .contact_info .content_wrap .map_wrap {
    max-width: none;
    width: 100%;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap .txt_wrap {
    text-align: right;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap .txt_wrap .btn_contact_modal {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .container#contactPage .common_tit_wrap {
    padding-bottom: 5.2rem;
  }
  .container#contactPage .contact_info {
    padding: 1.5rem 0 10rem;
  }
  .container#contactPage .contact_info .content_wrap {
    gap: 3.4rem;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap {
    min-height: auto;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap .txt_wrap {
    margin-top: 0;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap .txt_wrap .sub_tit {
    margin-bottom: 0.5rem;
    padding-right: 0.8rem;
    font-size: 1.8rem;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap .txt_wrap .sub_desc {
    padding-right: 0.8rem;
    font-size: 1.5rem;
    line-height: 2.5rem;
    letter-spacing: -0.04em;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap .txt_wrap .btn_contact_modal {
    gap: 0.5rem;
    width: 100%;
    height: 6rem;
    margin-top: 5.4rem;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap .info_list {
    margin-top: 4rem;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap .info_list li {
    justify-content: space-between;
    padding: 1.6rem 1rem;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap .info_list li .sort {
    width: auto;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap .info_list li .detail {
    flex: auto;
    flex-direction: column-reverse;
    justify-content: flex-end;
    max-width: 22rem;
    width: 100%;
    font-size: 1.5rem;
    line-height: 2.2rem;
    text-align: right;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap .info_list li .detail .txt {
    opacity: 0.3;
  }
  .container#contactPage .contact_info .content_wrap .info_wrap .info_list li .detail .btn_instagram {
    justify-content: flex-end;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .container#contactPage .contact_modal_box {
    padding: 8rem 1.5rem 2rem;
  }
  .container#contactPage .contact_modal_box .contact_box {
    padding: 0 2rem 2rem;
  }
  .container#contactPage .contact_modal_box .contact_box .tit_wrap {
    padding: 2.4rem 0 1.8rem;
  }
  .container#contactPage .contact_modal_box .contact_box .tit_wrap .tit {
    padding-top: 1.2rem;
    font-size: 3rem;
  }
  .container#contactPage .contact_modal_box .contact_box .tit_wrap .btn_close {
    width: 1.6rem;
    height: 1.6rem;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item ~ .list_item {
    padding-top: 3rem;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .txt_info {
    margin-bottom: 2rem;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .txt_info .tit {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .txt_info .desc {
    display: block;
    line-height: 2.3rem;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .txt_info .desc .essential_txt {
    display: none;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .input_wrap {
    margin-top: 3.6rem;
    gap: 3rem;
    flex-direction: column;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .input_wrap .input_group {
    width: 100%;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .textarea_group label {
    margin-top: 3rem;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .textarea_group textarea {
    height: 16rem;
    padding: 2.4rem 2rem;
    font-size: 1.4rem;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap .checkbox_desc_box .checkbox_tit {
    height: auto;
    padding: 1.6rem 2rem;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .list_item .checkbox_wrap .checkbox_desc_box .scroll_box {
    height: 11.3rem;
    padding: 1.8rem 2rem;
    font-size: 1.4rem;
    line-height: 2.3rem;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .btn_submit {
    gap: 0.5rem;
    width: 100%;
    height: 6rem;
    margin: 6rem 0 0;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
  }
  .container#contactPage .contact_modal_box .contact_box .contact_info_list .btn_submit::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}

/*# sourceMappingURL=style.css.map */
