@charset "UTF-8";
body {
    font-family: "Overpass", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "繝偵Λ繧ｮ繝手ｧ偵ざ ProN W3", Meiryo, sans-serif;
    background-color: #fff;
    color: #fff;
    text-align: center;
    margin: auto;
    box-shadow: #cfb2b2 0px 0px 23px;
}
img{
	width: 100%;
	vertical-align: middle;
}
h1{
    margin: 0;
}

.sp{
    display: inline-block;
    display: none;
}
.pc{
    display: inline-block;
}

@media screen and (max-width:760px){
    .sp{
        display: inline-block;
    }
    .pc{
        display: none;
    }
    body {
        box-shadow: none;
    }
}
@media screen and (min-width:760px){
    .sp{
        display: none;
        margin: 0 auto;
    }
    .pc{
        display: inline-block;
		width: 100%;
    }
    body {
        width: 500px;
    }
}

/* 追加 */
/* Q2とQ3のコンテンツを非表示に */
.nextContent {
    display: none;
}

/* fleクラスのスタイル */
.fle {
    margin-top: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
}

.fle img {
    width: 50%;
    cursor: pointer;
    max-width: 100%;
}

.offer{
    position: relative;
}
.cta1{
    position: absolute;
    bottom: 20%;
    left: 9%;
    width: 82%;
}
.cta2{
    position: absolute;
    bottom: 18%;
    left: 9%;
    width: 82%;
}


.move{
    animation: yureru-updown 2s infinite;
}
@keyframes yureru-updown {
	0% {
		transform: translate(0px, 2px);
	}
	5% {
		transform: translate(0px, -2px);
	}
	10% {
		transform: translate(0px, 2px);
	}
	15% {
		transform: translate(0px, -2px);
	}
	20% {
		transform: translate(0px, 2px);
	}
	25% {
		transform: translate(0px, -2px);
	}
	30% {
		transform: translate(0px, 0px);
	}
}


/* タイマー */
.timer {
    font-size: 1.5em;
    font-weight: bold;
    color: black;
    border-radius: 10px;
    background-color: #fff;
    margin-top: 10px;
}
.waku{
    background-color: #ac3d54;
    border-radius: 10px;
    margin: 20px;
    padding: 10px;
    margin-bottom: 50px;
}
.waku p{
    margin: 0;
    font-size: 1.3em;
    font-weight: bold;
}
.highlight {
    color: #B8860B; /* 黄土色 */
}
.number {
    font-size: 2em; /* 数字の文字サイズを大きく */
}

/* フッター */
footer{
    background-color: #4f3b3b;
    padding: 30px 0;
}
footer a{
    color: #fff;
    padding: 10px;
    text-decoration: none;
    font-size: 13px;
}