body {
    font-family: 'Shippori Mincho', serif;
}

.cover-img {
	height: 600px;
	display: table;
	width: 100%;
	background-size: cover;
	background-image:url('../images/main.jpg');
	background-color:rgba(255,255,255,0.5);
    background-blend-mode:lighten;
}

.cover-text {
	color: #000000;
}

.material-icons {
  display: inline-flex;
  vertical-align: middle;
}

.form-check-input.is-valid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label {
	color: #212529;
}
.custom-select.is-valid, .was-validated .custom-select:valid {
	border-color: #212529;
}

span, small {
	display: inline-block;
}

.form-check-input,.form-check-label {
	cursor: pointer;
}

/* ワイドスクリーン用のCSS */
@media only screen and (min-width: 1500px) {
	.cover-img {
		height: 800px;
	}
	h1 {
		font-size: 5rem;
	}
	h2 {
		font-size: 4rem;
	}
	h3 {
		font-size: 3rem;
	}
}

/* タブレット用のCSS */
@media only screen and (min-width : 768px) and (max-width : 1200px) {
	.cover-img {
		height: 500px;
	}
	h1 {
		font-size: 4rem;
	}
	h2 {
		font-size: 3rem;
	}
	h3 {
		font-size: 2rem;
	}
}

/* スマホ用のCSS */
@media only screen and (max-width: 479px) {
	.cover-img {
		height: 300px;
	}
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.5rem;
	}
	h3 {
		font-size: 1.2rem;
	}
}

.cover-text {
	display: table-cell;
	vertical-align: middle;
  text-align: center;
}