@charset "UTF-8";
.lt-visual__title {
  font-size: 100px;
  font-weight: 800;
  display: grid;
  justify-content: center;
  margin-top: 120px;
  color: #fff;
  line-height: 1;
}
.lt-visual__title img {
  margin-inline: auto;
}
.lt-visual--a {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
}
.lt-visual--a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.lt-visual--a .lt-visual__inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1140px;
  transform: translateX(-50%);
  z-index: 1;
}

.lt-visual--a .lt-visual__clip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, #2be4ff 40%, #9d62f7);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.lt-visual__date {
  font-size: 36px;
  margin-top: 40px;
  text-align: center;
  font-weight: 700;
}

.lt-visual__desc {
  font-size: 30px;
  margin-top: 50px;
  color: #fff;
  line-height: 42px;
  text-align: center;
  font-weight: 600;
}

.lt-visual--a .lt-visual__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 117.2%;
  transform: translate(-50%, -50%);
}
.lt-visual--a video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lt-visual--a #canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.lt-visual--a #canvas.off {
  display: none;
}

.lt-visual--b {
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;
}
.lt-visual--b:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.lt-visual__title {
  font-size: 100px;
  font-weight: 800;
  display: grid;
  justify-content: center;
  margin-top: 120px;
  color: #fff;
  line-height: 1;
}
.lt-visual__title img {
  margin-inline: auto;
}.lt-visual__clip {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.lt-visual__clip .clip {
  position: relative;
  display: inline-block;
  font-size: 145px;
  line-height: 1;
}
.lt-visual__clip .clip__path {
  color: transparent;
  -webkit-text-stroke: 2px #2bcbff;
  margin-inline: 15px;
}
.lt-visual__clip .clip__path:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  color: #2bcbff;
  animation: animate 3s ease-in-out infinite;
}
@keyframes animate {
  0%, 100% {
    clip-path: polygon(0 49%, 9% 45%, 20% 41%, 31% 41%, 42% 46%, 52% 51%, 63% 55%, 74% 54%, 84% 51%, 93% 48%, 100% 44%, 100% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(0 45%, 8% 54%, 16% 58%, 28% 61%, 38% 60%, 48% 55%, 60% 50%, 69% 44%, 79% 41%, 91% 41%, 100% 44%, 100% 100%, 0 100%);
  }
}


.lt-visual--b #canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.lt-visual--b #canvas.off {
  display: none;
}

.lt-nav {
  position: sticky;
  top: 0;
  background-color: #090515;
  z-index: 10;
}
.lt-nav__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(auto, 228px));
  justify-content: center;
}
.lt-nav__target {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 110px;
  row-gap: 8px;
  font-weight: 600;
}
.lt-nav__discount {
  font-size: 22px;
  color: #4393ff;
  line-height: 1;
}
.lt-nav__title {
  font-size: 30px;
  color: #fff;
  line-height: 1;
}
.lt-nav .is-active {
  background-color: #3560db;
}
.lt-nav .is-active .lt-nav__discount {
  color: #fff;
}

.lt-aside {
  position: fixed;
  top: 250px;
  right: 0;
  width: 160px;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 11;
}
.lt-aside__nav {
  padding-block: 40px 25px;
  background-color: #fff;
}
.lt-aside__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  margin-inline: auto;
  gap: 50px;
}
.lt-aside__item {
  position: relative;
  width: 100%;
}
.lt-aside__item:not(:first-child):before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d4d4d4;
}
.lt-aside__link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lt-aside__text {
  font-size: 24px;
  margin-top: 5px;
  text-align: center;
  line-height: 30px;
  font-weight: 600;
  white-space: pre-wrap;
}
.lt-aside__top {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding-block: 31px 27px;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  background-color: #3560db;
}
.lt-aside__top:after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 12px;
  background: url("/static/promotion/2026/02/3660/images/aside/aside-top-arrow.png") no-repeat center/cover;
}
/* 공통 */
.lt-section:not(.lt-section--benefit, .lt-section--asia) {
  padding-block: 112px 140px;
}

.lt-section__inner:not(.lt-section--benefit .lt-section__inner) {
  position: relative;
  width: 1140px;
  margin: 80px auto 0;
}


.lt-section--benefit .lt-section__inner {
  text-align: center;
  padding-block: 127px 50px;
  background: url("/static/promotion/2026/02/3660/images/202603-lottetour-pc-benefit-bg.jpg") no-repeat center/cover;
}



.lt-section--benefit .benefit__item__text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(180deg, #0f2e64 35%, #3560db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lt-section--benefit .benefit__item__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.lt-section--benefit .benefit__item__content__icon {
  width: 252px;
  height: 216px;
}
.lt-section--benefit .benefit__item__content__text {
  text-align: left;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #0f2e64;
}
.lt-section--benefit .benefit__item__content__sub-text {
  margin-top: 30px;
  text-align: left;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #0f2e64;
}
.lt-section--benefit .benefit__item__highlight {
  color: #365fdd;
}
.lt-section--benefit .benefit__item:first-child .benefit__item__text__per {
  position: relative;
  top: -15px;
  display: inline-block;
  width: 461px;
  height: 157px;
  margin-inline: 10px;
}
.lt-section--benefit .benefit__item:first-child .benefit__item__sub-text {
  font-size: 24px;
  font-weight: 600;
  color: #0f2e64;
  letter-spacing: -0.03em;
}
.lt-section--benefit .benefit__item:first-child::after {
  content: "-";
  display: block;
  margin: 100px auto;
  width: 910px;
  height: 2px;
  background-color: #0f2e64;
  font-size: 0;
}
.lt-section--benefit .benefit__number {
  margin: 0 auto 40px;
  width: 150px;
  text-align: center;
  background-color: #0f2e64;
  border-radius: 0 20px 0 20px;
  color: #fff;
  font-size: 28px;
  line-height: 50px;
  font-weight: 600;
}
.lt-section .cruise__item .cruise--content__benefit__title {
  flex: none;
  color: #db3535;
}
.lt-section--benefit .benefit__title {
  margin-bottom: 80px;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 65px;
  color: #0f2e64;
}
.lt-section--benefit .benefit__title__semi {
  font-weight: 600;
}
.lt-section--benefit .benefit__title__txtcol {
  display: inline-block;
  position: relative;
  color: #3560db;
}

.lt-section--benefit .benefit__title__txtcol:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 9;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #4169e1;
  border-radius: 50%;
}


img {
  max-width: 100%;
  object-fit: cover;
}
