/* =============================================
 既存CSS調整
============================================= */
.pageTop {
	z-index: 10;
}

/* =============================================
 おか天クイズ
============================================= */

/*	okaten_header
------------------------------------ */
.okaten_header {
	width: 94%;
	max-width: 1000px;
	margin: 0 auto min(8vw, 48px);
}

.okaten_header_logo {
	margin-bottom: min(4vw, 24px);
	text-align: center;
}

.okaten_header_lead {
	font-size: clamp(1em, 2.5vw, 1.25em);
	font-weight: bold;
	text-align: center;
}

/*	okaten_present
------------------------------------ */
.okaten_present {
	width: 94%;
	max-width: 1000px;
	padding: 5px;
	margin: min(8vw, 48px) auto;
	background: url("../img/okaten_quiz/bg_frame.png");
	border-radius: 5px;
}

.okaten_present_inner {
	padding: min(5vw, 30px) min(6vw, 36px) min(6vw, 36px);
	background: url(../img/okaten_quiz/bg_cloud.png) left -10% bottom 30% no-repeat, url(../img/okaten_quiz/bg_cloud.png) right -10% bottom 5% no-repeat #e5f6ff;
	background-size: 30%;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
}

.okaten_present_ttl {
	margin-bottom: min(6vw, 36px);
	position: relative;
	z-index: 1;
	color: #ff7d8f;
	font-size: clamp(1.75em, 4.37vw, 2.25em);
	font-weight: bold;
	text-align: center;
}

.okaten_present_ttl::before {
	content: "";
    width: 13em;
    height: 13em;
	background: url(../img/okaten_quiz/bg_cloud.png) center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -60%);
	z-index: -1;
}

.okaten_present_ttl span {
	font-size: 1.25em;
	margin-right: 0.05em;
	position: relative;
	top: 0.05em;
}

.okaten_present_list {
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: min(6vw, 36px) 3%;
	position: relative;
	z-index: 1;
}

.okaten_present_item {
	width: 90%;
	max-width: 400px;
	background: #fff;
	box-shadow: 0 0 0 2px #fff100, 0 0 0 4px #ec9b00;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}

.okaten_present_item::before {
	content: "";
	width: 20%;
	padding-top: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.okaten_present_item.prize_a::before {
	background: url(../img/okaten_quiz/icon_a.png) top left no-repeat;
	background-size: contain;
}

.okaten_present_item.prize_b::before {
	background: url(../img/okaten_quiz/icon_b.png) top left no-repeat;
	background-size: contain;
}

.okaten_present_item.prize_c::before {
	background: url(../img/okaten_quiz/icon_c.png) top left no-repeat;
	background-size: contain;
}

.okaten_present_txt {
	padding: 0.75em 1em;
	text-align: center;
	line-height: 1.3;
}

.okaten_present_name {
	margin-bottom: 0.5em;
	font-weight: bold;
}

.okaten_present_name span {
	display: inline-block;
}

.okaten_present_name:last-child {
	margin-bottom: 0;
}

.okaten_present_note {
	font-size: 0.625em;
}

.okaten_present_note li {
	padding-left: 1em;
	text-indent: -1em;
}

@media print,
screen and (min-width:641px) {
	.okaten_present_item {
		width: 45%;
	}
}

@media print,
screen and (min-width:1001px) {
	.okaten_present_item {
		width: 30%;
	}
}

/*	okaten_box
------------------------------------ */
.okaten_box {
	line-height: 1.5;
}

.okaten_box+.okaten_box {
	margin-top: min(8vw, 48px);
}

.okaten_box p + p ,
.okaten_box p + .wrap_list {
	margin-top: 1em;
}

.okaten_box h2 {
    padding: 0.5em 0.75em;
	margin: 2em 0 0.75em;
	background: linear-gradient(90deg, #73a3e5, #73bfe5);
    border-radius: 3px;
	color: #fff;
    font-size: 1.5em;
    font-weight: bold;
}
.okaten_box h2:first-child{
	margin-top: 0;
}

.okaten_box h3 {
	padding: 0 0.25em 0.5em;
	margin: 2em 0 0.75em;
	position: relative;
	font-size: 1.25em;
	font-weight: bold;
}
.okaten_box h3:first-child{
	margin-top: 0;
}

.okaten_box h3::before {
	content: "";
	width: 100%;
	height: 3px;
	/* background: linear-gradient(90deg, #fa64a7, #ff6a4c); */
	background: linear-gradient(90deg, #73a3e5, #73bfe5);
	border-radius: 10em;
	position: absolute;
	left: 0;
	bottom: 0;
}

.okaten_box h3 .eng {
	margin-right: 0.1em;
	position: relative;
	top: 0.05em;
	font-size: 1.2em;
}

/*	btn
------------------------------------ */
.btn_primary {
	max-width: 500px;
	padding: 0.75em;
    margin: min(5vw, 30px) auto;
	background: #f26161;
	border-radius: 3em;
	display: block;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
	text-align: center;
	color: #fff;
	font-size: clamp(1em, 2.5vw, 1.25em);
	font-weight: bold;
	text-decoration: none;
	line-height: 1.3;
}