@charset "utf-8";

/* =========================== PAGE */
:root {
  --second: #102e48;
  --mainsize: 1260px;
  --enfont: 'Wix Madefor Display';
}
.pagecommon {
  font-size: 18px;
  color: #777;
  line-height: 1.65;
  font-family: 'Pretendard';
}
.pagecommon .br {
  white-space: pre-line;
}

#history1003 {
  overflow: hidden;
}

#history1003 .top_area {
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  height: 750px;
  background: #111;
}
#history1003 .top_area .bg {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.527),
      rgba(0, 0, 0, 0.5)
    ),
    url(./bg.webp) center no-repeat;
  background-size: cover;
}
#history1003 .top_area .bg.on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all 1s;
}
#history1003 .top_area .txt {
  position: absolute;
  z-index: 1;
  left: calc((100% - var(--mainsize)) / 2);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}
#history1003 .top_area .txt p {
  margin-bottom: 35px;
  font-size: 56px;
  font-weight: 100;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
#history1003 .top_area .txt p b {
  font-weight: 700;
}
#history1003 .top_area .txt span {
  display: block;
}
#history1003 .top_area .scroll {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 50px;
  z-index: 1;
  transform: translateX(-50%);
  font-size: 12px;
  color: #fff;
  font-family: var(--enfont);
}
#history1003 .top_area .scroll svg {
  width: 20px;
  height: 20px;
  animation: scroll 1s infinite linear;
}
@keyframes scroll {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}
#history1003 .cont {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  position: relative;
  max-width: var(--mainsize);
  margin: 0 auto;
}
#history1003 .cont .since {
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 180px;
  font-size: 20px;
  font-weight: 500;
  color: #111;
}
#history1003 .cont .since span {
  padding-left: 2px;
  font-weight: 800;
  font-family: var(--enfont);
}
#history1003 .cont .since p {
  margin: 5px 0 30px;
  font-size: 67px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  font-family: var(--enfont);
}
#history1003 .cont .since p b {
  font-weight: 800;
  color: var(--primary);
}
#history1003 .cont .since.fix {
  position: fixed;
  left: calc((100% - var(--mainsize)) / 2);
}
#history1003 .cont .since.absol_bt {
  position: absolute;
  top: auto;
  bottom: 280px;
}
#history1003 .history {
  position: relative;
  width: 66%;
  padding: 260px 0;
}
#history1003 .history:before {
  display: block;
  content: '';
  position: absolute;
  left: 143px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e1e1e1;
}
#history1003 .history dl {
  display: flex;
  align-items: flex-start;
  opacity: 0.3;
}
#history1003 .history dl + dl {
  margin-top: 200px;
}
#history1003 .history dl dt {
  position: relative;
  flex-shrink: 0;
  width: 155px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #111;
  transition: all 0.3s;
  font-family: var(--enfont);
}
#history1003 .history dl dt span {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s;
}
#history1003 .history dl dt span:after {
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #111;
  transition: all 0.3s;
}
#history1003 .history dl dd {
  padding: 0 30px 0 12%;
  transform: translateX(10px);
  transition: all 0.6s;
}
#history1003 .history dl dd p {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 800;
  color: #111;
  line-height: 1.4;
  word-break: keep-all;
  list-style-type: disc;
  display: list-item;
}
#history1003 .history dl dd div {
  width: 65%;
  word-break: keep-all;
}
#history1003 .history dl.aos-animate {
  opacity: 1;
}
#history1003 .history dl.aos-animate dt {
  color: var(--primary);
}
#history1003 .history dl.aos-animate dt span {
  background: var(--primary-50);
}
#history1003 .history dl.aos-animate dt span:after {
  background: var(--primary);
}
#history1003 .history dl.aos-animate dd {
  transform: translateX(0);
}
#history1003 .btm_area {
  display: flex;
  align-items: center;
  height: 600px;
  padding: 0 50px;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.527),
      rgba(0, 0, 0, 0.5)
    ),
    url(./bottom.webp) center no-repeat;
  background-size: cover;
}
#history1003 .btm_area .txt {
  width: 100%;
  max-width: var(--mainsize);
  margin: 0 auto;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}
#history1003 .btm_area .txt p {
  margin-bottom: 60px;
  font-size: 50px;
  font-weight: 100;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.5px;
  word-break: keep-all;
}
#history1003 .btm_area .txt p b {
  font-weight: 700;
}
#history1003 .btm_area .txt a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 252px;
  height: 66px;
  border-radius: 35px;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s;
}
#history1003 .btm_area .txt a svg {
  width: 22px;
  height: 22px;
  margin-right: 2px;
  transition: margin 0.3s;
}
@media (hover: hover) {
  #history1003 .btm_area .txt a:hover {
    background: var(--primary);
  }
  #history1003 .btm_area .txt a:hover svg {
    margin-right: 10px;
  }
}
@media (max-width: 1460px) {
  #history1003 .top_area .txt {
    left: 50px;
  }
  #history1003 .cont .since {
    left: 50px;
  }
  #history1003 .cont .since.fix {
    left: 50px;
  }
}
@media (max-width: 1024px) {
  .pagecommon {
    font-size: 17px;
  }
  #history1003 .top_area {
    height: 620px;
  }
  #history1003 .top_area .txt {
    left: 30px;
    font-size: 18px;
  }
  #history1003 .top_area .txt p {
    font-size: 46px;
  }
  #history1003 .cont .since {
    left: 30px;
    padding-top: 100px;
    font-size: 18px;
  }
  #history1003 .cont .since p {
    font-size: 56px;
  }
  #history1003 .cont .since.fix {
    left: 30px;
  }
  #history1003 .history {
    width: 62%;
    padding-top: 160px;
  }
  #history1003 .history dl dt {
    font-size: 36px;
  }
  #history1003 .history dl dd {
    padding-left: 30px;
  }
  #history1003 .history dl dd p {
    font-size: 20px;
  }
  #history1003 .history dl dd div {
    width: 95%;
  }
  #history1003 .btm_area {
    height: 500px;
    padding: 0 30px;
  }
  #history1003 .btm_area .txt p {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .pagecommon {
    font-size: 15px;
  }
  #history1003 .top_area {
    height: 420px;
  }
  #history1003 .top_area .txt {
    left: 20px;
    right: 20px;
    font-size: 16px;
    word-break: keep-all;
  }
  #history1003 .top_area .txt p {
    margin-bottom: 20px;
    font-size: 32px;
    word-break: keep-all;
  }
  #history1003 .top_area .scroll {
    bottom: 30px;
  }
  #history1003 .cont {
    display: block;
  }
  #history1003 .cont .since {
    position: relative !important;
    left: auto !important;
    padding: 80px 20px 40px;
    font-size: 16px;
  }
  #history1003 .cont .since p {
    font-size: 42px;
  }
  #history1003 .cont .since .br {
    white-space: normal;
  }
  #history1003 .history {
    width: 100%;
    padding: 20px 20px 80px;
  }
  #history1003 .history:before {
    left: 118px;
  }
  #history1003 .history dl + dl {
    margin-top: 80px;
  }
  #history1003 .history dl dt {
    width: 110px;
    font-size: 28px;
  }
  #history1003 .history dl dd {
    padding-right: 0;
  }
  #history1003 .history dl dd p {
    margin-bottom: 10px;
    font-size: 14px;
  }
  #history1003 .btm_area {
    height: 340px;
    padding: 0 20px;
  }
  #history1003 .btm_area .txt p {
    margin-bottom: 30px;
    font-size: 28px;
  }
  #history1003 .btm_area .txt a {
    width: 200px;
    height: 55px;
    font-size: 16px;
  }
  #history1003 .btm_area .txt a svg {
    width: 18px;
    height: 18px;
  }
}
