@charset "UTF-8";
/************************************************************************************/
/************************************* Colors *************************************/
/************************************************************************************/
:root {
  --white:#fff;
  --black:#000;
  --red:#9B0000;
  --blue:#0F0078;
  --light-blue:#5163c0;
  --deep-blue:#05014a;
  --orange:#ff9644;
  /* color */
  --font-color:#010101;
  --primary: #4D1FF2;
  --primary400: #2b379e;
  --primary300: #3a49b4;
  --primary200: #7680ca;
  --primary100: #c4c7e9;
  --primary000: #e7e9f6;
  --secondary: #FB6B4D;
  --gray100: #F3F6F9;
  --gray200: #E9ECEF;
  --gray300: #CED4DA;
  --gray400: #ADB5BD;
  --gray500: #848C93;
  --brd-c1: #E9ECEF;
  --brd-c2: #CED4DA;
  --c-red: #ec0000;
  --btn-gray:#6c757d;
  --mc: #2e55e7;
}

/* font-size */
/* absolute-center */
/* transition */
/* common */
html {
  font-size: 62.5%;
}

body {
  font-family: "Inter", "Pretendard Variable", "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Apple SD Gothic Neo", "Malgun Gothic", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  word-break: keep-all;
  letter-spacing: -0.025em;
  font-size: 1.8rem;
}
@media (max-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}
body a {
  color: var(--black);
  text-decoration: none;
}
body:has(#modal.show) {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

a, input, button, select {
  outline-offset: 2px;
  outline-color: var(--black);
}

/* ----------------------------------------
* common
* ----------------------------------------*/
:root {
  --header-height: 80px;
  --header-height-scroll: 60px;
}
@media (max-width: 1280px) {
  :root {
    --header-height: 64px;
    --header-height-scroll: 48px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 56px;
  }
}
/* table */
table {
  width: 100%;
}

.wrap-in {
  max-width: 1416px;
  margin: 0 auto;
}
@media (max-width: 1460px) {
  .wrap-in {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .wrap-in {
    max-width: 94%;
  }
}
@media (max-width: 480px) {
  .wrap-in {
    max-width: 90%;
  }
}

.padding-in {
  padding-inline: 80px;
}
@media (max-width: 1460px) {
  .padding-in {
    padding-inline: 40px;
  }
}
@media (max-width: 767px) {
  .padding-in {
    padding-inline: 28px;
  }
}
@media (max-width: 480px) {
  .padding-in {
    padding-inline: 20px;
  }
}
@media (max-width: 320px) {
  .padding-in {
    padding-inline: 16px;
  }
}

/* scroll */
.scroll-cont {
  position: absolute;
  right: 3.75vw;
  bottom: 5.21vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35px;
  height: auto;
}
.scroll-cont .line {
  position: relative;
  width: 1px;
  height: 82px;
  background-color: var(--font-color);
  z-index: 1;
}
.scroll-cont .circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--white);
  border-radius: 50%;
  margin-top: -44%;
  margin-bottom: 26px;
  z-index: 0;
}
.scroll-cont img {
  width: 12px;
}
@media (max-width: 767px) {
  .scroll-cont {
    width: 21px;
  }
  .scroll-cont .line {
    height: 64px;
  }
  .scroll-cont .circle {
    margin-bottom: 1em;
  }
  .scroll-cont img {
    width: 10px;
  }
}

/* more-btn */
.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 214px;
  padding-block: 4px;
  padding-inline: 32px 4px;
  border-radius: 100px;
  background-color: var(--gray100);
  font-size: 1.6rem;
}
@media (max-width: 1280px) {
  .btn-more {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .btn-more {
    font-size: 1.4rem;
  }
}
.btn-more::after {
  content: "";
  display: block;
  width: 60px;
  margin-left: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white) url("/images/doah2/main/arrow_right_alt.svg") no-repeat center/66.67% 66.67%;
}
.btn-more.sty-fill-black {
  background-color: var(--font-color);
  color: var(--white);
}
.btn-more.sty-fill-white {
  background-color: var(--white);
}
.btn-more.sty-fill-white::after {
  background-color: var(--gray100);
}
.btn-more.sty-line-white {
  border: 1px solid var(--gray200);
  background-color: transparent;
  color: var(--white);
}
@media (max-width: 1280px) {
  .btn-more {
    min-width: 200px;
    padding-left: 28px;
  }
  .btn-more::after {
    width: 52px;
  }
}
@media (max-width: 767px) {
  .btn-more {
    min-width: 160px;
    padding-left: 20px;
  }
  .btn-more::after {
    content: "";
    display: block;
    width: 40px;
  }
}
@media (max-width: 480px) {
  .btn-more {
    min-width: 150px;
  }
  .btn-more::after {
    content: "";
    display: block;
    width: 32px;
  }
}

/* AI */
.img-ai {
  position: relative;
}
.img-ai::after {
  position: absolute;
  bottom: 1em;
  right: 1em;
  content: "";
  display: block;
  padding: 1px 12px;
  position: absolute;
  content: "AI-assisted image";
  font-size: 1.3rem;
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: var(--white);
  z-index: 1;
}
.img-ai.img-ai-right {
  right: auto;
  left: 1em;
}

.img-ai2 {
  text-align: right;
}
.img-ai2::after {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  margin-top: 1em;
  content: "AI-assisted image";
  font-size: 1.3rem;
  font-weight: 300;
  border-radius: 100px;
  color: var(--white);
  z-index: 1;
}

/* ----------------------------------------
* animation
* ----------------------------------------*/
.fade-in-doah {
  opacity: 0;
  -webkit-animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-transform: none;
          transform: none;
}

.fade-in-doah-small {
  opacity: 0;
  -webkit-animation: contIn2 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: contIn2 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-transform: none;
          transform: none;
}

@-webkit-keyframes contIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes contIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes contIn2 {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes contIn2 {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes imgReveal {
  from {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes imgReveal {
  from {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* ----------------------------------------
* header
* ----------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: var(--header-height);
  padding-inline: 52px;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}
header .logo a {
  display: block;
  width: 154px;
  height: 32px;
  background: url("/images/doah2/common/logo_b.svg") no-repeat center/100%;
}
header .nav-wrap {
  position: relative;
  margin-left: 5.5em;
  font-family: "Inter";
}
header .nav-wrap .btn-close {
  display: none;
}
header .nav-wrap .dep1-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .nav-wrap .dep1-wrap .dep1-in {
  position: relative;
  height: 100%;
}
header .nav-wrap .dep1-wrap .dep1-in > a {
  padding-inline: 2.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: var(--header-height);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
header .nav-wrap .dep1-wrap .dep1-in > a:hover {
  color: var(--primary);
}
header .nav-wrap .dep2-wrap {
  display: none;
  position: absolute;
  top: var(--header-height);
  width: 100%;
  padding-block: 1em;
}
header .nav-wrap .dep2-wrap li a {
  text-align: center;
  display: block;
  padding: 0.5em 1em;
  font-size: 1.5rem;
}
@media (max-width: 1280px) {
  header .nav-wrap .dep2-wrap li a {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  header .nav-wrap .dep2-wrap li a {
    font-size: 1.3rem;
  }
}
header .nav-wrap .dep2-wrap li a {
  color: var(--gray500);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
header .nav-wrap .dep2-wrap li:hover a {
  text-decoration: underline;
  color: var(--font-color);
}
header .nav-bg {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: 150%;
  background-color: var(--white);
}
header .util {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .lang .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 36px;
  border-radius: 100px;
  border: 1px solid rgba(18, 18, 18, 0.5);
  font-size: 1.4rem;
}
@media (max-width: 1280px) {
  header .lang .item {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  header .lang .item {
    font-size: 1.2rem;
  }
}
header .lang .item:first-child {
  margin-right: -10px;
}
header .lang .item.active {
  background-color: var(--font-color);
  color: var(--white);
}
header .burger-wrap {
  display: none;
}
@media (max-width: 1460px) {
  header {
    padding-inline: 40px;
  }
  header .nav-wrap {
    margin-left: 3.2em;
  }
  header .nav-wrap .dep1-wrap .dep1-in > a {
    padding-inline: 2em;
  }
}
@media (max-width: 1280px) {
  header {
    padding-inline: 32px;
  }
  header .logo {
    z-index: 100;
  }
  header .logo a {
    width: 123px;
    height: 25px;
  }
  header .nav-wrap {
    position: fixed;
    left: 0;
    top: 0;
    display: block;
    display: none;
    width: 100%;
    height: 100vh;
    margin-left: 0;
    background-color: var(--white);
    z-index: 90;
  }
  header .nav-wrap .btn-close {
    position: absolute;
    right: 0;
    display: block;
    width: var(--header-height);
    height: var(--header-height);
    aspect-ratio: 1;
    margin-left: auto;
  }
  header .nav-wrap .dep2-wrap {
    display: none;
    position: static;
    padding: 1em;
  }
  header .nav-wrap .dep2-wrap li a {
    text-align: left;
  }
  header .nav-wrap .dep1-wrap {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: calc(var(--header-height) + 1.5em);
    padding-inline: 1em;
    gap: 0;
  }
  header .nav-wrap .dep1-wrap .dep1-in {
    width: 100%;
    padding-block: 1em;
    border-bottom: 1px solid var(--font-color);
  }
  header .nav-wrap .dep1-wrap .dep1-in > a {
    padding: 0.4em 1em;
    height: auto;
    font-size: 2.8rem;
    font-weight: 600;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  header .util {
    gap: 10px;
    margin-right: -10px;
  }
  header .lang .item {
    width: 48px;
    height: 34px;
  }
  header .burger-wrap {
    width: 52px;
    aspect-ratio: 1;
    display: block;
  }
  header .burger-wrap .burger-in {
    display: block;
    position: relative;
    width: 32px;
    height: 24px;
    margin-inline: auto;
    margin-top: 14px;
  }
  header .burger-wrap .burger-in span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 0;
    background-color: var(--font-color);
  }
  header .burger-wrap .burger-in span:nth-child(2) {
    top: 11px;
  }
  header .burger-wrap .burger-in span:last-child {
    bottom: 0;
  }
}
@media (max-width: 767px) {
  header {
    padding-inline: 28px;
  }
  header .logo {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    min-width: 0;
  }
  header .logo a {
    display: block;
    width: 92px;
    max-width: 100%;
    height: 19px;
  }
  header .nav-wrap .dep1-wrap .dep1-in > a {
    font-size: 2rem;
  }
  header .util {
    gap: 0;
    margin-right: -12px;
  }
  header .lang .item {
    width: 38px;
    height: 24px;
  }
  header .lang .item:first-child {
    margin-right: -6px;
  }
  header .burger-wrap .burger-in {
    width: 28px;
    height: 18px;
    margin-top: 17px;
    font-size: 0;
    line-height: 0;
  }
  header .burger-wrap .burger-in span {
    height: 2px;
    -webkit-transform: scaleY(0.5);
            transform: scaleY(0.5);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  header .burger-wrap .burger-in span:nth-child(2) {
    top: 8px;
  }
  header .burger-wrap .burger-in span:last-child {
    bottom: 0;
  }
}
@media (max-width: 480px) {
  header {
    padding-inline: 20px;
  }
}
@media (max-width: 320px) {
  header {
    padding-inline: 16px;
  }
}

/* ----------------------------------------
* footer
* ----------------------------------------*/
.to-top {
  position: fixed;
  bottom: 5.5em;
  right: 80px;
  display: none;
}
.to-top a span {
  width: 72px;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  font-family: "Inter";
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  font-size: 1.6rem;
}
@media (max-width: 1280px) {
  .to-top a span {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .to-top a span {
    font-size: 1.4rem;
  }
}
.to-top a span::before {
  display: block;
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background: url("/images/doah2/common/arrow_upward_alt.svg") no-repeat center/100%;
}
@media (max-width: 1460px) {
  .to-top {
    right: 2%;
  }
}
@media (max-width: 1280px) {
  .to-top {
    right: 3%;
  }
  .to-top a span {
    width: 64px;
  }
}
@media (max-width: 767px) {
  .to-top {
    right: 4%;
    bottom: 3.3em;
  }
  .to-top a span {
    width: 48px;
    font-size: 1.2rem;
  }
  .to-top a span::before {
    width: 20px;
  }
}

footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  padding-block: 5.556em;
  background-color: var(--font-color);
}
footer .f-cont {
  color: var(--gray100);
}
footer .f-cont .tel {
  font-size: 2.4rem;
}
@media (max-width: 1280px) {
  footer .f-cont .tel {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  footer .f-cont .tel {
    font-size: 1.8rem;
  }
}
footer .f-cont .tel strong {
  color: var(--secondary);
  font-weight: 600;
  font-size: 3.2rem;
}
@media (max-width: 1280px) {
  footer .f-cont .tel strong {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  footer .f-cont .tel strong {
    font-size: 2.2rem;
  }
}
footer .f-cont .add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  margin-block: 3.111em 1.778em;
  font-size: 1.6rem;
}
@media (max-width: 1280px) {
  footer .f-cont .add {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  footer .f-cont .add {
    font-size: 1.4rem;
  }
}
footer .f-cont .add {
  color: var(--gray300);
}
footer .f-cont .copyright {
  color: #848C93;
  font-size: 1.6rem;
}
@media (max-width: 1280px) {
  footer .f-cont .copyright {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  footer .f-cont .copyright {
    font-size: 1.4rem;
  }
}
footer .f-logo {
  margin-left: auto;
  width: 278px;
  height: 88px;
  background: url("/images/doah2/common/logo_f.svg") no-repeat center/100%;
}
@media (max-width: 1280px) {
  footer .f-logo {
    width: 222.4px;
    height: 70.4px;
  }
}
@media (max-width: 767px) {
  footer {
    padding-block: 3.3em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .f-cont {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  footer .f-cont .tel {
    font-size: 2rem;
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}
@media (max-width: 767px) and (max-width: 1280px) {
  footer .f-cont .tel {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  footer .f-cont .tel {
    font-size: 1.7rem;
  }
}
@media (max-width: 767px) {
  footer .f-cont .tel strong {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) and (max-width: 1280px) {
  footer .f-cont .tel strong {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  footer .f-cont .tel strong {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  footer .f-cont .add {
    margin-block: 2em;
  }
  footer .f-logo {
    width: auto;
    height: 39.6px;
    width: min(100%, 125.1px);
  }
}

@-webkit-keyframes imgZoomIn {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes imgZoomIn {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes imgZoomInVisual {
  from {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes imgZoomInVisual {
  from {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes imgZoomInVisualHide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes imgZoomInVisualHide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes imgZoomIn2 {
  from {
    -webkit-transform: scale(1.2) translateY(-50%);
            transform: scale(1.2) translateY(-50%);
  }
  to {
    -webkit-transform: scale(1) translateY(-50%);
            transform: scale(1) translateY(-50%);
  }
}
@keyframes imgZoomIn2 {
  from {
    -webkit-transform: scale(1.2) translateY(-50%);
            transform: scale(1.2) translateY(-50%);
  }
  to {
    -webkit-transform: scale(1) translateY(-50%);
            transform: scale(1) translateY(-50%);
  }
}
/* ----------------------------------------
*업무분야
* ----------------------------------------*/
.sub-cont-ti {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.sub-cont-ti span {
  font-weight: 600;
}

.business-ti .ti {
  font-weight: 600;
  color: var(--primary);
}
.business-ti .s-ti {
  padding-inline: 1.5em;
  display: inline-block;
  border-left: 1px solid var(--font-color);
  border-right: 1px solid var(--font-color);
}
.business-ti .s-ti span {
  font-weight: 600;
}
.business-ti::after {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  margin-block: 1em;
  background-color: var(--gray400);
}

.business-cont {
  position: relative;
  padding-block: 7em 5.4em;
  background-color: var(--font-color);
  overflow: hidden;
}
.business-cont .gra1 {
  position: absolute;
  bottom: -50%;
  left: -37%;
  width: 62.5vw;
  aspect-ratio: 1;
  opacity: 0.3;
  background: radial-gradient(50% 50% at 50% 50%, var(--primary) 0%, rgba(77, 31, 242, 0) 80.29%);
}
.business-cont .diagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.7em;
  max-width: 910px;
  margin: 0 auto;
}
.business-cont .diagram .cont {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 282px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--gray400);
  color: var(--white);
  font-size: 2.8rem;
}
@media (max-width: 1280px) {
  .business-cont .diagram .cont {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .business-cont .diagram .cont {
    font-size: 2rem;
  }
}
.business-cont .diagram .cont {
  font-weight: 500;
}
.business-cont .diagram .cont::after {
  content: "";
  display: block;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--secondary);
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -5px;
}
.business-cont .txt-wrap::before {
  content: "";
  display: block;
  width: clamp(206px, 13.44vw, 258px);
  aspect-ratio: 258/98;
  margin: 0.8em auto 3.3em;
  background: url("/images/doah2/sub/arw_scondary.svg") no-repeat center/100%;
}
.business-cont .txt-wrap .cont {
  font-size: 3.2rem;
}
@media (max-width: 1280px) {
  .business-cont .txt-wrap .cont {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .business-cont .txt-wrap .cont {
    font-size: 2.2rem;
  }
}
.business-cont .txt-wrap .cont {
  line-height: 160%;
  text-align: center;
  color: var(--white);
}
.business-cont .txt-wrap .cont span {
  color: var(--secondary);
}
.business-cont .more-wrap {
  margin-top: 3.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.business-cont.ani-active .diagram .cont {
  opacity: 0;
  -webkit-animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-transform: none;
          transform: none;
  -webkit-animation-delay: 0ms;
          animation-delay: 0ms;
}
.business-cont.ani-active .diagram .cont:nth-child(2) {
  -webkit-animation-delay: 280ms;
          animation-delay: 280ms;
}
.business-cont.ani-active .diagram .cont:nth-child(3) {
  -webkit-animation-delay: 560ms;
          animation-delay: 560ms;
}
.business-cont.ani-active .txt-wrap::before {
  opacity: 0;
  -webkit-animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-transform: none;
          transform: none;
  -webkit-animation-delay: 280ms;
          animation-delay: 280ms;
}
.business-cont.ani-active .txt-wrap .cont {
  opacity: 0;
  -webkit-animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-transform: none;
          transform: none;
  -webkit-animation-delay: 0ms;
          animation-delay: 0ms;
}
.business-cont.ani-active .txt-wrap .cont:nth-child(2) {
  -webkit-animation-delay: 280ms;
          animation-delay: 280ms;
}
.business-cont.ani-active .txt-wrap .cont:nth-child(3) {
  -webkit-animation-delay: 560ms;
          animation-delay: 560ms;
}
@media (max-width: 767px) {
  .business-cont .diagram {
    gap: 1em;
  }
  .business-cont .txt-wrap::before {
    width: clamp(164px, 26.86vw, 206px);
  }
}
@media (max-width: 480px) {
  .business-cont .diagram {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 1em;
  }
  .business-cont .diagram .cont {
    width: 40%;
  }
}

.business-img {
  margin-bottom: 8.8em;
}

.business-part .cont {
  opacity: 1;
  -webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: calc(100vh - var(--header-height));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--gray100);
}
.business-part .cont .img-cont {
  overflow: hidden;
  width: 50%;
}
.business-part .cont .img-cont::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/images/doah2/sub/business_part_img01.jpg") no-repeat center/cover;
}
.business-part .cont .txt-cont {
  width: 50%;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.business-part .cont .txt-cont h3 {
  margin-bottom: 1em;
  font-size: 3.2rem;
}
@media (max-width: 1280px) {
  .business-part .cont .txt-cont h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .business-part .cont .txt-cont h3 {
    font-size: 2.2rem;
  }
}
.business-part .cont .txt-cont h3 {
  font-weight: 600;
  text-align: center;
}
.business-part .cont .txt-cont p {
  text-align: center;
  margin-bottom: 4.4em;
}
.business-part .cont .txt-cont p span {
  display: block;
}
.business-part .cont:nth-child(2) .img-cont::after {
  background-image: url("/images/doah2/sub/business_part_img02.jpg");
}
.business-part .cont.ani-active .img-cont::after {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-animation: imgZoomIn 2000ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: imgZoomIn 2000ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@media (max-width: 767px) {
  .business-part .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .business-part .cont .img-cont {
    width: 100%;
    height: 50%;
  }
  .business-part .cont .txt-cont {
    width: 100%;
    height: 50%;
  }
}

/* ----------------------------------------
*브랜드
* ----------------------------------------*/
.brands-wrap {
  margin-bottom: 8.8em;
}
.brands-wrap .ti-wrap {
  text-align: center;
}
.brands-wrap .ti-wrap .logo {
  margin: 0 auto;
}
.brands-wrap .ti-wrap .ti {
  margin-block: 0.66em 1.66em;
  font-size: 3.6rem;
}
@media (max-width: 1280px) {
  .brands-wrap .ti-wrap .ti {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .brands-wrap .ti-wrap .ti {
    font-size: 2.4rem;
  }
}
.brands-wrap .ti-wrap.exsilun-ti .logo {
  width: 242px;
}
.brands-wrap .ti-wrap.skinwavey-ti .logo {
  width: 434px;
}
.brands-wrap .img {
  max-width: 1176px;
  margin: 0 auto;
}
.brands-wrap .txt-cont p {
  margin-block: 3.33em;
  text-align: center;
}
.brands-wrap .txt-cont p span {
  display: block;
}
.brands-wrap .txt-cont p strong {
  margin-top: 1em;
  display: block;
  font-weight: 500;
  font-size: 3.2rem;
}
@media (max-width: 1280px) {
  .brands-wrap .txt-cont p strong {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .brands-wrap .txt-cont p strong {
    font-size: 2.2rem;
  }
}
.brands-wrap .txt-cont .more-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .brands-wrap {
    margin-bottom: 5.28em;
  }
  .brands-wrap .ti-wrap.exsilun-ti .logo {
    width: clamp(145px, 31.55vw, 242px);
  }
  .brands-wrap .ti-wrap.skinwavey-ti .logo {
    width: clamp(200px, 56.58vw, 434px);
  }
}

.brands-bottom {
  position: relative;
  width: 100%;
  padding-top: 21.45%;
  margin-bottom: -7em;
  overflow: hidden;
}
.brands-bottom .gradi {
  position: absolute;
  width: 94.47%;
  aspect-ratio: 1814/1549;
}
.brands-bottom .gra1 {
  top: -60%;
  left: -21.25%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(82, 129, 230, 0.5) 0%, rgba(82, 129, 230, 0) 80.29%);
}
.brands-bottom .gra2 {
  right: -15.72%;
  top: -100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(170, 23, 47, 0.8) 0%, rgba(171, 23, 47, 0) 80.29%);
}
.brands-bottom .logo {
  position: absolute;
  width: 58.8vw;
  right: -4px;
  bottom: -14%;
}
.brands-bottom.skinwavey-bottom .gra1 {
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 214, 158, 0.5) 0%, rgba(255, 214, 158, 0) 80.29%);
}
.brands-bottom.skinwavey-bottom .gra2 {
  background: radial-gradient(50% 50% at 50% 50%, rgba(141, 214, 240, 0.5) 0%, rgba(141, 214, 240, 0) 80.29%);
}
.brands-bottom.skinwavey-bottom .logo {
  width: 107.66vw;
  right: -2.13%;
  bottom: -19.17%;
}
@media (max-width: 480px) {
  .brands-bottom {
    padding-top: 42.9%;
  }
  .brands-bottom .gra1 {
    top: -20%;
    left: -14%;
  }
  .brands-bottom .gra2 {
    right: -22%;
    top: -50%;
  }
  .brands-bottom .logo {
    width: 88.2vw;
    bottom: -9%;
  }
  .brands-bottom.skinwavey-bottom .logo {
    width: 110vw;
    bottom: -8%;
  }
}

/* ----------------------------------------
*채용개요
* ----------------------------------------*/
.careers-ti {
  margin-bottom: 5.55em;
}

.careers-cont {
  height: calc(100vh - var(--header-height));
  min-height: 640px;
  background-color: var(--font-color);
  overflow: hidden;
}
.careers-cont .cont-wrap {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  height: 100%;
}
.careers-cont .img-cont.img2 {
  position: absolute;
  overflow: hidden;
  width: 25%;
  top: 15%;
  right: 8.2%;
}
.careers-cont .img-cont.fade-in-doah img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2); /* 처음 크게 */
  -webkit-animation: imgReveal 2200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: imgReveal 2200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.careers-cont .img-cont-wrap {
  position: absolute;
  width: 33.85%;
  left: 13.125%;
  bottom: 12.18%;
}
.careers-cont .img-cont-wrap .img-cont {
  position: static;
  overflow: hidden;
}
.careers-cont .img-cont-wrap .img-cont.img1 {
  width: 100%;
}
.careers-cont .img-cont-wrap .blur {
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.01)), color-stop(72.6%, var(--Doah-Text-Color, rgba(1, 1, 0, 0.2))), to(rgba(255, 255, 255, 0.01)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0%, var(--Doah-Text-Color, rgba(1, 1, 0, 0.2)) 72.6%, rgba(255, 255, 255, 0.01) 100%);
  background-blend-mode: overlay;
  backdrop-filter: blur(90px);
}
.careers-cont .img-cont-wrap .blur.blur1 {
  width: 60.76%;
  aspect-ratio: 395/311;
  right: -34.61%;
  bottom: -25.31%;
}
.careers-cont .txt-cont {
  position: absolute;
  left: 19.375%;
  top: 21.66%;
  color: var(--white);
}
.careers-cont .txt-cont p {
  font-size: 2.4rem;
}
@media (max-width: 1280px) {
  .careers-cont .txt-cont p {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .careers-cont .txt-cont p {
    font-size: 1.8rem;
  }
}
.careers-cont .txt-cont p {
  font-weight: 300;
}
.careers-cont .txt-cont p span {
  display: block;
}
.careers-cont .txt-cont p strong {
  font-weight: 500;
}
@media (max-width: 767px) {
  .careers-cont {
    padding: 5em 5%;
    height: auto;
    min-height: 0;
  }
  .careers-cont .cont-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .careers-cont .img-cont-wrap {
    position: relative;
    margin: 0 auto;
    width: 80%;
    top: 0;
    left: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .careers-cont .txt-cont {
    position: static;
    text-align: center;
    margin-bottom: 4em;
  }
  .careers-cont .img-cont.img2 {
    display: none;
    width: 34%;
    margin-left: 10%;
    position: static;
  }
}
@media (max-width: 480px) {
  .careers-cont .txt-cont p {
    padding-inline: 2em;
  }
  .careers-cont .txt-cont p span {
    display: inline;
  }
}

.careers-process {
  padding-block: 6.8em;
  background-color: var(--font-color);
}
.careers-process .h-sty-ti-s {
  color: var(--white);
}
.careers-process .process-wrap {
  padding-block: 1.1em 4.4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.1em;
}
.careers-process .process-wrap .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 160px;
  aspect-ratio: 1;
  color: var(--white);
  border: 1px solid var(--gray400);
  border-radius: 50%;
}
.careers-process .process-wrap .cont:last-child {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.careers-process .process-wrap .arw {
  width: 40px;
  aspect-ratio: 1;
  background: url("/images/doah2/sub/arw_process.svg") no-repeat center/100% 100%;
}
.careers-process .notice {
  padding: 1.7em;
  background-color: var(--gray100);
}
@media (max-width: 1280px) {
  .careers-process .process-wrap {
    gap: 0.5em;
  }
  .careers-process .process-wrap .arw {
    width: 32px;
  }
}
@media (max-width: 767px) {
  .careers-process {
    padding-block: 4.4em;
  }
  .careers-process .process-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr 24px);
    grid-template-rows: repeat(2, 1fr);
  }
  .careers-process .process-wrap .cont {
    width: auto;
  }
  .careers-process .process-wrap .arw {
    width: 24px;
  }
}
@media (max-width: 400px) {
  .careers-process .process-wrap {
    grid-template-columns: repeat(2, 1fr 20px);
    grid-template-rows: repeat(3, 1fr);
  }
  .careers-process .process-wrap .arw {
    width: 20px;
  }
}

.careers-link {
  margin-bottom: -7em;
  padding-block: 6.8em;
}
.careers-link::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/images/doah2/sub/careers_bg.jpg") no-repeat center/cover;
}
.careers-link .wrap-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.careers-link a {
  font-size: 3.2rem;
}
@media (max-width: 1280px) {
  .careers-link a {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .careers-link a {
    font-size: 2.2rem;
  }
}
.careers-link a {
  font-weight: 500;
  color: var(--white);
  text-align: center;
}
.careers-link a::after {
  content: "";
  display: block;
  width: 60px;
  aspect-ratio: 1;
  margin: 0.75em auto 0;
  background: url("/images/doah2/sub/arw_careers.svg") no-repeat center/100% 100%;
}
.careers-link.ani-active::before {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-animation: imgZoomIn 2000ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: imgZoomIn 2000ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@media (max-width: 1280px) {
  .careers-link a::after {
    width: 48px;
  }
}
@media (max-width: 767px) {
  .careers-link a::after {
    width: 40px;
  }
}

/* ----------------------------------------
*기업문화
* ----------------------------------------*/
.culture-ti {
  margin-bottom: 1.3em;
}

.culture-header {
  text-align: center;
}
.culture-header p {
  margin-bottom: 2.786em;
  font-size: 2.8rem;
}
@media (max-width: 1280px) {
  .culture-header p {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .culture-header p {
    font-size: 2rem;
  }
}
.culture-header p span {
  display: block;
}
.culture-header figure {
  max-width: 1120px;
  margin-inline: auto;
}

.culture-cont1 {
  padding-block: 5.3em 4.3em;
  background: var(--Doah-gra1, linear-gradient(270deg, var(--Doah-point2, #FB6B4D) 0%, var(--Doah-point4, #4D1FF2) 100%));
}
.culture-cont1 .cont-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3em;
}
.culture-cont1 .cont-wrap .cont {
  padding: 3.3em 3.6em 4.27em;
  background-color: var(--white);
  text-align: center;
  -webkit-transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.culture-cont1 .cont-wrap .cont .img {
  max-width: 240px;
  margin-inline: auto;
}
.culture-cont1 .cont-wrap .cont .name {
  margin-bottom: 10px;
  font-size: 2.8rem;
}
@media (max-width: 1280px) {
  .culture-cont1 .cont-wrap .cont .name {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .culture-cont1 .cont-wrap .cont .name {
    font-size: 2rem;
  }
}
.culture-cont1 .cont-wrap .cont .name {
  font-weight: 500;
  color: var(--secondary);
}
.culture-cont1 .cont-wrap .cont p {
  font-size: 2rem;
}
@media (max-width: 1280px) {
  .culture-cont1 .cont-wrap .cont p {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .culture-cont1 .cont-wrap .cont p {
    font-size: 1.7rem;
  }
}
.culture-cont1 .cont-wrap.img-ai::after {
  display: inline-block;
  position: relative;
}
.culture-cont1 .cont-wrap.ani-active .cont {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.culture-cont1 .cont-wrap.ani-active .cont:nth-child(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.culture-cont1 .cont-wrap.ani-active .cont:nth-child(3) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media (max-width: 1280px) {
  .culture-cont1 .cont-wrap .cont {
    padding: 2.64em 2.88em 3.4em;
  }
}
@media (max-width: 767px) {
  .culture-cont1 {
    padding-block: 4em 3.2em;
  }
  .culture-cont1 .cont-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .culture-cont1 .cont-wrap .cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1em;
    padding: 2em;
  }
  .culture-cont1 .cont-wrap .cont .img {
    width: clamp(100px, 25.03vw, 192px);
  }
  .culture-cont1 .cont-wrap .cont .txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .culture-cont1 .cont-wrap .cont {
    gap: 1em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .culture-cont1 .cont-wrap .cont .txt {
    text-align: center;
  }
}

.h-sty-ti-s2 {
  font-size: 4.8rem;
}
@media (max-width: 1280px) {
  .h-sty-ti-s2 {
    font-size: 3.4rem;
  }
}
@media (max-width: 767px) {
  .h-sty-ti-s2 {
    font-size: 3rem;
  }
}
.h-sty-ti-s2 {
  font-weight: 500;
}

.culture-cont2 {
  padding-block: 8.71em 8.16em;
  margin-bottom: -7em;
  background: url("/images/doah2/sub/culture_bg.jpg") no-repeat center/cover;
  text-align: center;
  color: var(--white);
}
.culture-cont2 h3 {
  font-size: 4.8rem;
}
@media (max-width: 1280px) {
  .culture-cont2 h3 {
    font-size: 3.4rem;
  }
}
@media (max-width: 767px) {
  .culture-cont2 h3 {
    font-size: 3rem;
  }
}
.culture-cont2 h3 {
  font-weight: 500;
  color: var(--white);
}
.culture-cont2 .p-sty {
  margin-top: 0.83em;
}
.culture-cont2 .diagram {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3em;
  margin-top: 6.94em;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.culture-cont2 .diagram .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--gray400);
  text-align: center;
  -webkit-transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.culture-cont2 .diagram .cont p span {
  display: block;
}
.culture-cont2 .diagram .cont::after {
  content: "";
  display: block;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--secondary);
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -5px;
}
.culture-cont2 .diagram.ani-active .cont {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.culture-cont2 .diagram.ani-active .cont:nth-child(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.culture-cont2 .diagram.ani-active .cont:nth-child(3) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.culture-cont2 .diagram.ani-active .cont:nth-child(4) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media (max-width: 1280px) {
  .culture-cont2 {
    padding-block: 6.96em 6.52em;
  }
  .culture-cont2 .diagram {
    margin-top: 5.55em;
  }
}
@media (max-width: 767px) {
  .culture-cont2 {
    padding-block: 5.2em 4.9em;
  }
  .culture-cont2 .diagram {
    margin-top: 4.16em;
    max-width: 480px;
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .culture-cont2 .diagram .cont {
    padding: 1em;
  }
  .culture-cont2 .diagram .cont::after {
    width: 7px;
    top: -4px;
    margin-left: -4px;
  }
}
@media (max-width: 400px) {
  .culture-cont2 .diagram .cont p span {
    display: inline;
  }
}

/* ----------------------------------------
*문의하기
* ----------------------------------------*/
:root {
  --block-gap: 20px;
}

.contact_summary {
  background-color: #f3f7fa;
  text-align: center;
  padding: 20px;
  margin-bottom: 50px;
  word-spacing: -1px;
  font-size: 1.6rem;
}
@media (max-width: 1280px) {
  .contact_summary {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .contact_summary {
    font-size: 1.4rem;
  }
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9%;
}
.contact .txt-wrap {
  width: 32.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact .cont {
  margin-left: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact .agree {
  margin-block: 1.78em 2.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
  font-size: 1.8rem;
}
@media (max-width: 1280px) {
  .contact .agree {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .contact .agree {
    font-size: 1.5rem;
  }
}
.contact .agree .agree-more {
  margin-left: auto;
  display: inline-block;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 1.6rem;
}
@media (max-width: 1280px) {
  .contact .agree .agree-more {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .contact .agree .agree-more {
    font-size: 1.4rem;
  }
}
.contact .btn-wrap .contact-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 200px;
  padding: 8px 8px 8px 32px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  gap: 24px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contact .btn-wrap .contact-btn .circle {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact .btn-wrap .contact-btn svg {
  width: 26px;
  height: 26px;
}
.contact .btn-wrap .contact-btn:hover {
  opacity: 0.85;
}
.contact .captcha-txt {
  margin-top: 1em;
  font-size: 1.6rem;
}
@media (max-width: 1280px) {
  .contact .captcha-txt {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .contact .captcha-txt {
    font-size: 1.4rem;
  }
}
.contact .captcha-txt a {
  color: var(--secondary1);
  text-decoration: underline;
}
@media (max-width: 1280px) {
  .contact {
    display: block;
  }
  .contact .txt-wrap {
    width: 100%;
  }
  .contact .txt-wrap .com-info {
    margin-top: 1em;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1em 3em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 767px) {
  .contact .agree {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) and (max-width: 1280px) {
  .contact .agree {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .contact .agree {
    font-size: 1.4rem;
  }
}
.contact input, .contact textarea {
  border: 1px solid var(--gray300);
}
.contact textarea {
  height: 200px;
}

.main-contact {
  padding-top: 7.5em;
}
.main-contact .txt-wrap .com-info {
  margin-top: auto;
}
.main-contact .ti-wrap h2 {
  line-height: 120%;
  font-family: "WorkSans";
  font-size: 6.8rem;
}
.main-contact .cont {
  margin-top: 2.2em;
}
@media (max-width: 1280px) {
  .main-contact {
    padding-top: 6.16em;
  }
  .main-contact .txt-wrap .com-info {
    margin-top: 1.1em;
  }
  .main-contact .ti-wrap h2 {
    font-family: "WorkSans";
    font-size: 5.4rem;
  }
}
@media (max-width: 767px) {
  .main-contact {
    padding-top: 4.62em;
  }
  .main-contact .ti-wrap h2 {
    font-family: "WorkSans";
    font-size: 4rem;
  }
}

.sub-contact .txt-wrap .com-info {
  margin-block: 1.1em 2.2em;
}

/* form-common */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gap-20 {
  gap: var(--block-gap);
}

.form-block .ti {
  margin-bottom: 0.5em;
  display: block;
  font-weight: 600;
  font-size: 1.8rem;
}
@media (max-width: 1280px) {
  .form-block .ti {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .form-block .ti {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .form-block .ti {
    margin-bottom: 0.3em;
    font-size: 1.7rem;
  }
}
@media (max-width: 480px) and (max-width: 1280px) {
  .form-block .ti {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) and (max-width: 767px) {
  .form-block .ti {
    font-size: 1.4rem;
  }
}
.form-block .phone-msg {
  font-size: 1.4rem;
}
@media (max-width: 1280px) {
  .form-block .phone-msg {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .form-block .phone-msg {
    font-size: 1.2rem;
  }
}
.form-block .phone-msg {
  color: var(--gray400);
}

.w1-2 {
  width: calc((100% - var(--block-gap)) / 2);
}
@media (max-width: 480px) {
  .w1-2 {
    width: 100%;
  }
}

.w-full {
  width: 100%;
}

/* ----------------------------------------------- */
/* modal
/* ----------------------------------------------- */
.modal-wrap {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1100;
}
.modal-wrap .inquiry_content {
  position: relative;
  width: 700px;
  max-width: 100%;
  height: auto !important;
  background: var(--white);
  -webkit-animation: fade-up 1s ease forwards;
          animation: fade-up 1s ease forwards;
}
@media (max-width: 768px) {
  .modal-wrap .inquiry_content {
    max-width: 92%;
    margin: 0 4%;
  }
}
.modal-wrap .inquiry_content a.inquiry_close {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -84px;
  left: 50%;
  margin-left: -32px;
}
@media (max-width: 768px) {
  .modal-wrap .inquiry_content a.inquiry_close {
    top: -76px;
    width: 56px;
    height: 56px;
    margin-left: -28px;
  }
}
.modal-wrap .inquiry_content a.inquiry_close span {
  width: 95%;
  height: 2px;
  background: #000;
  display: block;
}
.modal-wrap .inquiry_content a.inquiry_close span:first-child {
  -webkit-transform: translate(50%, 0) rotate(45deg);
          transform: translate(50%, 0) rotate(45deg);
}
.modal-wrap .inquiry_content a.inquiry_close span:last-child {
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
}
.modal-wrap .inquiry_content .inquiry-btn-wrap {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-wrap .inquiry_content .inquiry_apply {
  height: 450px;
  overflow: auto;
}
.modal-wrap .inquiry_content .inquiry_apply .privacy {
  padding: 3em;
}
@media (max-width: 768px) {
  .modal-wrap .inquiry_content .inquiry_apply .privacy {
    padding: 2em;
  }
}

/* ----------------------------------------
* sub-header
* ----------------------------------------*/
.s-header {
  position: fixed;
  top: 0;
  left: 0;
  margin-top: var(--header-height);
  width: 100%;
  height: calc(100dvh - var(--header-height));
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 1em;
}
.s-header .ti-wrap {
  text-align: center;
}
.s-header .ti-wrap .s-ti {
  padding: 0.45em 1.45em;
  margin-bottom: 1em;
  display: inline-block;
  border: 1px solid var(--font-color);
  font-size: 2.2rem;
}
@media (max-width: 1280px) {
  .s-header .ti-wrap .s-ti {
    font-size: 1.9rem;
  }
}
@media (max-width: 767px) {
  .s-header .ti-wrap .s-ti {
    font-size: 1.75rem;
  }
}
.s-header .ti-wrap .s-ti {
  line-height: 120%;
}
.s-header .ti-wrap h1 {
  font-size: clamp(4.8rem, 4.06vw, 7.8rem);
  line-height: 120%;
}
.s-header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/doah2/main/visual_img01.jpg") no-repeat center/cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: imgZoomIn 2200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: imgZoomIn 2200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  background-attachment: fixed;
}
.s-header.img78::before {
  background: url("/images/doah2/sub/s_about.jpg") no-repeat center/cover;
}
.s-header.img79::before {
  background: url("/images/doah2/sub/s_business.jpg") no-repeat center/cover;
}
.s-header.img80::before {
  background: url("/images/doah2/sub/s_news.jpg") no-repeat center/cover;
}
.s-header.img81::after, .s-header.img88::after {
  position: absolute;
  bottom: 1em;
  left: 1em;
  content: "";
  display: block;
  padding: 1px 12px;
  position: absolute;
  content: "AI-assisted image";
  font-size: 1.3rem;
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: var(--white);
  z-index: 1;
}
.s-header.img81::before {
  background: url("/images/doah2/sub/s_brands1.jpg") no-repeat center/cover;
}
.s-header.img88::before {
  background: url("/images/doah2/sub/s_brands2.jpg") no-repeat center/cover;
}
.s-header.img82::before {
  background: url("/images/doah2/sub/s_careers.jpg") no-repeat center/cover;
}
@media (max-width: 767px) {
  .s-header .ti-wrap .s-ti {
    padding: 0.36em 0.8em;
    font-size: 2rem;
  }
}
@media (max-width: 767px) and (max-width: 1280px) {
  .s-header .ti-wrap .s-ti {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .s-header .ti-wrap .s-ti {
    font-size: 1.7rem;
  }
}
@media (max-width: 767px) {
  .s-header .ti-wrap h1 {
    font-size: clamp(3.6rem, 6.26vw, 4.8rem);
  }
}

.s-header-margin {
  position: relative;
  margin-top: 100vh;
}

/* lnb */
.lnb-wrap {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid var(--gray300);
  text-align: center;
}
.lnb-wrap .lnb {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.lnb-wrap .lnb li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 120px;
  height: 72px;
  padding: 0.7em 1em;
}
.lnb-wrap .lnb li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: var(--font-color);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.lnb-wrap .lnb li.active a::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media (max-width: 1280px) {
  .lnb-wrap .lnb li a {
    height: 56px;
  }
}
@media (max-width: 767px) {
  .lnb-wrap .lnb {
    gap: 0;
  }
  .lnb-wrap .lnb li a {
    min-width: 100px;
    height: 48px;
  }
}

.sub-container {
  padding-block: 7em;
  background-color: var(--white);
}

.h-sty-ti {
  margin-bottom: 0.13em;
  font-size: clamp(4.8rem, 3.13vw, 6rem);
  line-height: 120%;
}
@media (max-width: 767px) {
  .h-sty-ti {
    font-size: clamp(3.6rem, 6.26vw, 4.8rem);
  }
}

.h-sty-com {
  opacity: 1;
  font-size: clamp(4.2rem, 2.92vw, 5.6rem);
}
@media (max-width: 767px) {
  .h-sty-com {
    font-size: clamp(3rem, 5.48vw, 4.2rem);
  }
}

.h-sty-ti-c {
  margin-bottom: 1em;
  font-size: 4.8rem;
}
@media (max-width: 1280px) {
  .h-sty-ti-c {
    font-size: 3.4rem;
  }
}
@media (max-width: 767px) {
  .h-sty-ti-c {
    font-size: 3rem;
  }
}
.h-sty-ti-c {
  font-weight: 500;
}

.h-sty-ti-s {
  margin-bottom: 1em;
  font-size: 3.2rem;
}
@media (max-width: 1280px) {
  .h-sty-ti-s {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .h-sty-ti-s {
    font-size: 2.2rem;
  }
}
.h-sty-ti-s {
  font-weight: 500;
}

.h-sty-ti-ss {
  margin-bottom: 1em;
  font-size: 2rem;
}
@media (max-width: 1280px) {
  .h-sty-ti-ss {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .h-sty-ti-ss {
    font-size: 1.7rem;
  }
}

.p-sty {
  font-size: 2.4rem;
}
@media (max-width: 1280px) {
  .p-sty {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .p-sty {
    font-size: 1.8rem;
  }
}

.li-sty-dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.li-sty-dot li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.li-sty-dot li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin-right: 0.4em;
  background-color: var(--font-color);
  margin-top: 0.6em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
}

/* cont-bottom */
.cont-bottom {
  margin-bottom: 4.4em;
}
@media (max-width: 767px) {
  .cont-bottom {
    margin-bottom: 3.52em;
  }
}

/* img-fram공통 */
.img-frame {
  display: grid;
  grid-template-columns: 71fr 98fr 71fr;
}
.img-frame figure {
  overflow: hidden;
  min-width: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.img-frame figure img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-frame.ani-active figure {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.img-frame.ani-active figure:nth-child(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.img-frame.ani-active figure:nth-child(3) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media (max-width: 480px) {
  .img-frame {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0.7fr 0.6fr;
  }
  .img-frame figure:nth-child(2) {
    grid-column: 1/-1;
    grid-row: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .img-frame figure:nth-child(1) {
    grid-column: 1;
    grid-row: 2;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .img-frame figure:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .img-frame.ani-active figure {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .img-frame.ani-active figure:nth-child(2) {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .img-frame.ani-active figure:nth-child(3) {
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
}

/* ----------------------------------------
* 회사개요
* ----------------------------------------*/
/* philosophy */
.philosophy-wrap {
  overflow: hidden;
}
.philosophy-wrap .ti {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 300;
  text-align: center;
}
.philosophy-wrap .ti strong {
  font-weight: 600;
}
.philosophy-wrap .cont-wrap {
  display: relative;
  display: grid;
  grid-template-columns: 1fr clamp(200px, 16.67vw, 320px) 1fr; /* 중앙 320px 고정 */
  grid-template-rows: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-block: 7.5em 16em;
  gap: 10.42vw 0;
}
.philosophy-wrap .cont-wrap .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: var(--gray300);
}
.philosophy-wrap .cont-wrap .back-gradi {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.35;
  pointer-events: none;
}
.philosophy-wrap .cont-wrap .back-gradi .gra1 {
  position: absolute;
  bottom: -30%;
  left: 23%;
  width: 38.07vw;
  aspect-ratio: 1;
  background: radial-gradient(50% 50% at 50% 50%, var(--Doah-point4, #4D1FF2) 0%, rgba(77, 31, 242, 0) 80.29%);
  -webkit-animation: floatG1 30s ease-in-out infinite alternate;
          animation: floatG1 30s ease-in-out infinite alternate;
  will-change: transform;
}
.philosophy-wrap .cont-wrap .back-gradi .gra2 {
  top: -30%;
  right: 23%;
  position: absolute;
  width: 38.91vw;
  aspect-ratio: 1;
  background: radial-gradient(50% 50% at 50% 50%, var(--Doah-point2, #FB6B4D) 0%, rgba(251, 107, 77, 0) 80.29%);
  -webkit-animation: floatG2 30s ease-in-out infinite alternate;
          animation: floatG2 30s ease-in-out infinite alternate;
  will-change: transform;
}
.philosophy-wrap .cont-wrap .cont {
  opacity: 0;
  padding-inline: 8.75vw 1em;
}
.philosophy-wrap .cont-wrap .cont h4 {
  position: relative;
  font-size: clamp(4.2rem, 3.13vw, 6rem);
}
.philosophy-wrap .cont-wrap .cont h4::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 25%;
  left: -0.9em;
  width: 23px;
  aspect-ratio: 1;
  background: url("/images/doah2/sub/deco_star.svg") no-repeat center/100%;
}
.philosophy-wrap .cont-wrap .cont h4 span {
  color: var(--primary);
}
.philosophy-wrap .cont-wrap .cont.left.top {
  grid-column: 1;
  grid-row: 1;
}
.philosophy-wrap .cont-wrap .cont.left.bottom {
  grid-column: 1;
  grid-row: 2;
}
.philosophy-wrap .cont-wrap .cont.right.top {
  grid-column: 3;
  grid-row: 1;
}
.philosophy-wrap .cont-wrap .cont.right.bottom {
  grid-column: 3;
  grid-row: 2;
}
.philosophy-wrap .cont-wrap .cont.left.top, .philosophy-wrap .cont-wrap .cont.left.bottom {
  text-align: right;
  padding-inline: 1em 8.75vw;
}
.philosophy-wrap .cont-wrap .cont.left.top h4::before, .philosophy-wrap .cont-wrap .cont.left.bottom h4::before {
  left: auto;
  right: -0.9em;
}
.philosophy-wrap .cont-wrap {
  /* 중앙 원 */
}
.philosophy-wrap .cont-wrap .circle {
  opacity: 0;
  grid-column: 2;
  grid-row: 1/span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(250px, 16.67vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--font-color);
  align-self: center;
  justify-self: center;
}
.philosophy-wrap .cont-wrap .circle:before {
  content: "";
  display: block;
  position: absolute;
  top: -12.5%;
  left: -12.5%;
  width: 125%;
  aspect-ratio: 1;
  background: url("/images/doah2/sub/line_circle.svg") no-repeat center/100%;
}
.philosophy-wrap .cont-wrap .circle figure {
  width: clamp(124px, 10vw, 192px);
  text-align: center;
}
.philosophy-wrap .cont-wrap.ani-active .line {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: drawLineX 2s ease forwards;
          animation: drawLineX 2s ease forwards;
  -webkit-animation-delay: 280ms;
          animation-delay: 280ms;
}
.philosophy-wrap .cont-wrap.ani-active .cont {
  opacity: 0;
  -webkit-animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-transform: none;
          transform: none;
  -webkit-animation-delay: 0ms;
          animation-delay: 0ms;
}
.philosophy-wrap .cont-wrap.ani-active .cont.cont3 {
  -webkit-animation-delay: 280ms;
          animation-delay: 280ms;
}
.philosophy-wrap .cont-wrap.ani-active .cont.cont2 {
  -webkit-animation-delay: 560ms;
          animation-delay: 560ms;
}
.philosophy-wrap .cont-wrap.ani-active .cont.cont4 {
  -webkit-animation-delay: 840ms;
          animation-delay: 840ms;
}
.philosophy-wrap .cont-wrap.ani-active .circle {
  opacity: 0;
  -webkit-animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-transform: none;
          transform: none;
  -webkit-animation-delay: 280ms;
          animation-delay: 280ms;
}
@media (max-width: 1280px) {
  .philosophy-wrap .cont-wrap {
    margin-block: 6em 12.8em;
  }
  .philosophy-wrap .cont-wrap .back-gradi .gra1 {
    width: 46vw;
    left: 18%;
    bottom: -20%;
  }
  .philosophy-wrap .cont-wrap .back-gradi .gra2 {
    width: 45vw;
    right: 18%;
    top: -20%;
  }
  .philosophy-wrap .cont-wrap .circle {
    width: clamp(200px, 16.67vw, 320px);
  }
}
@media (max-width: 767px) {
  .philosophy-wrap .cont-wrap {
    margin-block: 4.5em 9.6em;
    grid-template-columns: 1fr 1fr; /* 위/아래 2개가 가로로 */
    grid-template-rows: 1fr auto 1fr;
    gap: 2em;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .philosophy-wrap .cont-wrap .back-gradi .gra1 {
    width: 70vw;
    left: 5%;
    bottom: 50%;
    margin-bottom: -25%;
  }
  .philosophy-wrap .cont-wrap .back-gradi .gra2 {
    width: 70vw;
    right: 5%;
    top: 50%;
    margin-top: -25%;
  }
  .philosophy-wrap .cont-wrap .cont {
    padding-inline: 0 1em;
    text-align: center;
  }
  .philosophy-wrap .cont-wrap .cont h4 {
    font-size: clamp(2.4rem, 4.69vw, 3.6rem);
  }
  .philosophy-wrap .cont-wrap .cont h4::before {
    display: none;
  }
  .philosophy-wrap .cont-wrap .cont {
    /* 위 좌우 */
  }
  .philosophy-wrap .cont-wrap .cont.left.top {
    grid-column: 1;
    grid-row: 1;
  }
  .philosophy-wrap .cont-wrap .cont.right.top {
    grid-column: 2;
    grid-row: 1;
  }
  .philosophy-wrap .cont-wrap .cont {
    /* 아래 좌우 */
  }
  .philosophy-wrap .cont-wrap .cont.left.bottom {
    grid-column: 1;
    grid-row: 3;
  }
  .philosophy-wrap .cont-wrap .cont.right.bottom {
    grid-column: 2;
    grid-row: 3;
  }
  .philosophy-wrap .cont-wrap .cont.left.top, .philosophy-wrap .cont-wrap .cont.left.bottom {
    padding-inline: 1em 0;
    text-align: center;
  }
  .philosophy-wrap .cont-wrap {
    /* 중앙 원 */
  }
  .philosophy-wrap .cont-wrap .circle {
    grid-column: 1/-1;
    grid-row: 2;
    justify-self: center;
    margin: 0 auto;
    width: clamp(160px, 26.08vw, 200px);
  }
  .philosophy-wrap .cont-wrap .circle figure {
    width: clamp(90px, 16.17vw, 124px);
    text-align: center;
  }
}

/* line-animation */
@-webkit-keyframes drawLineX {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes drawLineX {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
/* gradient-animation */
@-webkit-keyframes floatG1 {
  0% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  50% {
    -webkit-transform: translate(-40px, 30px) scale(1.08);
            transform: translate(-40px, 30px) scale(1.08);
  }
  100% {
    -webkit-transform: translate(30px, -20px) scale(0.96);
            transform: translate(30px, -20px) scale(0.96);
  }
}
@keyframes floatG1 {
  0% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  50% {
    -webkit-transform: translate(-40px, 30px) scale(1.08);
            transform: translate(-40px, 30px) scale(1.08);
  }
  100% {
    -webkit-transform: translate(30px, -20px) scale(0.96);
            transform: translate(30px, -20px) scale(0.96);
  }
}
@-webkit-keyframes floatG2 {
  0% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  50% {
    -webkit-transform: translate(36px, -24px) scale(1.1);
            transform: translate(36px, -24px) scale(1.1);
  }
  100% {
    -webkit-transform: translate(-24px, 36px) scale(0.94);
            transform: translate(-24px, 36px) scale(0.94);
  }
}
@keyframes floatG2 {
  0% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  50% {
    -webkit-transform: translate(36px, -24px) scale(1.1);
            transform: translate(36px, -24px) scale(1.1);
  }
  100% {
    -webkit-transform: translate(-24px, 36px) scale(0.94);
            transform: translate(-24px, 36px) scale(0.94);
  }
}
/* doah */
.s-doah-wrap {
  background: var(--font-color);
}
.s-doah-wrap .cont-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.s-doah-wrap .cont-wrap .txt-cont {
  position: relative;
  color: var(--white);
}
.s-doah-wrap .cont-wrap .txt-cont .ti {
  margin-bottom: 3.5em;
}
.s-doah-wrap .cont-wrap .txt-cont .ti::before {
  content: "";
  display: block;
  position: absolute;
  right: -18%;
  top: -100%;
  width: 387px;
  aspect-ratio: 387/82;
  background: url("/images/doah2/sub/s_doah_deco.png") no-repeat center/100%;
}
.s-doah-wrap .cont-wrap .txt-cont .ti img {
  width: 290px;
}
.s-doah-wrap .cont-wrap .txt-cont h3 {
  font-size: 3.6rem;
}
@media (max-width: 1280px) {
  .s-doah-wrap .cont-wrap .txt-cont h3 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .s-doah-wrap .cont-wrap .txt-cont h3 {
    font-size: 2.4rem;
  }
}
.s-doah-wrap .cont-wrap .txt-cont h3 {
  font-weight: 500;
}
.s-doah-wrap .cont-wrap .txt-cont p {
  font-size: 2.4rem;
}
@media (max-width: 1280px) {
  .s-doah-wrap .cont-wrap .txt-cont p {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .s-doah-wrap .cont-wrap .txt-cont p {
    font-size: 1.8rem;
  }
}
.s-doah-wrap .cont-wrap .txt-cont p {
  font-weight: 300;
}
.s-doah-wrap .cont-wrap .txt-cont p strong {
  font-weight: 500;
}
.s-doah-wrap .cont-wrap .img-cont {
  position: absolute;
  overflow: hidden;
}
.s-doah-wrap .cont-wrap .img-cont img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2); /* 처음 크게 */
}
.s-doah-wrap .cont-wrap .img-cont1 {
  position: absolute;
}
.s-doah-wrap .cont-wrap .blur {
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.01)), color-stop(72.6%, var(--Doah-Text-Color, rgba(1, 1, 0, 0.2))), to(rgba(255, 255, 255, 0.01)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0%, var(--Doah-Text-Color, rgba(1, 1, 0, 0.2)) 72.6%, rgba(255, 255, 255, 0.01) 100%);
  background-blend-mode: overlay;
  backdrop-filter: blur(90px);
}
.s-doah-wrap .cont1 {
  opacity: 0;
  background: url("/images/doah2/sub/s_doah_img06.png") no-repeat top left/29.9% auto;
}
.s-doah-wrap .cont1 .txt-cont {
  position: absolute;
  left: 13.17%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 4em;
}
.s-doah-wrap .cont1 .img-cont-wrap {
  width: 34.63%;
  position: absolute;
  right: 8%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.s-doah-wrap .cont1 .img-cont-wrap .img-cont {
  position: static;
  width: 100%;
}
.s-doah-wrap .cont1 .img-cont-wrap .blur.blur1 {
  width: 59%;
  aspect-ratio: 340/311;
  left: -21.5%;
  bottom: -27.8%;
}
.s-doah-wrap .cont1.fade-in-doah .img-cont img {
  -webkit-animation: imgReveal 2200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: imgReveal 2200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.s-doah-wrap .cont2 {
  position: relative;
  z-index: 2;
  background: #000;
}
.s-doah-wrap .cont2 .img-wrap-mobile {
  position: absolute;
  width: 100%;
  height: 100%;
}
.s-doah-wrap .cont2 .txt-cont {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
.s-doah-wrap .cont2 .img-cont-wrap {
  position: absolute;
  width: 19.94%;
  left: 4.375%;
  top: 5%;
}
.s-doah-wrap .cont2 .img-cont-wrap .img-cont {
  position: static;
}
.s-doah-wrap .cont2 .img-cont-wrap .img-cont.img2 {
  width: 100%;
}
.s-doah-wrap .cont2 .img-cont-wrap .blur.blur1 {
  width: 88.7%;
  aspect-ratio: 340/311;
  right: -38.64%;
  bottom: -14.84%;
}
.s-doah-wrap .cont2 .img-cont.img3 {
  width: 11.72%;
  top: 0;
  right: 0;
}
.s-doah-wrap .cont2 .img-cont.img4 {
  width: 22.29%;
  right: 4.375%;
  bottom: 0;
}
.s-doah-wrap .cont2 .img-cont.active img {
  -webkit-animation: imgReveal 3200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: imgReveal 3200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.s-doah-wrap .cont2 .img-cont1.img5 {
  width: 17.18%;
  top: 4.47%;
  right: 1.7%;
}
@media (max-width: 1280px) {
  .s-doah-wrap .cont-wrap .txt-cont .ti::before {
    width: 309px;
  }
  .s-doah-wrap .cont-wrap .txt-cont .ti img {
    width: 232px;
  }
  .s-doah-wrap .cont1 .txt-cont {
    left: 8%;
  }
  .s-doah-wrap .cont1 .img-cont-wrap {
    right: 0;
    margin-top: -10%;
  }
}
@media (max-width: 767px) {
  .s-doah-wrap .cont-wrap {
    height: 100%;
  }
  .s-doah-wrap .cont-wrap .img-cont,
  .s-doah-wrap .cont-wrap .img-cont1 {
    position: static;
  }
  .s-doah-wrap .cont-wrap .txt-cont .ti::before {
    width: clamp(185px, 40.29vw, 309px);
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 20%;
  }
  .s-doah-wrap .cont-wrap .txt-cont .ti img {
    width: clamp(160px, 30.25vw, 232px);
  }
  .s-doah-wrap .cont1 {
    padding: 4em 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3em;
  }
  .s-doah-wrap .cont1 .txt-cont {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    position: static;
    margin-top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    text-align: center;
  }
  .s-doah-wrap .cont1 .img-cont-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 80%;
    margin-left: 20%;
    position: static;
    margin-top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .s-doah-wrap .cont2 {
    padding: 8em 5% 5em;
  }
  .s-doah-wrap .cont2 .txt-cont {
    width: 100%;
    position: static;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-bottom: 3em;
  }
  .s-doah-wrap .cont2 .img-wrap-mobile {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    width: 90%;
    margin: 0 auto;
    aspect-ratio: 1.22;
  }
  .s-doah-wrap .cont2 .img-wrap-mobile .img-cont1 {
    position: absolute;
  }
  .s-doah-wrap .cont2 .img-wrap-mobile .img-cont-wrap {
    position: static;
    grid-column: 1;
    grid-row: 1/3;
    width: auto;
    overflow: hidden;
  }
  .s-doah-wrap .cont2 .img-wrap-mobile .img-cont-wrap .img-cont {
    width: 100%;
    height: 100%;
  }
  .s-doah-wrap .cont2 .img-wrap-mobile .img-cont-wrap .img-cont img {
    height: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .s-doah-wrap .cont2 .img-wrap-mobile .img-cont-wrap .blur {
    display: none;
  }
  .s-doah-wrap .cont2 .img-wrap-mobile {
    /* 오른쪽 위 */
  }
  .s-doah-wrap .cont2 .img-wrap-mobile .img3 {
    position: static;
    grid-column: 2;
    grid-row: 1;
    width: auto;
    overflow: hidden;
    min-height: 0;
  }
  .s-doah-wrap .cont2 .img-wrap-mobile .img3 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .s-doah-wrap .cont2 .img-wrap-mobile {
    /* 오른쪽 아래 */
  }
  .s-doah-wrap .cont2 .img-wrap-mobile .img4 {
    position: static;
    grid-column: 2;
    grid-row: 2;
    width: auto;
    overflow: hidden;
    min-height: 0;
  }
  .s-doah-wrap .cont2 .img-wrap-mobile .img4 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}

/* history-header */
.history-header {
  overflow: hidden;
}
.history-header .cont1 {
  position: relative;
  height: 30.1vw; /* 578px */
  overflow: hidden;
}
.history-header .cont1::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/doah2/sub/histroy_bg.jpg") no-repeat center/cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: imgZoomIn 2200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: imgZoomIn 2200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.history-header .cont1 h2,
.history-header .cont1 .year {
  position: absolute;
  color: var(--primary);
}
.history-header .cont1 h2 {
  top: -3.59vw;
  left: -0.99vw;
  font-size: clamp(12rem, 10.42vw, 20rem);
}
.history-header .cont1 .year {
  right: -2.5vw;
  bottom: -5.63vw;
  font-size: clamp(18rem, 15.63vw, 30rem);
  font-weight: 600;
}
.history-header .cont2 {
  position: relative;
  height: 22.4vw; /* 430px */
  background: linear-gradient(273deg, var(--primary) 44.71%, var(--secondary) 99.98%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.history-header .cont2 .ti-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4.4em;
}
.history-header .cont2 .ti-txt .cont {
  font-size: clamp(7.2rem, 6.25vw, 12rem);
  color: var(--white);
}
.history-header .cont2 .ti-txt .line {
  width: 5.21vw;
  height: 1px;
  background-color: var(--gray300);
}
.history-header .cont2 .ti-txt:nth-child(4) .cont {
  font-weight: 500;
}
.history-header .cont2 .ti-txt:nth-child(6) .cont {
  font-weight: 600;
}
.history-header .cont2 p {
  margin-top: 1em;
  font-size: 2.4rem;
}
@media (max-width: 1280px) {
  .history-header .cont2 p {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .history-header .cont2 p {
    font-size: 1.8rem;
  }
}
.history-header .cont2 p {
  color: var(--white);
}
@media (max-width: 1280px) {
  .history-header .cont1 h2 {
    font-size: clamp(7.2rem, 9.38vw, 12rem);
  }
  .history-header .cont1 .year {
    font-size: clamp(10.8rem, 14.06vw, 18rem);
  }
  .history-header .cont2 .ti-txt .cont {
    font-size: clamp(4.4rem, 5.63vw, 7.2rem);
  }
}
@media (max-width: 767px) {
  .history-header .cont1 {
    height: calc((100vh - var(--header-height)) * 0.4);
  }
  .history-header .cont1 h2 {
    top: -30px;
  }
  .history-header .cont1 .year {
    bottom: -40px;
  }
  .history-header .cont2 {
    padding-inline: 2em;
    height: calc((100vh - var(--header-height)) * 0.3);
  }
  .history-header .cont2 .ti-txt {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5em 5.74vw;
  }
  .history-header .cont2 .ti-txt .cont {
    font-size: clamp(2.8rem, 5.74vw, 4.4rem);
  }
}
@media (max-width: 480px) {
  .history-header .cont1 {
    height: calc((100vh - var(--header-height)) * 0.4);
  }
}

/* history-cont */
.history-cont {
  position: relative;
}
.history-cont .gra-sticky {
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.history-cont .back-gradi {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.history-cont .back-gradi .gra1 {
  opacity: 0.2;
  position: absolute;
  top: -30%;
  left: -10%;
  width: 46.72vw;
  aspect-ratio: 1;
  background: radial-gradient(50% 50% at 50% 50%, var(--Doah-point2, #FB6B4D) 0%, rgba(251, 107, 77, 0) 80.29%);
  -webkit-animation: floatG1 20s ease-in-out infinite alternate;
          animation: floatG1 20s ease-in-out infinite alternate;
  will-change: transform;
}
.history-cont .back-gradi .gra2 {
  opacity: 1;
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 48.44vw;
  aspect-ratio: 1;
  background: radial-gradient(50% 50% at 50% 50%, var(--gray200) 0%, rgba(233, 236, 239, 0) 100%);
  -webkit-animation: floatG2 20s ease-in-out infinite alternate;
          animation: floatG2 20s ease-in-out infinite alternate;
  will-change: transform;
}
.history-cont .cont-wrap {
  max-width: 1120px;
  margin-inline: auto;
  padding-block: 6em;
  margin-top: calc(-100vh + var(--header-height));
  z-index: 1;
}
.history-cont .cont {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 6em;
}
.history-cont .cont h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 27vw;
  font-size: 8rem;
  font-weight: 600;
}
.history-cont .cont h3::after {
  content: "";
  display: block;
  width: 8.33vw;
  margin-left: auto;
  margin-right: 3.54vw;
  height: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: var(--font-color);
}
.history-cont .cont .txt-cont {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 1.2em;
}
.history-cont .cont .txt-cont p {
  margin-bottom: 1.5em;
  font-size: 2.4rem;
}
@media (max-width: 1280px) {
  .history-cont .cont .txt-cont p {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .history-cont .cont .txt-cont p {
    font-size: 1.8rem;
  }
}
.history-cont .cont .txt-cont p {
  font-weight: 500;
  color: var(--primary);
}
.history-cont .cont .txt-cont ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.778em;
}
.history-cont .cont .txt-cont ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.history-cont .cont .txt-cont ul li span {
  width: 54px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
}
.history-cont .cont .txt-cont ul li strong {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
}
.history-cont .cont:last-child {
  padding-bottom: 0;
}
@media (max-width: 1460px) {
  .history-cont .cont h3 {
    width: 31vw;
  }
}
@media (max-width: 1280px) {
  .history-cont .cont-wrap {
    padding-inline: 3em 2em;
  }
  .history-cont .cont h3 {
    width: 36%;
    font-size: 7rem;
  }
  .history-cont .cont .txt-cont {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .history-cont .cont .txt-cont ul li span {
    width: 46px;
  }
}
@media (max-width: 1024px) {
  .history-cont .cont h3 {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .history-cont .cont h3 {
    font-size: 5rem;
  }
  .history-cont .cont h3::after {
    display: none;
  }
  .history-cont .cont .txt-cont ul li span {
    width: 40px;
  }
}
@media (max-width: 480px) {
  .history-cont .cont-wrap {
    padding-inline: 8%;
  }
  .history-cont .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .history-cont .cont h3 {
    width: 100%;
  }
  .history-cont .cont h3::after {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 0;
    margin-left: 0.5em;
  }
}

/* talent-wrap */
.talent-wrap {
  position: relative;
  padding-block: 6.66em 8.88em;
  margin-bottom: -7em;
  background-color: var(--gray100);
  overflow: hidden;
}
.talent-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 121.77vw;
  aspect-ratio: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.3;
  background: radial-gradient(50% 50% at 50% 50%, var(--Doah-Text-Color, #010100) 0%, rgba(233, 236, 239, 0) 76.44%);
}
.talent-wrap .ti-wrap .h-sty-ti,
.talent-wrap .ti-wrap .p-sty {
  text-align: center;
}
.talent-wrap .ti-wrap .more-wrap {
  margin-top: 1.77em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.talent-wrap .cont-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6em;
  margin-top: 3.3em;
}
.talent-wrap .cont-wrap .cont {
  border: 3px solid var(--white);
  padding: 2.6em 4.4em;
  background-color: var(--white);
  text-align: center;
}
.talent-wrap .cont-wrap .cont .icon {
  margin-inline: auto;
  margin-bottom: 1.7em;
  width: 120px;
  aspect-ratio: 1;
}
.talent-wrap .cont-wrap .cont .icon::before, .talent-wrap .cont-wrap .cont .icon::after {
  content: "";
  display: block;
}
.talent-wrap .cont-wrap .cont .icon::before {
  width: 100%;
  height: 100%;
  background-color: var(--font-color);
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.talent-wrap .cont-wrap .cont .icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 54px;
  aspect-ratio: 1;
  background: url("/images/doah2/sub/talent_icon01.svg") no-repeat center/96.3% 87%;
}
.talent-wrap .cont-wrap .cont h3 {
  margin-bottom: 0.66em;
  font-size: 2.4rem;
}
@media (max-width: 1280px) {
  .talent-wrap .cont-wrap .cont h3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .talent-wrap .cont-wrap .cont h3 {
    font-size: 1.8rem;
  }
}
.talent-wrap .cont-wrap .cont h3 {
  font-weight: 500;
}
.talent-wrap .cont-wrap .cont:hover {
  border-color: var(--primary);
}
.talent-wrap .cont-wrap .cont:hover .icon::before {
  -webkit-filter: blur(18px);
          filter: blur(18px);
  background: linear-gradient(144deg, var(--Doah-point2, #FB6B4D) 6.44%, #A144A2 54.24%, var(--Doah-point4, #4D1FF2) 89.88%), var(--Doah-Text-Color, #010100);
}
.talent-wrap .cont-wrap .cont:nth-child(2) .icon::after {
  background-image: url("/images/doah2/sub/talent_icon02.svg");
  background-size: 96.3% 88.9%;
}
.talent-wrap .cont-wrap .cont:nth-child(3) .icon::after {
  background-image: url("/images/doah2/sub/talent_icon03.svg");
  background-size: 55.6% 100%;
}
.talent-wrap .cont-wrap .cont:nth-child(4) .icon::after {
  background-image: url("/images/doah2/sub/talent_icon04.svg");
  background-size: 98.1% 83.3%;
}
.talent-wrap .cont-wrap.ani-active .cont {
  opacity: 0;
  -webkit-animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: contIn 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-transform: none;
          transform: none;
  -webkit-animation-delay: 0ms;
          animation-delay: 0ms;
}
.talent-wrap .cont-wrap.ani-active .cont:nth-child(2) {
  -webkit-animation-delay: 280ms;
          animation-delay: 280ms;
}
.talent-wrap .cont-wrap.ani-active .cont:nth-child(3) {
  -webkit-animation-delay: 560ms;
          animation-delay: 560ms;
}
.talent-wrap .cont-wrap.ani-active .cont:nth-child(4) {
  -webkit-animation-delay: 840ms;
          animation-delay: 840ms;
}
@media (max-width: 1460px) {
  .talent-wrap .cont-wrap .cont {
    padding: 1.56em 2.64em;
  }
}
@media (max-width: 1280px) {
  .talent-wrap::before {
    top: 30%;
  }
  .talent-wrap .cont-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .talent-wrap .cont-wrap .cont .icon {
    width: 96px;
  }
}
@media (max-width: 767px) {
  .talent-wrap {
    padding-block: 4em 5.4em;
  }
}
@media (max-width: 520px) {
  .talent-wrap::before {
    display: none;
  }
  .talent-wrap .cont-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .talent-wrap .cont-wrap .cont .icon {
    width: 72px;
  }
  .talent-wrap .cont-wrap .cont .icon::after {
    width: 36px;
  }
}

/* ----------------------------------------
*CI
* ----------------------------------------*/
.ci-ti {
  margin-bottom: 2.88em;
}
.ci-ti p {
  margin-top: 1.3em;
}

.ci-wrap .cont .img {
  padding: 2em;
  border: 1px solid var(--gray300);
  background-color: var(--white);
  min-height: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ci-wrap .cont .img.img1 img {
  width: 324px;
}
.ci-wrap .cont .img.img2 img {
  width: 406px;
}
.ci-wrap .cont .img.img3 img {
  width: 248px;
}
.ci-wrap .txt {
  margin-top: 1em;
  text-align: center;
}
.ci-wrap.ci-cont-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.33em;
}
@media (max-width: 1280px) {
  .ci-wrap .cont .img {
    min-height: 280px;
  }
  .ci-wrap .cont .img.img1 img {
    width: 259px;
  }
  .ci-wrap .cont .img.img2 img {
    width: 324px;
  }
  .ci-wrap .cont .img.img3 .img {
    width: 198px;
  }
}
@media (max-width: 767px) {
  .ci-wrap .cont .img {
    min-height: 240px;
  }
  .ci-wrap .cont .img.img1 img {
    width: 194px;
  }
  .ci-wrap .cont .img.img2 img {
    width: 243px;
  }
  .ci-wrap .cont .img.img3 img {
    width: 148px;
  }
}
@media (max-width: 480px) {
  .ci-wrap .cont .img {
    min-height: 200px;
  }
  .ci-wrap.ci-cont-2 {
    grid-template-columns: 1fr;
    gap: 1.33em;
  }
}

.color-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.55em;
  margin-top: 2.2em;
}
.color-wrap .cont {
  padding: 1.68em 2.5em;
  background-color: var(--font-color);
  color: var(--white);
  font-size: 1.6rem;
}
@media (max-width: 1280px) {
  .color-wrap .cont {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .color-wrap .cont {
    font-size: 1.4rem;
  }
}
.color-wrap .cont:nth-child(1) {
  grid-column: 1/-1;
}
.color-wrap .cont:nth-child(2) {
  background-color: #99D6F1;
}
.color-wrap .cont:nth-child(3) {
  background-color: #CD0846;
}
.color-wrap .cont .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.08vw;
}
@media (max-width: 767px) {
  .color-wrap {
    margin-top: 1.76em;
    grid-template-columns: 1fr;
    grid-template-columns: repeat(1fr);
  }
  .color-wrap .cont {
    padding: 1.3em 2em;
  }
}
@media (max-width: 480px) {
  .color-wrap .cont .txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* ----------------------------------------
*애니메이션
* ----------------------------------------*/
@keyframes imgZoomIn {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
