@charset "utf-8";


body{
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 500;
	color: #fff;
	background-color: #d19f02;
}

section#contents{
	color: #2d1900;
    animation: fadeInLeft 1s ease 0s 1 normal;
}
@media only screen and (min-width:600px){
	section#contents{
		margin: auto;
		max-width: 800px;
	}
}

/* fadeInLeft */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
  }
}

ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
	ul li{
		margin: 0 0 1em;
		padding: 0;
	}
	
input[type=checkbox]{
	margin-right: 1em;
	transform: scale(1.5);
}

textarea{
	padding: 0.5em;
	width: calc(100% - 5em);
	height: 5em;
}

@media only screen and (min-width:600px){
	textarea{
		width: calc(90% - 5em);
	}
}

li textarea{
	margin-top: 1em;
	margin-left: 3vw;
}


.btn{
	margin: 2em auto;
	text-align: center;
}
button{
	color: #fff;
	padding: 0.5em 2em;
	transform: scale(1.5);
	background-color: #c90;
	border: none;
	border-radius: 10px;
}

input[type=text],
input[type=number],
input[type=email]{
	margin: 0 0.5em;
	padding: 0.5em;
	font-size: 120%;
}

input[type=text],
input[type=email]{
	width: 98%;
	box-sizing: border-box;
}
input[type=number]{
	width: 4em;
}

label{
	display: inline-block;
	margin: 0.5em 0 0;
}
label>span::before{
	content:"▸ ";
}

@media only screen and (min-width:600px){
	label{
		width: 100%;
	}
	input[type=text],
	input[type=email]{
		width: 60%;
		box-sizing: border-box;
	}
	label>span{
		display: inline-block;
		width: 30%;
		text-align: justify;
	}
}


#titlecall{
	margin: 0 0 1em;
	padding: 3em 1em;
	position: relative;
	border: none;
	border-radius: 5px;
	color: #fff;
	background-color: #2a1f01;
}

#titlecall::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 35px;
  bottom: -19px;
  border-top: 20px solid #2a1f01;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.inner{
	padding: 1em;
	color: #2a1f01;
	background-color: #fedc78;
	border-radius: 10px;
}

form{
	margin: 0;
	padding:0;
	font-size: 140%;
	font-weight: bold;
}
form select{
	margin: 0;
	padding: 1em 3vw;
	border: none;
	border-radius: 10px;
	width: 100%;
	color: #5e4906;
	appearance: none;
	font-size: 100%;
	background-image: url("images/ico-select_arrow.png");
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-color: #fff;
	box-shadow: 1px 1px 2px 0 #998c48;
}

.timer{
	margin-bottom: 1em;
	padding-left: 80px;
	height: 55px;
	font-size: 140%;
	font-weight: bold;
	background: url("images/ico-shirts.png");
	background-position: left top;
	background-repeat: no-repeat;
}
	.timer span{
		padding: 0 0.5em;
		color: #b15143;
		display: inline-block;
	}

small{
	display: block;
	font-size: 140%;
	text-align: center;
}

#confirm{
	font-size: 120%;
	padding: 0.5em;
	background-color: #fff;
	border-radius: 10px;
}
	#confirm dt{
		padding: 0.2em 1em;
		border-bottom: 2px solid #998c48;
		color: #fff;
		background-color: #d19f02;
		border-radius: 10px 10px 0 0;
	}
	#confirm dd{
		margin: 1.5em 1em;
	}