@charset "utf-8";

.white_xmas_wrapper {
    color: #444;
    font-family: "Helvetica Neue", "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    background-color: #fff;
    padding: 0 0px;
    position: relative;
    overflow: hidden;
}

.content_wrapper {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@keyframes snowTwinkle {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(20px) scale(1.1);
        opacity: 0.8;
    }
}

.snow_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 20% 30px, #d4af37 50%, transparent),
        radial-gradient(2px 2px at 40% 70px, #fff 50%, transparent),
        radial-gradient(2px 2px at 50% 160px, #d4af37 50%, transparent),
        radial-gradient(2px 2px at 90% 40px, #fff 50%, transparent),
        radial-gradient(2px 2px at 10% 80px, #d4af37 50%, transparent);
    background-size: 200px 200px;
    opacity: 0.4;
    animation: snowTwinkle 10s infinite linear alternate;
    z-index: 0;
}


.header_snow_drift {
    position: relative;
    padding-top: 0;
    background: linear-gradient(to bottom, #fcfcfc 0%, #f7f9fc 100%);
    z-index: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.header_snow_drift::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.header_area {
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-bottom: 100px;
}

.main_title {
    color: #d4af37;
}


.sub_title_wrapper {
    text-align: center;
}

.sub_title {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #b38728;
    background-color: #fff;
    padding: 8px 30px;
    letter-spacing: 0.15em;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    position: relative;
}

.sub_title::before,
.sub_title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: #d4af37;
}

.sub_title::before {
    left: -40px;
}

.sub_title::after {
    right: -40px;
}

.section_heading_container {
    margin: 40px auto;
    text-align: center;
    position: relative;
}

.section_heading_title {
    display: inline-block;
    color: #d4af37;
    position: relative;
    z-index: 1;
    background: #fff;
}

.section_heading_container::before,
.section_heading_container::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    z-index: 0;
}

.section_heading_container::before {
    top: 0;
}

.section_heading_container::after {
    bottom: 0;
}

.section_heading_title::before,
.section_heading_title::after {
    content: "✶";
    font-size: 0.8em;
    color: #d4af37;
    margin: 0 10px;
}

.promo_card_container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding-top: 30px;
    padding-bottom: 50px;
}

.promo_card {
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 70px 40px 50px;
    text-align: center;
    position: relative;
}

.promo_card::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    border: 2px solid #d4af37;
    pointer-events: none;
}

.ribbon_wrapper {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 400px;
}

.ribbon_text {
    background: linear-gradient(to right, #d4af37, #f0cf65, #d4af37);
    color: #fff;
    padding: 12px 0;
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
    box-shadow: 0 10px 20px rgba(179, 135, 40, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.ribbon_text::before,
.ribbon_text::after {
    content: "";
    position: absolute;
    bottom: -10px;
    border-top: 10px solid #8a6e18;
    z-index: -1;
}

.ribbon_text::before {
    left: 10px;
    border-left: 15px solid transparent;
}

.ribbon_text::after {
    right: 10px;
    border-right: 15px solid transparent;
}

.card_desc {
    color: #666;
    font-family: inherit;
    font-size: 1.05rem;
    line-height: 2;
}

.card_desc strong {
    color: #b38728;
    font-weight: bold;
}

.ornament_arrow {
    display: block;
    margin: 10px auto 0;
    width: 20px;
    height: 20px;
    border-right: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    transform: rotate(45deg);
    opacity: 0.5;
}