@charset "utf-8";

@font-face {
  font-family: 'Cafe24ShiningStar';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.1/Cafe24Shiningstar.woff')
    format('woff');
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2')
    format('woff2');
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2')
    format('woff2');
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2')
    format('woff2');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2')
    format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2')
    format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2')
    format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2')
    format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2')
    format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2')
    format('woff2');
  font-weight: 900;
  font-display: swap;
}
/* common */
:root {
  --border: 2px solid #000;
  --shadow: 4px 6px 2px rgba(0, 0, 0, 0.05);
  --shadow2: 4px 6px 2px rgba(0, 0, 0, 0.2);

  --pink300: #ff4ec4;
  --pink400: #eb00b1;
  --green800: #003304;
}
/* reset */
html {
  scroll-behavior: smooth;
}
html:has(.clickn.interactive) {
  -webkit-text-size-adjust: none;
}
html:has(.clickn.interactive) .wrap {
  overflow-x: clip;
}
a {
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
.clickn * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Pretendard';
  font-weight: 500;
  letter-spacing: normal;
}
.clickn .blind {
  position: absolute;
  left: -9999px;
}
.blind {
  position: absolute;
  left: -9999px;
}
.center_wrap {
  width: 1220px;
  margin: 0 auto;
  font-weight: 400;
}
.f_dc {
  flex-direction: column;
}
.pc_con {
  display: block;
}
.m_con {
  display: none;
}

/* keyframes */
@keyframes doongdoong {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes doongdoongRev {
  0%,
  100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(1px);
  }
}

/* common */
.clickn .btn_link {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 20px;
  padding: 20px 35px;
  border: 1px solid #e4e4e4;
  border-radius: 100px;
  font-size: 18px;
  color: #838383;
  white-space: pre;
  line-height: 13px;
  letter-spacing: -0.18px;
}
.clickn .btn_link::after {
  display: inline-block;
  content: '';
  width: 16px;
  height: 16px;
  background-image: url(/images/event/clickn/ico_arrow_right.svg);
  background-size: contain;
}
.clickn .btn_link:hover {
  border-color: #a4a4a4;
  color: #101010;
}
.clickn .btn_link:hover::after {
  filter: brightness(0);
}
.clickn .dot_list > li {
  position: relative;
  left: 2px;
  display: flex;
  align-items: flex-start;
  width: calc(100% - 16px);
  font-size: clamp(14px, 1.6vw, 18px);
}
.clickn .dot_list > li::before {
  position: relative;
  content: '';
  top: 5px;
  width: 14px;
  aspect-ratio: 1/1;
  background-image: url(/images/event/clickn/ico_check_blue.svg);
  background-size: contain;
  margin-right: 7px;
}
.clickn .dotL_list > li {
  position: relative;
  left: 16px;
}
.clickn .dotL_list > li::before {
  position: absolute;
  content: '';
  top: 14px;
  left: -12px;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #000;
}
/* interactive */
.clickn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.clickn .interactive section {
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}
.clickn .interactive section.is-active {
  opacity: 1;
  visibility: visible;
}
.clickn .interactive section .wrap > * {
  opacity: 0;
  transform: translateY(0.75rem);
  transition: 0.5s;
}
.clickn .interactive section.is-active .wrap > * {
  opacity: 1;
  transform: translateY(0);
}
.clickn .interactive section.is-active .wrap > *:nth-child(1) {
  transition-delay: 0.4s;
}
.clickn .interactive section.is-active .wrap > *:nth-child(2) {
  transition-delay: 0.6s;
}
.clickn .interactive section.is-active .wrap > *:nth-child(3) {
  transition-delay: 0.8s;
}
.clickn .interactive section.is-active .wrap > *:nth-child(4) {
  transition-delay: 1.2s;
}
.clickn .interactive section.is-active .wrap > *:nth-child(5) {
  transition-delay: 1.4s;
}
.clickn .interactive section.is-active .wrap > *:nth-child(6) {
  transition-delay: 1.6s;
}

/* page */
/* overview */
.clickn .overview {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: url('/images/event/clickn202604/bg_overview_2.png'),
    url('/images/event/clickn202604/bg_overview_1.png') center / cover no-repeat;
  background-size: cover;
}
.clickn .overview_deco {
  position: absolute;
  /* pointer-events: none; */
  z-index: 2;
}
.clickn .overview_deco_puzzle {
  left: -73px;
  top: 329px;
  width: clamp(100px, 22vw, 200px);
  animation: doongdoong 3.4s ease-in-out infinite;
}
.clickn .overview_deco_toolbar {
  left: 300px;
  top: 530px;
  width: clamp(100px, 18vw, 222px);
  animation: doongdoongRev 2.8s ease-in-out infinite;
}
.clickn .overview_deco_clover {
  left: 80px;
  bottom: -80px;
  width: clamp(136px, 26vw, 320px);
  animation: doongdoong 3.6s ease-in-out infinite;
}
.clickn .overview_deco_tag {
  right: 360px;
  top: 487px;
  width: clamp(60px, 10vw, 154px);
  animation: doongdoongRev 3s ease-in-out infinite;
}
.clickn .overview_deco_cursor {
  right: 505px;
  bottom: 72px;
  width: clamp(60px, 10vw, 167px);
  transform: rotate(-9.14deg);
  animation: doongdoong 2.6s ease-in-out infinite;
}
.clickn .overview_deco_coupon {
  right: 100px;
  bottom: -68px;
  width: clamp(120px, 30vw, 306px);
  transform: rotate(-17.26deg);
  animation: doongdoongRev 3.2s ease-in-out infinite;
}
.clickn .overview_deco_heart {
  right: -88px;
  top: 254px;
  width: clamp(120px, 25vw, 286px);
  transform: rotate(-16.42deg);
  animation: doongdoong 3.8s ease-in-out infinite;
}
.clickn .overview_deco_code {
  left: 512px;
  bottom: 100px;
  width: clamp(120px, 25vw, 272px);
  animation: doongdoong 3.8s ease-in-out infinite;
}
/* 모니터 - 중앙 하단 */
.clickn .overview_deco_monitor {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: min(80vw, 1056px);
  z-index: 3;
  pointer-events: none;
  margin-top: 31px;
}
/* 텍스트 */
.clickn .overview > .wrap {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(98px, 16vw, 100px);
}
.clickn .overview_txt {
  text-align: center;
  letter-spacing: -1.92px;
}
.clickn .overview_txt h2 {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.clickn .overview_txt em {
  display: block;
  font-size: clamp(32px, 4vw, 70px);
  font-weight: 700;
  color: #001868;
  letter-spacing: -2.8px;
  line-height: 74px;
  font-style: normal;
  margin-bottom: 0;
}
.clickn .overview_txt strong {
  font-size: clamp(42px, 6.6vw, 96px);
  font-weight: 800;
  letter-spacing: -1.92px;
  line-height: normal;
  color: #001868;
  margin-bottom: 20px;
}
.clickn .overview_txt strong span {
  font-weight: 800;
  background: linear-gradient(to left, #217aff, #ffb2e4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.clickn .overview_txt p {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  color: #1b1b1b;
  letter-spacing: -0.4px;
  line-height: 1.3;
}
@media only screen and (max-width: 1024px) {
  .clickn .overview {
    height: auto;
  }
  main.interactive section.is-active h2 {
    gap: 0;
  }
  .clickn .overview_deco_monitor {
    position: relative;
  }
  .clickn .overview_deco_puzzle {
    left: -11vw;
    top: 46%;
  }
  /* 툴바 - 좌측 중단 */
  .clickn .overview_deco_toolbar {
    left: 9vw;
    top: 72%;
  }
  /* 클로버 - 좌하단 */
  .clickn .overview_deco_clover {
    left: -6vw;
    bottom: -11%;
  }
  /* 디자인설정 태그 - 우측 중단 */
  .clickn .overview_deco_tag {
    right: 4vw;
    top: 66%;
  }
  /* 커서 - 우측 중하 */
  .clickn .overview_deco_cursor {
    right: 10vw;
    bottom: 28%;
  }
  /* 쿠폰 - 우하단 */
  .clickn .overview_deco_coupon {
    right: -10vw;
    bottom: -4%;
  }
  /* 하트 - 우상단 */
  .clickn .overview_deco_heart {
    right: -7vw;
    top: 31%;
  }
  .clickn .overview > .wrap {
    padding: clamp(98px, 16vw, 100px) 0;
  }
  .clickn .overview_txt em {
    line-height: 1;
  }
}
@media only screen and (max-width: 768px) {
  .clickn .overview > .wrap {
    padding: clamp(98px, 16vw, 100px) 0 30px;
  }
  .clickn .overview_deco_monitor {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100dvw;
    z-index: 3;
    pointer-events: none;
  }
  .clickn .overview_deco_cursor {
    right: 17vw;
    bottom: 13%;
  }
  .clickn .overview_deco_puzzle {
    top: 5%;
  }
  .clickn .overview_deco_heart {
    right: -11vw;
    top: 0%;
  }
  .clickn .overview_deco_tag {
    right: 3vw;
    top: 46%;
  }
  .clickn .overview_deco_toolbar {
    left: -4vw;
    top: 48%;
  }
  .clickn .overview_deco_cursor {
    right: 10vw;
    bottom: 23%;
  }
}
/* overview// -------------- */

/* function */
.clickn .function {
  background: #ffffff;
}
.clickn .function > div {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(60px, 10vw, 140px) 0 clamp(80px, 14vw, 160px);
}
.clickn .function .tit_wrap {
  position: sticky;
  top: 212px;
  display: flex;
  text-align: center;
  gap: 24px;
  color: #000;
  text-align: left;
}
.clickn .function .tit_wrap * {
  color: inherit;
}
.clickn .function .tit_wrap h3 {
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 72px;
}

.clickn .function .tit_wrap h3 strong {
  color: #06f;
  font-weight: 800;
}
.clickn .function article > ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  flex-direction: column;
  gap: 48px;
}
.clickn .function article > ul > li {
  position: relative;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}
.clickn .function article > ul > li div {
  position: absolute;
  top: 0;
  left: 0;
  padding: clamp(20px, 4vw, 42px) clamp(20px, 4vw, 44px) 0;
}
.clickn .function article > ul > li h4 {
  margin-bottom: 10px;
  font-size: clamp(20px, 3.2vw, 30px);
  font-weight: 700;
  color: #000;
}
.clickn .function article > ul > li p {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  color: #4e4e4e;
}
.clickn .function article > ul > li:nth-child(1) {
  background: #fcf6ff;
}
.clickn .function article > ul > li:nth-child(2) {
  background: #f3fffb;
}
.clickn .function article > ul > li:nth-child(3) {
  background: #f3f8ff;
}
.clickn .function article > ul > li:nth-child(4) {
  background: #fffdf3;
}
@media only screen and (max-width: 1024px) {
  .clickn .function {
    padding: clamp(60px, 10vw, 120px) 0;
  }
  .clickn .function > div {
    flex-direction: column;
    gap: clamp(20px, 5vw, 80px);
    align-items: normal;
    padding: 0;
  }
  .clickn .function .tit_wrap {
    position: relative;
    top: 0;
    text-align: center;
  }
  .clickn .function article > ul {
    gap: clamp(20px, 2vw, 48px);
  }
  .clickn .function article > ul > li:last-child {
    height: auto;
  }
  .clickn .function article > ul > li img {
    width: 100%;
    margin-top: -20%;
  }
  .clickn .function article > ul > li div {
    position: relative;
  }
}
@media (min-width: 640px) and (max-width: 1024px) {
  .clickn .function article > ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .clickn .function article > ul > li:last-child {
    display: flex;
    height: auto;
    grid-column: auto / span 2;
    background: linear-gradient(180deg, #fff 37%, #deebff 100%);
  }
  .clickn .function article > ul > li:last-child img {
    width: 40%;
    margin-top: -2%;
  }
  .clickn .function article > ul > li:last-child div {
    flex: 0 1 55%;
  }
}
@media only screen and (max-width: 640px) {
  .clickn .function article > ul > li:last-child img {
    width: 100%;
    margin-top: -30%;
  }
}

/* list : 가로 스크롤 고정 섹션 -------------- */
@keyframes gradientAnimation {
  0% {
    background-position: 10% 10%;
  }
  100% {
    background-position: 90% 90%;
  }
}
.list {
  scroll-behavior: smooth;
  height: 250vh;
  position: relative;
  background-image: linear-gradient(
    130deg,
    #a0e3fe 0%,
    #a9c1ff 60%,
    #dfaafe 100%
  );
  background-size: 120%;
  animation: gradientAnimation 1s linear infinite alternate;
}
.list > .center_wrap {
  position: sticky;
  top: 0;
  display: flex;
  padding: clamp(60px, 10vw, 140px) 0 clamp(60px, 10vw, 120px);
  flex-direction: column;
  justify-content: center;
}
.list > .center_wrap > ul {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.05s linear;
}
.list_track {
  list-style: none;
  flex-shrink: 0;
}
.list_card {
  width: 1220px;
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  display: flex;
  gap: 56px;
  align-items: flex-start;
  box-shadow: 0 8px 40px rgba(80, 80, 160, 0.08);
  min-height: 460px;
}
.list_card_txt {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.list_card_txt h2 {
  color: #1c1c1c;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px; /* 140% */
  letter-spacing: -0.6px;
}
.list_card_txt h2 em {
  font-style: normal;
  color: #06f;
  font-weight: 700;
  letter-spacing: -0.6px;
}
.list_card_txt p {
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}

/* 우측 2×2 기능 그리드 */
.list_card_grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* 기능 아이템 */
.list_feat {
  width: 355px;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  overflow: hidden;
}
.list_feat_icon.type_blue {
  background: #dde8ff;
}
.list_feat_icon.type_green {
  background: #d4f5ea;
}
.list_feat_icon.type_red {
  background: #f5c4b3;
}
.list_feat_icon.type_pink {
  background: #fad5e0;
}
.list_feat_icon.type_yellow {
  background: #fff0c8;
}
.list_feat_icon.type_purple {
  background: #d8d4f8;
}
.list_feat:has(.type_blue) > div {
  background: #eef3ff;
}
.list_feat:has(.type_pink) > div {
  background: #feecf0;
}
.list_feat:has(.type_green) > div {
  background: #edfaf4;
}
.list_feat:has(.type_yellow) > div {
  background: #fffbf0;
}
.list_feat:has(.type_purple) > div {
  background: #eeedfe;
}
.list_feat:has(.type_red) > div {
  background: #faece7;
}

.list_feat > div {
  padding: 20px;
}
.list_feat hgroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background-color: #fff;
}

.list_feat_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
}

.list_feat span + h3 {
  display: none;
}
.list_feat h3 {
  color: #1c1c1c;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
}
.list_feat p {
  color: #1c1c1c;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.36px;
}

/* 인디케이터 dots */
.list_dots {
  display: flex;
  gap: 10px;
  align-items: center;
  align-self: anchor-center;
  margin: 30px 0 54px;
}
.list_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8fb1fa;
  border: none;
  padding: 0;
  transition: background 0.22s, transform 0.22s;
}
.list_dot.is_active {
  background: #76a2f6;
  transform: scale(1.25);
}

/* 상세보기 버튼 - 기본 숨김 */
.list_cta {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  align-self: anchor-center;
}
.list_cta.is_visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.btn_list_detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 28px 100px;
  border-radius: 20px;
  background: linear-gradient(
    270deg,
    rgba(35, 123, 254, 0.75) 0%,
    rgba(0, 91, 228, 0.75) 100%
  );
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 36px;
  transition: 0.3s;
}
.btn_list_detail:hover {
  background: linear-gradient(
    270deg,
    rgba(43, 35, 254, 0.75) 0%,
    rgba(0, 91, 228, 0.75) 100%
  );
  transform: translateY(-2px);
}
/* list// -------------- */

/* responsive */
/* tablet to mobile */
@media screen and (max-width: 1024px) {
  /* 모바일은 세로스크롤 가로이동 대신 일반 가로 스크롤로 폴백 */
  .list {
    height: auto;
  }
  .list > .center_wrap {
    position: static;
    height: auto;
    overflow: visible;
    gap: 30px;
  }
  .list > .center_wrap > ul {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 5vw 8px;
    transform: none !important; /* JS translateX 무효화 */
    transition: none;
  }
  .list > .center_wrap > ul::-webkit-scrollbar {
    display: none;
  }
  .list_dots {
    display: none;
  }
  .list_track {
    scroll-snap-align: center;
  }
  .list_card_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .list_card {
    width: 90vw;
    flex-direction: column;
    gap: 28px;
    padding: 36px 28px;
    min-height: auto;
  }
  .list_card_txt {
    flex: none;
  }
  .list_card_txt h2 {
    font-size: 22px;
  }
  .list_feat {
    width: auto;
  }
  .list_cta {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  } /* 모바일은 항상 노출 */
}

/* mobile only */
@media screen and (max-width: 767px) {
  .list_card {
    width: 88vw;
    padding: 28px 20px;
  }
  .list_card_txt h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .list_card_grid {
    width: stretch;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .btn_list_detail {
    height: 56px;
    padding: 0 52px;
    font-size: 18px;
  }
  .list_feat > div {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px;
  }
  .list_feat h3 {
    font-size: 16px;
  }
  .list_feat p {
    font-size: 16px;
  }
  .list_feat span + h3 {
    display: inline-block;
  }
  .list_feat hgroup {
    display: none;
    padding: 12px;
  }
  .list_feat hgroup h3 {
    display: none;
  }
  .list_feat_icon {
    width: 32px;
    height: 32px;
  }
}

/* benefit -------------- */
.benefit {
  padding: clamp(72px, 10vw, 140px) 0 clamp(60px, 7vw, 100px);
  background: #fff;
}
.tit_benefit {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.tit_benefit h2 {
  font-size: clamp(22px, 3.3vw, 48px);
  color: #1b1b1b;
  font-weight: 300;
  letter-spacing: -1.44px;
  line-height: 1.5;
}
.tit_benefit h2 b {
  font-weight: 700;
}
.tit_benefit h2 strong {
  display: block;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 800;
  background: linear-gradient(
    90deg,
    var(--clickn_icon_line_b, #0094fc) 0%,
    #413bff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2.56px;
  line-height: 1.2;
}
.con_benefit {
  display: flex;
  margin-bottom: clamp(20px, 2vw, 30px);
  gap: clamp(12px, 1.6vw, 24px);
  justify-content: center;
}
.con_benefit article {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 20px);
}
.benefit_card {
  flex: 1;
  border-radius: clamp(14px, 1.6vw, 24px);
  padding: clamp(28px, 4.8vw, 70px) clamp(20px, 4.3vw, 62px)
    clamp(36px, 5.5vw, 80px);
  position: relative;
}
.benefit_card.type_12 {
  border-radius: clamp(14px, 1.4vw, 20px);
  background: linear-gradient(
    146deg,
    #daf9e6 2.52%,
    rgba(196, 251, 217, 0.56) 80.22%,
    #e8e8fb 96.22%
  );
}
.benefit_card.type_24 {
  background: linear-gradient(
    141deg,
    rgba(213, 205, 252, 0.7) 2.37%,
    rgba(183, 249, 255, 0.7) 97.02%
  );
}
.benefit_card_label {
  display: inline-block;
  margin-bottom: clamp(14px, 1.6vw, 24px);
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 600;
  letter-spacing: -0.36px;
}
.benefit_card.type_12 .benefit_card_label {
  color: #1a7a50;
}
.benefit_card.type_24 .benefit_card_label {
  color: #1451d7;
}
.benefit_card_discount {
  margin-bottom: clamp(24px, 2.7vw, 40px);
  padding-bottom: clamp(18px, 2vw, 30px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  white-space: pre;
  font-size: clamp(56px, 6.6vw, 96px);
}
.benefit_card.type_12 .benefit_card_discount {
  border-bottom: 1px dashed #a6e3d1;
  background: linear-gradient(90deg, #00d559 0%, #209d54 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.benefit_card.type_24 .benefit_card_discount {
  border-bottom: 1px dashed #a3b9ff;
  background: linear-gradient(90deg, #3956ff 0%, #6136ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.benefit_card_discount span {
  font-size: clamp(24px, 2.7vw, 40px);
  font-weight: 700;
  vertical-align: middle;
  margin-left: 2px;
}
.benefit_card_list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 20px);
}
.benefit_card_list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 1.6vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.48px;
}
.benefit_card.type_12 li {
  color: #30b888;
}
.benefit_card.type_24 li {
  color: #3e74c4;
}
.benefit_card_list li::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}
.benefit_card.type_12 .benefit_card_list li::before {
  background: #30b888;
}
.benefit_card.type_24 .benefit_card_list li::before {
  background: #3e74c4;
}
.con_benefit_btn {
  display: flex;
  gap: clamp(10px, 1.1vw, 16px);
  margin-bottom: clamp(14px, 1.4vw, 20px);
}
.btn_benefit {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 1.4vw, 20px) clamp(24px, 4.2vw, 60px);
  border-radius: clamp(14px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: -0.52px;
  gap: 5px;
  transition: opacity 0.18s, transform 0.18s;
}
.btn_benefit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
.btn_benefit em {
  font-size: clamp(14px, 1.4vw, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.4px;
}
.btn_benefit.type_green em {
  color: #b3ffd3;
}
.btn_benefit.type_blue em {
  color: #acdcff;
}
.btn_benefit span {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: -0.52px;
  line-height: normal;
}
.btn_benefit.type_green {
  background: #11b957;
  color: #fff;
}
.btn_benefit.type_green:hover {
  background: linear-gradient(90deg, #00b7ea 0%, #11b957 100%);
}
.btn_benefit.type_blue {
  background: #1451d7;
  color: #fff;
}
.btn_benefit.type_blue:hover {
  background: linear-gradient(90deg, #d9a1ff 0%, #1451d7 100%);
}
.benefit_notice {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 20px);
  border: 1px solid #e4e8f4;
  border-radius: 14px;
  padding: clamp(20px, 1.9vw, 28px) clamp(20px, 2.1vw, 30px)
    clamp(18px, 1.6vw, 24px);
  background: #fafbff;
}
.benefit_notice h4 {
  color: #333;
  font-size: clamp(15px, 1.25vw, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.36px;
}
.benefit_notice ul {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.83vw, 12px);
}
.benefit_notice li {
  position: relative;
  margin-left: 20px;
  color: #777;
  font-size: clamp(13px, 1.1vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: -0.32px;
}
.benefit_notice li::before {
  position: absolute;
  content: '';
  left: -10px;
  top: 7px;
  width: 3px;
  height: 3px;
  border-radius: 2px;
  background-color: #777;
}
/* benefit// -------------- */

/* responsive */
/* tablet to mobile */
@media screen and (max-width: 1024px) {
  .con_benefit {
    flex-direction: column;
  }
}

/* mobile only */
@media screen and (max-width: 640px) {
  .benefit_card {
    padding: 20px;
  }
}

/* why */
.clickn .why {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5vw, 37px);
  padding: clamp(40px, 10vw, 132px) 0 clamp(40px, 10vw, 160px);
  background-color: #f4f6f9;
}
.clickn .why .tit_wrap {
  display: flex;
  text-align: center;
  gap: clamp(0px, 1.4vw, 20px);
}
.clickn .why .tit_wrap h3 {
  font-size: clamp(26px, 3.8vw, 68px);
  font-weight: 800;
  line-height: 68px;
  letter-spacing: -2.04px;
}
.clickn .why .tit_wrap h3 strong {
  color: #0066ff;
  font-weight: 800;
  letter-spacing: -2.04px;
}
.clickn .why .tit_wrap small {
  font-size: clamp(16px, 3vw, 48px);
  color: #555555;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -1.44px;
}
.clickn .why article {
  width: 1291px;
  margin: 0 auto;
}
.clickn .why article > img:last-child {
  display: none;
}
.clickn .why img {
  width: 100%;
}
@media only screen and (max-width: 1040px) {
  .clickn .why article {
    width: 100%;
    padding: 0 8vw 0 5vw;
  }
  .clickn .why article > img:first-child {
    display: none;
  }
  .clickn .why article > img:last-child {
    display: block;
  }
}
/* reason */
.clickn .reason {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5vw, 80px);
  padding: clamp(60px, 10vw, 120px) 0;
}
.clickn .reason h3 {
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 800;
  text-align: center;
}
.clickn .reason ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e6e6e6;
}
.clickn .reason li {
  flex: 0 1 33%;
  padding: 59px 0 5px;
  text-align: center;
  background: #fff;
}
.clickn .reason li:nth-child(-n + 3) {
  padding: clamp(20px, 4vw, 14px) 0 clamp(20px, 5vw, 78px);
}
.clickn .reason li:last-child {
  border-right: none;
}
.clickn .reason strong {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(36px, 3.6vw, 60px);
  color: #0066ff;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.8px;
}
.clickn .reason strong sub {
  margin-bottom: -4px;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  line-height: 42px;
  letter-spacing: -1.5px;
}
.clickn .reason h4 {
  margin: clamp(4px, 2.8vw, 20px) 0 clamp(8px, 1.4vw, 10px);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
}
.clickn .reason p {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #333;
  line-height: 26px;
  letter-spacing: -0.4px;
  font-weight: 400;
}
.clickn .reason small {
  font-size: clamp(15px, 2vw, 16px);
  color: #989898;
  line-height: 26px;
  letter-spacing: -0.32px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .clickn .reason ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .clickn .reason li:nth-child(-n + 3),
  .clickn .reason li {
    flex: 0 1 33%;
    padding: clamp(20px, 5vw, 40px) 0 clamp(20px, 5vw, 40px);
    text-align: center;
    background: #fff;
  }
}
@media screen and (max-width: 640px) {
  .clickn .reason ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* short */
.clickn .short {
  padding: clamp(20px, 5vw, 78px) 0 clamp(20px, 5vw, 80px);
  background-color: #101010;
}
.clickn .short ul {
  display: flex;
  justify-content: space-between;
}
.clickn .short li {
  display: flex;
  flex: 0 1 100%;
  flex-direction: column;
  gap: clamp(16px, 4vw, 40px);
  padding: 26px 0;
  border-right: 1px solid #272727;
  text-align: center;
  align-items: center;
}
.clickn .short li:last-child {
  border-right: 0;
}
.clickn .short li div {
  display: flex;
  flex-direction: column;
  gap: clamp(7px, 0.8vw, 14px);
}
.clickn .short li small {
  font-size: clamp(15px, 1.4vw, 20px);
  color: #acacac;
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 14px;
}
.clickn .short li p {
  font-size: clamp(22px, 3.2vw, 28px);
  color: #fff;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.28px;
  line-height: 36px;
}
.clickn .short li strong {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  color: var(--keyColor);
  letter-spacing: -0.28px;
}
.clickn .short a {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: clamp(5px, 0.8vw, 9px) 22px;
  border: 1px solid #555;
  border-radius: 50px;
  color: #898989;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.18px;
}
.clickn .short a:hover {
  border-color: #fff;
  color: #fff;
}
.clickn .short a:after {
  display: inline-block;
  content: '';
  width: 16px;
  height: 16px;
  background: url(/images/event/clickn/ico_arrow_link.svg) no-repeat;
  background-size: cover;
  filter: opacity(0.5);
}
.clickn .short a:hover:after {
  filter: opacity(1);
}
@media screen and (max-width: 1024px) {
  .clickn .short ul {
    flex-direction: column;
  }
  .clickn .short li {
    border-right: none;
    border-bottom: 1px solid #272727;
  }
  .clickn .short li:last-child {
    border-bottom: none;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .clickn .short ul {
    flex-direction: column;
    padding: 0 5vw;
  }
  .clickn .short li {
    flex-direction: row;
    justify-content: space-between;
  }
  .clickn .short li div {
    align-items: baseline;
  }
  .clickn .short li strong {
    display: inline-block;
    margin-right: 0.8vw;
  }
}

/* cite */
.clickn .cite {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5vw, 76px);
  padding: clamp(60px, 12vw, 140px) 0;
  background-color: #f4f6f9;
}
.clickn .cite .tit_wrap {
  display: flex;
  text-align: center;
  gap: 7px;
}
.clickn .cite .tit_wrap h3 {
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 800;
}
.clickn .cite .tit_wrap h3 strong {
  color: #0066ff;
  font-weight: 800;
}
.clickn .cite .tit_wrap small {
  font-size: clamp(16px, 2vw, 24px);
  color: #555555;
  font-weight: 400;
  letter-spacing: -0.48px;
}
.clickn .cite > article {
  position: relative;
  overflow: hidden;
}
.clickn .cite .swiper-slide {
  position: relative;
  width: fit-content;
  aspect-ratio: 680/434;
  transition: 0.5s;
  transition: 0.3s;
  border-radius: 20px;
  overflow: hidden;
}
.clickn .cite .swiper-slide * {
  letter-spacing: -0.4px;
}
.clickn .cite .swiper-slide a {
  position: relative;
  display: block;
}
.clickn .cite .swiper-slide div:has(h4) {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  width: 100%;
  bottom: 28px;
  text-align: center;
}
.clickn .cite .swiper-slide div:has(span) {
  position: absolute;
  z-index: 1;
  opacity: 0;
}
.clickn .cite .swiper-slide a div:has(span) span {
  display: flex;
  align-items: center;
}
.clickn .cite .swiper-slide a div:has(span) span::after {
  display: inline-block;
  content: '';
  z-index: 1;
  width: clamp(8px, 5vw, 16px);
  height: clamp(8px, 5vw, 16px);
  background: url(/images/event/clickn/ico_arrow_link.svg) no-repeat;
  background-size: contain;
}
.clickn .cite .swiper-slide a:hover div:has(h4) {
  opacity: 0;
}
.clickn .cite .swiper-slide a:hover div:has(span) {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  opacity: 1;
}

.clickn .cite .swiper-slide p {
  color: #e5e5e5;
  font-weight: 400;
  font-size: clamp(16px, 4vw, 20px);
  line-height: 18px;
}
.clickn .cite .swiper-slide h4 {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 24px;
}
.clickn .cite .swiper-slide img {
  display: block;
  width: 100%;
}
.clickn .cite .swiper-slide-prev,
.clickn .cite .swiper-slide-next {
  transform: scale(0.63);
  opacity: 0.5;
  margin-top: 20px;
}
.clickn .cite .swiper-slide-prev div,
.clickn .cite .swiper-slide-next div {
  opacity: 0;
}
.citeSwiper-navigation {
  position: relative;
}
.clickn .cite .citeSwiper-button-prev,
.clickn .cite .citeSwiper-button-next {
  position: absolute;
  top: 44.5%;
  width: 48px;
  aspect-ratio: 1/1;
  font-size: 0;
  background-repeat: no-repeat;
  background-size: contain;
  filter: opacity(0.6);
}
.clickn .cite .citeSwiper-button-prev:hover,
.clickn .cite .citeSwiper-button-next:hover {
  filter: opacity(1);
}
.clickn .cite .citeSwiper-button-prev {
  left: calc(50% - 22.5vw);
  background-image: url(/images/event/clickn/ico_arrowRound_left.svg);
}
.clickn .cite .citeSwiper-button-next {
  right: calc(50% - 22.5vw);
  background-image: url(/images/event/clickn/ico_arrowRound_right.svg);
}
@media screen and (max-width: 1024px) {
  .clickn .cite .citeSwiper-button-prev,
  .clickn .cite .citeSwiper-button-next {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .clickn .cite .swiper-slide div:has(h4) {
    bottom: 8px;
    gap: 4px;
  }
  .clickn .cite > article {
    margin: 0 5vw;
  }
  .clickn .cite .swiper-slide-prev,
  .clickn .cite .swiper-slide-next {
    transform: scale(1);
    opacity: 0.5;
    margin-top: 0;
  }
}

/* way */
.clickn .way {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(60px, 8vw, 120px) 0 clamp(60px, 8vw, 115px);
  text-align: center;
}
.clickn .way div {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 36px);
}
.clickn .way small {
  font-size: clamp(26px, 3vw, 40px);
  color: #000;
  font-weight: 300;
  line-height: 28px;
}
.clickn .way h3 {
  font-size: clamp(28px, 4.2vw, 64px);
  color: #000;
  font-weight: 800;
  text-align: center;
  line-height: 45px;
  letter-spacing: -0.4px;
}
.clickn .way h3 strong {
  color: #06f;
  font-weight: inherit;
}
.clickn .way a {
  padding: clamp(16px, 2vw, 28px) clamp(20px, 5vw, 68px);
  border-radius: 50px;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  background: #06f;
  line-height: normal;
}
.clickn .way a:hover {
  background: linear-gradient(90deg, #4a93ff 0%, #0166ff 100%);
}

/* faq */
.clickn .faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 5vw, 70px);
  padding: clamp(60px, 12vw, 140px) 0;
  background-color: #f4f6f9;
  font-size: clamp(8px, 1vw, 10px);
}
.clickn .faq * {
  font-size: inherit;
}
.clickn .faq h3 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(26px, 3.8vw, 44px);
  color: #000;
  font-weight: 800;
  line-height: 31px;
  letter-spacing: -0.44px;
}
.clickn .faq article {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.clickn .faq article:has(.list_dot) {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #dfdfdf;
}
.clickn .faq .list_dot li {
  position: relative;
  left: 10px;
  font-size: 2em;
  color: #555;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.4px;
  word-break: keep-all;
}
.clickn .faq .list_dot li::before {
  position: absolute;
  left: -9px;
  display: inline-block;
  content: '·';
  margin-left: 1px;
}
.clickn .faq .faqlist_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.clickn .faq .faqlist_wrap > li {
  padding: clamp(8px, 3.2vw, 40px);
  border-radius: clamp(10px, 2vw, 20px);
  background-color: #e4e9f0;
}
.clickn .faq .faqlist_wrap ul {
  padding-top: 9px;
}
.clickn .faq .faqlist_wrap li:has(> small + a) {
  display: flex;
  align-items: center;
  gap: 8px;
}
.clickn .faq details {
  position: relative;
}
.clickn .faq details::details-content {
  opacity: 0;
  block-size: 0;
  overflow-y: clip;
  transition: content-visibility 0.5s allow-discrete, opacity 0.5s,
    block-size 0.5s;
}
.clickn .faq details[open]::details-content {
  opacity: 1;
  block-size: auto;
}
.clickn .faq details summary {
  position: relative;
  margin-left: 27px;
  padding-right: 27px;
  font-size: 2em;
  color: #444;
  font-weight: 700;
  line-height: 30px;
  word-break: keep-all;
  list-style: none;
  -webkit-appearance: none;
  appearance: none;
}
.clickn .faq details summary::before {
  position: absolute;
  left: -27px;
  content: 'Q.';
}
.clickn .faq details summary:hover {
  cursor: pointer;
}
.clickn .faq details > summary:after {
  position: absolute;
  z-index: 0;
  top: 8px;
  right: 0;
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  background: url(/images/event/clickn/ico_arrow_top.svg);
  background-size: contain;
  font-size: 10px;
  transition: 0.3s;
  transform: rotate(180deg);
}
.clickn .faq details[open] > summary::after {
  transform: rotate(0deg);
}
.clickn .faq details summary::marker,
.clickn .faq details summary::-webkit-details-marker {
  display: none;
  content: '';
}
.clickn .faq details summary + div {
  position: relative;
  width: calc(100% - 27px);
  left: 27px;
  padding-top: 15px;
  font-size: 1.8em;
  color: #696f78;
  font-weight: 400;
  line-height: 27px;
  word-break: keep-all;
}
.clickn .faq details summary + div * {
  font-weight: 400;
}
.clickn .faq details summary + div b {
  font-weight: 600;
}
.clickn .faq ul.divide_wrap {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.clickn .faq ul.divide_wrap a {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #0066ff;
  font-weight: 600;
  letter-spacing: -0.16px;
}
.clickn .faq ul.divide_wrap a:after {
  display: inline-block;
  content: '';
  width: 14px;
  height: 14px;
  background: url(/images/event/clickn/ico_arrow_link_blue.svg);
  background-size: contain;
  transition: 0.3s;
}
.clickn .faq ul.divide_wrap li {
  line-height: 16px;
}
.clickn .faq ul.divide_wrap li:first-child {
  padding-right: 16px;
  border-right: 1px solid #c2c4ca;
}
.clickn .faq ul + a {
  line-height: 20px;
  padding: 20px 35px;
  border: 1px solid #e4e4e4;
  border-radius: 100px;
  font-size: 18px;
  color: #838383;
  white-space: pre;
  line-height: 13px;
  letter-spacing: -0.18px;
}
.clickn .faq ul + a:hover {
  border-color: #a4a4a4;
  color: #101010;
}
@media (prefers-reduced-motion: no-preference) {
  .clickn details {
    interpolate-size: allow-keywords;
  }
}

/* faq // -------------- */

/* responsive */
@media screen and (max-width: 1024px) {
  .pc_con {
    display: none;
  }
  .m_con {
    display: block;
  }

  section {
    width: 100%;
    padding-right: 5vw;
    padding-left: 5vw;
  }
  .clickn .video .center_wrap,
  .center_wrap {
    width: 100%;
  }
  .clickn .video,
  .clickn .function,
  .clickn .benefit,
  .clickn .reason,
  .clickn .faq {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .clickn .why .tit_wrap small,
  .clickn .why .tit_wrap h3,
  .clickn .faq details summary,
  .clickn .function .tit_wrap h3,
  .clickn section h3 {
    line-height: normal;
  }
  .clickn .function .tit_wrap h3 {
    line-height: 48px;
  }
  .clickn .case .tab_wrap {
    overflow-x: auto !important;
  }
  .clickn .why article {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .clickn section.center_wrap {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .clickn .faq details summary + div {
    line-height: 20px;
  }
  .clickn .faq ul.divide_wrap {
    flex-direction: column;
    gap: 12px;
  }
  .clickn .faq ul.divide_wrap li:first-child {
    border: 0;
  }

  .clickn .btn_link,
  .clickn .faq ul + a {
    padding: 14px 26px;
    font-size: 16px;
  }
}

/* reservation, language, design // -------------- */
@keyframes gradientAnimation {
  0% {
    background-position: 10% 10%;
  }
  100% {
    background-position: 90% 90%;
  }
}
.list_design_wrap {
  padding: clamp(60px, 10vw, 140px) 0 clamp(60px, 10vw, 120px);
  background-image: linear-gradient(
    130deg,
    #a0e3fe 0%,
    #a9c1ff 60%,
    #dfaafe 100%
  );
  background-size: 120%;
  animation: gradientAnimation 1s linear infinite alternate;
}
.list_design_wrap li {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
}
.list_design_wrap ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* scroll -------------- */
.scroll {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(
    135deg,
    #c8d8f8 0%,
    #d8c8f8 40%,
    #e8c8f8 70%,
    #f0c8f0 100%
  );
  overflow: hidden;
}
.scroll > .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
}

/* 슬라이드 컨테이너 */
.con_scroll {
  width: 100%;
  overflow: hidden;
}
.scroll_track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* 카드 */
.scroll_card {
  flex: 0 0 1220px;
  background: #fff;
  border-radius: 24px;
  padding: 56px 60px;
  display: flex;
  gap: 56px;
  align-items: flex-start;
  box-shadow: 0 8px 40px rgba(80, 80, 160, 0.08);
}

/* 좌측 텍스트 */
.scroll_card_txt {
  flex: 0 0 280px;
  padding-top: 8px;
}
.scroll_card_txt h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1b1b1b;
  letter-spacing: -1.04px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.scroll_card_txt h2 strong {
  color: #1b1b1b;
  font-weight: 900;
}
.scroll_card_txt h2 em {
  font-style: normal;
  color: #217aff;
  font-weight: 800;
}
.scroll_card_txt p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  letter-spacing: -0.3px;
}

/* 우측 기능 그리드 */
.scroll_card_grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* 기능 카드 */
.scroll_feat {
  padding: 0 16px 24px;
}
.scroll_feat_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 16px;
}
.scroll_feat_icon.type_blue {
  background: #e8f0ff;
}
.scroll_feat_icon.type_green {
  background: #e0f7f0;
}
.scroll_feat_icon.type_red {
  background: #fff0f0;
}
.scroll_feat_icon.type_yellow {
  background: #fff8e8;
}

/* 기능 카드 배경 블록 (아이콘 영역) */
.scroll_card_grid .scroll_feat {
  background: #f8f9ff;
  border-radius: 16px;
  padding: 20px 20px 24px;
}
.scroll_card_grid .scroll_feat:nth-child(2) {
  background: #f0fdf8;
}
.scroll_card_grid .scroll_feat:nth-child(3) {
  background: #fff5f5;
}
.scroll_card_grid .scroll_feat:nth-child(4) {
  background: #fffbf0;
}

.scroll_feat h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1b1b1b;
  letter-spacing: -0.36px;
  margin-bottom: 10px;
}
.scroll_feat p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  letter-spacing: -0.28px;
}

/* 인디케이터 */
.scroll_dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.scroll_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(80, 80, 160, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.scroll_dot.is_active {
  background: #217aff;
  transform: scale(1.2);
}

/* 상세보기 버튼 */
.btn_scroll_detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 80px;
  border-radius: 16px;
  background: #217aff;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
  transition: background 0.18s, transform 0.18s;
}
.btn_scroll_detail:hover {
  background: #0060df;
  transform: translateY(-2px);
}
/* scroll// -------------- */

/* responsive */
/* tablet to mobile */
@media screen and (max-width: 1024px) {
  .scroll_card {
    flex: 0 0 90vw;
    flex-direction: column;
    gap: 32px;
    padding: 40px 32px;
  }
  .scroll_card_txt {
    flex: none;
  }
  .scroll_card_txt h2 {
    font-size: 22px;
  }
  .con_scroll {
    overflow: visible;
  }
  .scroll_track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .scroll_card {
    scroll-snap-align: center;
  }
}

/* mobile only */
@media screen and (max-width: 767px) {
  .scroll {
    padding: 72px 0 88px;
  }
  .scroll_card {
    flex: 0 0 88vw;
    padding: 32px 24px;
  }
  .scroll_card_txt h2 {
    font-size: 20px;
  }
  .scroll_card_grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .btn_scroll_detail {
    height: 56px;
    padding: 0 48px;
    font-size: 18px;
  }
}
