@charset "UTF-8";
/* Reset css */
/* ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
}
img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol {
  list-style: none;
}

dt {
  font-weight: var(--font-bold);
}

b,
strong {
  font-weight: var(--font-bold);
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
}

th {
  text-align: left;
  font-weight: var(--font-bold);
}

/* Break point */
/* ============================================ */

.pc {
	display:block;
}
.sp {
	display:none;
}
@media (max-width: 768px) {
	.pc {
		display:none;
	}
	.sp {
		display:block;
	}
}


/* Main css */
/* ============================================ */

body {
	background-color:#A3D4F2;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:18px;
}
@media (max-width: 768px) {
	body {
		font-size:14px;
	}
}
.container {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}
.description {
	font-size:1.2em;
}
@media (max-width: 1200px) {
	.description {
		font-size:1.1em;
	}
}
@media (max-width: 768px) {
	.description {
		font-size:1em;
	}
}

header {
	width:100%;
	background:#414349;
	padding:1em;
	color:#fff;
	text-align:center;
}
header h1 img {
	display:inline-block;
	vertical-align:middle;
	height:1.8em;
	margin:1em;
}
@media (max-width: 768px) {
	header h1 {
		font-size:1.1em;
		line-height:1.2;
	}
	header h1 img {
		display:block;
		margin:1em auto 0.5em;
	}
}

footer {
	width:100%;
	background:#414349;
	padding:2em 1em 1em;
	color:#fff;
	text-align:center;
}
@media (max-width: 768px) {
	footer {
		padding:2em 2em 1em;
	}
}
footer>* {
	margin-bottom:2em;
}
footer .logo img {
	height:2.4em;
	margin:1em auto 1em;
}
@media (max-width: 768px) {
	footer .description {
		text-align:left;
		font-size:0.9em;
		font-weight:initial;
	}
}
footer .official {
	text-align:center;
}
footer .official a {
	font-size:1.6em;
	background:#fff;
	color:#414349;
	padding:0.25em 2em;
	border-radius:1em;
}
footer .copy {
	font-size:0.8em;
}
@media (max-width: 768px) {
	footer .copy {
		font-size:0.65em;
	}
}
main {
	flex: 1;
  align-items: center;
	text-align:center;
	width:100%;
	max-width:1200px;
	margin:0 auto 2em;
	padding: 2em;
}
main h2 img {
	border-radius:2em;
}
@media (max-width: 768px) {
	main {
		padding: 0;
	}
	main h2 img {
		border-radius:0;
	}
}
#thanks main {
	display:flex;
	justify-content: center;
  color:#24288B;
}
@media (max-width: 768px) {
	main {
		width:100%;
		max-width:1200px;
		margin:0 auto 4em;
	}
}
main h3 {
	display:inline-block;
	font-size:2em;
  font-weight: 700;
  color:#24288B;
  line-height:1;
  margin:1.5em auto;
  position:relative;
}
#vote main h3:after {
	content:"";
	width:100%;
	height:0.3em;
	position:absolute;
	bottom:0;
	left: 0;
	background: #fff;
	z-index: -10;
}
#thanks main h3 {
	font-size:2.4em;
}
#thanks main h3 img {
	width:3em;
	display:block;
	margin:1em auto 1em;
}
@media (max-width: 768px) {
	main h3 {
		font-size:1.5em;
  	margin:1.5em auto;
	}
	#thanks main h3 {
		font-size:2em;
	}
}
main .character {
	display:flex;
	gap:2em;
	margin:0 auto 2em;
}
@media (max-width: 1200px) {
	main .character {
		gap:1em;
	}
}
#thanks main .description {
	display:block;
	text-align:center;
	font-size:1.4em;
	margin:0 auto 3em;
}
@media (max-width: 768px) {
	main .character {
		display:block;
		padding:0 1em;
	}
}
main .character dl {
	background:#fff;
	border-radius:2em;
	padding:2em;
	width:50%;
}
@media (max-width: 768px) {
	main .character dl {
		width:100%;
		margin:0 auto 2em;
	}
}
main .character dl dt {
	margin-bottom:2em;
}
main .character dl dd a {
	display:block;
	font-size:1.6em;
  font-weight: 700;
	color:#24288B;
	text-align:center;
	border: 4px solid #24288B;
	border-radius:1em;
}
@media (max-width: 768px) {
	main .character dl dd a {
		font-size:1.4em;
	}
}