/**
 * クリスマス仕様スタイル（SVG版）
 * La villa Hiroo トップページ用
 */

/* ====================================
   Pick up treatments セクション - クリスマス仕様
   ==================================== */
.top-pickup--christmas {
    position: relative;
    overflow: hidden;
}

.christmas-snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    overflow: hidden;
}

.christmas-snowflakes .snowflake {
    position: absolute;
}

.christmas-snowflakes .snowflake svg {
    width: 100%;
    height: 100%;
}

/* 雪の結晶の位置設定 */
.christmas-snowflakes .sf-large-1 { width: clamp(44px, 6vw, 88px); height: auto; aspect-ratio: 88 / 99; top: 5%; right: 3%; }
.christmas-snowflakes .sf-large-2 { width: clamp(44px, 6vw, 88px); height: auto; aspect-ratio: 88 / 99; top: 25%; right: 1%; }
.christmas-snowflakes .sf-large-3 { width: clamp(44px, 6vw, 88px); height: auto; aspect-ratio: 88 / 99; top: 55%; left: 3%; }
.christmas-snowflakes .sf-medium-1 { width: clamp(38px, 5vw, 77px); height: auto; aspect-ratio: 77 / 87; top: 0; right: 8%; }
.christmas-snowflakes .sf-medium-2 { width: clamp(38px, 5vw, 77px); height: auto; aspect-ratio: 77 / 87; top: 2%; left: 1%; }
.christmas-snowflakes .sf-medium-3 { width: clamp(38px, 5vw, 77px); height: auto; aspect-ratio: 77 / 87; top: 12%; left: 5%; }
.christmas-snowflakes .sf-medium-4 { width: clamp(38px, 5vw, 77px); height: auto; aspect-ratio: 77 / 87; top: 38%; left: 0; }
.christmas-snowflakes .sf-small-1 { width: clamp(22px, 3vw, 44px); height: auto; aspect-ratio: 44 / 50; top: 12%; right: 6%; }
.christmas-snowflakes .sf-small-2 { width: clamp(22px, 3vw, 44px); height: auto; aspect-ratio: 44 / 50; top: 18%; left: 0; }
.christmas-snowflakes .sf-small-3 { width: clamp(22px, 3vw, 44px); height: auto; aspect-ratio: 44 / 50; top: 28%; left: 6%; }
.christmas-snowflakes .sf-small-4 { width: clamp(22px, 3vw, 44px); height: auto; aspect-ratio: 44 / 50; top: 40%; right: 8%; }
.christmas-snowflakes .sf-small-5 { width: clamp(22px, 3vw, 44px); height: auto; aspect-ratio: 44 / 50; top: 50%; right: 2%; }

/* サンタアイコン - Pick up treatments */
.section-title--christmas {
    position: relative;
}

.section-title--christmas .section-title__icon {
    position: absolute;
    left: -60px;
    top: -10px;
}

.section-title--christmas .santa-icon {
    width: clamp(36px, 4vw, 54px);
    height: auto;
}

/* Pick up カード - ゴールドボーダー */
.top-pickup__item--christmas {
    border: 2px solid #906e1b !important;
    background: rgba(255, 255, 255, 0.7) !important;
}

/* ====================================
   Monthly Campaign セクション - クリスマス仕様
   背景画像が画面幅いっぱいに広がるバージョン
   ==================================== */

/* 親要素の overflow を解除（重要！） */
.top-welcome {
    overflow: visible !important;
}

.top-welcome > .c-container {
    overflow: visible !important;
}

/* Monthly Campaignセクション本体 */
.top-monthly-compaign--christmas {
    position: relative;
    padding: 0 !important;
    margin: 40px 0 0 0 !important;
    background: none !important;
    overflow: visible !important;
}

/* 背景画像コンテナ - 画面幅いっぱい */
.top-monthly-compaign--christmas .campaign-bg-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background-image: url('../images/christmas/campaign-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 40px 0 0 0;
}

/* 背景オーバーレイ */
.top-monthly-compaign--christmas .campaign-bg-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

/* コンテナ */
.top-monthly-compaign--christmas .compaign-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクションタイトル */
.section-title--christmas-campaign {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.section-title--christmas-campaign .title-with-santa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title--christmas-campaign .santa-icon {
    width: 54px;
    height: auto;
}

.section-title--christmas-campaign .section-title__en {
    color: #AF9454 !important;
    font-family: 'Cormorant SC', serif;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.02em;
}

.section-title--christmas-campaign .section-title__jp {
    color: #AF9454 !important;
    font-size: 36px;
    margin-top: 10px;
    font-weight: 500;
}

.section-title--christmas-campaign .section-title__jp::before {
    background-color: #AF9454 !important;
}

/* スライダーコンテンツ */
.top-monthly-compaign--christmas .content {
    margin-top: 40px;
    padding: 0 0 40px 0;
}

/* スライダーのナビゲーションボタン - 白色 */
.top-monthly-compaign--christmas .swiper-action-btn .button-prev svg circle,
.top-monthly-compaign--christmas .swiper-action-btn .button-next svg circle {
    stroke: white !important;
}

.top-monthly-compaign--christmas .swiper-action-btn .button-prev svg path,
.top-monthly-compaign--christmas .swiper-action-btn .button-next svg path {
    stroke: white !important;
}

/* Merry Christmas部分（背景画像の下部に含まれる） */
.top-monthly-compaign--christmas .christmas-footer {
    width: 100%;
    height: 200px;
    background: transparent;
    position: relative;
    z-index: 1;
}

/* ====================================
   アニメーション
   ==================================== */
@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.christmas-snowflakes .snowflake {
    animation: twinkle 3s ease-in-out infinite;
}

.christmas-snowflakes .sf-large-1 { animation-delay: 0s; }
.christmas-snowflakes .sf-large-2 { animation-delay: 1s; }
.christmas-snowflakes .sf-large-3 { animation-delay: 2s; }
.christmas-snowflakes .sf-medium-1 { animation-delay: 0.5s; }
.christmas-snowflakes .sf-medium-2 { animation-delay: 1.5s; }
.christmas-snowflakes .sf-medium-3 { animation-delay: 2.5s; }
.christmas-snowflakes .sf-medium-4 { animation-delay: 0.3s; }
.christmas-snowflakes .sf-small-1 { animation-delay: 0.8s; }
.christmas-snowflakes .sf-small-2 { animation-delay: 1.3s; }
.christmas-snowflakes .sf-small-3 { animation-delay: 1.8s; }
.christmas-snowflakes .sf-small-4 { animation-delay: 2.3s; }
.christmas-snowflakes .sf-small-5 { animation-delay: 0.6s; }

/* ====================================
   レスポンシブ対応
   ==================================== */
@media (max-width: 1200px) {
    .section-title--christmas .section-title__icon {
        left: -45px;
    }
    
    .section-title--christmas-campaign .section-title__en {
        font-size: 28px;
    }
    
    .section-title--christmas-campaign .section-title__jp {
        font-size: 30px;
    }
    
    .section-title--christmas-campaign .santa-icon {
        width: 48px;
    }
}

@media (max-width: 968px) {
    .section-title--christmas .section-title__icon {
        left: -40px;
        top: -5px;
    }
    
    .section-title--christmas-campaign .section-title__en {
        font-size: 24px;
    }
    
    .section-title--christmas-campaign .section-title__jp {
        font-size: 26px;
    }
    
    .section-title--christmas-campaign .santa-icon {
        width: 44px;
    }
    
    .top-monthly-compaign--christmas .christmas-footer {
        height: 150px;
    }
}

@media (max-width: 640px) {
    .christmas-snowflakes .sf-large-2,
    .christmas-snowflakes .sf-medium-3,
    .christmas-snowflakes .sf-small-3,
    .christmas-snowflakes .sf-small-4 {
        display: none;
    }
    
    .section-title--christmas .section-title__icon {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .section-title--christmas-campaign .title-with-santa {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title--christmas-campaign .section-title__en {
        font-size: 20px;
    }
    
    .section-title--christmas-campaign .section-title__jp {
        font-size: 22px;
    }
    
    .section-title--christmas-campaign .santa-icon {
        width: 40px;
    }
    
    .top-monthly-compaign--christmas .christmas-footer {
        height: 120px;
    }
}

@media (max-width: 375px) {
    .christmas-snowflakes .sf-large-3,
    .christmas-snowflakes .sf-medium-4,
    .christmas-snowflakes .sf-small-5 {
        display: none;
    }
    
    .top-monthly-compaign--christmas .christmas-footer {
        height: 100px;
    }
}