/**
 * pages/campaign.css — 캠페인 페이지 (/campaigns/*, /campaign/*) 전용
 * ------------------------------------------------------------------
 * 페이지에서 $pageCSS = ['campaign']; 선언 시 layoutHeader 가 자동 로드.
 */

/* ── 캠페인 전용 변수 (base 와 다른 톤만) ── */
:root {
    --campaign-accent: #85754e;                         /* base --color-hm-gold (#84894E) 와 다름 — 캠페인 한정 */
    --campaign-border: rgba(255, 255, 255, 0.18);
}

/* ── body / footer (캠페인 전용) ── */
body { background: var(--color-hm-dark-green); color: #fff; }
body.campaigns-lock-scroll { overflow: hidden; }

/* ═════════════════════════════════════════════════════════════════
 *  Campaigns V2 — 캠페인 리스트
 *  마크업: <section class="campaigns-v2">
 *            <div class="campaigns-v2__inner">
 *              <div class="campaigns-v2__intro"> <h1 class="campaigns-v2__title">
 *              <div class="campaigns-v2__content">
 *                <div class="campaigns-v2__left"> <nav><ul class="campaigns-v2__list">
 *                <div class="campaigns-v2__grid">
 *                  <ul class="campaigns-v2__cards"><li class="campaign-card">
 *                    <a class="campaign-card__frame"><img>
 *              <div class="campaigns-v2__caption">
 * ═════════════════════════════════════════════════════════════════ */

.campaigns-v2 { display: flex; justify-content: center; height: 100vh; min-height: 100vh; padding: 90px 90px 220px !important; background: var(--color-hm-dark-green); color: #fff; overflow: hidden; box-sizing: border-box; }
.campaigns-v2__inner { display: flex; flex-direction: column; justify-content: center; gap: 48px; width: 100%; height: 100%; }
.campaigns-v2__intro { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; text-align: left; }
.campaigns-v2__title { display: flex; align-items: center; gap: 12px; margin: 0; font-size: clamp(28px, 3vw, 34px); font-weight: 700; letter-spacing: -0.015em; color: #fff; }
.campaigns-v2__title-divider { font-weight: 300; opacity: 0.75; }
.campaigns-v2__intro p { margin: 0; max-width: 320px; font-size: 1.05rem; line-height: 1.6; color: rgba(255, 255, 255, 0.8); }

/* ── 카드 그리드 ── */
.campaigns-v2__content { display: grid; grid-template-columns: minmax(280px, 360px) 1fr; gap: 80px; align-items: start; }
.campaigns-v2__left { display: flex; flex-direction: column; gap: 32px; }
.campaigns-v2__grid { position: relative; --card-width: clamp(260px, 35vw, 364px); --card-height: calc(var(--card-width) * 1.5); display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; margin: 0 auto; touch-action: pan-y; cursor: grab; isolation: isolate; transform: translateZ(0); -webkit-overflow-scrolling: touch; }
.campaigns-v2__grid.is-dragging { cursor: grabbing; }
.campaigns-v2__cards { position: relative; list-style: none; padding: 0; margin: 0; width: var(--card-width); height: var(--card-height); }

@media (max-width: 1450px) {
    .campaigns-v2__grid { transform: translateZ(0) scale(0.8); }
}

@media (max-width: 1024px) {
    .campaigns-v2 { padding: 45px 45px 110px !important; }
    .campaigns-v2__grid { transform: translateZ(0) scale(0.6); }
}

/* ── 개별 카드 (JS 가 .is-active / .is-visible 토글, transform 직접 조작) ── */
.campaign-card { position: absolute; inset: 0; margin: auto; width: var(--card-width); max-width: var(--card-width); display: flex; flex-direction: column; align-items: center; gap: 18px; opacity: 0; transform: translate3d(0, 0, 0) scale(0.92); transition: none; pointer-events: none; will-change: transform, opacity; backface-visibility: hidden; contain: layout style; }
.campaign-card.is-active { pointer-events: auto; }
.campaign-card.is-visible { opacity: 1; }
.campaign-card__frame { position: relative; display: block; width: var(--card-width); aspect-ratio: 2 / 3; background: #01251a; border: 1px solid var(--campaign-border); border-radius: 20px; box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45); overflow: hidden; cursor: grab; transform: translateZ(0); transition: none; will-change: transform; contain: layout style; }
.campaign-card__frame::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.68); opacity: 0; transition: none; pointer-events: none; }
.campaign-card__frame:focus-visible { outline: 3px solid var(--campaign-accent); outline-offset: 4px; }
.campaign-card.is-active .campaign-card__frame:hover { transform: translateY(-4px); }
.campaign-card__frame img { display: block; width: 100%; height: 100%; object-fit: cover; transform: translateZ(0); backface-visibility: hidden; }

/* ── 캡션 + 배지 ── */
.campaigns-v2__caption { display: inline-flex; align-items: center; justify-content: center; margin: 28px auto 0; padding: 3px 7px; width: min(100%, var(--card-width)); min-height: 1.6em; font-size: 1.04rem; font-weight: 600; letter-spacing: -0.02em; color: rgba(255, 255, 255, 0.96); text-align: center; border-radius: 6px; }
.campaigns-v2__caption .caption-text { display: inline; }
.campaigns-v2__caption .caption-badge { display: inline-flex; align-items: center; justify-content: center; margin-left: 5px; padding: 3px 7px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; color: #fff; background: var(--campaign-accent); border-radius: 6px; text-transform: uppercase; }

/* ── 캠페인 이름 list (사이드 nav) ── */
.campaigns-v2__list { display: flex; flex-direction: column; gap: 5px; list-style: none; padding: 0; margin: 0; }
.campaigns-v2__list li { position: relative; }
.campaigns-v2__list button { position: relative; display: inline-flex; align-items: center; justify-content: flex-start; padding: 0; background: none; border: 0; font: inherit; font-size: 1.05rem; text-align: left; color: rgba(255, 255, 255, 0.72); cursor: pointer; transition: color 0.18s ease, font-weight 0.18s ease; }
.campaigns-v2__list button::before { content: "—"; position: absolute; left: -19px; top: 50%; transform: translateY(-50%); opacity: 0; color: #fff; font-weight: 400; transition: opacity 0.18s ease; }
.campaigns-v2__list li:hover button::before,
.campaigns-v2__list li:focus-within button::before,
.campaigns-v2__list li.is-active button::before { opacity: 1; }
.campaigns-v2__list li:hover button,
.campaigns-v2__list li:focus-within button,
.campaigns-v2__list li.is-active button { color: #fff; font-weight: 600; }
.campaigns-v2__list button:focus-visible { outline: 2px solid var(--campaign-accent); outline-offset: 4px; border-radius: 6px; }

/* ── 반응형 ── */
@media (max-width: 1024px) {
    .campaigns-v2 { padding: 120px 24px 100px; }
    .campaigns-v2__content { grid-template-columns: 250px 1fr; gap: 40px; }
    .campaigns-v2__title{flex-wrap: wrap; gap: 8px;}
}
@media (max-width: 768px) {
    .campaigns-v2 { padding: 25px 10px !important; }
    .campaigns-v2__content { grid-template-columns: 1fr; gap: 15px; }
    .campaigns-v2__inner { gap: 0; justify-content: flex-start; }
    .campaigns-v2__intro p { max-width: 100%; }
    .campaigns-v2__grid { --card-width: min(clamp(220px, 48vw, 290px), calc((100vh - 140px) / 1.5)); width: 100%; transform: translateZ(0) scale(1); }
    .campaigns-v2__caption { max-width: min(84vw, 340px); margin-top: 16px; font-size: 0.96rem; }
    .campaigns-v2__left { gap: 12px; }
    .campaigns-v2__list { display: none; }
}
@media (max-width: 520px) {
    .campaigns-v2__intro { gap: 14px; }
    .campaigns-v2__intro p { font-size: 0.95rem; }
    .campaigns-v2__grid { --card-width: min(clamp(100px, 66vw, 200px), calc((100vh - 150px) / 1.5)); }
    .campaigns-v2__caption { width: 100%; margin-top: 14px; font-size: 0.94rem; }
}
@media (max-width: 380px) {
    .campaigns-v2 { padding: 40px 8px 200px !important; }
    .campaigns-v2__grid { --card-width: min(clamp(100px, 82vw, 200px), calc((100vh - 120px) / 1.5)); }
    .campaigns-v2__caption { width: 100%; margin-top: 12px; font-size: 0.9rem; }
    .campaigns-v2__intro h1 { font-size: 1.8rem; }
    .campaigns-v2__intro p { font-size: 0.92rem; }
}

/* ═════════════════════════════════════════════════════════════════
 *  Extracreamy Draft Can → pages/extracan.css 로 분리 (2026-06-10)
 *  - extracreamydraftcan.php  : $pageCSS = ['extracan']
 *  - smoooooooth.php          : $pageCSS = ['campaign', 'extracan']
 * ═════════════════════════════════════════════════════════════════ */

/* ═════════════════════════════════════════════════════════════════
 *  Smooth Group — campaign/* 전체 + hanmac/map*.php + hipmacplace/soft_dinner.php
 *  pc.css 579-1027 → 통합 (2026-06-09)
 * ═════════════════════════════════════════════════════════════════ */

/* ── 부드러운 회식 (soft_dinner / smoothhoesik*) ── */
.sd_txt { text-align: center; }
.sd_txt p { padding: 2vw 3vw; }
.sd_txt > div { width: 90%; max-width: 900px; margin: 60px auto 0; }
.sd_vstit { display: flex; justify-content: center; padding: 3vw 0; text-align: center; }
.sd_vstit img { width: 60%; max-width: 428px; }
.sd_vstit p { position: relative; padding: 0 20px; font-size: 35px; font-weight: 500; }
.sd_vstit p strong { display: block; font-size: 42px; }

.sd_option ul { position: relative; display: flex; justify-content: center; width: 90%; max-width: 1102px; margin: 0 auto 50px; text-align: center; }
.sd_option ul::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 7vw; min-width: 30px; max-width: 100px; height: 7vw; min-height: 30px; max-height: 100px; background: url("/resources/images/sd_img02.png") no-repeat center/contain; z-index: 1; }
.sd_option ul.ending::after { content: none; }
.sd_option li { width: 50%; }
.sd_option li p { padding: 0 2vw 0 0; color: #fff; font-size: 1.3em; }
.sd_option li p strong { display: block; }
.sd_option li:last-child p { padding: 0 0 0 2vw; }
.sd_option ul.ending { max-width: 900px; margin: 0 auto 40px; }
.sd_option ul.ending li { width: 100%; }
.sd_option ul.ending li p { padding: 6vw 4vw; font-weight: 400; }
.sd_option ul.ending li p strong { display: block; }
.btn_select { padding: 12px 50px; background: #087c5d; color: #fff; border-radius: 50px; }
.btn_select.tms { margin: 0 10px; }

.sd_end ul { position: relative; display: flex; justify-content: center; width: 90%; max-width: 900px; margin: 0 auto 40px; text-align: center; }
.sd_end li { width: 100%; }
.sd_end li p { padding: 6vw 4vw; color: #fff; font-size: 1.3em; font-weight: 400; }
.sd_end li p strong { display: block; }

.sd_box { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; min-height: 330px; border: 5px solid #fff; text-align: center; z-index: 1; }
.sd_box::after { content: ""; position: absolute; inset: 0; opacity: 0.8; z-index: -1; }
.sd_box:active { border-color: #014e3a; z-index: 2; }
.sd_box:active::after { opacity: 1; }
.sd_box.check_img01::after { background: url("/resources/images/check_img01.jpg") no-repeat center/cover; }
.sd_box.check_img02::after { background: url("/resources/images/check_img02.jpg") no-repeat center/cover; }
.sd_box.check_img03::after { background: url("/resources/images/check_img03.jpg") no-repeat center/cover; }
.sd_box.check_img04::after { background: url("/resources/images/check_img04.jpg") no-repeat center/cover; }
.sd_box.check_img05::after { background: url("/resources/images/check_img05.jpg") no-repeat center/cover; }
.sd_box.check_img06::after { background: url("/resources/images/check_img06.jpg") no-repeat center/cover; }
.sd_box.check_img07::after { background: url("/resources/images/check_img07.jpg") no-repeat center/cover; }
.sd_box.check_img08::after { background: url("/resources/images/check_img08.jpg") no-repeat center/cover; }
.sd_box.check_img09::after { background: url("/resources/images/check_img09.jpg") no-repeat center/cover; }
.sd_box.check_img10::after { background: url("/resources/images/check_img10.jpg") no-repeat center/cover; }
.sd_box.check_img11::after { background: url("/resources/images/check_img11.jpg") no-repeat center/cover; }
.sd_box.check_img12::after { background: url("/resources/images/check_img12.jpg") no-repeat center/cover; }
.sd_box.check_img13::after { background: url("/resources/images/check_img13.jpg") no-repeat center/cover; }
.sd_box.check_img14::after { background: url("/resources/images/check_img14.jpg") no-repeat center/cover; }
.sd_box.check_img15::after { background: url("/resources/images/check_img15.jpg") no-repeat center/cover; }
.sd_box.check_img16::after { background: url("/resources/images/check_img16.jpg") no-repeat center/cover; }

/* ── sd_survey (smooth*) ── */
.sd_survey { width: 90%; max-width: 900px; margin: 0 auto; padding: 4vw 5vw; background: #014d39; color: #fff; }
.sd_survey p.tit { padding: 0 0 3vw; margin: 0 0 3vw; border-bottom: 1px solid rgba(255, 255, 255, 0.4); color: rgba(255, 255, 255, 0.7); text-align: center; font-size: 0.9em; }
.sd_survey dl { padding: 15px 0; }
.sd_survey dl dt { padding: 10px 0; }
.sd_survey dl dt strong { color: #d19f58; font-weight: 600; }
.sd_survey dl dd p { padding: 10px 0 0; font-size: 0.8em; }
.sd_survey dl.half { display: flex; align-items: center; }
.sd_survey dl.half dt { width: 40%; }
.sd_survey dl.half dd { width: 60%; }
.sd_survey textarea { width: 100%; height: 160px; padding: 5px 10px; background: var(--color-hm-green); border: 0; color: rgba(255, 255, 255, 0.67); font-size: 0.6em; line-height: 1.3; vertical-align: middle; }
.sd_survey textarea.hsmall { height: 80px; }
.sd_survey textarea#memo { color: #fff; font-size: 1em; }
.sd_survey input[type="text"] { width: 100%; }
.sd_survey input::placeholder { color: #6b9187; }

.noti { width: 80%; max-width: 900px; margin: 20px auto; padding: 2vw; background: #eee; text-align: center; font-size: 0.8em; }
.noti h2 { padding: 0 0 1vw; font-weight: 600; }

/* ── Store Finder: seller_renewal + seller_map + popups (hanmac/map*, smoothsmooth3, smoooooooth) ── */
.sub_contents.seller .da_main .inner { background-color: #f5f5f5; }
.sub_contents.seller .da_main .inner .seller_banner { width: 100%; height: 35vw; margin-bottom: 0; }
.txt_gd { color: #d19f58; }

.sub_contents.seller .da_main .inner .seller_textbox { position: relative; padding-bottom: 50px; z-index: 1; }
.sub_contents.seller .da_main .inner .seller_textbox h3 { margin-bottom: 70px; color: #1b4b45; font-weight: 700; font-size: 45px; text-align: center; transition: 0.5s; }
.sub_contents.seller .da_main .inner .seller_textbox h3 b { color: #d6a458; }
.sub_contents.seller .da_main .inner .seller_textbox h4 { color: #1b4b45; font-weight: 700; font-size: 37px; text-align: center; transition: 0.5s; }
.sub_contents.seller .da_main .inner .seller_textbox .postcode_box { width: 832px; margin: 30px auto 34px; transition: 0.5s; }
.sub_contents.seller .da_main .inner .seller_textbox .postcode_box .select_box { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 3px; width: 100%; margin-bottom: 26px; }
.sub_contents.seller .da_main .inner .seller_textbox .postcode_box .select_box + p { color: #666; font-size: 16px; text-align: center; }
.sub_contents.seller .da_main .inner .seller_textbox .postcode_box select { width: calc(20% - 3px); height: 67px; background-color: #fff; background-image: none; border: 2px solid var(--color-hm-green); color: #000; font-size: 15px; line-height: 67px; cursor: pointer; }
.sub_contents.seller .inner .seller_textbox .postcode_box input::placeholder { color: #1b4b45; }
.sub_contents.seller .inner .seller_textbox .postcode_box input[type="text"] { width: 100%; height: 67px; color: #1b4b45; font-size: 17px; line-height: 67px; }
.sub_contents.seller .inner .seller_textbox .postcode_box .btn { width: calc(20% - 3px); height: 67px; background-color: #d19f58; border: 2px solid #d19f58; color: #fff; font-weight: 700; font-size: 17px; line-height: 67px; cursor: pointer; }

.sub_contents.seller_renewal .inner .seller_textbox .postcode_box input[type="text"] { width: 100%; height: 61px; padding: 10px 20px; background-color: #ddd; border: none; line-height: 61px; font-weight: 400; }
.sub_contents.seller_renewal .da_main .inner .seller_textbox .postcode_box .select_box { flex-wrap: nowrap; gap: 0; }
.sub_contents.seller_renewal .inner .seller_textbox .postcode_box .btn { display: flex; align-items: center; justify-content: center; width: auto; height: 61px; padding: 18px 20px 20px 18px; background-color: #00321f; border: none; }

@media screen and (max-width: 1024px) {
  .sub_contents.seller .swiper-pagination-fraction,
  .sub_contents.seller .swiper-pagination-custom,
  .sub_contents.seller .swiper-horizontal > .swiper-pagination-bullets,
  .sub_contents.seller .swiper-pagination-bullets.swiper-pagination-horizontal { bottom: -11% !important; }
}

.sub_contents.seller_renewal .inner .seller_map { width: 832px; margin: 0 auto; transition: 0.5s; }
.sub_contents.seller_renewal .inner .seller_map .hanmac_picture { display: flex; justify-content: center; margin-top: 40px; }
.sub_contents.seller_renewal .inner .seller_map .hanmac_picture img { width: 180px; }
.sub_contents.seller_renewal .inner .seller_map h5 { margin: 40px 0 60px; color: #1b4b45; font-size: 20px; font-weight: 400; line-height: 1.5; text-align: center; }
.sub_contents.seller_renewal .inner .seller_map h5 span { display: inline-block; margin-top: 1px; font-size: 17px; line-height: 1.5; vertical-align: top; }
.sub_contents.seller_renewal .inner .seller_map .map_container { position: relative; width: 100%; height: 600px; }
.sub_contents.seller_renewal .inner .seller_map .map_container .map { width: 100%; height: 100%; }
.sub_contents.seller_renewal .inner .seller_map .map_container .content_box { position: absolute; bottom: 30px; right: 30px; display: flex; flex-direction: column; cursor: pointer; }
.sub_contents.seller_renewal .inner .seller_map .map_container .content_box .text_box { display: flex; align-items: center; padding: 10px 20px; background-color: #15513a; color: #fff; font-size: 16px; line-height: 1.3; text-align: left; }
.sub_contents.seller_renewal .inner .seller_map .map_container .content_box .text_box img { width: auto; margin-right: 12px; }
.sub_contents.seller_renewal .inner .seller_map .tip { margin-top: 20px; color: #000; font-size: 15px; font-weight: 400; text-align: center; }
.sub_contents.seller_renewal .inner .seller_map .tip span { margin-right: 4px; color: #1b4b45; font-weight: 400; }

.sub_contents.seller_renewal .inner .seller_map .map_container .find_map_popup { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none; flex-direction: column; width: 74%; padding-top: 50px; background-color: #fff; box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2); }
.sub_contents.seller_renewal .inner .seller_map .map_container .find_map_popup .decoration_img { display: flex; justify-content: center; margin-bottom: 18px; }
.sub_contents.seller_renewal .inner .seller_map .map_container .find_map_popup .decoration_img img { width: auto; }
.sub_contents.seller_renewal .inner .seller_map .map_container .find_map_popup .name { margin-bottom: 40px; color: #004d39; font-size: 30px; text-align: center; }
.sub_contents.seller_renewal .inner .seller_map .map_container .find_map_popup .address { display: flex; align-items: center; padding-left: 70px; color: #1b4b45; font-size: 18px; font-weight: 400; }
.sub_contents.seller_renewal .inner .seller_map .map_container .find_map_popup .address img { width: 13px; margin-right: 6px; }
.sub_contents.seller_renewal .inner .seller_map .map_container .find_map_popup .address span { margin-top: 4px; }
.sub_contents.seller_renewal .inner .seller_map .map_container .find_map_popup .find_map_btn { align-self: center; width: 100%; height: 64px; margin-top: 50px; background-color: #15513a; color: #fff; font-size: 16px; cursor: pointer; }
.sub_contents.seller_renewal .inner .seller_map .map_container .find_map_popup .find_map_btn img { width: 13px; margin-left: 8px; margin-bottom: 2px; }
.sub_contents.seller_renewal .inner .seller_map .map_container .find_map_popup .close_btn { position: absolute; right: 30px; top: 24px; width: 24px; cursor: pointer; }
.sub_contents.seller_renewal .inner .seller_map .map_container .find_map_popup .close_btn img { width: auto; }

.sub_contents.seller_renewal .da_main .privacy_confirm_popup { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none; flex-direction: column; align-items: center; width: 33%; min-width: 500px; padding: 50px 40px; background-color: #fff; box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2); z-index: 1000; }
.sub_contents.seller_renewal .da_main .privacy_confirm_popup .title { color: #1b4b45; font-size: 20px; font-weight: 500; text-align: center; }
.sub_contents.seller_renewal .da_main .privacy_confirm_popup .line { width: 100%; height: 1px; margin: 24px 0; background-color: #ddd; }
.sub_contents.seller_renewal .da_main .privacy_confirm_popup .info { margin-bottom: 40px; color: #1b4b45; font-size: 16px; font-weight: 400; }
.sub_contents.seller_renewal .da_main .privacy_confirm_popup .btn_group { display: flex; gap: 0 10px; height: 44px; }
.sub_contents.seller_renewal .da_main .privacy_confirm_popup .btn_group .disagree,
.sub_contents.seller_renewal .da_main .privacy_confirm_popup .btn_group .agree { display: flex; align-items: center; justify-content: center; width: 130px; height: 100%; font-size: 16px; cursor: pointer; }
.sub_contents.seller_renewal .da_main .privacy_confirm_popup .btn_group .disagree { background-color: #ddd; color: #666; }
.sub_contents.seller_renewal .da_main .privacy_confirm_popup .btn_group .agree { background-color: #15513a; color: #fff; }

.sub_contents.seller_renewal .no_result_popup { position: absolute; left: 50%; top: 67%; transform: translate(-50%, -50%); display: none; flex-direction: column; width: 44%; padding: 50px; background-color: #fff; box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2); }
.sub_contents.seller_renewal .no_result_popup .content { margin-bottom: 20px; color: #000; font-size: 18px; line-height: 1.4; text-align: center; }
.sub_contents.seller_renewal .no_result_popup .confirm_btn { align-self: center; width: 130px; height: 44px; background-color: #15513a; color: #fff; font-size: 16px; cursor: pointer; }

/* ── coolerbag (smoothsmooth) ── */
.coolerbag .da_main .inner { padding: 0; background-color: #fff; }
.coolerbag .da_main .inner .coolerbag_banner { display: flex; justify-content: center; width: 100%; height: 571px; padding-top: 250px; background: url("/resources/images/coolerbag_visual.png") no-repeat center/cover; }
.coolerbag .da_main .inner .coolerbag_banner::after { content: ""; position: absolute; left: 0; top: 90px; display: none; width: 416px; height: 211px; background: url(/resources/images/coolerbag_tag.png) no-repeat 0 0 / contain; transition: 0.5s; z-index: 1; }
.coolerbag .da_main .inner .coolerbag_banner .txt { text-align: center; }
.coolerbag .da_main .inner .coolerbag_banner .txt h2 { margin-bottom: 70px; font-size: 85px; font-weight: 500; transition: 0.5s; }
.coolerbag .da_main .inner .coolerbag_banner .txt p { font-size: 25px; font-weight: 400; transition: 0.5s; }
.coolerbag .section01 .inner .wrap { display: flex; flex-wrap: wrap; justify-content: center; }
.coolerbag .section01 .inner .wrap .imgbox { width: 895px; height: 655px; margin-top: -50px; margin-bottom: 100px; transform: translateX(100px); transition: 0.5s; }
.coolerbag .section02 { padding-bottom: 240px; }
.coolerbag .section02 .inner .wrap .txt { width: 100%; margin-bottom: 110px; text-align: center; }
.coolerbag .section02 .inner .wrap .txt span { display: block; color: #014d39; font-size: 54px; font-weight: 400; }
.coolerbag .section02 .inner .wrap .txt p { color: #d6a458; font-size: 65px; font-weight: 500; }
.coolerbag .section02 .inner .wrap .lists { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; width: 1320px; margin: 0 auto; }
.coolerbag .section02 .inner .wrap .lists .list_item { width: calc(50% - 20px); }
.coolerbag .section02 .inner .wrap .list_item .imgbox { width: 640px; height: 960px; background-repeat: no-repeat; background-position: 0 0; background-size: cover; transition: 0.5s; }
.coolerbag .section02 .inner .wrap .list_item .list_txt,
.coolerbag .section02 .inner .wrap .mobile_txt .list_txt { display: flex; gap: 20px; }
.coolerbag .section02 .inner .wrap .list_item .list_txt p,
.coolerbag .section02 .inner .wrap .mobile_txt .list_txt p { width: 40px; height: 40px; background-color: #d6a458; font-size: 20px; font-weight: 400; line-height: 40px; text-align: center; }
.coolerbag .section02 .inner .wrap .list_item .list_txt span,
.coolerbag .section02 .inner .wrap .mobile_txt .list_txt span { margin-top: -5px; color: #014d39; font-size: 32px; font-weight: 500; }
.coolerbag .section02 .inner .wrap .mobile_txt { display: none; }
.coolerbag .section02 .inner .wrap .list_item01 .list_txt { margin-top: 250px; }
.coolerbag .section02 .inner .wrap .list_item02 .list_txt { margin-bottom: 240px; }
.coolerbag .section03 .inner { padding: 125px 0; background: #f7f7f7; text-align: center; }
.coolerbag .section03 .wrap .txt { margin-bottom: 75px; }
.coolerbag .section03 .wrap .txt span { color: #014d39; font-size: 50px; font-weight: 400; }
.coolerbag .section03 .wrap .lists { display: flex; justify-content: center; gap: 45px; width: 100%; }
.coolerbag .section03 .wrap .lists .list_item { width: 410px; height: 545px; }
.coolerbag .section03 .wrap .lists .list_item .imgbox { width: 100%; height: 100%; background-repeat: no-repeat; background-position: 0 0; background-size: cover; transition: 0.5s; }
.coolerbag .section04 { padding: 133px 0 0; }
.coolerbag .section04 .inner { padding-bottom: 110px; background: url(/resources/images/coolerbag_sec04.png) no-repeat bottom/1970px calc(50% + 133px); }
.coolerbag .section04 .wrap { display: flex; flex-wrap: wrap; justify-content: center; }
.coolerbag .section04 .txt { display: flex; align-items: center; justify-content: center; width: 740px; height: 95px; margin: 0 auto 80px; background: #d6a458; border-radius: 45px; }
.coolerbag .section04 .txt span { font-size: 52px; font-weight: 500; }
.coolerbag .section04 .lists { display: flex; justify-content: center; gap: 40px; width: 100%; margin-bottom: 80px; }
.coolerbag .section04 .lists .list_item { width: 640px; height: 750px; }
.coolerbag .section04 .lists .list_item .imgbox { width: 100%; height: 100%; background-repeat: no-repeat; background-position: 0 0; background-size: cover; transition: 0.5s; }
.coolerbag .section04 .lists_txt .list_item { display: flex; gap: 20px; width: 100%; text-align: left; }
.coolerbag .section04 .lists_txt .list_item .check { width: 40px; height: 38px; background: url(/resources/images/coolerbag_check.png) no-repeat center/cover; }
.coolerbag .section04 .lists_txt .list_item span { color: #fff; font-size: 32px; font-weight: 400; }

/* smoothsmooth2 — PC 줄바꿈 숨김 (모바일만 br 노출) */
.smooth2_br_pc_off { display: none; }
@media (max-width: 768px) { .smooth2_br_pc_off { display: inline; } }

/* ── smoothrun tabs (smoothrun / smoothsmooth / smoothsmooth2) ── */
.tab-content .inner { padding-top: 80px; }
.tab-content.smoothrun .text-box { max-width: 900px; margin: 0 auto; padding: 100px 0; text-align: center; }
.tab-content.smoothrun .text-box h2 { color: #1b4b45; font-size: 36px; font-weight: 700; }
.tab-content.smoothrun .text-box img { width: auto; padding: 5px 0; }
.tab-content.smoothrun .text-box p { color: #1b4b45; font-size: 36px; font-weight: 300; }
.tab-content.smoothrun .mov { max-width: 900px; height: 480px; margin: 0 auto; }
.tab-content.smoothrun .mov iframe { height: 100%; }
.tab-content.smoothrun.tab-2 { padding-bottom: 130px; }
.tab-content.smoothrun.type2 { padding: 120px 0 160px; background-color: #00321f; }
.tab-content.smoothrun.type2 .mov { position: relative; height: 450px; margin-top: 70px; }
.tab-content.smoothrun.type2 .mov video { width: 100%; height: 100%; object-fit: cover; }
.tab-content.smoothrun.type2 .mov + .mov { margin-top: 40px; }
.tab-content.smoothrun.type2 .text-box { padding: 0; }
.tab-content.smoothrun.type2 .text-box h2 { color: #fff; font-size: 45px; line-height: 55px; }
.tab-content.smoothrun.type2 .text-box img { margin-top: 74px; }
.tab-content.smoothrun.type2 .event_img { max-width: 900px; margin: 40px auto 0; font-size: 0; }
.tab-content.smoothrun.type2 .mov .btn_play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: none !important; width: 0; height: 0; border-style: solid; border-width: 20px 0 20px 34.64px; border-color: transparent transparent transparent #fff; cursor: pointer; z-index: 5; }
.tab-content.smoothrun.type2 .mov .btn_play span { display: none; }
.tab-content.smoothrun.type2 .link_btn a { display: flex; align-items: center; justify-content: center; width: 100%; max-width: 800px; margin: 40px auto 0; padding-block: 20px; background-color: #fff; border-radius: 50px; color: #00321f; font-size: 24px; font-weight: 400; line-height: 36px; }
.sub_contents.smoothrun::after { content: ""; position: absolute; left: 0; width: 342px; height: 175px; background: url(/resources/images/new.png) no-repeat 0 0 / contain; z-index: 1; }
.tab-content.tab-3 { position: relative; padding: 0; color: #fff; }

/* ── foamparadise ── */
.sub_contents.foamparadise { background: #014d39; }
.sub_contents.foamparadise .sub_banner { padding: 80px 0; }
.sub_contents.foamparadise .sub_banner .text_box { color: #fff; text-align: center; }
.sub_contents.foamparadise .sub_banner .text_box p { margin-bottom: 20px; font-size: 30px; }
.sub_contents.foamparadise .sub_banner .text_box h3 { font-size: 48px; font-weight: 700; }
.sub_contents.foamparadise .content_box { display: flex; flex-direction: column; align-items: center; width: 100%; padding: 100px 0 220px; background: url(/resources/images/foamparadise_bg.jpg) no-repeat bottom/cover; }
.sub_contents.foamparadise .content_box img { width: 709px; margin-bottom: 90px; object-fit: contain; }
.sub_contents.foamparadise .content_box .text_box p { margin-bottom: 40px; color: #1b4b45; font-size: 28px; font-weight: 400; line-height: 42px; text-align: center; }
.sub_contents.foamparadise .content_box .text_box .box1 strong { color: #d6a458; }
.sub_contents.foamparadise .content_box .text_box .box3 p { margin-bottom: 80px; }
.sub_contents.foamparadise .content_box .link_box { color: #1b4b45; }
.sub_contents.foamparadise .content_box .link_box > p { margin-bottom: 20px; font-size: 16px; font-weight: 400; text-align: center; }
.sub_contents.foamparadise .content_box .link_box .link_table { width: 710px; margin: 0 auto; }
.sub_contents.foamparadise .content_box .link_box .link_table li { display: flex; }
.sub_contents.foamparadise .content_box .link_box .link_table li div { font-size: 18px; font-weight: 400; }
.sub_contents.foamparadise .content_box .link_box .link_table li .left { width: 35%; padding: 25px 45px; background: #014d39; border-bottom: 1px solid #276857; color: #fff; }
.sub_contents.foamparadise .content_box .link_box .link_table li .right { width: 65%; background: #fff; border-top: 1px solid #1b4b45; border-right: 1px solid #1b4b45; }
.sub_contents.foamparadise .content_box .link_box .link_table li .right a { display: block; width: 100%; height: 100%; padding: 25px 30px; color: #1b4b45; }
.sub_contents.foamparadise .content_box .link_box .link_table li .right a span { position: relative; margin-right: 5px; }
.sub_contents.foamparadise .content_box .link_box .link_table li .right a span::after { content: ""; position: absolute; bottom: -5px; left: 0; display: none; width: 100%; height: 1px; background: #1b4b45; }
.sub_contents.foamparadise .content_box .link_box .link_table li .right a:hover span::after { display: block; }
.sub_contents.foamparadise .content_box .link_box .link_table li .right a:hover { background: rgba(221, 228, 227, 0.6); }
.sub_contents.foamparadise .content_box .link_box .link_table li:last-child .right { border-bottom: 1px solid #1b4b45; }
.foamparadise_slide { width: 100%; }
.foamparadise_slide .foamparadise_swiper { width: 100%; margin-bottom: 100px; }
.sub_contents .foamparadise_slide .foamparadise_swiper .swiper-slide { position: relative; max-height: 400px; box-shadow: 1px 5px 7px 0 rgba(0, 0, 0, 0.1); }
.sub_contents .foamparadise_slide .foamparadise_swiper .swiper-slide img { width: 100%; height: 100%; max-height: 400px; margin: 0; object-fit: cover; }
.sub_contents .foamparadise_slide .foamparadise_swiper .swiper-slide .swiper-slide-shadow { background: rgba(0, 0, 0, 0.4); }
.foamparadise_slide .swiper-button-next,
.foamparadise_slide .swiper-button-prev { transform: translate(-50%, -50%); color: #fff; font-size: 35px; }
.foamparadise_slide .swiper-button-next { left: 63%; }
.foamparadise_slide .swiper-button-prev { left: 37%; }
.foamparadise_slide .swiper-button-next::after,
.foamparadise_slide .swiper-button-prev::after { font-size: 35px; }

/* ── smooth_event (smoothsmooth3) ── */
.sub_contents.smooth_event.seller .da_main .inner { background: #fff; }
.sub_contents.smooth_event.seller .da_main .inner .seller_banner { position: unset; height: 960px; margin: 90px 0 0; background: url(/resources/images/smooth_event.png) no-repeat center/cover; }
.sub_contents.seller.smooth_event .da_main .inner .seller_textbox { padding: 0 44px 31px; }
.sub_contents.seller.smooth_event .da_main .inner .seller_textbox .seller_map { width: 100%; }
.sub_contents.seller.smooth_event .da_main .inner .seller_textbox .postcode_box { width: 100%; margin-top: 50px; }
.sub_contents.seller .inner .seller_textbox .postcode_box input[type="text"] { height: 64px; margin-bottom: 0; line-height: 1; }
.sub_contents.seller .inner .seller_textbox .postcode_box .btn { width: 64px; height: 64px; }
.sub_contents.seller_renewal.smooth_event .da_main .inner .seller_textbox .postcode_box .select_box input { height: 64px; background-color: #f7f7f7; line-height: 1; }
.sub_contents.seller_renewal.smooth_event .da_main .inner .seller_textbox .postcode_box .select_box input::placeholder { color: #666; }
.sub_contents.seller_renewal.smooth_event .da_main .inner .seller_textbox .postcode_box .select_box button { height: 64px; padding: 18px; line-height: 1; }

.event_info { width: 180px; height: 24px; margin: 80px auto 0; }
.event_period { display: flex; justify-content: center; margin-top: 40px; padding-block: 52px; background-color: #00321f; }
.event_period img { width: 556px; height: 130px; }
.event_method { padding-block: 80px; background-color: #f7f7f7; }
.event_method .title { width: 206px; height: 57px; margin: 0 auto 23px; }
.event_method .title img { width: 100%; height: 100%; object-fit: cover; }
.event_method .text { display: flex; align-items: center; justify-content: center; margin-top: 40px; color: #003f26; font-size: 24px; font-weight: 600; line-height: 29px; }
.event_method .text .emoji { display: block; width: 21px; height: 21px; margin-left: 4px; background: url(/resources/images/smooth_event/emoji.png) no-repeat center/cover; }
.method_list { padding-inline: 71px; }
.method_list li { display: flex; align-items: center; gap: 41px; }
.method_list li:not(:last-child) { margin-bottom: 11px; }
.method_list li .left_area .img_box { width: 206px; height: 132px; }
.method_list li .right_area .img_text { width: 268px; height: 41px; margin-bottom: 5px; }
.method_list li .right_area p { color: #003f26; font-size: 24px; font-weight: 400; line-height: 29px; }
.method_list li .right_area p.hash { margin-top: 7px; color: #29abe2; font-weight: 700; }
.event_gift { padding: 80px 53px 80px 50px; }
.event_winner { padding: 0 58px 80px 45px; }
.event_caution { padding: 50px 52px 40px 51px; }
.event_special { padding-block: 80px; background-color: #f7f7f7; text-align: center; }
.event_special h3 { margin-bottom: 20px; color: #d6a458; font-size: 38px; font-weight: 700; line-height: 53px; }
.event_special h3 span { color: #000; }
.event_special p { margin-bottom: 40px; color: #000; font-size: 24px; font-weight: 400; line-height: 36px; }
.event_special p span { color: #00321f; }
.event_special a { display: flex; align-items: center; justify-content: center; width: 682px; height: 84px; margin-inline: auto; background-color: #00321f; border-radius: 50px; color: #fff; font-size: 24px; font-weight: 400; line-height: 36px; }
.event_special a .search { width: 24px; height: 24px; margin-right: 10px; }
.event_special a .search::after { content: ""; display: block; width: 100%; height: 100%; background: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 21-4.343-4.343m0 0A8 8 0 1 0 5.344 5.344a8 8 0 0 0 11.313 11.313Z' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/cover; }

/* ── smoooooth (.smo-wrap, campaign/smoooooooth.php) ── */
.smo-wrap .seller_map { width: 832px; max-width: 100%; margin: 0 auto; transition: 0.5s; }
.smo-wrap .seller_map .hanmac_picture { display: flex; justify-content: center; margin-top: 40px; }
.smo-wrap .seller_map .hanmac_picture img { width: 180px; }
.smo-wrap .seller_map h2 { margin: 40px 0 60px; color: #fff; font-size: 20px; font-weight: 400; line-height: 1.5; text-align: center; }
.smo-wrap .seller_map h2 span { display: inline-block; margin-top: 1px; font-size: 17px; line-height: 1.5; vertical-align: top; }
.smo-wrap .seller_map .postcode_box { color: #fff; }
.smo-wrap .seller_map .map_container { position: relative; width: 100%; height: 600px; }
.smo-wrap .seller_map .map_container .map { width: 100%; height: 100%; }
.smo-wrap .seller_map .map_container .content_box { position: absolute; bottom: 30px; right: 30px; display: flex; flex-direction: column; cursor: pointer; }
.smo-wrap .seller_map .map_container .content_box .text_box { display: flex; align-items: center; padding: 10px 20px; background-color: #15513a; color: #fff; font-size: 16px; line-height: 1.3; text-align: left; }
.smo-wrap .seller_map .map_container .content_box .text_box img { width: auto; margin-right: 12px; }
.smo-wrap .seller_map .tip { margin-top: 20px; color: #fff; font-size: 15px; font-weight: 400; text-align: center; }
.smo-wrap .seller_map .tip span { margin-right: 4px; color: #1b4b45; font-weight: 400; }
.smo-wrap .seller_map .postcode_box p { margin-bottom: 26px; font-size: 16px; text-align: center; }

.smo-wrap .seller_map .map_container .find_map_popup { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none; flex-direction: column; width: 74%; padding-top: 50px; background-color: #fff; box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2); }
.smo-wrap .seller_map .map_container .find_map_popup .decoration_img { display: flex; justify-content: center; margin-bottom: 18px; }
.smo-wrap .seller_map .map_container .find_map_popup .decoration_img img { width: auto; }
.smo-wrap .seller_map .map_container .find_map_popup .name { margin-bottom: 40px; color: #004d39; font-size: 30px; text-align: center; }
.smo-wrap .seller_map .map_container .find_map_popup .address { display: flex; align-items: center; padding-left: 70px; color: #1b4b45; font-size: 18px; font-weight: 400; }
.smo-wrap .seller_map .map_container .find_map_popup .address img { width: 13px; margin-right: 6px; }
.smo-wrap .seller_map .map_container .find_map_popup .address span { margin-top: 4px; }
.smo-wrap .seller_map .map_container .find_map_popup .find_map_btn { align-self: center; width: 100%; height: 64px; margin-top: 50px; background-color: #15513a; color: #fff; font-size: 16px; cursor: pointer; }
.smo-wrap .seller_map .map_container .find_map_popup .find_map_btn img { width: 13px; margin-left: 8px; margin-bottom: 2px; }
.smo-wrap .seller_map .map_container .find_map_popup .close_btn { position: absolute; right: 30px; top: 24px; width: 24px; cursor: pointer; }
.smo-wrap .seller_map .map_container .find_map_popup .close_btn img { width: auto; }

.smo-wrap input[type="text"] { width: 100%; height: 61px; padding: 10px 20px; background-color: #ddd; border: none; font-weight: 400; line-height: 61px; }
.smo-wrap input[type="text"]::placeholder { color: #1b4b45; }
.smo-wrap .select_box { display: flex; flex-wrap: nowrap; justify-content: space-between; gap: 0; width: 100%; margin-bottom: 26px; }
.smo-wrap .btn { display: flex; align-items: center; justify-content: center; width: 64px; height: 62px; padding: 18px 20px 20px 18px; background-color: #00321f; border: none; }
.smo-slide { display: none !important; }
.smokv-img { padding-top: 0 !important; }
.smo-vo-tit { padding: 130px 0; color: #fff; text-align: center; }
.smo-vo-tit.smo-last { padding: 0; color: #fff; text-align: center; }
.smo-vo-tit h2 { display: block; width: 750px; max-width: 100%; margin: 0 auto; font-size: 45px; font-weight: 700; }
.smo-vo-tit h2 span { display: flex; align-items: center; justify-content: center; font-size: 32px; line-height: 60px; }
.smo-vo-tit h2 span:nth-of-type(2) { font-size: 45px; }
.smo-vo-tit h2 span:first-child img { width: 48%; height: auto; }
.smo-vo-tit h2 span:last-child img { width: 65%; }
.smo-vo-tit .tit-sec-box h2 span:first-child img { width: 55%; height: auto; }
.smo-vo-tit .tit-sec-box h2 span:last-child img { width: 45%; }
.smo-vo-tit .tit-sec-box h2 span:nth-of-type(2) { font-size: 30px; line-height: 60px; }
.smo-mov { width: 900px; max-width: 100%; margin: 0 auto 130px; }

.smo-wrap .privacy_confirm_popup { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none; flex-direction: column; align-items: center; width: 33%; min-width: 500px; padding: 50px 40px; background-color: #fff; box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2); z-index: 1000; }
.smo-wrap .privacy_confirm_popup .title { color: #1b4b45; font-size: 20px; font-weight: 500; text-align: center; }
.smo-wrap .privacy_confirm_popup .line { width: 100%; height: 1px; margin: 24px 0; background-color: #ddd; }
.smo-wrap .privacy_confirm_popup .info { margin-bottom: 40px; color: #1b4b45; font-size: 16px; font-weight: 400; }
.smo-wrap .privacy_confirm_popup .btn_group { display: flex; gap: 0 10px; height: 44px; }
.smo-wrap .privacy_confirm_popup .btn_group .disagree,
.smo-wrap .privacy_confirm_popup .btn_group .agree { display: flex; align-items: center; justify-content: center; width: 130px; height: 100%; font-size: 16px; cursor: pointer; }
.smo-wrap .privacy_confirm_popup .btn_group .disagree { background-color: #ddd; color: #666; }
.smo-wrap .privacy_confirm_popup .btn_group .agree { background-color: #15513a; color: #fff; }
.smo-wrap .no_result_popup { position: absolute; left: 50%; top: 67%; transform: translate(-50%, -50%); display: none; flex-direction: column; width: 44%; padding: 50px; background-color: #fff; box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2); }
.smo-wrap .no_result_popup .content { margin-bottom: 20px; color: #000; font-size: 18px; line-height: 1.4; text-align: center; }
.smo-wrap .no_result_popup .confirm_btn { align-self: center; width: 130px; height: 44px; background-color: #15513a; color: #fff; font-size: 16px; cursor: pointer; }

@media (max-width: 768px) {
    .smo-vo-tit .text-box { transform: scale(0.8); }
    .smo-vo-tit  h2 span { white-space: nowrap; }
}

/* ── foamparadise banner override ── */
.sub_contents.foamparadise .banner { padding-top: 0 !important; }

/* ══════════════════════════════════════════════════════════════════════
 * Responsive — tablet.css/mobile.css 에서 이전 (2026-06-09)
 * ══════════════════════════════════════════════════════════════════════ */

@media all and (max-width: 1024px) {
    .noti {
        width: 90%;
    }

    .sd_box {
        min-height: 250px;
    }

    .sd_txt > div {
        margin: 10px auto 0;
    }

    .sd_vstit p {
        font-size: 20px;
    }

    .sd_vstit p strong {
        font-size: 22px;
    }

    .sd_vstit p:before {
        width: 50px;
        height: 39px;
        left: -50px;
    }

    .sd_vstit p:after {
        width: 50px;
        height: 39px;
        right: -50px;
    }

    .sd_option ul {
        width: 90%;
        margin: 0 auto 0px;
    }

    .sd_option li {
        padding: 0 0 0px;
    }

    .sd_option li p {
        margin: 0 0 0px;
        font-size: 1.1em;
        padding: 4vw 6vw 4vw 2vw;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sd_option li:last-child p {
        padding: 4vw 2vw 4vw 6vw;
    }

    .sd_option ul.ending {
        max-width: 900px;
        margin: 0 auto 0px;
    }

    .sd_end ul {
        margin: 0 auto 20px;
    }

    .sd_end li p {
        padding: 12vw 4vw;
    }

    .sd_survey dl {
        padding: 5px 0;
    }

    .btn_select.tms {
        padding: 12px 25px;
        margin: 0 5px;
    }

    .sub_contents.seller .da_main .inner .seller_banner {
        width: 100%;
        height: 45vw;
        background-size: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .sub_contents.seller .da_main .inner .seller_textbox {
        padding: 50vw 20px 50px;
    }

    .sub_contents.seller .da_main .inner .seller_textbox h3 {
        font-size: 26px;
    }

    .sub_contents.seller .da_main .inner .seller_textbox h4 {
        font-size: 20px;
    }

    .sub_contents.seller .da_main .inner .seller_textbox .postcode_box {
        width: 100%;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_textbox
        .postcode_box
        .select_box {
        gap: 0px;
        margin-bottom: 22px;
    }

    .sub_contents.seller_renewal
        .da_main
        .inner
        .seller_textbox
        .postcode_box
        .select_box {
        flex-wrap: nowrap;
        gap: 0;
    }

    .sub_contents.seller .da_main .inner .seller_textbox .postcode_box select {
        width: 100%;
        margin-bottom: 24px;
    }

    .seller_tab .tab_lists li a {
        padding: 20px 0;
        color: #fff;
        font-weight: 700;
        font-size: 18px;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_content
        .content_lists
        li
        .seller_txt_box {
        font-size: 16px;
        width: 50%;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_content
        .content_lists
        li
        .img_box
        span {
        bottom: 10%;
        font-size: 2.3vw;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_content
        .content_lists
        li
        .seller_txt_box
        span {
        font-size: 16px;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_content
        .content_lists
        li
        .seller_txt_box
        p.tit {
        font-size: 23px;
    }

    .sub_contents.seller .da_main .inner .seller_content > p {
        font-size: 20px;
    }

    .sub_contents.seller .da_main .inner .seller_imgbox .img_box {
        height: 29vw;
    }

    .sub_contents.seller .da_main .inner .seller_content {
        width: 100%;
    }

    .sub_contents.seller
        .inner
        .seller_textbox
        .postcode_box
        input[type="text"] {
        width: 100%;
    }

    .sub_contents.seller .inner .seller_textbox .postcode_box .btn {
        width: 100%;
    }

    .seller3_b .btn {
        width: 100% !important;
    }

    .sub_contents.seller_renewal .inner .seller_textbox .postcode_box .btn {
        width: auto;
    }

    .sub_contents.seller .inner .seller_table {
        width: 100%;
    }

    .sub_contents.seller_renewal .inner .seller_map {
        width: 100%;
        position: relative;
    }

    .sub_contents.seller_renewal .inner .seller_map h5 {
        margin: 20px 0 30px;
    }

    .sub_contents.seller_renewal
        .inner
        .seller_map
        .map_container
        .find_map_popup
        .name {
        font-size: 26px;
    }

    .sub_contents.seller_renewal .inner .seller_map .map_container {
        height: 400px;
    }

    .sub_contents.seller .inner .seller_table li div:first-child {
        display: none;
    }

    .sub_contents.seller .inner .seller_table li div:nth-of-type(2) {
        width: calc(100% / 2 - 1px);
    }

    .sub_contents.seller .inner .seller_table li div:nth-of-type(3) {
        width: calc(100% / 2 - 1px);
    }

    .sub_contents.seller_renewal
        .inner
        .seller_map
        .map_container
        .find_map_popup {
        width: 90%;
    }

    .sub_contents.seller_renewal .no_result_popup {
        width: 90%;
    }

    .coolerbag .da_main .inner .coolerbag_banner {
        height: 500px;
        padding-top: 200px;
    }

    .coolerbag .da_main .inner .coolerbag_banner {
        background: url("/resources/images/coolerbag_visual.png") no-repeat
            center center / cover;
    }

    .coolerbag .da_main .inner .coolerbag_banner::after {
        width: 233px;
        height: 118px;
        top: 53px;
    }

    .coolerbag .da_main .inner .coolerbag_banner .txt {
        text-align: center;
    }

    .coolerbag .da_main .inner .coolerbag_banner .txt h2 {
        font-size: 45px;
    }

    .coolerbag .da_main .inner .coolerbag_banner .txt p {
        font-size: 20px;
    }

    .coolerbag .section01 .inner .wrap .imgbox {
        width: 495px;
        height: 360px;
        transform: translateX(40px);
        margin-bottom: 50px;
    }

    .coolerbag .section02 {
        padding: 0 20px 100px;
    }

    .coolerbag .section02 .inner .wrap .txt {
        margin-bottom: 30px;
    }

    .coolerbag .section02 .inner .wrap .txt span {
        font-size: 24px;
    }

    .coolerbag .section02 .inner .wrap .txt p {
        font-size: 30px;
    }

    .coolerbag .section02 .inner .wrap .lists {
        flex-wrap: nowrap;
        gap: 20px;
        width: 100%;
        margin-bottom: 80px;
    }

    .coolerbag .section02 .inner .wrap .list_item {
        width: 50%;
    }

    .coolerbag .section02 .inner .wrap .list_item .imgbox {
        width: 100%;
        height: 575px;
        overflow: hidden;
    }

    .coolerbag .section02 .inner .wrap .list_item02 .imgbox {
        /* background-image: url(../../images/coolerbag_item03.png); */
    }

    .coolerbag .section02 .inner .wrap .list_item .list_txt {
        display: none;
    }

    .coolerbag .section02 .inner .wrap .list_item .list_txt p {
        width: 40px;
        height: 40px;
        background-color: #d6a458;
        text-align: center;
        line-height: 40px;
        font-size: 20px;
        font-weight: 400;
    }

    .coolerbag .section02 .inner .wrap .list_item .list_txt span {
        color: #014d39;
        font-size: 32px;
        font-weight: 500;
        margin-top: -5px;
    }

    .coolerbag .section02 .inner .wrap .list_item01 .list_txt {
        margin-top: 250px;
    }

    .coolerbag .section02 .inner .wrap .list_item02 .list_txt {
        margin-bottom: 240px;
    }

    .coolerbag .section02 .inner .wrap .mobile_txt {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .coolerbag .section02 .inner .wrap .mobile_txt .list_txt:nth-of-type(1) {
        margin-bottom: 30px;
    }

    .coolerbag .section03 .inner {
        padding: 125px 20px 0;
    }

    .coolerbag .section03 .wrap .txt {
        margin-bottom: 25px;
    }

    .coolerbag .section03 .wrap .txt span {
        font-size: 24px;
    }

    .coolerbag .section03 .wrap .lists {
        gap: 15px;
    }

    .coolerbag .section03 .wrap .lists .list_item {
        width: 280px;
        height: 375px;
    }

    .coolerbag .section03 .wrap .lists .list_item .imgbox {
        background-size: contain;
    }

    .coolerbag .section03 .wrap .lists .list_item02 .imgbox {
        /* background-image: url(../../images/coolerbag_item05.png); */
    }

    .coolerbag .section03 .wrap .lists .list_item03 .imgbox {
        /* background-image: url(../../images/coolerbag_item06.png); */
    }

    .coolerbag .section04 {
        padding: 53px 0 0;
    }

    .coolerbag .section04 .inner {
        padding: 0 20px 110px;
    }

    .coolerbag .section04 .txt {
        width: 370px;
        height: 55px;
        margin-bottom: 40px;
    }

    .coolerbag .section04 .txt span {
        font-size: 25px;
    }

    .coolerbag .section04 .lists {
        gap: 20px;
        margin-bottom: 60px;
    }

    .coolerbag .section04 .lists .list_item {
        width: 220px;
        height: 258px;
    }

    .coolerbag .section04 .lists_txt .list_item .check {
        width: 20px;
        height: 22px;
    }

    .coolerbag .section04 .lists_txt .list_item span {
        font-size: 22px;
    }

    .tab-content.smoothrun.type2 .mov {
        height: 450px;
        margin-top: 0;
    }

    .tab-content.smoothrun.type2 .mov + .mov {
        margin-top: 40px;
    }

    .tab-content.smoothrun.type2 .text-box {
        padding: 60px 0;
    }

    .tab-content.smoothrun.type2 .text-box h2 {
        font-size: 25px;
        line-height: 1.5;
    }

    .tab-content.smoothrun.type2 .text-box img {
        margin-top: 30px;
    }

    .tab-content.smoothrun.tab-2 {
        padding: 0 20px 70px;
    }

    .tab-content.smoothrun .text-box {
        max-width: 900px;
        text-align: center;
        padding: 60px 0;
        margin: 0 auto;
    }

    .tab-content.smoothrun .text-box h2 {
        color: #1b4b45;
        font-weight: 700;
        font-size: 24px;
    }

    .tab-content.smoothrun .text-box p {
        color: #1b4b45;
        font-weight: 300;
        font-size: 26px;
    }

    .tab-content.smoothrun .mov {
        width: 100%;
        height: 480px;
        margin: 0 auto;
    }

    .tab-content.smoothrun .mov iframe {
        height: 100%;
    }

    .sub_contents.smoothrun:after {
        width: 152px;
        height: 175px;
        /* top: 53px; */
    }

    .sub_contents.foamparadise .banner {
        padding-top: 5.1vw;
    }

    .sub_contents.foamparadise .sub_banner {
        padding: 40px 0;
    }

    .sub_contents.foamparadise .sub_banner .text_box p {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .sub_contents.foamparadise .sub_banner .text_box h3 {
        font-size: 36px;
    }

    .sub_contents.foamparadise .content_box img {
        width: 400px;
        margin-bottom: 70px;
    }

    .sub_contents.foamparadise .content_box .text_box p {
        font-size: 24px;
        line-height: 32px;
    }

    .sub_contents.foamparadise .content_box .link_box {
        width: 100%;
        padding: 0 20px;
    }

    .sub_contents.foamparadise .content_box .link_box .link_table {
        width: 100%;
    }

    .sub_contents.foamparadise .content_box .link_box .link_table li div {
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sub_contents.foamparadise .content_box .link_box .link_table li .left {
        padding: 0;
    }
}

@media all and (max-width: 768px) {
    .sub_contents.smooth_event.seller .da_main .inner .seller_banner {
        height: 125vw;
        margin-top: 52px;
    }

    .sub_contents.seller.smooth_event .da_main .inner .seller_textbox {
        padding: 0 5.7vw 4.1vw;
    }

    .sub_contents.seller.smooth_event
        .da_main
        .inner
        .seller_textbox
        .postcode_box {
        margin-top: 6.5vw;
    }

    .sub_contents.seller
        .inner
        .seller_textbox
        .postcode_box
        input[type="text"] {
        height: 8.3vw;
    }

    .sub_contents.seller .inner .seller_textbox .postcode_box .btn {
        width: 8.3vw;
        height: 8.3vw;
        padding: 2.34vw 2.6vw 2.6vw 2.34vw;
    }

    .sub_contents.seller_renewal.smooth_event
        .da_main
        .inner
        .seller_textbox
        .postcode_box
        .select_box
        input {
        height: 8.33vw;
    }

    .sub_contents.seller_renewal.smooth_event
        .da_main
        .inner
        .seller_textbox
        .postcode_box
        .select_box
        button {
        height: 8.33vw;
        padding: 2.34vw;
    }

    .event_info {
        width: 23.44vw;
        height: 3.13vw;
        margin: 10.4vw auto 0;
    }

    .event_period {
        padding-block: 6.78vw;
        margin-top: 5.2vw;
    }

    .event_period img {
        width: 72.4vw;
        height: 16.93vw;
    }

    .event_method {
        padding-block: 10.42vw;
    }

    .event_method .title {
        width: 26.82vw;
        height: 7.42vw;
        margin: 0 auto 2.99vw;
    }

    .method_list {
        padding-inline: 9.24vw;
    }

    .method_list li {
        gap: 5.3vw;
    }

    .method_list li:not(:last-child) {
        margin-bottom: 1.43vw;
    }

    .method_list li .left_area .img_box {
        width: 26.82vw;
        height: 17.19vw;
    }

    .method_list li .right_area .img_text {
        width: 34.9vw;
        height: 5.34vw;
        margin-bottom: 0.65vw;
    }

    .method_list li .right_area p {
        font-size: 3.13vw;
        line-height: 3.78vw;
    }

    .method_list li .right_area p.hash {
        margin-top: 0.91vw;
    }

    .event_method .text {
        margin-top: 5.21vw;
        font-size: 3.13vw;
        line-height: 3.78vw;
    }

    .event_method .text .emoji {
        width: 2.73vw;
        height: 2.73vw;
        margin-left: 0.52vw;
    }

    .event_gift {
        padding: 10.42vw 6.9vw 10.42vw 6.51vw;
    }

    .event_winner {
        padding: 0 7.55vw 10.42vw 5.86vw;
    }

    .event_special {
        padding-block: 10.42vw;
    }

    .event_special h3 {
        margin-bottom: 2.6vw;
        font-size: 4.95vw;
        line-height: 6.9vw;
    }

    .event_special p {
        margin-bottom: 5.21vw;
        font-size: 3.13vw;
        line-height: 4.69vw;
    }

    .event_special a {
        width: 88.8vw;
        height: 10.94vw;
        border-radius: 0.65vw;
        font-size: 3.13vw;
        line-height: 4.69vw;
    }

    .event_special a .search {
        width: 3.13vw;
        height: 3.13vw;
        margin-right: 1.3vw;
    }

    .event_caution {
        padding: 6.51vw 6.77vw 5.21vw 6.64vw;
    }
}

@media all and (max-width: 512px) {
    .notice .right_btn {
        display: none;
    }

    .sd_vstit p {
        font-size: 16px;
    }

    .sub_contents.seller_renewal .da_main .privacy_confirm_popup {
        width: 90%;
        padding: 30px 20px;
        min-width: auto;
    }

    .sub_contents.seller_renewal .da_main .privacy_confirm_popup .title {
        font-size: 16px;
    }

    .sub_contents.seller_renewal .da_main .privacy_confirm_popup .line {
        margin: 16px 0;
    }

    .sub_contents.seller_renewal .da_main .privacy_confirm_popup .info {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .sub_contents.seller_renewal
        .da_main
        .privacy_confirm_popup
        .btn_group
        .disagree {
        font-size: 14px;
    }

    .sub_contents.seller_renewal
        .da_main
        .privacy_confirm_popup
        .btn_group
        .agree {
        font-size: 14px;
    }

    .sub_contents.seller .da_main .inner .seller_banner {
        /* background: url("/resources/images/seller_banner5_mo.jpg") no-repeat
 center center / 100%; */
        height: 150vw;
        /* height: 70vw; */
    }

    .sub_contents.seller .da_main .inner .seller_textbox {
        padding: 160vw 10px 50px;
        /* padding: 80vw 10px 50px; */
    }

    .sub_contents.seller .da_main .inner .seller_textbox h3 {
        font-size: 18px;
        margin-bottom: 50px;
    }

    .sub_contents.seller .da_main .inner .seller_textbox h4 {
        font-size: 17px;
    }

    .sub_contents.seller .da_main .inner .seller_textbox .postcode_box {
        width: 100%;
        margin-bottom: 26px;
    }

    .sub_contents.seller .da_main .inner .seller_textbox .postcode_box select {
        margin-bottom: 12px;
        font-size: 12px;
        height: 57px;
        line-height: 57px;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_textbox
        .postcode_box
        .select_box
        + P {
        font-size: 12px;
    }

    .sub_contents.seller
        .inner
        .seller_textbox
        .postcode_box
        input[type="text"] {
        font-size: 14px;
        height: 57px;
        line-height: 57px;
    }

    .sub_contents.seller .inner .seller_textbox .postcode_box .btn {
        font-size: 14px;
        width: 57px;
        height: 57px;
        line-height: 57px;
        padding: 15px 17px 17px 15px;
    }

    .seller3_b .btn {
        width: 100% !important;
        padding: 0 !important;
    }

    .sub_contents.seller_renewal .inner .seller_map h5 {
        font-size: 16px;
    }

    .sub_contents.seller_renewal .inner .seller_map h5 span {
        font-size: 14px;
        margin-top: 2px;
    }

    .sub_contents.seller_renewal .inner .seller_map .hanmac_picture {
        margin-top: 30px;
    }

    .sub_contents.seller_renewal .inner .seller_map .hanmac_picture img {
        width: 140px;
    }

    .sub_contents.seller_renewal .inner .seller_map .map_container {
        height: 300px;
    }

    .sub_contents.seller_renewal
        .inner
        .seller_map
        .map_container
        .content_box {
        right: 20px;
        bottom: 20px;
    }

    .sub_contents.seller_renewal
        .inner
        .seller_map
        .map_container
        .find_map_popup {
        padding-top: 25px;
    }

    .sub_contents.seller_renewal
        .inner
        .seller_map
        .map_container
        .find_map_popup
        .name {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .sub_contents.seller_renewal
        .inner
        .seller_map
        .map_container
        .find_map_popup
        .address {
        padding-left: 25px;
    }

    .sub_contents.seller_renewal
        .inner
        .seller_map
        .map_container
        .find_map_popup
        .address
        span {
        font-size: 16px;
    }

    .sub_contents.seller_renewal
        .inner
        .seller_map
        .map_container
        .find_map_popup
        .find_map_btn {
        margin-top: 25px;
    }

    .sub_contents.seller_renewal
        .inner
        .seller_map
        .map_container
        .find_map_popup
        .find_map_btn
        img {
        margin-bottom: 2px;
    }

    .sub_contents.seller_renewal
        .inner
        .seller_map
        .map_container
        .find_map_popup
        .close_btn {
        width: 20px;
        right: 20px;
        top: 16px;
    }

    .sub_contents.seller .inner .seller_table li .greenBox {
        font-size: 14px;
    }

    .sub_contents.seller .inner .seller_table li .greenBox_bd {
        font-size: 12px;
    }

    .sub_contents.seller .inner .seller_table li div:nth-of-type(2) {
        width: calc(40% - 1px);
    }

    .sub_contents.seller .inner .seller_table li div:nth-of-type(3) {
        width: calc(60% - 1px);
    }

    .seller_tab .tab_lists {
        padding-top: 0px;
    }

    .seller_tab .tab_lists li a {
        padding: 20px 10px;
    }

    .seller_tab .tab_lists li a span {
        display: block;
        margin-right: 0;
    }

    .seller_table .tab_btn {
        gap: 15px;
    }

    .sub_contents.seller .da_main .inner .seller_content > p {
        font-size: 16px;
    }

    .sub_contents.seller .da_main .inner .seller_imgbox {
        margin-bottom: 50px;
    }

    .seller_tab {
        margin-bottom: 50px;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_content
        .content_lists
        li
        .link_box {
        gap: 5px;
        align-items: flex-end;
        top: 0;
        bottom: 20px;
    }

    .sub_contents.seller .swiper-slide {
        padding: 0;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_content
        .content_lists
        li
        .swiper-pagination {
        bottom: -20px;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_content
        .content_lists
        li
        .link_box
        div {
        width: 20px;
        height: 20px;
    }

    .sub_contents.seller .da_main .inner .seller_content > p {
        margin-bottom: 50px;
        letter-spacing: -1.6px;
    }

    .seller_tab .tab_lists li a {
        font-size: 12px;
    }

    .sub_contents.seller .da_main .inner .seller_content .content_lists li {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        height: auto;
        padding: 20px 0;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_content
        .content_lists
        li
        .img_box {
        width: 75%;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_content
        .content_lists
        li
        .seller_txt_box {
        font-size: 12px;
        text-align: center;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_content
        .content_lists
        li
        .seller_txt_box
        p.tit {
        font-size: 16px;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_content
        .content_lists
        li
        .seller_txt_box
        p
        span {
        display: block;
    }

    .sub_contents.seller
        .da_main
        .inner
        .seller_content
        .content_lists
        li
        .seller_txt_box
        span {
        font-size: 12px;
    }

    .coolerbag .da_main .inner .coolerbag_banner {
        height: 350px;
        padding-top: 160px;
    }

    .coolerbag .da_main .inner .coolerbag_banner {
        background: url("/resources/images/coolerbag_visual.png") no-repeat
            center center / cover;
    }

    .coolerbag .da_main .inner .coolerbag_banner::after {
        width: 153px;
        height: 118px;
        top: 53px;
    }

    .coolerbag .da_main .inner .coolerbag_banner .txt {
        text-align: center;
    }

    .coolerbag .da_main .inner .coolerbag_banner .txt h2 {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .coolerbag .da_main .inner .coolerbag_banner .txt p {
        font-size: 14px;
    }

    .coolerbag .section01 .inner .wrap .imgbox {
        width: 345px;
        height: 260px;
        transform: translateX(20px);
        margin-bottom: 40px;
    }

    .coolerbag .section02 {
        padding: 0 20px 30px;
    }

    .coolerbag .section02 .inner .wrap .txt {
        margin-bottom: 30px;
    }

    .coolerbag .section02 .inner .wrap .txt span {
        font-size: 20px;
    }

    .coolerbag .section02 .inner .wrap .txt p {
        font-size: 24px;
    }

    .coolerbag .section02 .inner .wrap .lists {
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 40px;
    }

    .coolerbag .section02 .inner .wrap .list_item {
        width: 100%;
    }

    .coolerbag .section02 .inner .wrap .list_item .imgbox {
        width: 100%;
        height: 390px;
        overflow: hidden;
    }

    .coolerbag .section02 .inner .wrap .list_item .imgbox img {
        display: block;
        height: 390px;
        object-fit: cover;
    }

    .coolerbag .section02 .inner .wrap .list_item02 .imgbox {
        /* background-image: url(../../images/coolerbag_item03.png); */
    }

    .coolerbag .section02 .inner .wrap .list_item .list_txt {
        display: none;
    }

    .coolerbag .section02 .inner .wrap .list_item .list_txt p {
        width: 40px;
        height: 40px;
        background-color: #d6a458;
        text-align: center;
        line-height: 40px;
        font-size: 20px;
        font-weight: 400;
    }

    .coolerbag .section02 .inner .wrap .list_item .list_txt span {
        color: #014d39;
        font-size: 32px;
        font-weight: 500;
        margin-top: -5px;
    }

    .coolerbag .section02 .inner .wrap .list_item01 .list_txt {
        margin-top: 250px;
    }

    .coolerbag .section02 .inner .wrap .list_item02 .list_txt {
        margin-bottom: 240px;
    }

    .coolerbag .section02 .inner .wrap .lists .list_item {
        width: 100%;
    }

    .coolerbag .section02 .inner .wrap .mobile_txt {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
    }

    .coolerbag .section02 .inner .wrap .mobile_txt .list_txt {
        gap: 10px;
    }

    .coolerbag .section02 .inner .wrap .mobile_txt .list_txt:nth-of-type(1) {
        margin-bottom: 30px;
    }

    .coolerbag .section02 .inner .wrap .mobile_txt .list_txt span {
        font-size: 14px;
        margin-top: -2px;
    }

    .coolerbag .section02 .inner .wrap .mobile_txt .list_txt p {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 14px;
    }

    .coolerbag .section03 .inner {
        padding: 25px 20px 0;
    }

    .coolerbag .section03 .wrap .txt {
        margin-bottom: 25px;
    }

    .coolerbag .section03 .wrap .txt span {
        font-size: 20px;
    }

    .coolerbag .section03 .wrap .lists {
        gap: 15px;
        flex-wrap: wrap;
    }

    .coolerbag .section03 .wrap .lists .list_item {
        width: 100%;
        height: 405px;
    }

    .coolerbag .section03 .wrap .lists .list_item .imgbox {
        background-size: cover;
        overflow: hidden;
    }

    .coolerbag .section03 .wrap .lists .list_item .imgbox img {
        display: block;
        object-fit: cover;
    }

    .coolerbag .section03 .wrap .lists .list_item02 .imgbox {
        /* background-image: url(../../images/coolerbag_item05.png); */
    }

    .coolerbag .section03 .wrap .lists .list_item03 .imgbox {
        /* background-image: url(../../images/coolerbag_item06.png); */
    }

    .coolerbag .section04 {
        padding: 53px 0 0;
    }

    .coolerbag .section04 .inner {
        padding: 0 20px 50px;
    }

    .coolerbag .section04 .txt {
        width: 240px;
        height: 45px;
        margin-bottom: 40px;
    }

    .coolerbag .section04 .txt span {
        font-size: 20px;
    }

    .coolerbag .section04 .lists {
        gap: 20px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .coolerbag .section04 .lists .list_item {
        width: 100%;
        height: 354px;
    }

    .coolerbag .section04 .lists .list_item img {
        display: contents;
    }

    .coolerbag .section04 .lists_txt .list_item .check {
        width: 20px;
        height: 22px;
    }

    .coolerbag .section04 .lists_txt .list_item span {
        font-size: 16px;
    }

    .coolerbag .section04 .lists .list_item01 .imgbox {
        overflow: hidden;
    }

    .coolerbag .section04 .lists .list_item01 .imgbox img {
        display: block;
        object-fit: cover;
    }

    .coolerbag .section04 .lists .list_item02 .imgbox {
        overflow: hidden;
    }

    .coolerbag .section04 .lists .list_item02 .imgbox img {
        display: block;
        object-fit: cover;
    }

    .tab-content.smoothrun.type2 .mov {
        height: 380px;
    }

    .tab-content.smoothrun.type2 .mov + .mov {
        margin-top: 40px;
    }

    .tab-content.smoothrun.type2 .text-box {
        padding: 30px 0;
    }

    .tab-content.smoothrun.type2 .text-box h2 {
        font-size: 16px;
    }

    .tab-content.smoothrun.type2 .link_btn a {
        font-size: 4vw;
        padding-block: 2vw;
        margin-top: 6vw;
    }

    .tab-content.smoothrun.type2 .link_btn a .search_icon {
        width: 4vw;
        height: 4.2vw;
        margin: 0 1vw 0.2vw 0;
    }

    .tab-content.smoothrun.tab-2 {
        padding: 0 20px 70px;
    }

    .tab-content.smoothrun .text-box {
        max-width: 900px;
        text-align: center;
        padding: 30px 0;
        margin: 0 auto;
    }

    .tab-content.smoothrun .text-box h2 {
        color: #1b4b45;
        font-weight: 700;
        font-size: 16px;
    }

    .tab-content.smoothrun .text-box img {
        width: 60%;
    }

    .tab-content.smoothrun .text-box p {
        color: #1b4b45;
        font-weight: 300;
        font-size: 16px;
    }

    .tab-content.smoothrun .mov {
        width: 100%;
        height: 380px;
        margin: 0 auto;
    }

    .tab-content.smoothrun .mov iframe {
        height: 100%;
    }

    .sub_contents.smoothrun:after {
        width: 122px;
        height: 55px;
    }

    .sub_contents.foamparadise .banner {
        padding-top: 35px;
    }

    .sub_contents.foamparadise .sub_banner {
        padding: 20px 0;
    }

    .sub_contents.foamparadise .sub_banner .text_box p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .sub_contents.foamparadise .sub_banner .text_box h3 {
        font-size: 20px;
    }

    .sub_contents.foamparadise .content_box {
        padding: 50px 0 100px;
    }

    .sub_contents.foamparadise .content_box img {
        width: 300px;
        margin-bottom: 45px;
    }

    .sub_contents.foamparadise .content_box .text_box p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 21px;
    }

    .sub_contents.foamparadise .content_box .text_box .box3 p {
        margin-bottom: 40px;
    }

    .sub_contents.foamparadise .content_box .link_box {
        width: 100%;
        padding: 0 25px;
    }

    .sub_contents.foamparadise .content_box .link_box > p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .sub_contents.foamparadise .content_box .link_box .link_table {
        width: 100%;
    }

    .sub_contents.foamparadise .content_box .link_box .link_table li div {
        font-size: 12px;
        display: flex;
        align-items: center;
    }

    .sub_contents.foamparadise .content_box .link_box .link_table li .left {
        padding: 10px;
    }

    .sub_contents.foamparadise .content_box .link_box .link_table li .right a {
        padding: 10px;
    }

    .sub_contents.foamparadise
        .content_box
        .link_box
        .link_table
        li
        .right
        a
        span {
        position: relative;
        margin-right: 5px;
    }

    .sub_contents.foamparadise
        .content_box
        .link_box
        .link_table
        li
        .right
        a
        span::after {
        display: none;
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #1b4b45;
    }

    .sub_contents.foamparadise
        .content_box
        .link_box
        .link_table
        li
        .right
        a:hover
        span::after {
        display: block;
    }

    .sub_contents.foamparadise
        .content_box
        .link_box
        .link_table
        li
        .right
        a:hover {
        background: rgba(221, 228, 227, 0.6);
    }

    .sub_contents.foamparadise
        .content_box
        .link_box
        .link_table
        li:last-child
        .right {
        border-bottom: 1px solid #1b4b45;
    }

    .foamparadise_slide {
        padding: 0 20px;
    }

    .foamparadise_slide .foamparadise_swiper {
        padding: 0 50px;
    }

    .smo-slide {
        display: block !important;
    }

    .smokv-img {
        display: none;
    }

    .smo-wrap .seller_map {
        width: 100%;
    }

    .smo-vo-tit h2 {
        width: 100%;
        font-size: 16px;
    }

    .smo-vo-tit h2 span {
        font-size: 16px;
    }

    .smo-vo-tit h2 span:nth-of-type(2),
    .smo-vo-tit .tit-sec-box h2 span:nth-of-type(2) {
        font-size: 20px;
    }

    .smo-vo-tit {
        padding: 50px 0;
    }

    .smo-mov {
        width: 100%;
        margin-bottom: 50px;
    }

    .smo-wrap .seller_map .hanmac_picture img {
        width: 140px;
    }

    .smo-wrap .seller_map h2 {
        font-size: 16px;
    }

    .smo-wrap .select_box {
        padding: 0 10px;
    }

    .smo-wrap .seller_map .postcode_box p {
        font-size: 12px;
    }

    .smo-wrap .seller_map .map_container {
        width: 95%;
        margin: auto;
        height: 300px;
    }

    .smo-wrap input[type="text"]::placeholder {
        font-size: 14px;
    }
}

/* ── Search Shop (CTA) ── */
.hdc-serch-shop { background: url("/resources/images/extracreamydraftcan/hdcss-bg.webp") no-repeat; background-size: cover; }
.hdcss-tit h2 { padding-top: 110px; text-align: center; color: #fff; font-size: 54px; font-weight: 700; letter-spacing: -0.7px; }
.hdcss-txt p { padding: 52px 0; text-align: center; color: #c6a56d; font-size: 28px; font-weight: 500; letter-spacing: -0.7px; }
.hdcss-btn { margin-top: 40px; padding-bottom: 110px; text-align: center; }
.hdcss-btn a { display: block; width: 579px; margin: 0 auto; padding: 10px 40px; background: linear-gradient(to right, #c6a56d 0%, #d19f58 100%); color: #fff; font-size: 34px; font-weight: 600; text-align: center; border-radius: 10px; letter-spacing: -0.7px; }