@charset "utf-8";

/* ── CSS Variables ── */
:root {
  --color-primary: #0AAFA1;
  --color-green: #0AAF60;
  --color-dark-teal: #002724;
  --color-bg-hero: #202020;
  --color-bg-place: #EBFFF6;
  --color-bg-category: #E9FFF4;
  --color-bg-benefit: linear-gradient(180deg, #002724 35.81%, #0AAFA1 100%);
  --color-bg-link: linear-gradient(102deg, #059E7A 52.2%, #06A166 76.05%);
  --color-bg-notice: #F4F4F4;
  --color-text: #101010;
  --color-text-sub: #333;
  --color-text-light: #555;
  --color-text-gray: #727272;
  --color-border: #E4E4E4;
  --color-ico-bg: #E0F5F3;
  --font-base: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── base ── */
body { font-family: var(--font-base); color: var(--color-text); }
ul::after{display: none !important;}

/* ── 공통 섹션 레이아웃 ── */
section > .wrap { max-width: 1120px; margin: 0 auto; padding-top: clamp(60px, 6.25vw, 120px); padding-bottom: clamp(60px, 6.25vw, 120px); }

/* ── 공통 레이블 ── */
.sec_label {
  font-size: clamp(14px, 1.15vw, 22px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  text-align: center;
}
.sec_label--green { color: var(--color-green); }
.sec_label--teal  { color: #26E2D2; }

/* ── 공통 제목 구조 ── */
.tit_intro, .tit_place, .tit_short, .tit_category,
.tit_benefit, .tit_how, .tit_faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 0.833vw, 16px);
  text-align: center;
  margin-bottom: clamp(40px, 4.2vw, 80px);
}
.tit_intro h2, .tit_place h2, .tit_short h2, .tit_category h2,
.tit_benefit h2, .tit_how h2, .tit_faq h2 {
  font-size: clamp(26px, 2.9vw, 56px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.tit_intro p:not(.sec_label),
.tit_place p:not(.sec_label),
.tit_short p:not(.sec_label),
.tit_benefit p:not(.sec_label) {
  font-size: clamp(14px, 1.04vw, 20px);
  font-weight: 400;
  color: var(--color-text-sub);
  line-height: 1.4;
}


/* hero -------------- */
.hero {
  position: relative;
  min-height: calc(100dvh - 60px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-hero);
}
.hero_bg {
  position: absolute;
  top:0;
  inset: 0;
}
.hero_bg video {
  height:100%;
  width:100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
.hero .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 2.9vw, 56px);
  padding-top: clamp(60px, 6.25vw, 120px);
  padding-bottom: clamp(60px, 6.25vw, 120px);
}
.tit_hero { display: flex; flex-direction: column; align-items: center; gap: clamp(12px, 1.04vw, 20px); text-align: center; color: #fff; }
.hero_sub { font-size: clamp(30px, 6.65vw, 70px); font-weight: 900; line-height: 1.3; }
.hero_tit {font-size: clamp(30px, 6.65vw, 70px);font-weight: 900;line-height: 1.3;color: #48EADE;}
.hero_desc { font-size: clamp(14px, 3.15vw, 22px); font-weight: 400; line-height: 1.4; text-align: center; }
.hero_btn_wrap { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero_btn_wrap a{width: 180px;max-width: 180px;}
.btn_primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: clamp(12px, 0.83vw, 16px) 0;
  background: linear-gradient(90deg, #0AAFA1, #0AAF60);
  background-size: 140% 100%;
  background-position: 0% 0%;
  color: #fff;
  font-size: clamp(14px, 2.94vw, 18px);
  font-weight: 700;
  border-radius: 10px;
  line-height: 1.4;
  transition: transform .25s ease, box-shadow .25s ease, background-position .25s ease;
}
.btn_primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10,175,161,0.35);
  background-position: 100% 0%;
}
.btn_ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: clamp(12px, 0.83vw, 16px) 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: clamp(14px, 2.94vw, 18px);
  font-weight: 700;
  border-radius: 10px;
  line-height: 1.4;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.btn_ghost:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}
/* hero// -------------- */


/* intro -------------- */
.intro { background: #fff; }
.tit_intro p:not(.sec_label){margin-bottom: 6px;}
.intro_list {
  display: flex;
  gap: clamp(16px, 1.25vw, 24px);
  justify-content: center;
}
.intro_list li {
  flex: 0 1 262px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: clamp(24px, 1.875vw, 36px) clamp(12px, 0.625vw, 13px) clamp(24px, 1.7vw, 34px);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.intro_list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(10,175,161,0.12);
  border-color: var(--color-primary);
}
.intro_ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 20px;
  margin-bottom: 16px;
  transition: transform .25s ease;
}
.intro_list li:hover .intro_ico { transform: scale(1.08) rotate(-3deg); }
.intro_list strong { font-size: clamp(18px, 1.25vw, 24px); font-weight: 700; color: #000; line-height: 1.4; }
.intro_list p { font-size: clamp(12px, 0.833vw, 16px); font-weight: 400; color: var(--color-text-light); line-height: 1.4; margin-top: -6px; }
/* intro// -------------- */


/* place -------------- */
.place { background: var(--color-bg-place); }
.place_list {
  display: flex;
  gap: clamp(16px, 1.25vw, 24px);
  justify-content: center;
}
.place_list li {
  box-shadow: 0 0 40px #C2E5D4;
  flex: 0 1 357px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 357 / 764;
  transition: transform .3s ease, box-shadow .3s ease;
}
.place_list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px #B3DCC6;
}
.place_phone {
  width: 100%;
  aspect-ratio: 357 / 635;
  overflow: hidden;
}
.place_phone {
  flex-shrink: 0;
  aspect-ratio: 357 / 633;    /* Figma 정확 비율 — 카드 357px 중 영상 영역 633px */
}
.place_phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.place_phone + div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 0 auto;
  min-height: 110px;
  width: 100%;
  background: #fff;
  padding: clamp(12px, 1.1vw, 20px) clamp(16px, 1.5vw, 24px);
}
.place_list li:hover .place_phone video { transform: scale(1.04); }
.place_list strong { font-size: clamp(16px, 1.25vw, 24px); font-weight: 700; color: #000; line-height: 1.4; }
.place_list p { font-size: clamp(12px, 0.833vw, 16px); font-weight: 400; color: var(--color-text-light); line-height: 1.4; }
/* place// -------------- */


/* short -------------- */
.short { background: #fff; }
.short img { margin:0 auto;}
.tit_short { margin-bottom: clamp(32px, 5.125vw, 82px); }
.short_compare {
  display: flex;
  gap: clamp(20px, 2.08vw, 40px);
  align-items: center;
  justify-content: center;
}
.short_before, .short_after {
  flex: 0 1 520px;
  padding: clamp(24px, 2.08vw, 40px) clamp(20px, 1.875vw, 36px);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.short_after { border-color: var(--color-primary); }
.short_before:hover, .short_after:hover {
  transform: translateY(-6px);
}
.short_after:hover {
  box-shadow: 0 16px 36px rgba(10,175,161,0.18);
}
.short_before ul, .short_after ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.short_before li, .short_after li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.4;
}
.short_before li { color: #787878; }
.short_after li { color: var(--color-text); font-weight: 600; }
.ico_x, .ico_check {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ico_x {
  background: #e0e0e0;
  position: relative;
}
.ico_x::before, .ico_x::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background: #999;
  border-radius: 2px;
}
.ico_x::before { transform: rotate(45deg); }
.ico_x::after  { transform: rotate(-45deg); }
.ico_check {
  background: var(--color-ico-bg);
  position: relative;
}
.ico_check::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--color-primary);
  border-bottom: 2.5px solid var(--color-primary);
  transform: rotate(-45deg) translate(1px, -1px);
}
.short_arrow { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
/* short// -------------- */


/* category -------------- */
.category { background: var(--color-bg-category); }
.category_list::after {display: none;}
.category_list {
  display: flex;
  gap: clamp(12px, 1.25vw, 24px);
  justify-content: center;
}
.category_list li {
  flex: 1;
  aspect-ratio: 262 / 670;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.category_list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10,175,96,0.18);
}
.category_phone {
  aspect-ratio: 262 / 466;
  width: 100%;
  overflow: hidden;
}
.category_phone video {display: block;width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.category_list li:hover .category_phone video { transform: scale(1.05); }
.category_info { display: flex; flex: 1;flex-direction: column; justify-content: center; }
.category_info strong { margin-bottom: 2px; font-size: clamp(16px, 1.25vw, 24px); font-weight: 700; color: #000; line-height: 1.4; }
.category_info p { font-size: clamp(12px, 0.833vw, 16px); font-weight: 400; color: var(--color-text-light); line-height: 1.4; margin-bottom: 16px;}
.category_tag {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  padding: 6px 12px 4px;
  border: 1px solid var(--color-green);
  border-radius: 100px;
  font-size: clamp(12px, 0.833vw, 16px);
  font-weight: 600;
  color: var(--color-green);
  line-height: 1.3;
  transition: background .2s ease, color .2s ease;
  margin-bottom: 4px;
}
.category_list li:hover .category_tag {
  background: var(--color-green);
  color: #fff;
}
/* category// -------------- */


/* benefit -------------- */
.benefit { background: var(--color-bg-benefit); }
.tit_benefit { color: #fff; }
.tit_benefit h2 { color: #fff; }
.tit_benefit h2 em {
  background: linear-gradient(90deg, #FFF -10%, #5CFFF1 125%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  font-weight:bold;
}
.tit_benefit p:not(.sec_label) { color: #fff}
.benefit_list {
  display: flex;
  align-items: center;
  justify-content: center;
}
li.benefit_list {
  align-items: stretch;
}
.benefit_item {
  flex: 0 1 320px;
  background: #fff;
  border-radius: 20px;
  padding: clamp(20px, 1.875vw, 36px) clamp(16px, 1.25vw, 24px) clamp(24px, 2.08vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.25);
}
.benefit_item--lg { flex: 0 1 432px; }
.benefit_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: clamp(13px, 0.94vw, 18px);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.badge--teal  { background: var(--color-primary); }
.badge--green { background: var(--color-green); }
.badge--dark  { background: #005B53; }
.benefit_img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit_img img { width: auto; object-fit: contain; transition: transform .3s ease; }
.benefit_item:hover .benefit_img img { transform: scale(1.08); }
.benefit_month {
  font-size: 0;
  font-weight: 700;
  text-align: center;
  color: #000;
  line-height: 1.4;
}
.benefit_month em, .benefit_month span { font-size: clamp(22px, 1.875vw, 36px); font-style: normal; font-weight: bold;}
.benefit_month { font-size: clamp(20px, 1.67vw, 32px); }
.benefit_month--lg { font-size: clamp(28px, 2.5vw, 40px); }
.benefit_month--lg em { font-size: clamp(34px, 3vw, 48px); }
.col--teal  { color: var(--color-primary); }
.col--green { color: var(--color-green); }
.col--dark  { color: #007268; }
.benefit_desc { font-size: clamp(12px, 0.833vw, 16px); font-weight: 500; color: var(--color-text-gray); line-height: 1.4; }
.benefit_op {
  position: relative;
  z-index: 2;
  margin:0 -18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  overflow: hidden;
}
.benefit_op svg{
  backdrop-filter: blur(10px);
}
/* benefit// -------------- */


/* how -------------- */
.how { background: #fff; }
.how_list {
  display: flex;
  gap: clamp(8px, 2.25vw, 12px);
  justify-content: center;
  align-items: center;
}
.how_list::after{display: none;}
.how_list li:not(:has(svg)){
  flex: 0 1 100%;
}
.how_card {
  flex: 0 1 100%;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: clamp(24px, 1.875vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(200px, 15.625vw, 300px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.how_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(10,175,161,0.12);
  border-color: var(--color-primary);
}
.how_txt {
  display: flex;
  flex-direction: column;
  gap:  clamp(12px, 0.83vw, 16px);
}
.how_num { font-size: clamp(12px, 0.833vw, 16px); font-weight: 700; color: var(--color-primary); line-height: 1.4; }
.how_txt strong { font-size: clamp(16px, 1.25vw, 24px); font-weight: 700; color: #000; line-height: 1.4; display: block; margin-bottom: 4px; }
.how_txt p { font-size: clamp(12px, 0.833vw, 16px); font-weight: 400; color: var(--color-text-light); line-height: 1.4; }
.how_txt > p:first-of-type{color: #0AAFA1;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;}
.how_ico {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(16px, 1.25vw, 24px);
}
.how_ico i {
  width: 84px;
  height: 84px;
  background: var(--color-ico-bg);
  border-radius: 20px;
  transition: transform .25s ease;
}
.how_card:hover .how_ico i { transform: scale(1.08) rotate(3deg); }
.btn_how {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(24px, 4.08vw, 60px) auto 0;
  width: fit-content;
  padding: clamp(12px, 0.78vw, 15px) clamp(20px, 1.615vw, 31px);
  border: 1px solid rgba(10,175,161,0.5);
  border-radius: 10px;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 600;
  color: #009184;
  line-height: 1.4;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn_how:hover {
  background: #009184;
  color: #fff;
  border-color: #009184;
  transform: translateY(-3px);
}
/* how// -------------- */


/* link -------------- */
.link { background: url(/images/event/midi/bg_link.png) center / cover no-repeat;}
.link .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(60px, 6.25vw, 120px);
  padding-bottom: clamp(60px, 6.25vw, 115px);
  gap: 40px;
}
.link .wrap > div {display: flex;flex-direction: column; gap: 44px;}
.link_txt { display: flex; flex-direction: column;gap: clamp(10px, 0.9vw, 16px);flex: 1; }
.link_txt h2 {
  font-size: clamp(32px, 3.33vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.link_txt p {
  font-size: clamp(14px, 1.15vw, 22px);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.btn_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 15px 30px;
  border-radius: clamp(16px, 1.67vw, 32px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3);
  font-size: 18px;
  color: #fff;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.10);
  font-weight: 600;
}
.btn_link:hover {
  transform: translateY(-3px);
}
.link_img {
  flex: 0 0 clamp(280px, 41.9vw, 805px);
  max-width: 50%;
  position: relative;
}
.link_img img { width: 100%; height: auto; display: block; }
/* link// -------------- */



/* faq -------------- */
.faq { background: #fff; }
.faq .wrap{ padding-right:20px;padding-left:20px;}
.tit_faq { margin-bottom: clamp(32px, 3.125vw, 60px); }
.faq_list { display: flex; flex-direction: column;border: 1px solid #E8E8E8; border-width:1px 0; }
.faq_list li { border-top: 1px dashed #E8E8E8; transition: background .2s ease; }
.faq_list li:first-child { border-top: none; }
.faq_list li:hover { background: #F8FFFD; }
.faq_item { width: 100%; padding: clamp(20px, 2.2vw, 40px) 0; }
.faq_q_wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 18px;
}
.faq_q { color: var(--color-primary); font-size: clamp(14px, 0.94vw, 18px); font-weight: 700; flex-shrink: 0; }
.faq_ans {
  padding: clamp(8px, 0.7vw, 12px) 0 0 28px;
  font-size: clamp(13px, 0.833vw, 16px);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.5;
}
/* faq// -------------- */


/* notice -------------- */
.notice { background: var(--color-bg-notice); }
.notice .wrap { padding-top: clamp(40px, 3.125vw, 60px); padding-bottom: clamp(40px, 3.125vw, 60px); }
.notice h3 { font-size: clamp(16px, 1.15vw, 22px); font-weight: 700; color: #595959; margin-bottom: clamp(12px, 0.833vw, 16px); }
.notice .dot_list li { font-size: clamp(12px, 0.833vw, 16px); color: #727272; line-height: 1.8; letter-spacing: -0.16px; }
/* notice// -------------- */


/* ── responsive -------------- */
@media screen and (max-width:1024px) {
  .intro_list, .how_list { flex-wrap: wrap; justify-content: center; }
  .intro_list li { flex: 0 1 calc(50% - 12px); }
  .how_list li { flex: 0 1 100%; }
  .how_list li:has(svg){display: none;}
  .how_card { flex-direction: row; align-items: center; min-height: auto; }
  .how_txt { flex: 1; }
  .how_ico { margin-top: 0; }
  .place_list { align-items: center; }
  .place_list li { flex: 0 1 auto;width: 100%; max-width: 400px; height: auto; aspect-ratio: auto; }
  .place_phone { flex-shrink: 0; display: block; width: 100%; aspect-ratio: 357 / 633; }
  .place_phone video { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
  .category_list { flex-wrap: wrap; justify-content: center; }
  .category_list li { flex: 0 1 calc(25% - 12px); }
  .category_phone { aspect-ratio: 3 / 5; }
  .short_compare { flex-direction: column; }
  .short_before, .short_after { width: 100%; max-width: 520px; }
  .short_arrow { transform: rotate(90deg); }
  .benefit_list { flex-wrap: wrap; justify-content: center; }
  .benefit_item { flex: 0 1 calc(50% - 12px); }
  .benefit_item--lg { flex: 0 1 100%; margin-top: 20px; }
  .benefit_op--eq { display: none; }
  .link .wrap { flex-direction: column; }
  .link_img { max-width: 100%; flex: none; }
  .link .wrap > div{width: 100%;}
  .link_txt { align-items: flex-start; }
}

@media screen and (max-width:767px) {
  .hero_btn_wrap a{width: 38vw;max-width: 180px;}
  .how_ico i{width: 60px;height: 60px;}
  .category_phone { aspect-ratio: 3 / 4; }
  .category_list li { flex: 0 1 calc(50% - 12px);aspect-ratio: auto; }
  .category_info{padding:20px 0;}
  li.benefit_item{align-self: stretch;}
  .benefit em { flex: 0 1 100%; }
  .link .wrap { align-items: flex-start; }
  .place_list { flex-direction: column;}
  .place_list li{ width: 100%; max-width: 100%; }
  .how_ico { justify-content: flex-start; }
}

/* ── 모바일·터치 디바이스 — hover 효과 비활성화 ── */
@media (hover: none) {
  .btn_primary:hover,
  .btn_ghost:hover,
  .intro_list li:hover,
  .intro_list li:hover .intro_ico,
  .place_list li:hover,
  .place_list li:hover .place_phone video,
  .short_before:hover, .short_after:hover,
  .category_list li:hover .category_phone video,
  .category_list li:hover .category_tag,
  .how_card:hover,
  .how_card:hover .how_ico i,
  .btn_how:hover,
  .btn_link:hover,
  .faq_list li:hover {
    transform: none;
    box-shadow: none;
    background: revert;
  }
}