@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	}

html {
	margin: 0;
	padding: 0;
	}

body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 50px 0;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	background: #ccc;
	}
@media screen and (max-width: 767.98px){
body {
	padding: 5vw 4vw;
	}
}

h1 {
	display: block;
	margin: 0 0 20px 0;
	padding: 0;
	color: #fff;
	font-size: 30px;
	text-align: center;
	font-weight: bold;
	}
@media screen and (max-width: 767.98px){
h1 {
	margin: 0 0 1em 0;
	font-size: 7vw;
	}
}

.yesno {
	position: relative;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 20px auto;
}

.yesno div {
	width: 100%;
	height: 100%;
	padding: 20px;
	background: #fff;
	border-radius: 20px;
}
@media screen and (max-width: 767.98px){
.yesno div {
	padding: 5vw;
	}
}

.positionFit {
}

.yesno h2 {
	display: none;
	margin: 0;
	padding: .5em 0;
	text-align: center;
}

.yesno h3 {
	display: block;
	margin: 0 0 10px 0;
	padding: 0;
	text-align: center;
	}
@media screen and (max-width: 767.98px){
.yesno h3 {
	margin: 0 0 5vw 0;
	font-size: 5vw;
	}
}

.yesno p {
	display: block;
	margin: 0 0 10px 0;
	padding: 0;
	text-align: center;
}
@media screen and (max-width: 767.98px){
.yesno p {
	margin: 0 0 5vw 0;
	font-size: 4vw;
	line-height: 1.5em;
	text-align: left;
	}
.yesno p br {
	display: none;
	}
}

.yesno p span.underline {
	text-decoration: underline;
}

.yesno a {
	color: #00a0e9;
}

.yesno dl {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 10px 0;
	}

.yesno dt {
	display: block;
	padding: 5px;
	line-height: 1em;
	text-align: right;
	}

.yesno dd {
	display: block;
	padding: 5px;
	line-height: 1em;
	}

.yesno table {
	margin: 0 auto 20px auto;
	border-bottom: 0;
	border-collapse: collapse;
	}

.yesno table thead th {
	text-align: center;
	background: #666;
	}
@media screen and (max-width: 767.98px){
.yesno table thead {
	display: none;
	}
}

.yesno th {
	padding: 5px 10px;
	text-align: left;
	color: #fff;
	line-height: 1em;
	background: #aaa;
	border: 1px solid #ccc;
	}
@media screen and (max-width: 767.98px){
.yesno th {
	display: block;
	width: 100%;
	}
}

.yesno td {
	padding: 5px 20px;
	color: #333;
	line-height: 1em;
	text-align: center;
	background: #fff;
	border: 1px solid #ccc;
	}
@media screen and (max-width: 767.98px){
.yesno td {
	display: block;
	width: 100%;
	}
}

.totop {
	display: block;
	max-width: 200px;
	margin: 20px auto 0 auto;
	padding: 0;
	background: #aaa;
	border-radius: 10px;
	transition: .3s ease;
	}

.totop:hover {
	background: #ccc;
	}

.totop a {
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #fff;
	font-size: 16px;
	text-align: center;
	line-height: 1em;
	text-decoration: none;
	}
@media screen and (max-width: 767.98px){
.totop a {
	font-size: 5vw;
	}
}

.totop a::before,
.totop a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.totop a::before {
    left: 13px;
    width: 7px;
    height: 3px;
    background: #fff;
}

.totop a::after {
    left: 10px;
    width: 6px;
    height: 6px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.yesno ul.choice {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 20px 0 0 0;
}
@media screen and (max-width: 767.98px){
.yesno ul.choice {
	margin: 5vw 0 0 0;
	}
}

.yesno ul.choice li {
	position: relative;
	display: block;
	min-height: 80px;
	list-style: none;
	text-align: center;
	font-size: 120%;
	line-height: 1.25em;
	background-color: #3eacde;
	border-radius: 10px;
    vertical-align: middle;
	transition: .3s ease;
	}
@media screen and (max-width: 767.98px){
.yesno ul.choice li {
	font-size: 5vw;
	}
}

.yesno ul.choice li::before,
.yesno ul.choice li::after{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.yesno ul.choice li::before {
    left: 10px;
    width: 7px;
    height: 3px;
    background: #fff;
}

.yesno ul.choice li::after {
    left: 10px;
    width: 6px;
    height: 6px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.yesno ul.choice li:hover {
	background-color: #00a0e9;
}

.yesno ul.choice li {
	width: 49%;
	margin: 0 0 15px 0;
}
@media screen and (max-width: 767.98px){
.yesno ul.choice li {
	width: 100%;
	}
}

.yesno ul.choice a {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	display: block;
	padding: 0 15px 0 35px;
	color: #fff;
	text-align: left;
	width: 100%;
	text-decoration: none;
}

.yesno .result {
	display: block;
	padding: 30px 0;
	color: #00a0e9;
	font-size: 24px;
	line-height: 1.5em;
	text-align: center;
}
@media screen and (max-width: 767.98px){
.yesno .result {
	font-size: 6vw;
	}
}

.yesno .result span {
	display: block;
	width: 50px;
	height: 50px;
	margin: 10px auto;
	font-size: 40px;
	font-weight: bold;
	line-height: 50px;
	color: #00a0e9;
	border: 2px solid #00a0e9;
	border-radius: 50%;
}

#notice {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
	background: #eee;
	border-radius: 20px;
}
@media screen and (max-width: 767.98px){
#notice {
	padding: 5vw;
	}
}

#notice h3 {
	margin: 0;
	text-align: center;
	}
@media screen and (max-width: 767.98px){
#notice h3 {
	font-size: 5vw;
	text-align: left;
	}
}

#notice p {
	margin: 0 0 1em 0;
	text-align: center;
	}
@media screen and (max-width: 767.98px){
#notice p {
	font-size: 4vw;
	text-align: left;
	}
}

#notice ol {
	padding: 0 20px;
}

#notice li {
	padding: 5px;
}
