﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --yellow:  #F5C518;
      --yellow2: #FFD700;
      --dark:    #0D0D0D;
      --gray:    #AAAAAA;
      --white:   #FFFFFF;
      --max-w:   1280px;
    }

    html, body { height: 100%; }

    body {
      font-family: 'Noto Sans KR', sans-serif;
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* 배경 이미지 */
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('/images/main_2.jpg') center center / cover no-repeat;
      z-index: 0;
    }
    /* 배경 오버레이 - 왼쪽은 짙게, 오른쪽은 투명 */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(10,10,10,.88) 0%,
        rgba(10,10,10,.72) 40%,
        rgba(10,10,10,.25) 70%,
        rgba(10,10,10,.10) 100%
      );
    }

    /* ===== HERO INNER (2-col) ===== */
    .hero-inner {
      position: relative;
      z-index: 3;
      max-width: var(--max-w);
      width: 100%;
      margin: 0 auto;
      padding: 120px 2.5rem 5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
    }

    /* 왼쪽 콘텐츠 */
    .hero-left { flex: 1; max-width: 600px; }

    /* 이벤트 배지 */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(245,197,24,.12);
      border: 1px solid rgba(245,197,24,.4);
      color: var(--yellow);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .15em;
      padding: .32rem .88rem;
      border-radius: 2px;
      text-transform: uppercase;
      margin-bottom: 1.3rem;
    }
    .hero-badge i { font-size: .68rem; }

    /* 타이틀 */
    .hero-title {
      font-weight: 900;
      line-height: 1.35;
      margin-bottom: 1.5rem;
    }
    .hero-title .line-korean {
      display: block;
      max-width: 100%;
      font-size: clamp(1.9rem, 4vw, 2.7rem);
      color: var(--yellow);
      letter-spacing: -.01em;
      white-space: nowrap;
    }
    .hero-title .line-date {
      display: block;
      font-size: clamp(.85rem, 1.6vw, 5.05rem);
      font-weight: 600;
      color: rgba(255,255,255);
      letter-spacing: .04em;
      margin-top: .45rem;
    }
    .hero-title .line-tagline {
      display: flex;
      align-items: center;
      gap: .8rem;
      margin-top: .65rem;
      font-size: clamp(.95rem, 1.7vw, 1.2rem);
      font-weight: 900;
      color: #FFE08A;
      letter-spacing: .07em;
      flex-wrap: wrap;
    }

    /* 태그라인 오른쪽 장식 */
    .tagline-deco {
      display: flex;
      align-items: center;
      gap: .45rem;
      flex-shrink: 0;
    }
    .tagline-deco .t-line {
      display: block;
      width: 28px;
      height: 2px;
      background: var(--yellow);
      border-radius: 1px;
    }
    .tagline-deco .t-icon {
      width: 28px; height: 28px;
      background: var(--yellow);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--dark);
      font-size: .78rem;
    }
    .tagline-deco .t-dots {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .tagline-deco .t-dots span {
      display: block;
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--yellow);
      opacity: .75;
    }

    /* 정보 리스트 */
    .hero-info {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .55rem;
    }
    .hero-info li {
      display: flex;
      align-items: center;
      gap: .65rem;
      font-size: .93rem;
      color: #cccccc;
      line-height: 1.5;
    }
    .hero-info li i {
      color: var(--yellow);
      font-size: .88rem;
      width: 17px;
      text-align: center;
      flex-shrink: 0;
    }

    /* 오른쪽: 카운트다운 */
    .hero-right { flex-shrink: 0; }

    .countdown-wrap {
      background: rgba(8,8,8,.65);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px;
      padding: 1.8rem 2.2rem 1.7rem;
      text-align: center;
      min-width: 390px;
    }

    .countdown-header {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .15em;
      color: var(--yellow);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
    }
    .countdown-header i { font-size: .78rem; }

    .countdown-units {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .45rem;
    }

    .countdown-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .55rem;
    }

    /* flip-clock 카드 */
    .countdown-num {
      position: relative;
      width: 78px; height: 78px;
      background: #1c1c1e;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-size: 2.9rem;
      font-weight: 700;
      color: var(--white);
      box-shadow: 0 6px 20px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.07);
      overflow: hidden;
      z-index: 0;
    }
    .countdown-num::after {
      content: '';
      position: absolute;
      left: 0; right: 0; top: 50%;
      height: 1px;
      background: rgba(0,0,0,.55);
      z-index: 2;
    }
    .countdown-num::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
        rgba(255,255,255,.07) 0%,
        transparent           50%,
        rgba(0,0,0,.12)      100%);
      z-index: 1;
    }
    .countdown-num span { position: relative; z-index: 3; }

    .countdown-label {
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .13em;
      color: var(--gray);
      text-transform: uppercase;
    }

    .cd-colon {
      font-family: 'Oswald', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--yellow);
      margin-bottom: 1.55rem;
      line-height: 1;
      opacity: .8;
    }

    /* ===== 반응형 ===== */
    @media (max-width: 1060px) {
      .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.8rem;
        padding-bottom: 4.5rem;
      }
      .hero-left { max-width: 100%; }
      .countdown-wrap { min-width: 0; width: 100%; }
    }
    @media (max-width: 600px) {
      .hero-inner {
        padding: 100px 1.5rem 4rem;
        align-items: center;
        text-align: center;
      }
      .hero-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .hero-title .line-korean {
        font-size: clamp(1.05rem, 4.5vw, 1.55rem);
        letter-spacing: -.03em;
      }
      .hero-title .line-tagline { justify-content: center; }
      .hero-info li { justify-content: center; }
      .countdown-num { width: 64px; height: 64px; font-size: 2.3rem; }
      .countdown-wrap { padding: 1.3rem .9rem 1.2rem; }
      .cd-colon { font-size: 1.6rem; }
    }

    /* ===== INTRO ===== */
    .intro-section {
      position: relative;
      background: #ffffff;
      border-top: 1px solid #e4e0da;
      border-bottom: 1px solid #e4e0da;
      overflow: hidden;
    }

    /* 배경 패턴 */
    .intro-section::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 420px; height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245,197,24,.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .intro-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 5.5rem 2.5rem;
      display: flex;
      align-items: center;
      gap: 4.5rem;
    }

    /* 왼쪽 텍스트 */
    .intro-content {
      flex: 1;
      min-width: 0;
    }

    .intro-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(245,197,24,.14);
      border: 1px solid rgba(245,197,24,.45);
      color: #b8860b;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .16em;
      padding: .3rem .85rem;
      border-radius: 2px;
      text-transform: uppercase;
      margin-bottom: 1.3rem;
    }
    .intro-eyebrow i { font-size: .66rem; }

    .intro-title {
      font-size: clamp(1.55rem, 3vw, 2.4rem);
      font-weight: 900;
      line-height: 1.42;
      letter-spacing: -.02em;
      color: #1b1b1b;
      margin-bottom: .6rem;
    }
    .intro-title em {
      font-style: normal;
      color: #c8930a;
    }

    .intro-divider {
      display: flex;
      align-items: center;
      gap: .7rem;
      margin: 1.4rem 0 1.6rem;
    }
    .intro-divider .d-bar {
      width: 36px; height: 3px;
      background: var(--yellow);
      border-radius: 2px;
    }
    .intro-divider .d-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--yellow);
      opacity: .5;
    }

    .intro-text {
      color: #444;
      font-size: clamp(.95rem, 1.5vw, 1.05rem);
      line-height: 1.95;
      word-break: keep-all;
    }
    .intro-text p + p { margin-top: 1.15rem; }

    .intro-highlight {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      margin-top: 2rem;
      background: #1b1b1b;
      color: #fff;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .04em;
      padding: .65rem 1.2rem;
      border-radius: 4px;
    }
    .intro-highlight i { color: var(--yellow); }

    /* 오른쪽 이미지 */
    .intro-image-wrap {
      flex-shrink: 0;
      width: 420px;
      position: relative;
    }

    .intro-image-frame {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,.18);
    }
    .intro-image-frame img {
      display: block;
      width: 100%;
      height: 520px;
      object-fit: cover;
      object-position: center;
    }

    /* 이미지 위 배지 */
    .intro-img-badge {
      position: absolute;
      bottom: -18px;
      left: -22px;
      background: var(--yellow);
      color: #1b1b1b;
      font-weight: 900;
      font-size: .78rem;
      letter-spacing: .04em;
      padding: .8rem 1.2rem;
      border-radius: 10px;
      box-shadow: 0 8px 28px rgba(0,0,0,.22);
      line-height: 1.5;
      z-index: 5;
    }
    .intro-img-badge strong {
      display: block;
      font-size: 1.25rem;
      font-weight: 900;
      letter-spacing: -.01em;
    }

    /* 우측 상단 장식 원 */
    .intro-image-deco {
      position: absolute;
      top: -14px;
      right: -14px;
      width: 80px; height: 80px;
      border-radius: 50%;
      border: 3px solid var(--yellow);
      opacity: .35;
      z-index: 0;
    }
    .intro-image-deco::before {
      content: '';
      position: absolute;
      inset: 10px;
      border-radius: 50%;
      border: 2px solid var(--yellow);
    }

    @media (max-width: 1060px) {
      .intro-inner { gap: 3rem; }
      .intro-image-wrap { width: 340px; }
      .intro-image-frame img { height: 420px; }
    }
    @media (max-width: 800px) {
      .intro-inner {
        flex-direction: column;
        padding: 4rem 2rem 5rem;
        gap: 3rem;
      }
      .intro-image-wrap { width: 100%; }
      .intro-image-frame img { height: 280px; }
      .intro-img-badge { left: 50%; transform: translateX(-50%); white-space: nowrap; }
    }
    @media (max-width: 600px) {
      .intro-inner { padding: 3.2rem 1.5rem 4rem; }
      .intro-title { margin-bottom: .5rem; }
      .intro-text { line-height: 1.85; }
    }

    /* ===== PURPOSE ===== */
    .purpose-section {
      background: #f3f3f3;
      border-top: 1px solid #e8e8e8;
    }

    .purpose-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 5.2rem 2.5rem 5.4rem;
    }

    .purpose-cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }
    .purpose-card {
      background: #fff;
      border: 1px solid #e4e4e4;
      border-radius: 8px;
      padding: 1.2rem 1.05rem;
      text-align: left;
    }
    .purpose-card-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff7dc;
      color: #b8860b;
      font-size: .95rem;
      margin-bottom: .75rem;
    }
    .purpose-card-title {
      color: #1b1b1b;
      font-size: .96rem;
      font-weight: 800;
      line-height: 1.5;
      letter-spacing: -.01em;
      margin-bottom: .55rem;
      word-break: keep-all;
    }
    .purpose-card-text {
      color: #444;
      font-size: .88rem;
      line-height: 1.75;
      word-break: keep-all;
    }

    @media (max-width: 1100px) {
      .purpose-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 600px) {
      .purpose-inner { padding: 3.5rem 1.5rem 4.5rem; }
      .purpose-cards {
        grid-template-columns: 1fr;
      }
    }

    /* ===== OVERVIEW ===== */
    .overview-section {
      background: #eeeeee;
      border-top: 1px solid #e8e8e8;
    }

    .overview-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 5.5rem 2.5rem 6rem;
    }

    /* 섹션 헤더 — 가운데 정렬 */
    .overview-head {
      text-align: center;
      margin-bottom: 3rem;
    }
    .ov-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: #b8860b;
      margin-bottom: .8rem;
    }
    .ov-eyebrow i { font-size: .66rem; }
    .ov-title {
      font-size: clamp(1.7rem, 3.2vw, 2.4rem);
      font-weight: 900;
      color: #1b1b1b;
      letter-spacing: -.02em;
      line-height: 1.2;
    }
    .ov-title span { color: #c8930a; }
    .ov-title-deco {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .55rem;
      margin-top: 1rem;
    }
    .ov-title-deco .td-bar {
      width: 32px; height: 2px;
      background: #d4a017;
      border-radius: 1px;
    }
    .ov-title-deco .td-diamond {
      width: 7px; height: 7px;
      background: #d4a017;
      transform: rotate(45deg);
      border-radius: 1px;
    }

    /* 정보 테이블 */
    .ov-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 2.5rem;
    }
    .ov-table tr {
      border-bottom: 1px dashed #cfcfcf;
    }
    .ov-table tr:first-child { border-top: 2px solid #1b1b1b; }
    .ov-table tr:last-child  { border-bottom: 2px solid #1b1b1b; }
    .ov-table th {
      width: 160px;
      padding: 1.05rem 1.2rem 1.05rem 0;
      font-size: .82rem;
      font-weight: 700;
      color: #555;
      letter-spacing: .03em;
      vertical-align: top;
      white-space: nowrap;
      text-align: left;
    }
    .ov-table th i {
      color: #c8930a;
      margin-right: .45rem;
      font-size: .75rem;
    }
    .ov-table td {
      padding: 1.05rem 0;
      font-size: .95rem;
      color: #222;
      line-height: 1.7;
      vertical-align: top;
      text-align: left;
    }

    .ov-table .ov-row-dashed th {
      width: 180px;
    }

    /* 참가비 행 내 카드 */
    .fee-row-cards {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .fee-pill {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: .65rem 1.1rem;
      text-align: center;
      min-width: 110px;
    }
    .fee-pill-cat {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .1em;
      color: #888;
      text-transform: uppercase;
      margin-bottom: .3rem;
    }
    .fee-pill-price {
      font-family: 'Oswald', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #1b1b1b;
    }
    .fee-pill-note {
      font-size: .72rem;
      color: #c8930a;
      margin-top: .2rem;
      font-weight: 600;
    }

    /* 칩 배너 */
    .ov-chip-banner {
      display: flex;
      align-items: center;
      gap: .8rem;
      background: #fafafa;
      border: 1px solid #e8e8e8;
      border-left: 3px solid #d4a017;
      border-radius: 6px;
      padding: .9rem 1.2rem;
    }
    .ov-chip-banner i {
      color: #c8930a;
      font-size: .95rem;
      flex-shrink: 0;
    }
    .ov-chip-banner span {
      font-size: .88rem;
      color: #444;
      line-height: 1.6;
    }
    .ov-chip-banner strong { color: #1b1b1b; }

    @media (max-width: 700px) {
      .ov-table th { width: 110px; font-size: .78rem; }
      .ov-table td { font-size: .88rem; }
      .fee-row-cards { gap: .6rem; }
      .fee-pill { min-width: 90px; padding: .55rem .8rem; }
      .ov-table .ov-row-dashed th { width: 110px; }
    }
    @media (max-width: 600px) {
      .overview-inner { padding: 3.5rem 1.5rem 4.5rem; }
      .ov-table th { display: block; width: 100%; padding-bottom: .1rem; }
      .ov-table td { display: block; padding-top: .2rem; padding-bottom: 1rem; }
      .ov-table tr:first-child { border-top: 2px solid #1b1b1b; }
    }

    /* ===== CTA BANNER ===== */
    .cta-section {
      position: relative;
      overflow: hidden;
    }
    .cta-bg {
      position: absolute;
      inset: 0;
      background: url('/images/cta_bg.jpg') center center / cover no-repeat;
      z-index: 0;
    }
    .cta-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(10,10,10,.62);
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .cta-kicker {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: .7rem;
    }
    .cta-title {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.3;
      letter-spacing: -.02em;
    }
    .cta-title em {
      font-style: normal;
      color: var(--yellow);
    }
    .cta-sub {
      margin-top: .7rem;
      font-size: .95rem;
      color: rgba(255,255,255,.7);
    }
    .cta-actions {
      display: flex;
      gap: 1rem;
      flex-shrink: 0;
      flex-wrap: wrap;
    }
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      padding: .95rem 2rem;
      font-size: .92rem;
      font-weight: 700;
      border-radius: 4px;
      text-decoration: none;
      letter-spacing: .03em;
      transition: transform .2s, box-shadow .2s;
    }
    .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
    .cta-btn.primary {
      background: var(--yellow);
      color: #111;
    }
    .cta-btn.secondary {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.3);
      color: #fff;
      backdrop-filter: blur(6px);
    }
    @media (max-width: 800px) {
      .cta-inner { flex-direction: column; align-items: flex-start; padding: 4rem 2rem; }
    }
    @media (max-width: 600px) {
      .cta-inner { padding: 3.5rem 1.5rem; }
      .cta-btn { padding: .85rem 1.5rem; font-size: .85rem; }
    }

    /* ===== NOTICE ===== */
    .notice-section {
      background: #f9f7f4;
      border-top: 1px solid #e8e8e8;
    }
    .notice-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 2.5rem 5.5rem;
    }

    /* ===== FAQ ===== */
    .faq-section {
      background: #fff;
      border-top: 1px solid #e8e8e8;
    }
    .faq-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 2.5rem 5.5rem;
    }

    /* 공통 섹션 헤더 */
    .sec-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 2rem;
      gap: 1rem;
    }
    .sec-kicker {
      font-size: .67rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #b8860b;
      margin-bottom: .4rem;
    }
    .sec-kicker i { font-size: .64rem; margin-right: .3rem; }
    .sec-title {
      font-size: clamp(1.4rem, 2.8vw, 2rem);
      font-weight: 900;
      color: #1b1b1b;
      letter-spacing: -.02em;
    }
    .sec-title span { color: #c8930a; }
    .sec-more {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .8rem;
      font-weight: 700;
      color: #555;
      text-decoration: none;
      border: 1px solid #ddd;
      padding: .45rem 1rem;
      border-radius: 4px;
      letter-spacing: .03em;
      white-space: nowrap;
      transition: background .2s, color .2s;
      flex-shrink: 0;
    }
    .sec-more:hover { background: #1b1b1b; color: #fff; border-color: #1b1b1b; }
    .sec-more i { font-size: .72rem; }

    /* 공지사항 목록 */
    .notice-list {
      list-style: none;
      border-top: 2px solid #1b1b1b;
    }
    .notice-list li {
      border-bottom: 1px dashed #cfcfcf;
    }
    .notice-list li a {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.05rem 0;
      text-decoration: none;
      color: inherit;
      transition: color .15s;
    }
    .notice-list li a:hover .notice-title-text { color: #c8930a; }
    .notice-badge {
      flex-shrink: 0;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .08em;
      background: #f0f0f0;
      color: #666;
      padding: .18rem .6rem;
      border-radius: 2px;
    }
    .notice-badge.new {
      background: rgba(245,197,24,.18);
      color: #b8860b;
    }
    .notice-title-text {
      flex: 1;
      font-size: .95rem;
      font-weight: 600;
      color: #222;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .notice-date {
      flex-shrink: 0;
      font-size: .78rem;
      color: #999;
    }
    .notice-empty {
      padding: 1.2rem 0;
      color: #777;
      font-size: .92rem;
    }

    /* FAQ 아코디언 */
    .faq-list {
      border-top: 2px solid #1b1b1b;
    }
    .faq-item {
      border-bottom: 1px dashed #cfcfcf;
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 1.1rem 0;
      display: flex;
      align-items: center;
      gap: .8rem;
      cursor: pointer;
      font-family: inherit;
    }
    .faq-q-mark {
      flex-shrink: 0;
      width: 26px; height: 26px;
      border-radius: 50%;
      background: #1b1b1b;
      color: #fff;
      font-size: .72rem;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      letter-spacing: 0;
    }
    .faq-q-text {
      flex: 1;
      font-size: .95rem;
      font-weight: 700;
      color: #1b1b1b;
    }
    .faq-q-ico {
      flex-shrink: 0;
      color: #aaa;
      font-size: .78rem;
      transition: transform .25s;
    }
    .faq-item.open .faq-q-ico { transform: rotate(180deg); }
    .faq-a {
      display: none;
      padding: 0 0 1.1rem 3rem;
      font-size: .9rem;
      color: #555;
      line-height: 1.8;
    }
    .faq-item.open .faq-a { display: block; }
    .faq-empty {
      padding: 1.2rem 0;
      color: #777;
      font-size: .92rem;
      border-bottom: 1px dashed #cfcfcf;
    }

    @media (max-width: 700px) {
      .sec-head { align-items: flex-start; flex-direction: column; gap: .6rem; }
    }
    @media (max-width: 600px) {
      .notice-inner, .faq-inner { padding: 3.5rem 1.5rem 4.5rem; }
      .notice-title-text { font-size: .88rem; }
    }
