@CHARSET "UTF-8";
/* Font */
@font-face {
	font-family: "NotoSansJP";
	src: url("../fonts/NotoSansJP-VariableFont_wght.ttf") format("truetype");
}
/* Common */
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	font-family: "NotoSansJP", "游ゴシック", "YuGothic";
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}
html,
body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	width: 100%;
	background: #fff;
	line-height: 1.5;
	font-weight: 600 !important;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
	color: #595959;
	font-size: 16px;
	text-align: left;
	overflow-wrap: break-word;
	word-wrap: break-word;
	overflow-x: hidden;
	margin: 0 auto;
	text-align: center;
}
p,
li,
span,
label {
	font-family: "NotoSansJP", "游ゴシック", "YuGothic";
}
small {
	line-height: 1.2;
	font-size: .8rem;
	font-weight: 500;
}
strong {
	font-weight: 600;
}
ul,
ol,
li {
	list-style: none;
}
/* Chrome/Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/* FireFox/IE */
input[type="number"] {
	-moz-appearance:textfield;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
input[type="password"],
select {
	display: block;
	height: 38px;
}
a {
	text-decoration: none;
	color: #595959;
	font-weight: 600;
}
a:hover,
button:hover {
	opacity: 0.7;
}
textarea {
	resize: none;
	height: 100px;
}
img { width: 100%; }
.readonly:focus { outline: none; }
.font-bold { font-weight: bold; }

/* color */
.color-red { color: #b22222; }
.color-white { color: #fff; }

/* text-align */
.left { text-align: left; }
.right { text-align: right; }
.center { text-align: center; }

/* display */
.hide { display: none; }
.inline-block { display: inline-block; }
.only-pc { display: block; }
.only-sp { display: none; }

/* width */
.w80 { width: 80px; }
.w150 { width: 150px; }
.w200 { width: 200px; }
.w250 { width: 250px; }

/* margin */
.mt_10 { margin-top: 10px; }
.mt_20 { margin-top: 20px; }
.mt_50 { margin-top: 50px; }
.mb_10 { margin-bottom: 10px; }
.mb_20 { margin-bottom: 20px; }
.mb_50 { margin-bottom: 50px; }
@media only screen and (max-width: 768px) {
	.only-pc {
		display: none;
	}
	.only-sp {
		display: block;
	}
}

/* Header */
header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
}
header img {
	max-width: 200px;
}
@media only screen and (max-width: 960px) {
	
}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 428px) {
	
}

/* Footer */
footer {
	position: absolute;
	bottom: 0;
	padding: 20px 0;
	width: 100%;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 428px) {
	footer small {
		font-size: 0.7rem;
	}
}

/* Title */
h2 {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 20px 0;
}
@media only screen and (max-width: 960px) {
	
}
@media only screen and (max-width: 768px) {
	
}
@media only screen and (max-width: 428px) {
	h2 {
		margin: 0 0 20px;
	}
}

/* button */
.button {
	display: block;
	width: 300px;
	padding: 10px 0;
	margin: 30px auto;
	background: #b22222;
	border: solid 1px #b22222;
	border-radius: 5px;
	color: #fff;
	font-size: 1.0rem;
	font-weight: bold;
	cursor: pointer;
}

/* form */
#form dl {
	display: table;
	border-collapse: collapse;
	border: 1px solid #312f2f;
	margin: 0 auto 10px;
	width: 768px;
}
#form dt {
	position: relative;
	display: table-cell;
	width: 30%;
	padding: 10px 15px 10px 20px;
	vertical-align: middle;
	font-weight: bold;
	text-align: left;
	background-color: #f5f5f5;
	font-size: 0.8rem;
}
#form dd { padding: 10px; }
#form dd input { width: 70%; }
@media only screen and (max-width: 768px) {
	#form dl {
		width: 95%;
		margin: 10px auto;
	}
	#form dt {
		display: block;
		width: 100%;
		padding: 10px;
		border-right: 0px;
		border-bottom: solid 1px #312f2f;
	}
	#form dd { padding: 15px; }
	#form dd input { width: 100%; }
}

