﻿@charset "utf-8";

body {
	margin: 0;
	padding: 0;
}

/*.back {
	display: fixed;
	bottom: 10px;
	right: 5px;
}*/

/* 共通ボタン設定 */
.c-btn {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	padding: 0;
	border: none;
	outline: none;
	color: white;
	font-size: 16px;
	text-decoration: none;
	background: green;
	cursor: pointer;
	border-radius:20px;
}

/* 共通画面設定 */
.p-quiz {
/*	width: 600px;*/
	margin: 4% auto;
	padding: 0 2%;
	text-align: center;
	max-width: 600px;
}


/* クイズタイトル */
.p-quiz-ttl-st {
	margin: 0 0 2%;
	padding: 0 2%;
	font-size: 20px;
	font-weight: normal;
	text-align: center;

}

/* クイズ問題文 */
.p-quiz-ttl {
	margin: 0 0 2%;
	padding:0 2%;
	font-size: 18px;
	font-weight: normal;
	text-align: left;
}


.p-quiz-next {
	width: 300px;
	margin: auto;
}


/* 解答選択 */
.p-quiz-choices {
	display: inline-flex;
	flex-wrap: wrap;
	width: 80%;
	margin: 0;
	padding-left: 2%;
}


.p-quiz-choices__item {
	width: calc(50% - 10px);
	list-style: none;
	margin: 5px;
}

/* 解答_正解 */
.p-quiz-result-T {
	color: blue;
	margin: 4%;
	font-size: 2rem;
	text-align: center;
	border: solid;
	border-color: #031de2;
	border-radius: 8px;
}

/* 解答_不正解 */
.p-quiz-result-F {
	color: red;
	margin: 4%;
	font-size: 2rem;
	text-align: center;
	border: solid;
	border-color: red;
	border-radius: 8px;
}

/* 解説タイトル */
.p-quiz-kaisetu {
	margin: 0 0 0.2px;
	padding:0 4%;
	font-size: 1.2rem;
	font-weight: normal;
	text-align: left;
}

/* 解説詳細 */
.p-quiz-commentary {
	font-weight: normal;
	text-align: left;
	margin: 0 0 5%;
	padding:0 4%;
}

@media (min-windth:600px){
	.p-quiz {
	width: 300px;
	margin: 3% auto;
	padding: 0 4%;
	text-align: center;
	}
}
