@charset "UTF-8";
/* =====================
*　form
===================== */

#form__wrap{
	width:100%;
	margin: 60px auto;
    max-width: 700px;
}
html{
	
	font-family: Century Gothic, "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝";
}

h1{
	text-align: center;
    font-weight: bold;
    font-size: 30px;
}
.comment{
	text-align: center;
	margin:20px auto 40px;
}
.box{
	border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
input[type='text']{
  width: 100%;
  padding: 5px;
  border-radius: 3px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing:  border-box;
}
textarea{
	width:100%;
	box-sizing:  border-box;
	border-radius: 5px;
	border:1px solid #ccc;
}
.select-wrap {
  position: relative;
  width: 100%;
  max-width: 250px;
}

.select-wrap:before {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  content: '';
  width: 15px;
  height: 15px;
  background: url(../images/check.png) no-repeat;
  background-size: contain;
}

.select-wrap select{
  width: 100%;
  outline:none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  padding: 5px;
  border:1px solid #ccc;
  background-color: #fff;
  border-radius: 5px;
}

.select-wrap select::-ms-expand {
  display: none;
}

.checkbox-wrap label{
  margin-right: 20px;
  display: inline-block;
}

.checkbox-wrap input{
  display: none;
}

.checkbox-wrap input + span{
  padding-left: 22px;
  position:relative;
}

.checkbox-wrap input + span::before{
  content: "";
  background-image: url(../images/check.png);
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
}

.checkbox-wrap input:checked + span{
  color: #487cff;
  font-weight: bold;
}

.checkbox-wrap input:checked + span::after{
  content: "";
  background-image: url(../images/check-checked.png);
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
}
@media screen and (max-width:572px) {

input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}


