﻿/* layout */
body,p,form,input{margin: 0}
#form{
  width: 245px;
  margin: 30px auto;
  padding: 20px;
  }

form p{
  font-size: 14px;
  }

.form-title{
  text-align: center;
  }

.username,.password{
  margin-bottom: 20px;
  }

select,input,textarea{
  width: 95%;
  padding: 5px;
  font-size: 14px;
  }
    
.submit{
  text-align: center;
  }

/* font */
#form p{
  color: #077685;
  font-weight: bold;
  }

#form .form-title{
  font-family: Arial;
  font-size: 30px;
  color: #80d5ff;
  }

/* skin */
#form{
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0px 1px 10px #3cb0fd;
  -moz-box-shadow: 0px 1px 10px #3cb0fd;
  box-shadow: 0px 1px 10px #3cb0fd;
  border: solid #80d5ff 1px;
  background: #fafafa;
  }

#form .form-title{
  padding-bottom: 6px;
  border-bottom: 2px solid #80d5ff;
  margin-bottom: 20px;
  }

/* 昇順・降順ボタン */
.turn input {
  display: none;
}
.turn label{
	float: left;
	cursor: pointer;
	width: 41.5%;
	margin: 0;
	padding: 10px;
	background: #bdc3c7;
	color: #869198;
	font-size: 16px;
	text-align: center;
	line-height: 1;
	transition: .2s;
}
.turn label:first-of-type{
	border-radius: 3px 0 0 3px;
}
.turn label:last-of-type{
	border-radius: 0 3px 3px 0;
}
.turn input[type="radio"]:checked + .switch-on02 {
	background-color: #a1b91d;
	color: #fff;
}
.turn input[type="radio"]:checked + .switch-off02 {
	background-color: #e67168;
	color: #fff;
}

/* 送信ボタン */
.submit input{
  background: #80d5ff;
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  font-family: Arial;
  color: #ffffff;
  font-size: 26px;
  padding: 10px 20px 10px 20px;
  border: solid #4dc4ff 2px;
  text-decoration: none;
  }
.submit input:hover{
  background: #3cb0fd;
  text-decoration: none;
 }

 /* 表示ボタン */
button.orderview{
  background: #80d5ff;
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  font-family: Arial;
  color: #ffffff;
  font-size: 26px;
  padding: 10px 20px 10px 20px;
  border: solid #4dc4ff 2px;
  text-decoration: none;
  width:100%; 
  }
button.orderview:hover{
  background: #3cb0fd;
  text-decoration: none;
 }

/* 入力欄 */
.order input{
  background: #80d5ff;
  -webkit-border-radius: 15;
  -moz-border-radius: 15;
  border-radius: 15px;
  font-family: Arial;
  color: #ffffff;
  font-size: 15px;
  padding: 10px 20px 10px 20px;
  border: solid #4dc4ff 2px;
  text-decoration: none;
  }
.order input:hover{
  background: #3cb0fd;
  text-decoration: none;
 }

input[type=radio], input[type=checkbox] {
  display: none;
}

.radio, .checkbox {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 20px 8px 0;
  padding: 12px 12px 12px 42px;
  border-radius: 8px;
  background-color: #f6f7f8;
  vertical-align: middle;
  cursor: pointer;
}
.radio:hover, .checkbox:hover {
  background-color: #e2edd7;
}
.radio:hover:after, .checkbox:hover:after {
  border-color: #53b300;
}
.radio:after, .checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 6px;
  content: '';
}

.radio:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 20px;
  display: block;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #53b300;
  content: '';
  opacity: 0;
}
input[type=radio]:checked + .radio:before {
  opacity: 1;
}

.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #53b300;
  border-bottom: 3px solid #53b300;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}

