@charset "utf-8";

/*-------------------------------------------------------*/
/* sec_header */
/*-------------------------------------------------------*/

#sec_header {
	display: flex;
	background-color: #fff9e3;
}

#sec_header figure {
	margin-right: 25px;
	width: calc(500/1080*100%);
}

#sec_header figure img {
	display: block;
	width: 100%;
}

#sec_header .txt {
	flex: 1;
	padding-right: 20px;
	padding-bottom: 15px;
}

#sec_header time {
	display: block;
	font-weight: bold;
	margin-top: -10px;
	color: #089CE8;
}

@media (max-width: 1100px) {
	#sec_header .txt p {
		font-size: 14px;
	}
}

@media (max-width: 800px) {
	#sec_header {
		display: block;
	}
	
	#sec_header figure {
		display: block;
		background: #caeeff;
		width: 100%;
		margin: 0;
	}
	
	#sec_header figure img {
		width: auto;
		max-width: 100%;
		margin: auto;
	}
	
	#sec_header .txt {
		padding: 15px;
	}
}

/*-------------------------------------------------------*/
/* detail_txt */
/*-------------------------------------------------------*/

#detail_txt:after {
	content: '';
	clear: both;
	display: block;
}

#detail_txt .left {
	float: left;
}

#detail_txt .right {
	float: right;
}

@media (max-width: 1100px) {
	#detail_txt {
		font-size: 14px;
	}
}

/*-------------------------------------------------------*/
/* prize */
/*-------------------------------------------------------*/

#prize {
	text-align: center;
	margin: 20px 0;
}

#prize li {
	display: inline-block;
	margin: 0 10px;
	width: 100%;
    text-align: left;
}

#prize_bt {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#prize_bt li {
	margin: 10px;
}

/*-------------------------------------------------------*/
/* qa */
/*-------------------------------------------------------*/

.qa {
	counter-reset: qa_q;
	counter-reset: qa_a;
}

.qa dt,
.qa dd {
	display: block;
	position: relative;
	padding-left: 80px;
	padding-top: 5px;
	min-height: 40px;
}

.qa dt {
	margin-top: 20px;
	counter-increment: qa_q;
}

.qa dd {
	padding-bottom: 10px;
	border-bottom: 1px solid #AAA;
	margin-top: 20px;
	margin-bottom: 20px;
	counter-increment: qa_a;
}

.qa dt:before,
.qa dd:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 60px;
	height: 40px;
	color: #fff;
	text-align: center;
	line-height: 40px;
	margin-right: 20px;
	border-radius: 5px;
}

.qa dt:before {
	content: 'Q'counter(qa_q);
	background: #0F7FE0;
}

.qa dd:before {
	content: 'A'counter(qa_a);
	background: #DE1C77;
}

.qa dt > p:first-child,
.qa dd > p:first-child {
	margin-top: 0;
}