@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

body {
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

* {
	box-sizing: border-box;
}

p {
	line-height: 1.8;
}

.header {
	width: 100%;
	height: 100px;
	position: relative;
	box-shadow: 0 0 10px #777;
}

.header__logo {
	display: block;
	width: auto;
	height: 60px;
	position: absolute;
	left: 1%;
	top: 20px;
}

.container{
	width: 95%;
	max-width: 800px;
	margin: 0 auto;
	padding: 100px 0 120px 0;
}

.container__ttl {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

table {
	width: 100%;
	border-top: 1px solid #EEE;
	margin-bottom: 50px;
}

table tr th {
	width: 30%;
	padding: 20px;
	border-bottom: 1px solid #EEE;
	vertical-align: middle;
	font-weight: bold;
}

table tr td {
	width: 70%;
	padding: 20px;
	border-bottom: 1px solid #EEE;
}

select {
	width: 50%;
	font-size: 15px;
	color: #333;
	display: block;
	height: 45px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: white;
	border: 1px solid #DDD;
	border-radius: 0;
	display: inline-block;
	padding-left: 10px;
	padding-right: 70px;
	background-image:
	linear-gradient(45deg, transparent 50%, #FFF 50%),
	linear-gradient(135deg, #FFF 50%, transparent 50%),
	linear-gradient(to right, #e83426, #e83426);
	background-position:
	calc(100% - 22px) 21px,
	calc(100% - 16px) 21px,
	100% 0;
	background-size:
	6px 6px,
	6px 6px,
	45px 45px;
	background-repeat: no-repeat;
}

input[type=text],
input[type=tel] {
	display: block;
	width: 50%;
	background-color: #F7F7F7;
	border: none;
}

input[type=mail],
textarea {
	display: block;
	width: 100%;
	background-color: #F7F7F7;
	border: none;
}

input[type=text],
input[type=tel],
input[type=mail] {
	height: 45px;
	font-size: 15px;
	padding-left: 10px;
	color: #F1F1F1;
	color: #333;
}

textarea {
	padding: 10px;
	color: #333;
	font-size: 15px;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

.must {
	background-color: #e83426;
	padding: 3px 5px;
	font-size: 12px;
	color: #FFF;
	font-weight: bold;
}

.submit {
	text-align: center;
	}

.alert {
	color: #e83426;
	display: block;
	font-size: 15px;
	font-weight: 600;
	}

input[type=submit],
input[type=reset],
input[type=button],
.sendmail .btn {
	width: 250px;
	height: 50px;
	border: none;
	background: #e83426;
	color: #FFF;
	-webkit-font-smoothing: antialiased;
	font-size: 15px;
	font-weight: 600;
	-webkit-transition: .2s;
	transition: .2s;
	margin-top: 30px;
	position: relative;
	}

input[type=submit]:hover,input[type=reset]:hover,input[type=button]:hover, .sendmail .btn:hover {
	background: #CCC;
	-webkit-font-smoothing: antialiased;
	}

.sendmail .btn {
	display: block;
	margin: 50px auto 0 auto;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
}



/******************************************************

PCの設定 960px〜1199pxの場合に適用 

*******************************************************/

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




}



/******************************************************

タブレットの設定 768px〜959pxの場合に適用 

*******************************************************/

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




}



/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

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

.header {
	height: 60px;
	box-shadow: 0 0 7px #777;
}

.header__logo {
	display: block;
	width: auto;
	height: 40px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
	
.container{
	width: calc(100% - 40px);
	padding: 60px 0;
}

.container__ttl {
	font-size: 20px;
	margin-bottom: 20px;
}

table {
	margin-bottom: 30px;
}

table tr th {
	display: block;
	width: 100%;
	padding: 20px 0 10px 5px;
	border-bottom: none;
	vertical-align: top;
	font-size: 14px;
}

table tr td {
	display: block;
	width: 100%;
	padding: 0 0 20px 5px;
	border-bottom: 1px solid #EEE;
	font-size: 14px;
}

select {
	width: 100%;
	font-size: 14px;
	height: 45px;
}

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

input[type=text],
input[type=tel],
input[type=mail] {
	font-size: 14px;
}

textarea {
	font-size: 14px;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

.submit {
	text-align: center;
	}

.alert {
	font-size: 14px;
	}
	
.submit p {
	font-size: 14px;	
	}

input[type=submit],
input[type=reset],
input[type=button] {
	width: 45%;
	height: 50px;
	margin-top: 20px;
	}

.sendmail .btn {
	margin: 30px auto 0 auto;
}


}