/* スプラッシュスクリーン */
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.splash-screen {
    background: white;
    position: fixed;
    z-index: 1000;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeOut ease-in 2s;
    animation-fill-mode: forwards;
}
.splash-screen.plush {
    display: flex;
}
.splash-screen::before {
    background: linear-gradient(
        0deg,
        rgba(170, 73, 145, 0.1) 0%,
        rgba(160, 153, 200, 0.1) 50%,
        rgba(84, 127, 192, 0.1) 100%
    );
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.splash-screen img {
    width: 48%;
    aspect-ratio: 180/173;
}
/* .スプラッシュスクリーン */
/* ヘッダー */
header .content {
    background: unset;
    padding: unset;
    border: unset;
}
header .content .tle :not(:first-child) {
    top: 18px;
    transform: none;
}
/* ヘッダー */
main {
    display: flex;
    align-items: center;
    /* height: calc(100dvh - 71px); */
    height: 100dvh;
    padding: 68px 0 100px;
}

.main_content h1 {
    width: 187px;
    /* margin: 0 auto 30px; */
    margin: 0 auto 20px;
}

.main_content h1 img {
    width: 100%;
}
.main_content .sub_btn {
    display: flex;
    justify-content: space-between;
    max-width: 345px;
    /* width: 90%; */
    margin: 0 auto 5px;
    column-gap: 10px;
}
.main_content .sub_btn a {
    background: linear-gradient(
        90deg,
        rgba(170, 73, 145, 1) 0%,
        rgba(160, 153, 200, 1) 50%,
        rgba(84, 127, 192, 1) 100%
    );
    overflow: hidden;
    width: 100%;
    padding: 2px;
    border: solid 1.5px rgba(0, 0, 0, 0);
    border-radius: 10px;
}
.main_content .sub_btn a:hover {
    cursor: pointer;
}
.main_content .sub_btn a .content {
    background: white;
    color: #be177d;
    display: flex;
    justify-content: center;
    column-gap: 10px;
    font-size: 16px;
    line-height: 18px;
    border-radius: 8px;
    padding: 6px 12px;
}
.main_content .sub_btn a img {
    object-fit: contain;
}
.main_content .sub_btn a:nth-child(1) img {
    width: 36px;
}
.main_content .sub_btn a:nth-child(2) img {
    width: 30px;
}
.coupon_btn_wrap {
    max-width: 345px;
    /* width: 90%; */
    margin: 0 auto;
    padding-bottom: 10px;
}

.coupon_btn_wrap a {
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        rgba(170, 73, 145, 1) 0%,
        rgba(160, 153, 200, 1) 50%,
        rgba(84, 127, 192, 1) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    overflow: hidden;
    border: solid 1.5px rgba(0, 0, 0, 0);
}
.coupon_btn_wrap a:not(:last-child) {
    margin-bottom: 5px;
}
.coupon_btn_wrap a .btn_content {
    background-color: white;
    display: flex;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 335/76;
    border-radius: 6px;
}

.coupon_btn_wrap a .btn_content .text_block {
    display: flex;
    align-items: center;
    width: 64%;
    padding: 0 12px;
}

.coupon_btn_wrap a .btn_content .text_block .text01 {
    /* font-size: 32px;
    line-height: 1; */
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 1px;
    color: #be177d;
}

.coupon_btn_wrap a .btn_content .text_block .text02 {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1;
}

.coupon_btn_wrap a .btn_content .img_box {
    width: 36%;
}

.coupon_btn_wrap a .btn_content .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.search_block {
    margin-bottom: 25px;
}
.search_block .search_input input {
    cursor: pointer;
}
.search_block .search_input:first-child {
    margin-bottom: 16px;
}
.use_btn {
    width: 80%;
}

/* footer {
    position: sticky;
} */
@media screen and (max-width: 420px) {
    main {
        padding: 30px 0 100px;
    }
    .coupon_btn_wrap a .btn_content .text_block .text02 {
        font-size: 11px;
    }
    .coupon_btn_wrap a .btn_content .text_block .text01 {
        /* font-size: 28px; */
        font-size: 20px;
        line-height: 23px;
    }
    .use_btn {
        width: 62%;
    }
}
