@charset "UTF-8";

/* header
================================================= */
header h1 {
  width: 85%;
  margin: 10% auto;
}
@media print, screen and (min-width: 600px) {
	header h1 { width: 70%; margin: 7% auto; }
}
@media print, screen and (min-width: 960px) {
	header h1 { width: min(65%, 800px); }
}
@media print, screen and (min-width: 1366px) {
	header h1 { margin: 90px auto; }
}


/* main : common
================================================= */
/* breadcrumbs */
nav.breadcrumbs {
  width: min(90%, 1230px);
  margin: 6% auto 0;
}
nav.breadcrumbs ol {
  display: flex;
	font-size: 0.9em;
  list-style: none;
  padding: 0;
}
nav.breadcrumbs ol li + li::before {
	content: ">";
	margin: 0 0.5em;
}
nav.breadcrumbs ol li a {
	color: #181818;
}
nav.breadcrumbs ol li a:hover,
nav.breadcrumbs ol li a:active {
	color: #44a0ff;
}
@media print, screen and (min-width: 600px) {
  nav.breadcrumbs { margin-top: 4%; }
}
@media print, screen and (min-width: 1366px) {
  nav.breadcrumbs { margin-top: 55px; }
}

/* question : choise */
.choice {
	display: inline-block;
	padding: 0.5em 0.8em;
	border-radius: 5px;
	background-color: #3f48be;
	color: #ffffff;
	font-size: 1.05em;
	font-weight: bold;
  line-height: 1.4;
}


/* main : candidate
================================================= */
main.candidate {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
main.candidate .col.profile {
  width: 70%;
}
main.candidate .col.data {
}
main.candidate .col.data section {
  margin-top: 15vw;
}
@media print, screen and (min-width: 600px) {
  main.candidate { justify-content: space-between; }
  main.candidate .col.profile { width: 33%; }
  main.candidate .col.data { width: 60%; }
  main.candidate .col.data section { margin-top: 8vw; }
  main.candidate .col.data section:first-child { margin-top: 0; }
}
@media print, screen and (min-width: 960px) {
  main.candidate .col.data section { margin-top: 7vw; }
}
@media print, screen and (min-width: 1366px) {
  main.candidate .col.profile { width: 30%; }
  main.candidate .col.data { width: 62%; }
  main.candidate .col.data section { margin-top: 100px; }
}

/* profile */
.col.profile {
	position: relative;
}
.col.profile.elected::after {
	content: "当";
	position: absolute;
	top: -10px;
	left: -10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: #D81717;
	color: #ffffff;
  font-family: "NotoSansJP-Bold", sans-serif;
	font-size: 2.8rem;
	font-weight: bold;
	z-index: 1;
}
.col.profile img {
	border: 1px solid #E8E8E8;
}
.col.profile p {
  margin-top: 0.4em;
  font-weight: bold;
	text-align: center;
}
@media print, screen and (min-width: 600px) {
	.col.profile img { margin: 0.4em 0; }
  .col.profile p { margin-top: 0.6em; }
}
@media print, screen and (min-width: 960px) {
	.col.profile.elected::after { top: -13px; left: -13px; width: 70px; height: 70px; font-size: 3.4rem; }
  .col.profile p { font-size: 2.0rem; }
}

/* speech analysis */
.speech-analysis img {
  margin: 0.3em 0;
  border: 1px solid #E8E8E8;
}

/* que-list */
.col.data .que-list dt {
  margin-bottom: 0.6em;
  padding: 0.5em 0.7em;
	background: #e2e9ff;
	color: #3f48be;
	font-weight: bold;
}
.col.data .que-list dd + dt {
	margin-top: 1.7em;
}
.col.data .que-list dd .choice {
	margin: 0.2em 0 0.4em;
}
.col.data .que-list dd .choice + p {
	margin-top: 0.2em;
}
@media print, screen and (min-width: 960px) {
  .col.data .que-list dd + dt { margin-top: 2.5em; }
}


/* main : question (compare)
================================================= */
main.question .que-compare h2 {
	margin-bottom: 5%;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.0rem;
  text-indent: initial;
}
main.question .que-compare h2::before {
  display: none;
}
main.question .que-compare dl {
	display: flex;
	flex-wrap: wrap;
  border-top: #3f48be solid 1px;
}
main.question .que-compare dt {
	width: 35%;
	padding: 2.5%;
  border-color: #3f48be;
  border-style: solid;
	border-width: 0 1px 1px 0;
	background-color: #e2e9ff;
}
main.question .que-compare dd {
	width: 65%;
  padding: 5%;
  border-color: #3f48be;
  border-style: solid;
	border-width: 0 0 1px 0;
}
main.question .que-compare dd .choice + p {
	margin-top: 0.7em;
}
@media print, screen and (min-width: 600px) {
	main.question .que-compare h2 { margin-bottom: 4%; font-size: 2.4rem; }
	main.question .que-compare dt { width: 30%; padding: 2%; }
  main.question .que-compare dd { width: 70%; padding: 4%; }
  main.question .que-compare dd .choice { font-size: 2.4rem; }
  main.question .que-compare dd .choice + p { margin-top: 1.0em; }
}
@media print, screen and (min-width: 960px) {
	main.question .que-compare h2 { font-size: 2.8rem; }
	main.question .que-compare dt { width: 23%; padding: 1.5%; }
  main.question .que-compare dd { width: 77%; padding: 3%; }
}
@media print, screen and (min-width: 1366px) {
	main.question .que-compare h2 { font-size: 3.2rem; }
	main.question .que-compare dt { width: 20%; padding: 2%; }
  main.question .que-compare dd { width: 80%; font-size: 2.0rem; }
  main.question .que-compare dd .choice { font-size: 2.5rem; }
}
