@charset "UTF-8";
/* CSS Document */
body{
	margin: 0px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	text-align: center;
}

h1 {
	display: none;
}

h2 {
	font-size: 1.25em;
	font-weight: 700;
}
.human {
	width: 30%;
	padding-top: 50px
}

.name {
	display: inline-block;
	text-align: right;
	padding-right: 30px;
	margin-top: 30px;
	position: relative;
	padding: 0.25em 1em;
	border-top: solid 2px black;
	border-bottom: solid 2px black;
}
.name:before, .name:after {
	content: '';
	position: absolute;
	top: -7px;
	width: 2px;
	height: -webkit-calc(100% + 14px);
	background-color: black;
}
.name:before {
	left: 7px;
}
.name:after {
	right: 7px;
}

.ancate {
	background-color: #EFE7C8;
	padding-bottom: 50px;
}
.question {
	width: 90%;
	display: inline-block;
	text-align: left;
	margin-top: 30px;
}
.question {
  position: relative;
  padding: 0.25em 1em;
  border-top: solid 2px black;
  border-bottom: solid 2px black;
}
.question:before, .question:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: black;
}
.question:before {
  left: 7px;
}
.question:after {
  right: 7px;
}

.switch {
	font-weight: 600;
	font-size: 1em;
	width: 50%;
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	background: #000000;
	color: #FFFFFF;
	box-shadow: 0px 0px 0px 5px #000000;
	border: dashed 1px #FFFFFF;
	margin-top: 50px;
}
