/* スプラッシュスクリーン */
@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%;
}


/* ここからいよぎんギフトボタン対応 */
.use_btn_d {
    /* 共通のボタンスタイル */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-size:16px;
    line-height: 18px;
}

/* 2ボタン版のラッパー */
.use_btn_wrap {
    max-width: 345px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
}

/* 2ボタン版の各ボタンの幅 */
.use_btn_wrap .use_btn_d {
    flex: 1 1 0;
    width: auto;
}

/* .use_btn_wrap .use_btn_d:first-child {
    flex-grow: 0.9;
}

.use_btn_wrap .use_btn_d:last-child {
    flex-grow: 1.1;
} */


/* いよぎんギフトボタンの色・レイアウト */
.gift_btn {
    position: relative;
    padding: 8px 10px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #b88900 0%,
        #DC950F 25%,
        #ffd56a 50%,
        #b88900 75%
    );
    column-gap: 6px;
    text-align: left;
    color: #5F3C13;
}
/* .gift_btn {
    background-color: #A00032;
    color: #E3D8C0;
    column-gap: 6px;
    text-align: left;
} */
.gift_btn::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 8px;
    background: linear-gradient(
        135deg,
        #DC950F 0%,
        #DC950F 25%,
        #FFEF00 50%,
        #DC950F 75%       
    );
    z-index: 0;
}

.gift_btn > * {
    position: relative;
    z-index: 1;
}


.gift_btn .gift_icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}


/* 光るエフェクト */
.shine-btn {
	overflow: hidden;
	position: relative;
	text-decoration: none;
}

/* 光の帯 */
.shine-btn::after {
    animation: 2s 0s shine linear infinite;
	background: linear-gradient(to right, rgba(255,255,255,0) 25%, rgba(255,255,255,.6) 50%, rgba(255, 255, 255, 0) 75%);
	content: '';
	height: 100%;
	left: -100%;
	position: absolute;
	top: 0;
	transform: skewX(-15deg);	
	width: 100%;    
}

/* アニメーション */
@keyframes shine {
	20% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

/* 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%;
    }
}
