/*
 * common
 */
body {
    position: relative;
}

body.opening-after::after {
    content: "";
    position: absolute;
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #e0ded3;
    top: 0;
    left: calc(50% + 250px);
    z-index: 999999;
}

.for-pc {
    display: block;
}

.for-sp {
    display: none;
}

@media (max-width: 768px) {
    .for-pc {
        display: none;
    }

    .for-sp {
        display: block;
    }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 !important;
}

p {
    margin: 0;
}

ul {
    margin: 0;
}

ol,
ul {
    padding: 0 !important;
}

.main-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
}

main.main-wrapper.open::after {
    right: -20%;
    /* 初期位置（画面外右端） */
}

.content-title {
    font-size: 20px;
    letter-spacing: 0.05em;
    text-align: center;
}

.content-title.footer {
    font-size: 16px;
    color: #fff;
}

/* 固定追従ボタン */
.fixed-christmas-button-wrapper {
    position: fixed;
    bottom: 20px;
    /* left: 50%; */
    transform: translateX(133%);
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.fixed-christmas-button-wrapper.hidden {
    opacity: 0;
    pointer-events: none;
}

.fixed-christmas-button {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fixed-christmas-button img {
    width: 200px;
    transition: all 0.3s ease;
}

.fixed-christmas-button:hover img {
    transform: translateY(-2px);
}

/* レスポンシブ */
@media (max-width: 480px) {
    .fixed-christmas-button-wrapper {
        bottom: 15px;
        left: unset;
        right: 15px;
        transform: none;
    }
}
