@charset "UTF-8";

/* ==========================================================================
   1. Brand Font Import & Custom Properties (Root Variables) 
   ========================================================================== */
@import url('./fonts/fonts.css');

html {
  scroll-behavior: smooth;
}


:root {
  --font-elice: 'Elice Digital Baeum', sans-serif;
  --font-base: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'NanumSquare Neo', 'Noto Sans KR', sans-serif;
  
  --font-size-38: clamp(26.4px, 3.2vw, 37.6px);
  --font-size-28: clamp(23px, 2.5vw, 28px);
  --font-size-24: clamp(20px, 2.1vw, 24px);
  --font-size-20: clamp(17px, 1.6vw, 18px);
  --font-size-17: clamp(15px, 1.2vw, 17px);
  --font-size-14: clamp(13px, 1vw, 14px);

  --line-height-tight: 1.3;        
  --line-height-normal: 1.55;      
  
  --letter-spacing-title: -0.035em; 
  --letter-spacing-body: -0.029em;  

  --color-white: #ffffff;
  --color-black: #000000;
  --color-text-main: #19241E;        
  --color-text-sub: #555555;
  --color-text-muted: #666666;         
  --color-brand-primary: #6E856A;    
  --color-brand-navy: #1B3B2B;        
  --color-card-bg-light: #F0F7F3;    
  --color-banner-bg: #EAF1E9;        
  --color-btn-dark: #19241E;          
  --color-notice-bg: #F4F4F4;
  --color-border-light: #E0E6E2;
  --color-map-card-bg: #F0F5F2;

  --radius-sm: 8px;                  
  --radius-md: 12px;                  
  --radius-lg: 20px;                  

  --container-max-width: 820px;
}

.mo { display: inline-block; }
@media screen and (max-width: 1023px) { 
  .mo { display: none; } 
}

.font-elice {
  font-family: var(--font-elice);
}

/* ==========================================================================
   2. Global Reset & Base Alignment
   ========================================================================== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, 
p, a, img, button, input, label {
  font-family: var(--font-base);
  font-weight: 400;
  color: var(--color-text-main);
  line-height: var(--line-height-normal);
  font-size: var(--font-size-17);
  letter-spacing: var(--letter-spacing-body);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main > section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

main .section-inner {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 1.25rem;
}

/* ==========================================================================
   3. Common Section Header & Text Components
   ========================================================================== */
.section-head {
  margin-bottom: 1.5rem;
  text-align: left;
}

.section-head .sub-title {
  font-size: var(--font-size-14);
  font-weight: 700;
  color: var(--color-brand-primary);
  margin-bottom: 0.35rem;
  display: block;
}

.section-head .main-title {
  font-size: var(--font-size-28);
  font-weight: 800;
  color: var(--color-brand-navy);
  line-height: var(--line-height-tight);
  margin: 0;
}

.section-head .section-desc {
  font-size: var(--font-size-17);
  color: var(--color-text-sub);
  margin-top: 0.4rem;
  margin-bottom: 0;
  line-height: 1.45;
  word-break: keep-all;
}

.step-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.step-number {
  display: block;
  font-size: var(--font-size-14);
  font-weight: 700;
  color: var(--color-brand-navy);
  margin-bottom: 0.35rem;
  line-height: 1;
}

.step-title {
  display: block;
  font-size: var(--font-size-17);
  font-weight: 400;
  color: var(--color-text-main);
  margin: 0;
  line-height: 1.4;
  word-break: keep-all;
}

.step-title strong {
  font-weight: 700;
  color: var(--color-brand-navy);
}

/* ==========================================================================
   3-1. Section Hero
   ========================================================================== */
main section.sec-hero {
  width: 100%;
  padding: 3.5rem 0 13rem 0;
  background-color: #E2ECE5;
  position: relative;
  overflow: visible;
  text-align: center;
  z-index: 1; 
}

main section.sec-hero .hero-inner {
  position: relative;
  z-index: 3;
  align-items: center;
}

main section.sec-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

main section.sec-hero .hero-main-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem; 
  margin: 0 0 1.25rem 0;
}

main section.sec-hero .hero-sub-img {
  width: 100%;
  max-width: 300px; 
  height: auto;
  display: block;
  object-fit: contain;
}

main section.sec-hero .hero-main-title .title-bold {
  font-size: var(--font-size-38);
  font-weight: 700;
  color: #0F1C15;
  line-height: 1.25;
  letter-spacing: -0.08em;
  word-break: keep-all;
}

main section.sec-hero .hero-desc-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

main section.sec-hero .hero-desc {
  font-size: var(--font-size-20);
  color: #26382D;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
  word-break: keep-all;
}

main section.sec-hero .hero-desc.sub-notice-desc {
  font-size: var(--font-size-17);
  color: var(--color-text-sub);
  font-weight: 400;
}

main section.sec-hero .hero-desc .desc-highlight {
  font-weight: 700;
  color: var(--color-brand-navy);
}

main section.sec-hero .hero-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background-color: #E2ECE5; 
  background-image: url('../../images/202609OBY/hero_bg_mountains_2.png'), url('../../images/202609OBY/hero_bg_mountains_3.jpg');
  background-position: center -75px, center top;        
  background-size: cover, cover;          
  background-repeat: no-repeat, no-repeat;
  opacity: 0.9;
}

main section.sec-hero .hero-outer-char {
  position: absolute;
  bottom: -6.5rem;
  height: auto;
  z-index: 25;    
  pointer-events: none;
}

main section.sec-hero .hero-outer-char img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
}

main section.sec-hero .hero-outer-char.left-outer-char {
  left: 4vw;
  width: 135px;
}

main section.sec-hero .hero-outer-char.right-outer-char {
  right: 4vw;
  width: 175px;
}

.mobile-middle-char-wrap {
  display: none;
}

/* ==========================================================================
   4. Section Map Selection & Coupon Product Wrap
   ========================================================================== */
main section.sec-map-selection {
  padding: 0 0 1.5rem 0;
  background-color: transparent;
  margin-top: -8.5rem;
  position: relative;
  z-index: 20; 
}

main section.sec-map-selection .map-event-card {
  position: relative;
  background-color: var(--color-map-card-bg);
  border: none;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 0 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  box-shadow: 0 12px 32px rgba(25, 36, 30, 0.08);
  overflow: hidden;
}

main section.sec-map-selection .map-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

main section.sec-map-selection .map-visual-box {
  order: 1;
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main section.sec-map-selection .map-img-container {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  animation: mapPulseScale 3s infinite ease-in-out;
  transition: transform 0.3s ease, filter 0.3s ease;
}

main section.sec-map-selection .map-img-container:hover {
  transform: scale(1.03) translateY(-2px);
  filter: drop-shadow(0 6px 12px rgba(27, 59, 43, 0.12));
}

main section.sec-map-selection .map-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

main section.sec-map-selection .animated-hand-cursor {
  position: absolute;
  right: 22%;
  bottom: 12%;
  width: 72px; 
  height: auto;
  pointer-events: none;
  z-index: 5;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.22));
  animation: handBounce 1.8s infinite ease-in-out;
}

@keyframes handBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(0.90); }
}

@keyframes mapPulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

main section.sec-map-selection .map-info-box {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
  min-height: 280px;
  justify-content: flex-start;
}

main section.sec-map-selection .speech-bubble {
  width: 100%;
  background-image: url('../../images/202609OBY/title_bg_color_red.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0.85rem 1.75rem 1.1rem 1.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  z-index: 2;
  text-align: center;
}

main section.sec-map-selection .speech-bubble strong {
  font-size: var(--font-size-24);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

main section.sec-map-selection .map-desc {
  font-size: var(--font-size-17);
  color: #333333;
  line-height: 1.55;
  margin: 0 0 0.5rem 0;
  word-break: keep-all;
  position: relative;
  z-index: 2;
}

main section.sec-map-selection .info-divider {
  width: 45%;
  height: 1px;
  background-color: #C2D2C7;
  margin: 1rem 0 1.15rem 0;
  position: relative;
  z-index: 2;
  border: none;
}

main section.sec-map-selection .map-desc .region-highlight {
  font-weight: 800;
  color: var(--color-brand-navy);
}

main section.sec-map-selection .event-period-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 110px;
}

main section.sec-map-selection .event-period-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  white-space: nowrap;
}

main section.sec-map-selection .period-label,
main section.sec-map-selection .period-date {
  font-size: var(--font-size-17);
  font-weight: 800;
  color: #111111;
}

main section.sec-map-selection .period-sub-notice {
  font-size: var(--font-size-14);
  color: var(--color-text-sub);
  margin: 0;
}

main section.sec-map-selection .bg-character-wrap {
  position: absolute;
  right: 0px;
  bottom: -1rem;
  width: 102px;
  z-index: 3;
  pointer-events: none;
  animation: characterFloat 3s infinite ease-in-out;
}

@keyframes characterFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

main section.sec-map-selection .bg-char-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  vertical-align: bottom;
}

main section.sec-map-selection .coupon-product-wrap {
  display: grid;
  grid-template-columns: minmax(160px, 200px) 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  margin: 0 0 2.25rem 0;
  border-top: 1px dashed #C2D2C7;
  padding-top: 2.25rem;
  background-color: transparent;
}

main section.sec-map-selection .coupon-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 0.5rem;
}

main section.sec-map-selection .coupon-sub-title {
  font-size: var(--font-size-14);
  font-weight: 700;
  color: var(--color-text-sub);
  margin-bottom: 0.4rem;
}

main section.sec-map-selection .coupon-main-title {
  font-size: clamp(18.4px, 1.8vw, 21.2px);
  font-weight: 800;
  color: #111111;
  line-height: 1.3;
  margin: 0 0 0.5rem 0; 
  word-break: keep-all;
  letter-spacing: -0.03em;
}

main section.sec-map-selection .coupon-head p {
  font-size: 13.5px;
  color: var(--color-text-sub);
  margin: 0.5rem 0 1.25rem 0;
  line-height: 1.4;
  word-break: keep-all;
}

main section.sec-map-selection .coupon-content-right {
  display: flex;
  flex-direction: column;
  width: 100%;
}

main section.sec-map-selection .coupon-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  width: 100%;
}

main section.sec-map-selection .coupon-ticket-item {
  width: 100%;
  transition: transform 0.25s ease;
}

main section.sec-map-selection .coupon-ticket-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

main section.sec-map-selection .coupon-ticket-item:hover {
  transform: translateY(-5px);
}

main section.sec-map-selection .coupon-desc-bottom {
  width: 100%;
  margin-top: 1rem;
}

main section.sec-map-selection .coupon-desc-sub {
  margin: 0;
  padding: 0;
  list-style: none;
}

main section.sec-map-selection .coupon-desc-sub li {
  position: relative;
  padding-left: 0.85rem;
  font-size: var(--font-size-14);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.25rem;
  word-break: keep-all;
}

main section.sec-map-selection .coupon-desc-sub li:last-child {
  margin-bottom: 0;
}

main section.sec-map-selection .coupon-desc-sub li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-text-muted);
}

.coupon-box-action-wrap {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 1rem;
}

.btn-event-coupon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 1rem;
  background-color: #E63946;
  color: #FFFFFF;
  font-size: var(--font-size-17);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 107, 74, 0.3);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.btn-event-coupon-box:hover {
  background-color: #E85A38;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.4);
}

.coupon-box-svg-icon {
  width: 18px;
  margin-top: -2px;
  flex-shrink: 0;
  stroke: #FFFFFF;
}

main section.sec-map-selection .participation-guide-box {
  background-color: #617367;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin: 0 -2rem;
  padding: 1.5rem 2rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

main section.sec-map-selection .guide-inner-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

main section.sec-map-selection .guide-title {
  font-size: var(--font-size-17);
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 0.25rem 0;
}

main section.sec-map-selection .guide-sub-txt {
  font-size: var(--font-size-14);
  color: #E2ECE5;
  margin: 0 0 0.65rem 0;
  font-weight: 400;
  line-height: 1.4;
  word-break: keep-all;
}

main section.sec-map-selection .guide-step-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.5rem;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.45;
}

main section.sec-map-selection .guide-step-flow .arrow {
  color: #B4C8BB;
  font-weight: 300;
  margin: 0 -0.1rem;
}

/* ==========================================================================
   5. Section Stores
   ========================================================================== */
main section.sec-stores {
  padding: 3rem 0 2rem 0;
  background-color: var(--color-white);
}

main section.sec-stores .store-filter-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

main section.sec-stores .btn-filter {
  min-width: 95px;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--color-border-light);
  background-color: var(--color-white);
  color: var(--color-text-main);
  font-size: var(--font-size-17);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
  text-align: center;
}

main section.sec-stores .btn-filter:hover {
  border-color: #435248;
  color: #435248;
}

main section.sec-stores .btn-filter.active {
  background-color: #435248;
  border-color: #435248;
  color: var(--color-white);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(67, 82, 72, 0.15);
}

main section.sec-stores .store-card-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.625rem;
  width: calc(100% + 1.25rem);
}

main section.sec-stores .store-card-item {
  display: block;
  width: 25%;
  padding: 0 0.625rem;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

main section.sec-stores .store-card-item.is-hidden {
  display: none !important;
}

main section.sec-stores .store-link-wrapper {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  outline: none;
}

main section.sec-stores .store-link-wrapper:hover .store-name {
  color: var(--color-brand-navy);
}

main section.sec-stores .store-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #E2ECE5;
  margin-bottom: 0.75rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

main section.sec-stores .store-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

main section.sec-stores .store-card-item:hover .store-img-wrapper img {
  transform: scale(1.04);
}

main section.sec-stores .store-info-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

main section.sec-stores .store-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background-color: #E2E8E4;
  color: #4A584F;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

main section.sec-stores .store-name {
  font-size: var(--font-size-17);
  font-weight: 800;
  color: var(--color-text-main);
  margin: 0 0 0.15rem 0;
  line-height: 1.35;
  word-break: keep-all;
  text-decoration: none;
}

main section.sec-stores .store-location {
  font-size: var(--font-size-14);
  color: var(--color-text-muted);
  font-weight: 400;
  text-decoration: none;
}

/* ==========================================================================
   6. Section Courses
   ========================================================================== */
main section.sec-courses {
  padding: 3.5rem 0 5rem 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border-light);
  box-sizing: border-box;
}

main section.sec-courses .courseSwiper {
  width: 100%;
  overflow: hidden;
  padding: 0 0 4.5rem 0;
  box-sizing: border-box;
  position: relative;
}

main section.sec-courses .courseSwiper .swiper-wrapper {
  display: flex;
  box-sizing: border-box;
}

main section.sec-courses .courseSwiper .swiper-slide {
  flex-shrink: 0;
  box-sizing: border-box;
}

a.course-card-item,
div.course-card-item {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; 
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  background-color: #111;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

a.course-card-item .course-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: var(--radius-md); 
  transform: scale(1);
  backface-visibility: hidden;
  transition: transform 0.5s ease-in-out;
  z-index: 0;
}

a.course-card-item:hover .course-bg-img {
  transform: scale(1.08);
}

a.course-card-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

a.course-card-item .course-region-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #111111;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
}

a.course-card-item .course-info-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

a.course-card-item .course-name {
  font-size: var(--font-size-20);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.4rem 0;
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

a.course-card-item .course-desc {
  font-size: clamp(14.8px, 1.2vw, 16px);
  color: #E2ECE5;
  margin: 0;
  line-height: 1.45;
  word-break: keep-all;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.course-pagination.swiper-pagination-bullets {
  bottom: 1.25rem !important;
  position: absolute !important;
  width: 100% !important;
  left: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 10 !important;
}

.course-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 6px !important;
  background-color: #D2DCD5;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.course-pagination .swiper-pagination-bullet-active {
  width: 20px;
  background-color: var(--color-brand-navy);
  border-radius: 4px;
}

/* ==========================================================================
   7. Section Steps
   ========================================================================== */
main section.sec-steps {
  padding: 2.5rem 0 2rem 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border-light);
  box-sizing: border-box;
}

main section.sec-steps .step-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

main section.sec-steps .step-card-item {
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  box-sizing: border-box;
}

main section.sec-steps .step-text-group {
  width: 100%;
}

main section.sec-steps .step-title {
  min-height: 2.8em;
  margin-bottom: 1rem;
}

main section.sec-steps .step-img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: auto;
}

main section.sec-steps .step-img-wrapper img {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   8. Section Use
   ========================================================================== */
main section.sec-use {
  padding: 2rem 0 2.5rem 0;
  background-color: var(--color-white);
}

main section.sec-use .use-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}

main section.sec-use .use-card-item {
  background-color: var(--color-card-bg-light);
  border: none;
  border-radius: var(--radius-md);
  padding: 1.25rem 0 0 1.15rem;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  box-sizing: border-box;
}

main section.sec-use .step-text-group {
  width: 65%;
  flex: 0 0 65%;
  padding-bottom: 1.25rem;
  padding-right: 0.25rem;
  align-self: flex-start;
}

main section.sec-use .use-img-wrapper {
  width: 35%;
  flex: 0 0 35%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
  margin-top: auto;
  padding: 0;
}

main section.sec-use .use-img-wrapper img {
  width: 100%;
  max-width: 92px;
  height: auto;
  display: block;
  object-fit: contain;
  vertical-align: bottom;
}

/* ==========================================================================
   9. Section Promo Banner
   ========================================================================== */
main section.sec-promo-banner {
  padding: 2rem 0 3.5rem 0;
  background-color: var(--color-white);
}

main section.sec-promo-banner .banner-card {
  position: relative;
  background-color: var(--color-banner-bg);
  background-image: url('../../images/202609OBY/banner_character.png');
  background-repeat: no-repeat;
  background-position: right bottom;       
  background-size: 260px auto;             
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}

main section.sec-promo-banner .grid-full {
  width: 100%;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

main section.sec-promo-banner .banner-subtitle {
  font-size: var(--font-size-17);
  font-weight: 700;
  color: var(--color-text-main);
  display: block;
}

main section.sec-promo-banner .grid-4-1 {
  display: grid;
  grid-template-columns: 4fr 1fr;
  width: 100%;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 2;
}

main section.sec-promo-banner .banner-title {
  font-size: var(--font-size-28);
  font-weight: 800;
  color: var(--color-text-main);
  line-height: var(--line-height-tight);
  margin: 0;
  word-break: keep-all;
}

main section.sec-promo-banner .grid-3-2 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  width: 100%;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

main section.sec-promo-banner .banner-left-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

main section.sec-promo-banner .banner-desc {
  font-size: var(--font-size-17);
  color: var(--color-text-sub);
  line-height: 1.5;
  margin: 0 0 1.75rem 0;
  word-break: keep-all;
}

main section.sec-promo-banner .banner-btn-wrap {
  width: 100%;
}

main section.sec-promo-banner .btn-banner-action .txt.pc {
  display: inline-block;
}

main section.sec-promo-banner .btn-banner-action .txt.mo {
  display: none;                         
}

main section.sec-promo-banner .btn-banner-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-btn-dark);
  color: var(--color-white);
  font-size: var(--font-size-17);
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

main section.sec-promo-banner .btn-banner-action .arrow-icon {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.25s ease;
}

main section.sec-promo-banner .btn-banner-action:hover {
  background-color: var(--color-brand-navy);
  box-shadow: 0 6px 16px rgba(27, 59, 43, 0.25);
  transform: translateY(-2px);
}

main section.sec-promo-banner .btn-banner-action:hover .arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   10. Section Notice
   ========================================================================== */
main section.sec-notice {
  width: 100%;
  background-color: var(--color-notice-bg);
  padding: 3.5rem 0;
  margin-top: auto;
}

main section.sec-notice .notice-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

main section.sec-notice .notice-row {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

main section.sec-notice .notice-title {
  width: 120px;
  flex: 0 0 120px;
  font-size: var(--font-size-17);
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0;
  line-height: 1.6;
}

main section.sec-notice .notice-list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

main section.sec-notice .notice-list li {
  position: relative;
  padding-left: 0.85rem;
  font-size: var(--font-size-17);
  font-weight: 400;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0.4rem;
  word-break: keep-all;
}

main section.sec-notice .notice-list li:last-child {
  margin-bottom: 0;
}

main section.sec-notice .notice-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-text-muted);
}

main section.sec-notice .notice-tel {
  color: var(--color-text-main);
  font-weight: 500;
  text-decoration: none;
}

/* ==========================================================================
   11. TOP button
   ========================================================================== */
.btn-top-go {
  position: fixed;
  right: 20px;
  bottom: 25px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-brand-navy);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(15px);
  touch-action: manipulation;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

.btn-top-go.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.btn-top-go:hover {
  background-color: #0E2218;
  transform: translateY(-3px);
}

.btn-top-go span {
  font-size: 10.4px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-top: 2px;
}

/* ==========================================================================
   12. membership - header
   ========================================================================== */
.membership {
  width: 100%;
}

.membership header {
  width: 100%;
  background-color: var(--color-white);
}

.membership header .inr {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

/* ==========================================================================
   13. event modal popup
   ========================================================================== */
.popup-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  box-sizing: border-box;
}

.popup-modal-container {
  position: relative;
  background-color: var(--color-map-card-bg);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 2.25rem 1.75rem 1.75rem 1.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  animation: popupFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes popupFadeIn {
  from { opacity: 0; transform: translateY(15px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.btn-popup-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-sub);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  z-index: 5;
}

.btn-popup-close:hover {
  color: var(--color-text-main);
}

.combined-region-popup {
  background-color: #E2ECE5;
  border-radius: var(--radius-lg, 20px);
  padding: 2.25rem 1.75rem 1.75rem 1.75rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  position: relative;
}

div .popup-complete-inner{
	text-align: center;
}
.combined-region-popup .popup-complete-inner p{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  background: transparent;
  padding: 0;
  margin-bottom: 1.25rem;
}

.combined-region-popup .popup-complete-top {
  margin-bottom: 0.75rem;
}

.combined-region-popup .complete-logo-graphic {
  width: 115px;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.combined-region-popup .complete-msg-title {
  font-size: clamp(20px, 4.5vw, 24px);
  font-weight: 500;
  color: #111111;
  line-height: 1.35;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.combined-region-popup .complete-msg-title strong {
  font-weight: 800;
}

.combined-region-popup .popup-notice-txt {
  font-size: clamp(14px, 1.2vw, 15px);
  color: #555555;
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
  word-break: keep-all;
  letter-spacing: -0.02em;
  text-align: center;
}

.combined-region-popup .popup-notice-txt .notice-highlight {
  display: inline-block;
  font-size: var(--font-size-14, 14px);
  font-weight: inherit;
  margin-top: 0.05rem;
}

.popup-region-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 0;
  align-items: stretch;
}

.info-region-card {
  background-color: #F1F7F0;
  border: 1px solid #FFFFFF;
  border-radius: var(--radius-md, 12px);
  padding: 1.25rem 0.5rem 1rem 0.5rem; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  cursor: default;
  pointer-events: none;
  position: relative;
  transition: all 0.25s ease;
}

.region-card-title {
  font-size: clamp(16px, 1.8vw, 18px); 
  font-weight: 800;
  color: var(--color-text-main, #19241E);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  word-break: keep-all;
  line-height: 1.25;
  min-height: auto; 
}

.region-card-thumb {
  width: 100%;
  max-width: 85px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem; 
}

.region-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.info-region-card.is-closed,
.info-region-card.is-residence,
.info-region-card.is-nocard {
  background-color: #E8ECE9;
  border-color: #D5DDD7;
  opacity: 0.85;
}

.info-region-card.is-closed .region-card-thumb img,
.info-region-card.is-residence .region-card-thumb img,
.info-region-card.is-nocard .region-card-thumb img {
  filter: grayscale(100%) contrast(90%);
  opacity: 0.5;
}

.info-region-card.is-closed .region-card-title::after {
  content: "(발급마감)";
  display: block;
  font-size: var(--font-size-14, 13px);
  font-weight: 600;
  color: #888888;
  margin-top: 2px;
  letter-spacing: -0.02em;
}

.info-region-card.is-residence .region-card-title::after {
  content: "(거주지 제외)";
  display: block;
  font-size: var(--font-size-14, 13px);
  font-weight: 600;
  color: #888888;
  margin-top: 2px;
  letter-spacing: -0.02em;
}

.info-region-card.is-nocard .region-card-title::after {
  content: "(주민증 미발급)";
  display: block;
  font-size: var(--font-size-14, 13px);
  font-weight: 600;
  color: #888888;
  margin-top: 2px;
  letter-spacing: -0.02em;
}

.info-region-card.is-closed::after,
.info-region-card.is-residence::after,
.info-region-card.is-nocard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md, 12px);
  pointer-events: none;
}

/* 주민증 미발급 상태는 클릭하여 발급 페이지로 이동할 수 있도록 활성화 */
.info-region-card.is-nocard {
  cursor: pointer;
  pointer-events: auto;
}

.combined-region-popup .popup-privacy-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm, 8px);
  padding: 0;
  box-sizing: border-box;
}

.combined-region-popup .popup-privacy-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.combined-region-popup .consent-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.combined-region-popup .consent-checkbox input[type="checkbox"] {
  display: none;
}

.combined-region-popup .custom-chk {
  width: 17px;
  height: 17px;
  border: 1.5px solid var(--color-text-muted);
  background-color: var(--color-white);
  display: inline-block;
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
}

.combined-region-popup .consent-checkbox input[type="checkbox"]:checked + .custom-chk {
  background-color: var(--color-brand-navy);
  border-color: var(--color-brand-navy);
}

.combined-region-popup .consent-checkbox input[type="checkbox"]:checked + .custom-chk::after {
  content: "✓";
  color: var(--color-white);
  font-size: clamp(13px, 1vw, 14px);
  position: absolute;
  top: -1px;
  left: 3px;
  font-weight: bold;
}

.combined-region-popup .consent-txt {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
}

.combined-region-popup .btn-consent-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 6px 0 6px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.combined-region-popup .svg-arrow-toggle {
  display: block;
  transition: transform 0.25s ease;
}

.combined-region-popup .btn-consent-toggle.is-open .svg-arrow-toggle {
  transform: rotate(180deg);
}

.combined-region-popup .privacy-detail-box {
  margin-top: 0.5rem;
  padding: 0.65rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  text-align: left;
}

.combined-region-popup .privacy-detail-box ul {
  margin: 0;
  padding-left: 0.15rem;
  list-style-type: disc;
}

.combined-region-popup .privacy-detail-box li {
  font-size: 13px;
  color: #444444;
  line-height: 1.5;
  margin-bottom: 0.25rem;
  word-break: keep-all;
}

.combined-region-popup .popup-btn-wrap {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

.combined-region-popup .btn-popup-confirm {
  width: 70%;
  padding: 1rem;
  background-color: #3F5247;
  color: var(--color-white, #ffffff);
  font-size: var(--font-size-17, 17px);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 12px rgba(63, 82, 71, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.combined-region-popup .btn-popup-confirm:hover {
  background-color: var(--color-brand-navy, #1B3B2B);
  transform: translateY(-2px);
}

/* ==========================================================================
   15. event closed popup
   ========================================================================== */
.popup-modal-container #popupStepClosed {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: auto;
  min-height: auto;
  max-height: 90vh;
  overflow-y: auto; 
  margin: 0 auto;
  background-color: transparent;
  background-image: url('../../images/202609OBY/popup_confirm_backimg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem 0 1.5rem; 
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* :has 선택자 대신 컨테이너 제어를 위한 클래스 스타일 적용 권장 구조 */
.popup-modal-container.is-closed-popup {
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: none !important;
  overflow: visible !important;
}

#popupStepClosed .popup-complete-inner {
  width: 100%;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

#popupStepClosed .popup-complete-top {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

#popupStepClosed .popup-complete-logo-img {
  width: 100%;
  max-width: 150px;
}

#popupStepClosed .complete-logo-graphic {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

#popupStepClosed .popup-complete-msg {
  width: 100%;
  margin: 0.75rem 0 2.5rem 0;
}

#popupStepClosed .complete-msg-title {
  font-size: var(--font-size-28);
  font-weight: 800;
  color: #111111;
  line-height: 1.35;
  letter-spacing: -0.03em;
  margin: 0;
  word-break: keep-all;
}

#popupStepClosed .popup-btn-wrap {
  width: 100%;
  max-width: 260px;
  margin-bottom: 0;
}

#popupStepClosed .btn-popup-confirm {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #3B4A41;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 12px rgba(27, 59, 43, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

#popupStepClosed .btn-popup-confirm:hover {
  background-color: var(--color-brand-navy);
  transform: translateY(-2px);
}

#popupStepClosed .popup-complete-bottom-char {
  position: relative;
  width: 100%;
  max-width: 140px;
  margin-top: 0;
  display: flex;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

#popupStepClosed .bottom-char-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ==========================================================================
   16. No Coupon Alert Popup (쿠폰 미발급 안내 팝업) 스타일 추가
   ========================================================================== */
.popup-modal-container.no-coupon-modal {
  max-width: 380px;
  text-align: center;
  padding: 0;
}

.popup-modal-container.no-coupon-modal .popup-complete-inner {
  padding: 2rem 1.25rem 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.popup-modal-container.no-coupon-modal .complete-msg-title {
  margin-top: 1rem;
  font-size: 20px;
}

.popup-modal-container.no-coupon-modal .popup-notice-txt {
  margin-top: 0.75rem;
  font-size: 15px;
}

.popup-modal-container.no-coupon-modal .popup-btn-wrap {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.popup-modal-container.no-coupon-modal .btn-popup-confirm {
  width: 100%;
  border-radius: 0 0 12px 12px;
}

.popup-modal-container.no-coupon-modal .btn-popup-confirm:hover {
  background-color: #3F5247;
  transform: none;           
  box-shadow: none;         
}

/* ==========================================================================
   쿠폰 확인 방법 영역 전용 2열 가로 배치 스타일 추가
   ========================================================================== */
.section-head.coupon-head-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.section-head.coupon-head-layout .coupon-head-text {
  flex: 1;
  text-align: left;
}

.section-head.coupon-head-layout .coupon-box-action-wrap {
  flex: 0 0 auto;
  width: auto;
  margin-top: 0;
}

.section-head.coupon-head-layout .btn-event-coupon-box {
  margin-bottom: 0;
  padding: 0.85rem 2rem;
  white-space: nowrap;
}

/* ==========================================================================
   14. Responsive Breakpoints (단절 구간 통합 및 정리)
   ========================================================================== */

/* 태블릿 이상 구간 통합 (1023px 이하 공통) */
@media screen and (max-width: 1023px) {
  main section.sec-hero .hero-outer-char {
    display: none;
  }
}

/* 태블릿 구간 (741px ~ 1023px) */
@media screen and (min-width: 741px) and (max-width: 1023px) {
  main section.sec-hero {
    padding: 3.5rem 0 8.5rem 0;
  }

  main section.sec-map-selection {
    margin-top: -6rem;
  }

  main section.sec-map-selection .map-event-card {
    padding: 2rem 1.5rem 0 1.5rem;
  }

  main section.sec-map-selection .coupon-product-wrap {
    gap: 2rem;
    padding-top: 1.75rem;
    margin-bottom: 2rem;
  }

  main section.sec-map-selection .coupon-main-title {
    font-size: clamp(18.6px, 2.2vw, 20.8px);
    white-space: normal;
    word-break: keep-all;
    margin-bottom: 0;
  }

  main section.sec-map-selection .coupon-card-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
  }

  main section.sec-map-selection .participation-guide-box {
    margin: 0 -1.5rem;
    padding: 1.35rem 1.5rem;
  }

  main section.sec-stores .store-card-item {
    width: 33.3333%;
  }

  main section.sec-courses a.course-card-item {
    aspect-ratio: 3 / 3; 
  }

  main section.sec-steps .step-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  main section.sec-steps .step-card-item {
    padding: 1.5rem 1.25rem 0 1.25rem;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }

  main section.sec-steps .step-text-group {
    padding-bottom: 1.5rem;
    padding-right: 0.75rem;
    align-self: flex-start;
  }

  main section.sec-steps .step-title {
    min-height: auto;
    margin-bottom: 0;
  }

  main section.sec-steps .step-img-wrapper {
    width: auto;
    max-width: 130px;
    margin-top: auto;
    justify-content: flex-end;
    align-self: flex-end;
    flex-shrink: 0;
  }

  main section.sec-use .use-card-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }

  main section.sec-use .use-card-item {
    padding: 1.15rem 0.5rem 0 0.85rem;
  }

  main section.sec-use .step-text-group {
    width: 62%;
    flex: 0 0 62%;
  }

  main section.sec-use .use-img-wrapper {
    width: 38%;
    flex: 0 0 38%;
  }

  main section.sec-use .use-img-wrapper img {
    max-width: 80px;
  }

  main section.sec-promo-banner .banner-card {
    background-size: 250px auto;
  }

  main section.sec-notice .notice-row {
    gap: 1.5rem;
  }

  main section.sec-notice .notice-title {
    width: 100px;
    flex: 0 0 100px;
  }

  .membership header .inr {
    max-width: 100%;
    padding: 0 20px;
  }
}

/* 모바일 구간 (740px 이하) - 캐릭터 겹침 해결 및 오버플로우 방지 반영 */
@media screen and (max-width: 740px) {
  main section.sec-map-selection .coupon-title-icon {
    display: none;
  }

  main section.sec-hero {
    padding: 4rem 0 11rem 0;
  }

  main section.sec-hero .hero-bg-decor {
    background-size: cover, cover;
    background-position: center center;
  }

  main section.sec-hero .hero-outer-char {
    display: none;
  }

  .mobile-middle-char-wrap {
    display: block;
    position: relative;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    height: 0;
    z-index: 5;
  }

  .mobile-middle-char {
    position: absolute;
    left: 1.25rem;
    top: -230px;
    bottom: 0;
    width: 120px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    pointer-events: none;
  }

  main section.sec-hero .hero-main-title {
    gap: 0.5rem;
    margin: 0 0 1rem 0;
  }

  main section.sec-hero .hero-sub-img {
    max-width: 250px;
    margin-bottom: 0.5rem;
  }

  main section.sec-hero .hero-main-title .title-bold {
    font-size: clamp(24px, 7vw, 32px);
  }

  main section.sec-hero .hero-desc-group {
    margin-bottom: 2rem;
  }

  main section.sec-hero .hero-desc {
    font-size: clamp(15px, 1.2vw, 16px);
    line-height: 1.5;
  }

  main section.sec-hero .hero-desc.sub-notice-desc {
    font-size: 14.5px;
  }

  main section.sec-map-selection {
    margin-top: -6rem;
  }

  main section.sec-stores,
  main section.sec-steps,
  main section.sec-use,
  main section.sec-promo-banner {
    padding: 1.25rem 0;
  }

  main section.sec-map-selection .map-event-card {
    padding: 2.25rem 1rem 0 1rem;
  }

  main section.sec-map-selection .map-grid-wrap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 0;
  }

  main section.sec-map-selection .map-info-box {
    order: 1;
    min-height: auto;
    padding-bottom: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  main section.sec-map-selection .map-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #222222;
    margin-bottom: 0.5rem;
  }

  main section.sec-map-selection .info-divider {
    width: 60%;
    margin: 0.85rem 0 1rem 0;
  }

  main section.sec-map-selection .map-desc .region-highlight {
    font-weight: 800;
    color: var(--color-brand-navy);
    border-bottom: 2px solid var(--color-brand-primary);
  }

  /* 캐릭터와 텍스트 겹침 방지를 위해 우측 여백 105px 확보 및 위치 정돈 */
  main section.sec-map-selection .event-period-wrap {
    width: 100%;
    padding-right: 105px !important;
    box-sizing: border-box;
  }

  main section.sec-map-selection .bg-character-wrap {
    width: 85px;
    right: 10px !important;
    bottom: 0px !important;
    z-index: 3;
  }

  main section.sec-map-selection .map-visual-box {
    order: 2;
    margin: 1.25rem -1rem 1rem -1rem;
    background-color: #cccccc;
    width: calc(100% + 2rem);
    max-width: none;
    padding: 2rem 1rem;
    box-sizing: border-box;
  }

  main section.sec-map-selection .map-img-container {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    max-width: 285px;
    margin: 0 auto;
  }

  main section.sec-map-selection .animated-hand-cursor {
    width: 72px;
    right: 15%;
    bottom: 8%;
  }

  main section.sec-map-selection .coupon-product-wrap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 0.75rem; 
    margin: 0 0 1.5rem 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  main section.sec-map-selection .coupon-head {
    padding-right: 0;
  }

  main section.sec-map-selection .coupon-main-title {
    font-size: clamp(17px, 4.5vw, 20px);
    white-space: nowrap;
    letter-spacing: -0.04em;
    margin-bottom: 0;
  }

  main section.sec-map-selection .coupon-card-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  main section.sec-map-selection .participation-guide-box {
    margin: 0 -1rem;
    padding: 1.25rem 1rem;
  }

  main section.sec-map-selection .guide-step-flow {
    font-size: 13.5px;
  }

  main section.sec-stores .store-filter-wrap {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  main section.sec-stores .btn-filter {
    min-width: 70px;
    padding: 0.5rem 0.85rem;
    font-size: 14px;
  }

  main section.sec-stores .store-card-list {
    margin: 0 -0.425rem;
    width: calc(100% + 0.85rem);
  }

  main section.sec-stores .store-card-item {
    width: 50%;
    padding: 0 0.425rem;
    margin-bottom: 1.25rem;
  }

  main section.sec-stores .store-name {
    font-size: 15px;
    font-weight: 700;
  }

  main section.sec-stores .store-location {
    font-size: 13px;
  }

  main section.sec-courses a.course-card-item {
    aspect-ratio: 3 / 3;
  }

  main section.sec-steps .step-card-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }

  main section.sec-steps .step-card-item {
    padding: 1.25rem 1rem 0 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  main section.sec-steps .step-text-group {
    padding: 0;
    align-self: flex-start;
  }

  main section.sec-steps .step-title {
    min-height: auto;
    margin-bottom: 0.85rem;
    font-size: 15px;
  }

  main section.sec-steps .step-img-wrapper {
    width: 100%;
    max-width: 160px;
    margin-top: auto;
    justify-content: center;
    align-self: center;
  }

  main section.sec-use .use-card-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.85rem;
  }

  main section.sec-use .use-card-item {
    padding: 1.25rem 1rem 0 1.25rem;
  }

  main section.sec-use .step-text-group {
    width: 65%;
    flex: 0 0 65%;
    padding-bottom: 1.25rem;
  }

  main section.sec-use .use-img-wrapper {
    width: 35%;
    flex: 0 0 35%;
  }

  main section.sec-use .use-img-wrapper img {
    max-width: 100px;
  }

  main section.sec-promo-banner .banner-card {
    background-size: 150px auto;
    background-position: right bottom;
    padding: 1.5rem 1.25rem;
    overflow: hidden;
  }

  main section.sec-promo-banner .grid-4-1,
  main section.sec-promo-banner .grid-3-2 {
    grid-template-columns: 1fr;
    margin-bottom: 0.65rem;
  }

  main section.sec-promo-banner .banner-left-group {
    width: calc(100% - 100px);
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  main section.sec-promo-banner .banner-subtitle {
    font-size: 13.5px;
    margin-bottom: 0.4rem;
  }

  main section.sec-promo-banner .banner-title {
    font-size: clamp(18px, 4vw, 21px);
    font-weight: 800;
    line-height: 1.3;
  }

  main section.sec-promo-banner .banner-desc {
    font-size: 14.5px;
    line-height: 1.5;
  }

  main section.sec-notice .notice-list li,
  .step-title {
    font-size: 14px;
    line-height: 1.5;
  }

  main section.sec-promo-banner .banner-btn-wrap {
    width: 100%;
  }

  main section.sec-promo-banner .btn-banner-action .txt.pc {
    display: none;
  }

  main section.sec-promo-banner .btn-banner-action .txt.mo {
    display: inline-block;
  }

  main section.sec-promo-banner .btn-banner-action {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 0.65rem;
    font-size: 13.5px;
    gap: 0.35rem;
  }

  main section.sec-notice {
    padding: 2.5rem 0;
  }

  main section.sec-notice .notice-container {
    gap: 1.5rem;
  }

  main section.sec-notice .notice-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  main section.sec-notice .notice-title {
    width: 100%;
    flex: none;
    font-size: 14px;
    font-weight: 700;
  }

  .btn-top-go {
    right: 15px;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }
}

@media screen and (max-width: 480px) {
  .popup-modal-container {
    padding: 1.75rem 1.25rem 1.25rem 1.25rem;
    max-width: 100%;
  }

  /* 모바일 화면에서 쿠폰 확인 방법 영역 전용 헤더 세로 배치 전환 */
  .section-head.coupon-head-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .section-head.coupon-head-layout .coupon-box-action-wrap {
    width: 100%;
  }

  .section-head.coupon-head-layout .btn-event-coupon-box {
    width: 100%;
    white-space: normal;
  }
}


#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ⭐ CSS 스피너 (뺑뺑이) */
.spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto; /* block element 중앙 배치 */
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}