/* ==============================
   Event Page
============================== */

:root {
  --evt-orange: var(--main-orange, #ff7900);
  --evt-black: #171717;
  --evt-text: #333;
  --evt-muted: #747474;
  --evt-line: rgba(0, 0, 0, 0.08);
  --evt-bg: #f7f7f5;
  --evt-soft: #fff7ef;
  --evt-radius-lg: 34px;
  --evt-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  --evt-inner: min(1280px, calc(100% - 80px));
  --evt-wide: min(1440px, calc(100% - 64px));
}

.event-main {
  padding-top: var(--header-height);
  background: #fff;
  color: var(--evt-black);
}

.event-main section {
  position: relative;
}

.event-main h2,
.event-main h3,
.event-main h4,
.event-main p,
.event-main span,
.event-main a {
  word-break: keep-all;
}

.event-main strong {
  color: var(--evt-orange);
  font-weight: 800;
}

.evt-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;

  color: var(--evt-orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.evt-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--evt-orange);
}

/* ==============================
   Visual
============================== */

.evt-visual {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 0 0 72px 72px;
  background-image: url("../img/event_visual.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  isolation: isolate;
}

.evt-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.52) 46%,
      rgba(0, 0, 0, 0.18) 100%
    );
  pointer-events: none;
}

.evt-visual::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  z-index: 2;

  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(110px, 16vw, 230px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.evt-visual__dim {
  display: none;
}

.evt-visual__inner {
  position: relative;
  z-index: 3;
  width: var(--evt-inner);
  height: 100%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  text-align: left;
  animation: evtHeroReveal 0.8s ease forwards;
}

.evt-visual__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);

  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.evt-visual__inner h2 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 800;
}

.evt-visual__inner p {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: -0.04em;
}

@keyframes evtHeroReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   Marquee
============================== */

.evt-marquee {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.evt-marquee::before,
.evt-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 220px;
  height: 100%;
  pointer-events: none;
}

.evt-marquee::before {
  left: 0;
  background:
    linear-gradient(
      90deg,
      #fff 0%,
      rgba(255, 255, 255, 0) 100%
    );
}

.evt-marquee::after {
  right: 0;
  background:
    linear-gradient(
      270deg,
      #fff 0%,
      rgba(255, 255, 255, 0) 100%
    );
}

.evt-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 28px 0;
  animation: evtMarquee 36s linear infinite;
}

.evt-marquee__track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 54px;

  color: rgba(17, 17, 17, 0.9);
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.075em;
  white-space: nowrap;
  text-transform: uppercase;
}

.evt-marquee__track span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.26);
}

.evt-marquee__track span::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 54px;
  border-radius: 50%;
  background: var(--evt-orange);
  box-shadow: 0 0 0 8px rgba(255, 121, 0, 0.08);
}

@keyframes evtMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==============================
   Intro
============================== */

.evt-intro {
  position: relative;
  padding: 118px 0 112px;
  background: #fff;
  overflow: hidden;
}

.evt-intro::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 24px;

  color: rgba(0, 0, 0, 0.035);
  font-size: 128px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.09em;
  pointer-events: none;
}

.evt-intro__inner {
  position: relative;
  z-index: 2;
  width: var(--evt-inner);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 190px 0.9fr 1fr;
  gap: 54px;
  align-items: center;
}

.evt-intro__mark {
  position: relative;
  width: 168px;
  height: 168px;
  padding: 28px;
  overflow: hidden;
  border-radius: 38px;
  background: #111;
  color: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.evt-intro__mark::before,
.evt-intro__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
}

.evt-intro__mark::before {
  left: -11px;
}

.evt-intro__mark::after {
  right: -11px;
}

.evt-intro__mark span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.evt-intro__mark strong {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: var(--evt-orange);
  font-size: 42px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.evt-intro__text h3 {
  margin: 0;
  color: var(--evt-black);
  font-size: 42px;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -0.075em;
}

.evt-intro__desc {
  padding: 38px 40px;
  border: 1px solid var(--evt-line);
  border-radius: var(--evt-radius-lg);
  background: var(--evt-bg);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.05);
}

.evt-intro__desc p {
  margin: 0;
  color: var(--evt-text);
  font-size: 16px;
  line-height: 1.82;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.evt-intro__desc p + p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

/* ==============================
   Bento
============================== */

.evt-bento {
  padding: 112px 0 124px;
  background: var(--evt-bg);
  overflow: hidden;
}

.evt-bento__inner {
  width: var(--evt-wide);
  margin: 0 auto;
}

.evt-bento__head {
  max-width: 760px;
  margin-bottom: 58px;
}

.evt-bento__head h3 {
  margin: 0;
  color: var(--evt-black);
  font-size: 40px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.evt-bento__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.evt-bento__card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--evt-line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.06);
  isolation: isolate;
}

.evt-bento__card--large {
  grid-row: span 2;
}

.evt-bento__card--orange,
.evt-bento__card--dark {

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.evt-bento__card--orange {
  background: var(--evt-orange);
  color: #fff;
}

.evt-bento__card--dark {
  background: #111;
  color: #fff;
}

.evt-bento__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.evt-bento__card:hover img {
  transform: scale(1.055);
}

.evt-bento__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.66) 100%
    );
  pointer-events: none;
}

.evt-bento__card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.evt-bento__card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--evt-black);

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.evt-bento__card--orange span,
.evt-bento__card--dark span {
  background: rgba(255, 255, 255, 0.9);
  color: var(--evt-black);
}

.evt-bento__card h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.evt-bento__card--orange h4,
.evt-bento__card--dark h4 {
  color: #fff;
}

.evt-bento__card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 400;
  letter-spacing: -0.04em;
}

/* ==============================
   Ticket Strength
============================== */

.evt-ticket {
  padding: 112px 0 124px;
  background: #fff;
}

.evt-ticket__inner {
  width: var(--evt-inner);
  margin: 0 auto;
}

.evt-ticket__head {
  max-width: 760px;
  margin-bottom: 58px;
}

.evt-ticket__head h3 {
  margin: 0;
  color: var(--evt-black);
  font-size: 42px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.075em;
}

.evt-ticket__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}


.evt-ticket__item {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--evt-line);
  border-radius: 28px;
  background: var(--evt-bg);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.evt-ticket__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 비율을 유지하면서 박스에 여백 없이 꽉 채움 */
  z-index: 1;        /* 글자(z-index: 2)보다 뒤로 배치 */
  opacity: 0.9;      /* 투명도 조절이 필요하다면 추가 */
}


.evt-ticket__item div {
  position: absolute;
  left: 28px;
  right: 25px;
  bottom: 23px;
  z-index: 2;
}

.evt-ticket__item span {
  position: absolute;
  left: 28px;
  top: 28px;
  color: var(--evt-orange);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  z-index:2;
}

.evt-ticket__item h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.evt-ticket__item p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-wrap:balance;
}

/* ==============================
   Route
============================== */

.evt-route {
  padding: 118px 0 132px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 121, 0, 0.18) 0%, transparent 28%),
    #111;
  color: #fff;
}

.evt-route::after {
  content: " ";
  position: absolute;
  right: -28px;
  bottom: 22px;

  color: rgba(255, 255, 255, 0.045);
  font-size: 140px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.09em;
  pointer-events: none;
}

.evt-route__inner {
  position: relative;
  z-index: 2;
  width: var(--evt-inner);
  margin: 0 auto;
}

.evt-route__head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.evt-route__head h3 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.075em;
}

.evt-route__line {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.evt-route__step {
  position: relative;
  min-height: 300px;
  padding: 34px 22px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.035) 100%
    );

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  transition:
    transform 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease;
}

.evt-route__step:nth-child(1),
.evt-route__step:nth-child(3),
.evt-route__step:nth-child(5) {
  margin-top: 0;
}

.evt-route__step:nth-child(2),
.evt-route__step:nth-child(4),
.evt-route__step:nth-child(6) {
  margin-top: 54px;
}

.evt-route__step:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 121, 0, 0.36);
  background:
    linear-gradient(
      180deg,
      rgba(255, 121, 0, 0.16) 0%,
      rgba(255, 255, 255, 0.04) 100%
    );
}

.evt-route__step::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 121, 0, 0.34);
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}

.evt-route__step::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 36px;
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: var(--evt-orange);
  pointer-events: none;
}

.evt-route__step span {
  position: absolute;
  right: 24px;
  top: 24px;

  color: rgba(255, 255, 255, 0.09);
  font-size: 72px;
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -0.1em;
}

.evt-route__step h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #fff;
  font-size: 21px;
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: -0.065em;
}

.evt-route__step p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12.5px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.04em;
}

/* ==============================
   Final CTA
============================== */

.evt-final {
  padding: 112px 0 124px;
  background: #fff;
}

.evt-final__inner {
  width: var(--evt-inner);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.evt-final__text h3 {
  max-width: 560px;
  margin: 0;
  color: var(--evt-black);
  font-size: 48px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.evt-final__text p {
  max-width: 460px;
  margin: 28px 0 0;
  color: var(--evt-muted);
  font-size: 16px;
  line-height: 1.76;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.evt-final__btn {
  display: inline-flex;
  margin-top: 36px;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--evt-orange);
  color: #fff;

  font-size: 15px;
  line-height: 1;
  font-weight: 800;
}

.evt-final__poster {
  position: relative;
  height: 460px;
  overflow: hidden;
  border-radius: 42px;
  background: #ddd;
  box-shadow: var(--evt-shadow);
}

.evt-final__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evt-final__poster span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;

  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

/* ==============================
   Responsive
============================== */

@media screen and (max-width: 1440px) {
  :root {
    --evt-inner: min(1180px, calc(100% - 80px));
    --evt-wide: min(1280px, calc(100% - 64px));
  }

  .evt-route__step {
    min-height: 280px;
    padding: 32px 20px 28px;
  }

  .evt-route__step h4 {
    font-size: 20px;
  }

  .evt-route__step p {
    font-size: 12px;
  }
}

@media screen and (max-width: 1280px) {
  :root {
    --evt-inner: calc(100% - 80px);
    --evt-wide: calc(100% - 80px);
  }

  .evt-ticket__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .evt-route__line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .evt-route__step {
    min-height: 250px;
  }

  .evt-route__step:nth-child(1),
  .evt-route__step:nth-child(3),
  .evt-route__step:nth-child(5) {
    margin-top: 0;
  }

  .evt-route__step:nth-child(2),
  .evt-route__step:nth-child(4),
  .evt-route__step:nth-child(6) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .evt-visual {
    height: 440px;
    border-radius: 0 0 54px 54px;
  }

  .evt-visual__inner h2 {
    font-size: 52px;
  }

  .evt-intro__inner,
  .evt-final__inner {
    grid-template-columns: 1fr;
  }

  .evt-intro__mark {
    width: 150px;
    height: 150px;
  }

  .evt-intro__desc {
    padding: 34px;
  }

  .evt-bento__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .evt-bento__card--large {
    grid-column: span 2;
  }

  .evt-route__line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evt-route__step {
    min-height: 230px;
  }

  .evt-route__step:nth-child(odd) {
    margin-top: 0;
  }

  .evt-route__step:nth-child(even) {
    margin-top: 34px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --evt-inner: calc(100% - 40px);
    --evt-wide: calc(100% - 40px);
  }

  .event-main {
    padding-top: 72px;
  }

  .evt-label {
    justify-content: center;
    margin-bottom: 18px;
    font-size: 12px;
  }

  .evt-visual {
    height: 360px;
    border-radius: 0 0 38px 38px;
  }

  .evt-visual::before {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.66) 0%,
        rgba(0, 0, 0, 0.48) 100%
      );
  }

  .evt-visual::after {
    right: -16px;
    bottom: -10px;
    font-size: 92px;
  }

  .evt-visual__inner {
    align-items: center;
    text-align: center;
  }

  .evt-visual__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .evt-visual__inner h2 {
    font-size: 38px;
    line-height: 1.16;
  }

  .evt-visual__inner p {
    max-width: 330px;
    margin-top: 20px;
    font-size: 14.5px;
    line-height: 1.62;
  }

  .evt-marquee::before,
  .evt-marquee::after {
    width: 72px;
  }

  .evt-marquee__track {
    padding: 20px 0;
    animation-duration: 28s;
  }

  .evt-marquee__track span {
    margin-right: 34px;
    font-size: 34px;
    letter-spacing: -0.07em;
  }

  .evt-marquee__track span::after {
    width: 6px;
    height: 6px;
    margin-left: 34px;
    box-shadow: 0 0 0 6px rgba(255, 121, 0, 0.08);
  }

  .evt-intro,
  .evt-bento,
  .evt-ticket,
  .evt-route,
  .evt-final {
    padding: 78px 0;
  }

  .evt-intro::after,
  .evt-route::after {
    display: none;
  }

  .evt-intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .evt-intro__mark {
    width: 132px;
    height: 132px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 30px;
  }

  .evt-intro__mark span {
    font-size: 11px;
  }

  .evt-intro__mark strong {
    font-size: 34px;
  }

  .evt-intro__text h3,
  .evt-bento__head h3,
  .evt-ticket__head h3,
  .evt-route__head h3,
  .evt-final__text h3 {
    font-size: 28px;
    line-height: 1.38;
    text-align: center;
  }

  .evt-intro__desc {
    padding: 30px 24px;
    border-radius: 24px;
    text-align: center;
  }

  .evt-intro__desc p {
    font-size: 14.5px;
    line-height: 1.72;
  }

  .evt-bento__head,
  .evt-ticket__head,
  .evt-route__head {
    margin-bottom: 34px;
    text-align: center;
  }

  .evt-bento__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
    gap: 14px;
  }

  .evt-bento__card,
  .evt-bento__card--large {
    grid-column: auto;
    grid-row: auto;
    border-radius: 24px;
  }
  .evt-bento__card div {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .evt-bento__card h4 {
    font-size: 24px;
  }

  .evt-bento__card p {
    max-width: 290px;
    font-size: 14px;
  }

  .evt-ticket__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .evt-ticket__item {
    min-height: 210px;
    border-radius: 24px;
  }

  .evt-ticket__item div{
    height: calc(100% - 158px)
  }

  .evt-route__line {
    position: relative;

    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .evt-route__line::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 121, 0, 0) 0%,
        rgba(255, 121, 0, 0.55) 12%,
        rgba(255, 121, 0, 0.55) 88%,
        rgba(255, 121, 0, 0) 100%
      );
    pointer-events: none;
  }

  .evt-route__step,
  .evt-route__step:nth-child(odd),
  .evt-route__step:nth-child(even) {
    min-height: 150px;
    margin-top: 0;
    margin-left: 26px;
    padding: 28px 24px 24px;
    border-radius: 24px;
  }

  .evt-route__step:nth-child(1) {
    width: calc(100% - 36px);
  }

  .evt-route__step:nth-child(2) {
    width: calc(100% - 76px);
  }

  .evt-route__step:nth-child(3) {
    width: calc(100% - 48px);
  }

  .evt-route__step:nth-child(4) {
    width: calc(100% - 92px);
  }

  .evt-route__step:nth-child(5) {
    width: calc(100% - 56px);
  }

  .evt-route__step:nth-child(6) {
    width: calc(100% - 28px);
  }

  .evt-route__step::before {
    right: -54px;
    top: -54px;
    width: 120px;
    height: 120px;
  }

  .evt-route__step::after {
    left: -21px;
    top: 34px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--evt-orange);
    box-shadow: 0 0 0 7px rgba(255, 121, 0, 0.14);
  }

  .evt-route__step span {
    right: 22px;
    top: 20px;
    font-size: 54px;
  }

  .evt-route__step h4 {
    font-size: 22px;
  }

  .evt-route__step p {
    font-size: 14px;
    line-height: 1.62;
  }

  .evt-route__step:hover {
    transform: none;
  }

  .evt-final__inner {
    text-align: center;
  }

  .evt-final__text p {
    margin-left: auto;
    margin-right: auto;
    font-size: 14.5px;
  }

  .evt-final__poster {
    height: 300px;
    border-radius: 28px;
  }

  .evt-bento__card:hover img {
    transform: none;
  }
}

@media screen and (max-width: 430px) {
  :root {
    --evt-inner: calc(100% - 32px);
    --evt-wide: calc(100% - 32px);
  }

  .evt-visual {
    height: 320px;
  }

  .evt-visual__inner h2 {
    font-size: 32px;
  }

  .evt-visual__inner p {
    font-size: 14px;
  }

  .evt-intro__mark {
    width: 118px;
    height: 118px;
    border-radius: 26px;
  }

  .evt-intro__mark strong {
    font-size: 30px;
  }

  .evt-intro__text h3,
  .evt-bento__head h3,
  .evt-ticket__head h3,
  .evt-route__head h3,
  .evt-final__text h3 {
    font-size: 24px;
  }

  .evt-bento__grid {
    grid-auto-rows: 210px;
  }

  .evt-ticket__item {
    min-height: 190px;
  }

  .evt-ticket__item div{
    transform: scale(0.9);
    height: calc(100% - 125px);
    position:absolute;
    left:2px;
    right:25px;
    bottom:15px;
  }
  .evt-route__line::before {
    left: 5px;
  }

  .evt-route__step,
  .evt-route__step:nth-child(odd),
  .evt-route__step:nth-child(even) {
    min-height: 142px;
    margin-left: 24px;
    padding: 26px 22px 22px;
  }

  .evt-route__step:nth-child(1) {
    width: calc(100% - 32px);
  }

  .evt-route__step:nth-child(2) {
    width: calc(100% - 58px);
  }

  .evt-route__step:nth-child(3) {
    width: calc(100% - 42px);
  }

  .evt-route__step:nth-child(4) {
    width: calc(100% - 68px);
  }

  .evt-route__step:nth-child(5) {
    width: calc(100% - 48px);
  }

  .evt-route__step:nth-child(6) {
    width: calc(100% - 28px);
  }

  .evt-route__step::after {
    left: -20px;
  }

  .evt-route__step span {
    font-size: 48px;
  }
}

@media screen and (max-width: 375px) {
  :root {
    --evt-inner: calc(100% - 28px);
    --evt-wide: calc(100% - 28px);
  }

  .evt-visual__inner h2 {
    font-size: 30px;
  }

  .evt-intro__text h3,
  .evt-bento__head h3,
  .evt-ticket__head h3,
  .evt-route__head h3,
  .evt-final__text h3 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evt-marquee__track,
  .evt-bento__card img,
  .evt-route__step {
    animation: none;
    transition: none;
  }
}