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

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

*{
box-sizing: border-box;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

input {
  background-color: #eee;
  border: 1px solid transparent;
  transition: border 0.2s ease-out;
  height: 46px;
  outline: 0;
  padding: 0 5px;
}

input[type="text"],
input[type="number"]{
  width: 100%;
}

input:focus {
  border-bottom: 1px solid#e74c3c;
}

select {
  /* 右端の▼を消す */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;

  /* 代わりに任意の画像を指定 */
  background: #eee url(triangle_down.svg) no-repeat center right 10px/16px 16px;
  background-size: 10px;
}


/* 右端の▼を消す(IE) */
select::-ms-expand {
  display: none;
}

select:focus {
  background: #eee url(triangle_up.svg) no-repeat center right 10px/16px 16px;
  background-size: 10px;
  border-bottom: 1px solid#e74c3c;
  outline: none;
}
textarea {
  padding: 10px;
  border-radius: 0;
  resize: none;
  border: 1px solid transparent;
  transition: border 0.2s ease-out;
  outline: none;
  background-color: #eee;
}

textarea::-webkit-scrollbar {
  width: 10px;
}

textarea::-webkit-scrollbar-track {
  background-color: #eee;
}

textarea::-webkit-scrollbar-thumb {
  background-color: #ccc;
}

textarea:focus {
  border-bottom: 1px solid #e74c3c;
  box-shadow: none;
  outline: none;
}
input[type="submit"],
button {
  background: #16a085;
  border: none;
  border-bottom: 4px solid #434343;
  border-radius: 4px;
  color: #FFF;
  display: table;
  font-weight: bold;
  line-height: 1;
  margin: 10px auto 0;
  outline: none;
  padding: 0  40px;
  transition: background-color 0.2s ease-out, transform 0.2s ease-out, border-bottom 0.2s ease-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

input[type="submit"]:hover,
input[type="submit"]:focus,
button:hover,
button:focus {
  background: #1abc9c;
}

input[type="submit"]:active,
button:active {
  background: #006266;
  border-bottom: 4px solid transparent;
  transform: translateY(4px);
}

button#leave{
  margin-top: 50px;
  background: #aaa;
  border-bottom: 4px solid #333;
  padding: 10px 20px;
  color: #000;
}
button#leave:hover{
  background: #ccc;
}

.text-center{
	text-align: center;
}
.text-left{
	text-align: left;
}
.text-right{
	text-align: right;
}

body{
}

.hide{
	display: none !important;
}

.en{
	font-family: 'Raleway', sans-serif;
}


#wrap{
	position: relative;
	z-index: 1;
	padding: 50px;
	text-align: center;
	min-height: 100vh;
	background-color: #eee;
}

#wrap .inner{
	max-width: 600px;
	margin: 0 auto;
}

#wrap form{
	text-align: left;
	padding: 15px;
	background-color: #ccc;
	margin-bottom: 20px;
}

#wrap h1{
	font-size: 50px;
	margin-bottom: 30px;
	line-height: 100%;
}

#wrap h2{
	border-bottom: 2px solid #000;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

#wrap p{
	line-height: 200%;
}

#wrap label.title{
	display: block;
	margin-top: 1rem;
	margin-bottom: 3px;
}

#wrap .caption{
	font-size: 12px;
}

#question input{
	width: 90%;
}

#question .line{
	margin-bottom: 5px;
}

#question .line span{
	display: inline-block;
	width: 8%;
}


.debug{
	max-width: 400px;
	padding: 20px;
	background-color: rgba(0,0,0,.5);
	border: 2px solid #999;
	margin: 3rem auto 0;
	font-size: 14px;
	line-height: 180%;
}

.error{
	color: #a00;
	font-size:14px;
}

#kiyaku{
	border: 1px solid #000;
	padding: 20px;
	margin-top: 50px;
	font-size: 14px;
	line-height: 180%;
}

#copyright{
	padding: 20px 0;
	text-align: center;
	color: #000;
	font-size: 12px;
}

.sp{
	display: none;
}

@media screen and (max-width: 767px) {

.sp{
	display: block;
}
.pc{
	display: none;
}

#wrap h1{
	font-size: 9vw;
}

body{
	font-size: 14px;
	line-height: 180%;
}

#wrap{
	padding: 50px 15px;
	width: 100%;
}

.debug{
	width: 100%;
}

}
