@charset "UTF-8";

h1.entry-title {
    margin: 1rem auto 1.3rem;
    font-weight: 500;
}

form{
	width: 100%;
}

input[type="submit"],
input[type="text"],
input[type="email"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}

/*セレクトボックスのショートタグにlabelタグでclassをselにすれば矢印が出る*/
label.sel {
	position: relative;
	display: block;
	width: 250px;
	border-radius: 5px;
	background: #fff;
}

label.sel:before{
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	display: block;
	width: 0;
	height: 0;
	margin: -2px 0 0 0;
	border: 5px solid transparent;
	border-top: 7px solid #333;
	}



/*セレクトボックスのショートタグにlabelタグでclassをsel_inlineにすれば矢印が出る*/

label.sel_inline {
	position: relative;
	display: inline-block;
	width: 100px;
	border-radius: 5px;
	background: #fff;
}

label.sel_inline:before{
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	display:block;
	width: 0;
	height: 0;
	margin: -2px 0 0 0;
	border: 5px solid transparent;
	border-top: 7px solid #333;
	}


select{
	border: #999 solid 1px;
  background: #f8f8f8;
  font-size: 1rem;
  width: 100%;
  padding: 12px 15px;
  transition: 0.8s;
  border-radius: 0;
}


input[type="text"],
input[type="email"],
textarea{
	border: #999 solid 1px;
  background: #f8f8f8;
  font-size: 1rem;
  width: 100%;
  	-moz-box-sizing: border-box;
      box-sizing: border-box;
  padding: 12px 15px;
  transition: 0.8s;
  border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

textarea[name="memo"] {
  width: 100%;
  height: 200px;
}


input[name="yoko"],
input[name="tate"],
input[name="yoko_1"],
input[name="tate_1"],
input[name="yoko_2"],
input[name="tate_2"],
input[name="yoko_3"],
input[name="tate_3"],
input[name="yoko_4"],
input[name="tate_4"]{
	width: 70px;
}


input[name="day_1"],
input[name="day_1_2"],
input[name="day_2"],
input[name="day_2_2"]{
	width: 50px;
}

input[type="text"].size_5{
	width: 50px;
}

/*
input[type="submit"]{
	font-size: 1.1rem;
	color: #fff;
	display: block;
	background: #05284d;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	cursor : pointer;
	padding: 12px 24px;
	margin: 1rem auto;
}
*/

input[type="submit"].submit{
	font-size: 1.2rem;
	text-align: center;
	color: #fff;
	display: block;
	background: #05284d;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	cursor : pointer;
	padding: 12px 32px;
	margin: 1rem auto;
}

input[type="submit"].back{
	font-size: 1rem;
	text-align: center;
	color: #fff;
    display: block;
	background: #41a4e2;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	cursor : pointer;
	padding: 12px 24px;
	margin: 2rem auto 0;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}

::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

.form-table {
  border-collapse: collapse;
  border: 2px solid #999;
  width: 100%;
}

.form-table th,
.form-table td {
		-moz-box-sizing: border-box;
	    box-sizing: border-box;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 20px;
}

.form-table th {
  background: #f5f5f5;
  vertical-align: middle;
  width: 200px;
  font-weight: 400;
  font-size: .9rem;
}

.form-table th span{
	font-size: .8rem;
	color: #fff;
	vertical-align: middle;
	background: red;
	border-radius: 6px;
	padding: .2rem;
	margin-right: .5rem;
}





/*スマートフォン*/
@media only screen and (max-width: 736px) {/*スマホStrat*/




.form-table th,
.form-table td{
  display: block;
    font-size: 1rem;
  width: 100%;
  border-bottom: none;
}

 

}/*スマホEND*/

@media only screen and  (min-width: 737px) and (max-width: 768px) {/*タブレットstart*/




}/*タブレットEND*/

