@charset "UTF-8";
/************************************************************************************/
/************************************* Colors *************************************/
/************************************************************************************/
:root {
  --black: #000;
  --white: #fff;
  --footer: #141415;
  --gray-d1: #d1d1d1;
  --gray-7c: #7c7c7c;
  --gray-ec: #ececec;
  --gray-9a: #9a9a9a;
  --gray-81: #818181;
  --gray-f0: #f0f0f0;
  --gray-f8: #f8f8f8;
  --deep-blue: #243287;
  --year-border: #81d4f7;
  --border-color: var(--gray-d1);
  --link-color: var(--black);
  --date-color: var(--gray-81);
  --dtaq-label-color: var(--white);
  --dtaq-label-1-color: #406cff;
  --dtaq-label-2-color: #ff634a;
  --dtaq-label-3-color: #342d35;
  --dtaq-label-4-color: #cb14eb;
  --dtaq-label-5-color: #13aa1a;
  --link-active-color: #e9e9e9;
  --headline-color: #eceff8;
  --point-color: #406dff;
  --slogan-color: #919191;
  --mini-interview-point-color: #2e3192;
  --bulletin-border-color: var(--gray-d1);
  --bulletin-point-color: #243287;
  --ai-area-color: #ebecf1;
}

@font-face {
  font-family: "danjo";
  src: url("font/Danjo-bold-Regular.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("font/Pretendard-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("font/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Gmarket";
  src: url("font/GmarketSansTTFMedium.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Gmarket";
  src: url("font/GmarketSansTTFBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
html,
body {
  font-family: "Pretendard";
  font-size: 18px;
  word-break: keep-all;
}
html.is-scroll-locked,
body.is-scroll-locked {
  overflow: hidden;
  height: 100%;
}
@media (max-width: 480px) {
  html,
  body {
    font-size: 20px;
  }
}

section {
  padding: 120px 10px;
  position: relative;
}
section > header {
  width: min(1200px, 92vw);
  margin: 0 auto 40px;
  opacity: 0;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
  -webkit-transition:
    opacity 700ms ease,
    -webkit-transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    opacity 700ms ease,
    -webkit-transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    opacity 700ms ease,
    transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    opacity 700ms ease,
    transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
    -webkit-transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}
section.is-in > header {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

header {
  text-align: center;
  pointer-events: auto;
}
header h2 {
  font-family: "danjo";
  font-size: 2.5em;
  text-align: center;
}
header .more {
  font-size: clamp(14px, 0.7vw, 16px);
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  background: var(--white);
  padding: 0.8em 2em;
  margin-top: 1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}
header .more img {
  margin-left: 1em;
  -webkit-transition: -webkit-filter 0.25s ease;
  transition: -webkit-filter 0.25s ease;
  transition: filter 0.25s ease;
  transition:
    filter 0.25s ease,
    -webkit-filter 0.25s ease;
  will-change: transform;
}
header .more:hover {
  background: #81d4f7;
  border-color: #81d4f7;
  color: #fff;
}
header .more:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-animation: moreArrowMove 0.9s ease-in-out infinite;
  animation: moreArrowMove 0.9s ease-in-out infinite;
}
@media (max-width: 768px) {
  header h2 {
    font-size: 2em;
  }
}
@media (max-width: 500px) {
  header h2 {
    font-size: 1.5em;
  }
}

/* 점 공통 */
.dot {
  border-radius: 50%;
  aspect-ratio: 1/1;
  position: absolute;
}
.dot.dot01 {
  width: 40px;
  background: #90ffcb;
}
.dot.dot02 {
  width: 30px;
  background: #81d4f7;
}
.dot.dot03 {
  width: 20px;
  background: #007dc5;
  top: 5%;
  right: 15%;
}
.dot.dot04 {
  width: 40px;
  background: #ffff10;
}
.dot.dot05 {
  width: 30px;
  background: #81d4f7;
}

/* 아이콘 반복 이동 */
@-webkit-keyframes moreArrowMove {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes moreArrowMove {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* =======================
   Section01
   ======================= */
.section01 {
  height: 100vh;
  padding: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.section01 .brush {
  width: 30%;
  position: absolute;
  top: 0;
  right: 0;
}
.section01 .dot.dot01 {
  top: 50%;
  left: 10%;
}
.section01 .dot.dot02 {
  top: 10%;
  left: 15%;
}
.section01 .dot.dot03 {
  top: 20%;
  right: 15%;
}
.section01 .dot.dot04 {
  top: 40%;
  right: 5%;
}
.section01 .dot.dot05 {
  right: 15%;
  bottom: 20%;
}
.section01 .img-inner {
  position: relative;
  width: min(1320px, 92vw);
  height: min(780px, 78vh);
  border-radius: 50px;
  overflow: hidden;
  background: var(--black);
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  -webkit-transition:
    width 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    -webkit-box-shadow 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    width 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    -webkit-box-shadow 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    width 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    width 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    -webkit-box-shadow 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: width, height, border-radius;
}
.section01 .img-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background 400ms ease;
  transition: background 400ms ease;
  z-index: 5;
  pointer-events: none;
}
.section01 .frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 120ms linear;
  transition: opacity 120ms linear;
}
.section01 .frame.is-active {
  opacity: 1;
}
.section01 .frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.section01 .year {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
  opacity: 1;
  -webkit-transition: opacity 700ms ease;
  transition: opacity 700ms ease;
  pointer-events: none;
}
.section01 .year__left,
.section01 .year__right {
  display: inline-block;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: -webkit-transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    -webkit-transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.section01 .year__line {
  position: relative;
  width: 50px;
  height: 2px;
  opacity: 1;
  -webkit-transition: width 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: width 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.section01 .year__line > span {
  position: absolute;
  inset: 0;
  background: var(--year-border);
  /* ✅ Stage2에서 left/right 늘어날 때 자연스럽게 */
  -webkit-transition:
    left 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    right 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    left 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    right 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.section01 .logo-wrap {
  width: 30%;
  max-width: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  -webkit-transform: translate(-50%, -50%) scale(0.98);
  transform: translate(-50%, -50%) scale(0.98);
  opacity: 0;
  -webkit-transition:
    opacity 600ms ease,
    -webkit-transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    opacity 600ms ease,
    -webkit-transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    opacity 600ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    opacity 600ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    -webkit-transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.section01 .logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.section01 .slogun {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  width: min(840px, 84vw);
  -webkit-transform: translate(-50%, calc(-50% + 36px));
  transform: translate(-50%, calc(-50% + 36px));
  opacity: 0;
  -webkit-transition:
    opacity 700ms ease,
    -webkit-transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    opacity 700ms ease,
    -webkit-transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    -webkit-transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  text-align: center;
  font-family: "danjo";
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  font-size: 65px;
}
.section01 .slogun span {
  display: block;
  font-family: "pretendard";
  font-size: 0.53em;
}
.section01.is-dim .img-inner::after {
  background: rgba(0, 0, 0, 0.3);
}
.section01.is-stage2 .year__left {
  -webkit-transform: translateX(calc(-1 * var(--move-x, 220px)));
  transform: translateX(calc(-1 * var(--move-x, 220px)));
}
.section01.is-stage2 .year__right {
  -webkit-transform: translateX(var(--move-x, 220px));
  transform: translateX(var(--move-x, 220px));
}
.section01.is-stage2 .year__line > span {
  left: -120px;
  right: -120px;
}
.section01.is-stage3 .logo-wrap {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.section01.is-stage4 .year {
  opacity: 0;
}
.section01.is-stage4 .logo-wrap {
  opacity: 1;
  -webkit-transform: translate(-50%, calc(-50% - 130px)) scale(0.7);
  transform: translate(-50%, calc(-50% - 130px)) scale(0.7);
}
.section01.is-stage4 .slogun {
  opacity: 1;
  -webkit-transform: translate(-50%, calc(-50% + 62px));
  transform: translate(-50%, calc(-50% + 62px));
}
.section01.is-stage4 .img-inner {
  width: 100%;
  height: 100vh;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media (max-width: 768px) {
  .section01 .slogun {
    font-size: 7vw;
  }
}
@media (max-width: 480px) {
  .section01 {
    padding: 0;
  }
  .section01 .img-inner {
    border-radius: 18px;
    height: min(620px, 78vh);
  }
  .section01.is-stage4 .logo-wrap {
    -webkit-transform: translate(-50%, calc(-50% - 70px)) scale(0.9);
    transform: translate(-50%, calc(-50% - 70px)) scale(0.9);
  }
  .section01.is-stage4 .slogun {
    -webkit-transform: translate(-50%, calc(-50% + 52px));
    transform: translate(-50%, calc(-50% + 52px));
  }
}

/* =======================
   Section02
   ======================= */
.section02 {
  overflow-x: clip;
  /* istory 카드 폭/간격을 변수로 통일 (40~50vw 튜닝 포인트) */
  --card-w: 46vw;
  --card-gap: 1.2vw;
  --card-outer: calc(var(--card-w) + (var(--card-gap) * 2));
  /* history */
}
.section02 .history-wrap {
  width: 100%;
  padding-bottom: 40px;
  overflow: visible;
  position: relative;
}
.section02 .history-slider {
  width: 100%;
  padding: 0 3vw;
}
.section02 .history-slider .slick-list {
  overflow: visible;
}
.section02 .history-slider {
  /* 첫/마지막이 중앙에 오도록 트랙 양끝 스페이서 */
}
.section02 .history-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.section02 .history-slider .slick-track::before,
.section02 .history-slider .slick-track::after {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 clamp(0px, (100vw - var(--card-outer)) / 2, 40vw);
  flex: 0 0 clamp(0px, (100vw - var(--card-outer)) / 2, 40vw);
}
.section02 .history-item {
  width: var(--card-w);
  max-width: 920px;
  min-width: 320px;
  margin: 0 var(--card-gap);
  display: grid;
  place-items: center;
  -webkit-transition:
    border-color 0.35s ease,
    -webkit-transform 0.35s ease,
    -webkit-box-shadow 0.35s ease;
  transition:
    border-color 0.35s ease,
    -webkit-transform 0.35s ease,
    -webkit-box-shadow 0.35s ease;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    -webkit-transform 0.35s ease,
    -webkit-box-shadow 0.35s ease;
}
.section02 .history-item .history-header {
  height: 50%;
  font-size: clamp(16px, 2vw, 30px);
  text-align: center;
  position: absolute;
  top: 40%;
  left: -20%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section02 .history-item .history-header > div:first-child {
  color: #00b17f;
  margin-bottom: 5em;
}
.section02 .history-item .history-header > div:first-child::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00b17f;
  margin: 0 auto 1em auto;
  display: block;
}
.section02 .history-item .history-header > div:last-child {
  color: #007dc5;
}
.section02 .history-item .history-header > div:last-child::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #007dc5;
  margin: 1em auto 0 auto;
  display: block;
}
.section02 .history-item .history-img-wrap {
  width: 100%;
  font-size: clamp(20px, 2vw, 30px);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  border-radius: 200px;
  /* padding-top:67.5%; */
  padding-top: 55%;
  overflow: hidden;
  position: relative;
}
.section02 .history-item .history-img-wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: inherit;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.section02 .history-item .history-img-wrap .history-year {
  width: 100%;
  font-family: "Gmarket";
  font-size: clamp(20px, 3vw, 100px);
  line-height: 100%;
  position: absolute;
  bottom: 0;
  z-index: 20;
}
.section02 .history-item .history-img-wrap .history-discription {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20;
}
.section02 .history-item .history-img-wrap.multi-img {
  border-radius: 0;
  overflow: visible;
}
.section02 .history-item .history-img-wrap.multi-img::after {
  display: none;
}
.section02 .history-item .history-img-wrap.multi-img > div {
  width: 100%;
  height: 50%;
  border-radius: 500px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  overflow: hidden;
}
.section02 .history-item .history-img-wrap.multi-img > div:first-child {
  top: 0;
}
.section02
  .history-item
  .history-img-wrap.multi-img
  > div:first-child
  .history-year {
  top: 0;
}
.section02 .history-item .history-img-wrap.multi-img > div:last-child {
  bottom: 0;
}
.section02
  .history-item
  .history-img-wrap.multi-img
  > div:last-child
  .history-year {
  bottom: 0;
}
.section02 .history-item .history-img-wrap.multi-img > div::after {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.section02 .history-item .history-img-wrap.multi-img > div .history-year {
  width: 100%;
  text-align: center;
  position: absolute;
  z-index: 20;
}
.section02 .history-item .history-img-wrap.history01 > div:first-child::after {
  background-image: url("../img/history01_01.jpg");
}
.section02 .history-item .history-img-wrap.history01 > div:last-child::after {
  background-image: url("../img/history01_02.jpg");
}
.section02 .history-item .history-img-wrap.history02 > div:first-child::after {
  background-image: url("../img/history02_01.jpg");
}
.section02 .history-item .history-img-wrap.history02 > div:last-child::after {
  background-image: url("../img/history02_02.jpg");
}
.section02 .history-item .history-img-wrap.history03::after {
  background-image: url("../img/history03.jpg");
}
.section02 .history-item .history-img-wrap.history04::after {
  background-image: url("../img/history04.jpg");
}
.section02 .history-item .history-img-wrap.history05::after {
  background-image: url("../img/history05.jpg");
}
.section02 .history-item .history-txt {
  font-size: 1.2em;
  text-align: center;
  color: var(--black);
  margin-top: 1em;
}
.section02 .history-item .year-dot {
  font-family: "Gmarket";
  font-size: 1.7em;
  font-weight: 600;
  text-align: center;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#007dc5),
    to(#81d4f7)
  );
  background: linear-gradient(90deg, #007dc5 0%, #81d4f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-top: 2em;
}
.section02 .history-item .year-dot::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00b3ff),
    to(#0048ff)
  );
  background: linear-gradient(90deg, #00b3ff 0%, #0048ff 100%);
  display: block;
  margin: 0.2em auto 0 auto;
}
.section02 .history-item:hover .history-img-wrap::after {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.section02 .history-item:hover .multi-img > div::after {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.section02 .history-slider .slick-center .history-item {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
  opacity: 1;
  border-color: #81d4f7;
  -webkit-box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}
.section02 .history-slider .slick-dots {
  display: none !important;
}
.section02 {
  /* 진행바 */
}
.section02 .history-progress {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  border-radius: 999px;
  margin-top: -8px;
  overflow: hidden;
  z-index: -1;
}
.section02 .history-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: #00b3ff;
  border-radius: 999px;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}
.section02 .history-wrap {
  position: relative;
}
.section02 .history-arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 46%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 2.2vw;
}
.section02 .history-arrow {
  pointer-events: auto;
  width: clamp(44px, 3.6vw, 64px);
  height: clamp(44px, 3.6vw, 64px);
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  -webkit-transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.section02 .history-arrow:hover {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.96);
}
.section02 .history-arrow:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.section02 .history-arrow {
  /* slick이 disabled 붙여줌 */
}
.section02 .history-arrow.slick-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.section02 .history-arrow .ico {
  width: 20px;
  height: 20px;
  display: block;
  /* 아이콘 */
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00b3ff),
    to(#0048ff)
  );
  background: linear-gradient(90deg, #00b3ff 0%, #0048ff 100%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.5 4.5a1 1 0 0 1 0 1.4L10.4 11l5.1 5.1a1 1 0 1 1-1.4 1.4l-5.8-5.8a1 1 0 0 1 0-1.4l5.8-5.8a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.5 4.5a1 1 0 0 1 0 1.4L10.4 11l5.1 5.1a1 1 0 1 1-1.4 1.4l-5.8-5.8a1 1 0 0 1 0-1.4l5.8-5.8a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.section02 .history-arrow--next .ico {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .section02 .history-item .history-header {
    top: 35%;
  }
}
@media (max-width: 500px) {
  .section02 .history-item .history-txt {
    font-size: 0.9em;
  }
}

/* =======================
   Section03
   ======================= */
.section03 {
  background: #f0fbff;
  overflow: hidden;
}
.section03::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 140px;
  /* header 높이에 맞춰 조절 */
  z-index: 49;
  /* header(50) 바로 아래 */
  pointer-events: none;
  /* 클릭 방해 X */
}
.section03 > header {
  position: relative;
  z-index: 50;
  pointer-events: auto;
}
.section03 .wave-logo {
  width: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.section03 .wave-logo img {
  width: 100%;
}
.section03 .wave-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
}
.section03 .wave-bg__svg {
  width: 100%;
  height: 100%;
  display: block;
}
.section03 .wave-line {
  fill: none;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  /* 확대해도 1px 유지 */
  shape-rendering: geometricPrecision;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.section03 {
  /* 라인 */
}
.section03 .wave-line--1 {
  stroke: rgba(0, 125, 197, 0.3);
}
.section03 .wave-line--2 {
  stroke: rgba(0, 179, 255, 0.22);
  -webkit-transform: rotate(-15deg) scale(1.2);
  transform: rotate(-15deg) scale(1.2);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.section03 .wave-line--3 {
  stroke: rgba(0, 0, 0, 0.1);
  -webkit-transform: rotate(5deg) scale(1.2);
  transform: rotate(5deg) scale(1.2);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.section03 .circle-wrap {
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: clamp(10px, 2vw, 20px);
  padding: clamp(12px, 2vw, 24px) 0 40px;
}
.section03 .circle {
  font-size: 1em;
  width: min(180px, 22vw);
  justify-self: center;
  align-self: center;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 20;
  -webkit-animation: floatY 4.6s ease-in-out infinite;
  animation: floatY 4.6s ease-in-out infinite;
  will-change: transform;
}
.section03 .circle .circle-txt {
  width: 100%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.section03 .circle .circle-txt img {
  display: block;
  margin: 0 auto 10px auto;
}
.section03 .circle .circle-txt2 {
  text-align: center;
  margin-top: 0.5em;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.section03 .circle a {
  width: 100%;
  color: var(--white);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: block;
  position: relative;
  -webkit-box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.25) inset;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.25) inset;
  overflow: hidden;
  -webkit-transition:
    -webkit-transform 0.25s ease,
    -webkit-box-shadow 0.25s ease;
  transition:
    -webkit-transform 0.25s ease,
    -webkit-box-shadow 0.25s ease;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    -webkit-transform 0.25s ease,
    -webkit-box-shadow 0.25s ease;
  -webkit-animation: driftX 6.5s ease-in-out infinite;
  animation: driftX 6.5s ease-in-out infinite;
  -webkit-animation-delay: inherit;
  animation-delay: inherit;
}
.section03 .circle a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.section03 .circle.circle01 {
  grid-column: 1 / span 3;
  grid-row: 1;
  -webkit-animation-duration: 4.8s;
  animation-duration: 4.8s;
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}
.section03 .circle.circle01 a {
  background: #007dc5;
}
.section03 .circle.circle01 a::after {
  background-image: url("../img/business01.jpg");
}
.section03 .circle.circle02 {
  grid-column: 10 / span 3;
  grid-row: 1;
  -webkit-animation-duration: 5.6s;
  animation-duration: 5.6s;
  -webkit-animation-delay: -2.4s;
  animation-delay: -2.4s;
}
.section03 .circle.circle02 a {
  background: #0eba86;
}
.section03 .circle.circle02 a::after {
  background-image: url("../img/business02.jpg");
}
.section03 .circle.circle03 {
  grid-column: 5 / span 4;
  grid-row: 2;
  -webkit-animation-duration: 4.2s;
  animation-duration: 4.2s;
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.section03 .circle.circle03 a {
  background: #005cc5;
}
.section03 .circle.circle03 a::after {
  background-image: url("../img/business03.jpg");
}
.section03 .circle.circle04 {
  grid-column: 2 / span 3;
  grid-row: 3;
  -webkit-animation-duration: 5.1s;
  animation-duration: 5.1s;
  -webkit-animation-delay: -1.9s;
  animation-delay: -1.9s;
}
.section03 .circle.circle04 a {
  background: #2ac0ff;
}
.section03 .circle.circle04 a::after {
  background-image: url("../img/business04.jpg");
}
.section03 .circle.circle05 {
  grid-column: 9 / span 3;
  grid-row: 3;
  -webkit-animation-duration: 4.9s;
  animation-duration: 4.9s;
  -webkit-animation-delay: -3.1s;
  animation-delay: -3.1s;
}
.section03 .circle.circle05 a {
  background: #002a6a;
}
.section03 .circle.circle05 a::after {
  background-image: url("../img/business05.jpg?v=20260206-2");
}
.section03 .circle:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.section03 .circle:hover a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    0 2px 0 rgba(255, 255, 255, 0.25) inset;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    0 2px 0 rgba(255, 255, 255, 0.25) inset;
}
.section03 .circle:hover a::after {
  opacity: 0;
}
.section03 .circle:hover .circle-txt {
  opacity: 1;
}
.section03 .circle:hover .circle-txt2 {
  opacity: 0;
}
.section03 .dot.dot01 {
  top: 50%;
  left: 10%;
}
.section03 .dot.dot02 {
  top: 10%;
  left: 15%;
}
.section03 .dot.dot03 {
  top: 20%;
  right: 15%;
}
.section03 .dot.dot04 {
  top: 40%;
  right: 5%;
}
.section03 .dot.dot05 {
  right: 15%;
  bottom: 20%;
}
@media (max-width: 768px) {
  .section03 .circle-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 18px;
  }
  .section03 .circle {
    width: min(260px, 44vw);
  }
  .section03 .circle.circle01 {
    grid-column: 1/1;
    grid-row: 1;
  }
  .section03 .circle.circle02 {
    grid-column: 2/2;
    grid-row: 1;
  }
  .section03 .circle.circle03 {
    grid-column: 1 / span 2;
    grid-row: 2;
  }
  .section03 .circle.circle04 {
    grid-column: 1/1;
    grid-row: 3;
  }
  .section03 .circle.circle05 {
    grid-column: 2/2;
    grid-row: 3;
  }
  .section03 .circle01,
  .section03 .circle02,
  .section03 .circle03,
  .section03 .circle04,
  .section03 .circle05 {
    grid-column: auto;
    grid-row: auto;
  }
}

@-webkit-keyframes floatY {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-14px);
    transform: translateY(-14px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes floatY {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-14px);
    transform: translateY(-14px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes driftX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes driftX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* =======================
   Section04
   ======================= */
.section04 {
  overflow: hidden;
}
.section04 > header {
  margin-bottom: 60px;
}
.section04 > header button {
  font-size: 0.8em;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 10px 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.section04 > header button img {
  margin-right: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.section04 > header button:hover {
  color: var(--white);
  border: 1px solid var(--black);
  background: var(--black);
}
.section04 > header button:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.section04 {
  /* 카드 폭/간격 변수 (PC에서 5장 느낌) */
  --ev-card-w: 20vw;
  --ev-gap: 2vw;
  --ev-outer: calc(var(--ev-card-w) + (var(--ev-gap) * 2));
}
.section04 .event-wrap {
  width: 100%;
  position: relative;
  padding-bottom: 40px;
}
.section04 .page-wrap {
  width: min(1200px, 92vw);
  margin: 0 auto 1em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.section04 .page-wrap .page {
  font-size: 0.9em;
  color: #8c8c8c;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section04 .page-wrap .page .current {
  color: var(--black);
  font-weight: 600;
}
.section04 .page-wrap .page .line {
  width: 80px;
  height: 1px;
  border-top: 1px solid var(--border-color);
  margin: 0 10px;
}
.section04 .event-slider {
  width: 100%;
  padding: 0 3vw;
}
.section04 .event-slider .slick-list {
  overflow: visible;
}
.section04 .event-slider {
  /* 섹션2처럼 양끝 스페이서 -> 끝 카드 반 잘림 + 중앙 정렬 안정화 */
}
.section04 .event-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.section04 .event-slider .slick-track::before,
.section04 .event-slider .slick-track::after {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 clamp(0px, (100vw - var(--ev-outer)) / 2, 40vw);
  flex: 0 0 clamp(0px, (100vw - var(--ev-outer)) / 2, 40vw);
}
.section04 .event {
  width: var(--ev-card-w);
  text-align: center;
  min-width: 260px;
  max-width: 420px;
  margin: 0 var(--ev-gap);
  -webkit-transition:
    opacity 0.35s ease,
    -webkit-transform 0.35s ease,
    -webkit-box-shadow 0.35s ease;
  transition:
    opacity 0.35s ease,
    -webkit-transform 0.35s ease,
    -webkit-box-shadow 0.35s ease;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease,
    -webkit-transform 0.35s ease,
    -webkit-box-shadow 0.35s ease;
}
.section04 .event a {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.section04 .event .img-wrap {
  overflow: hidden;
}
.section04 .event .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition:
    transform 0.45s ease,
    -webkit-transform 0.45s ease;
}
.section04 .event .subject {
  padding: 14px 14px 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1em;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.88);
  min-height: 3.2em;
  /* 제목 줄수 안정화 */
}
.section04 .event:hover .img-wrap img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.section04 .event {
  /* 중앙 카드 키우기 */
}
.section04 .event.slick-center {
  -webkit-transform: scale(1.18);
  transform: scale(1.18);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  z-index: 5;
}
.section04 {
  /* (선택) 화살표:  */
}
.section04 .event-arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 44%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 2.2vw;
}
.section04 .event-arrow {
  pointer-events: auto;
  width: clamp(44px, 3.6vw, 64px);
  height: clamp(44px, 3.6vw, 64px);
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  -webkit-transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.section04 .event-arrow:hover {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.96);
}
.section04 .event-arrow:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.section04 .event-arrow .ico {
  width: 20px;
  height: 20px;
  display: block;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00b3ff),
    to(#0048ff)
  );
  background: linear-gradient(90deg, #00b3ff 0%, #0048ff 100%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.5 4.5a1 1 0 0 1 0 1.4L10.4 11l5.1 5.1a1 1 0 1 1-1.4 1.4l-5.8-5.8a1 1 0 0 1 0-1.4l5.8-5.8a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.5 4.5a1 1 0 0 1 0 1.4L10.4 11l5.1 5.1a1 1 0 1 1-1.4 1.4l-5.8-5.8a1 1 0 0 1 0-1.4l5.8-5.8a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.section04 .event-arrow--next .ico {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .section04 > header button {
    margin: 3em auto 0 auto;
    position: relative;
    top: auto;
    left: auto;
  }
  .section04 {
    --ev-card-w: 72vw;
    /* 모바일은 1장 중심 */
    --ev-gap: 10px;
  }
  .section04 .event-arrows {
    display: none;
  }
  .section04 .event {
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .section04 .event.slick-center {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/* =======================
   Section05
   ======================= */
.section05 {
  background: url("../img/video_bg.png") no-repeat;
  background-size: 100%;
}
.section05 .txt {
  font-size: 1.3em;
  text-align: center;
}
.section05 .txt span {
  color: #007dc5;
  font-weight: 600;
}
.section05 .iframe-wrap {
  max-width: 1200px;
  background: #000;
  aspect-ratio: 16/9;
  margin: 2em auto 0 auto;
  position: relative;
}
.section05 .iframe-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.section05 .dot.dot01 {
  top: 50%;
  left: 10%;
}
.section05 .dot.dot02 {
  top: 5%;
  left: 15%;
}
.section05 .dot.dot03 {
  top: 5%;
  right: 15%;
}
.section05 .dot.dot04 {
  top: 40%;
  right: 5%;
}
.section05 .dot.dot05 {
  right: 15%;
  bottom: 20%;
}
@media (max-width: 500px) {
  .section05 .txt {
    font-size: 1.2em;
  }
}

/* =======================
   Section06
   ======================= */
.section06 {
  text-align: center;
  background: var(--black);
  padding: 120px 10px;
  overflow: hidden;
}
.section06::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/fund_bg.jpg") no-repeat;
  background-size: 100%;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.section06 .title {
  z-index: 10;
}
.section06 .title h2 {
  font-family: "danjo";
  font-size: 2.5em;
  color: var(--white);
  text-align: center;
  margin-bottom: 1em;
}
.section06 > p {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 10;
}
.section06 .fund-introduce {
  max-width: 1045px;
  background: var(--white);
  padding: 20px 10px;
  margin: 2em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 10;
}
.section06 .fund-introduce dl {
  text-align: center;
  line-height: 130%;
  padding: 10px;
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.section06 .fund-introduce dl:nth-child(2) {
  border: 1px solid var(--border-color);
  border-width: 0 1px;
}
.section06 .fund-introduce dl dt {
  font-size: 1em;
  font-weight: 600;
  color: #007dc5;
}
.section06 .fund-introduce dl dd {
  font-size: 0.9em;
  color: #606060;
}
.section06 a {
  font-size: 0.9em;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--white);
  border-radius: 100px;
  padding: 1em 2em;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.section06 a img {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .section06 .title h2 {
    font-size: 2em;
  }
}
@media (max-width: 640px) {
  .section06 .fund-introduce {
    padding: 0 10px;
    display: block;
  }
  .section06 .fund-introduce dl {
    padding: 20px 10px;
  }
  .section06 .fund-introduce dl:nth-child(2) {
    border-width: 1px 0;
  }
}
@media (max-width: 500px) {
  .section06 .title h2 {
    font-size: 1.5em;
  }
  .section06 p {
    font-size: 18px;
  }
}

footer {
  font-size: 0.8em;
  color: var(--white);
  background: #001c3f;
  padding: 6em 1rem;
}
footer .inner {
  max-width: 1483px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .inner > div {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
footer .logo-wrap {
  width: 240px;
}
footer .address {
  width: calc(100% - 240px - 250px);
  font-size: 0.9em;
  line-height: 1.8;
  padding: 0 2em;
}
footer .family-site {
  width: 240px;
}
footer a {
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--white);
  border-radius: 100px;
  padding: 1em 2em;
}
footer a img {
  margin-left: 5px;
}
@media (max-width: 1024px) {
  footer {
    text-align: center;
    padding: 3em 1rem;
  }
  footer .inner {
    display: block;
  }
  footer .inner > div {
    width: 100% !important;
  }
  footer .address {
    padding: 0;
    margin: 2em 0 4em 0;
  }
}
