@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	width: 100%;
	height: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

html {
	font-size: 62.5%;
}

ul {
	list-style-type: none;
}

ul li {
	list-style-type: none;
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
}

a {
	text-decoration: none;
}

a.shine_style {
	outline: none;
	/*アニメーションの指定*/
	transition: all .3s;
	cursor: pointer;
}

a.shine_style:hover {
	box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
	border-color: transparent;
}

.center {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.mt1em {
	margin-top: 1em !important;
}

.mt2em {
	margin-top: 2em !important;
}

.mt3em {
	margin-top: 3em !important;
}

/*****************************
						見出し
*****************************/
h1#main_h1 {
	display: block;
	color: #005aaa;
	padding: 10px;
	margin-bottom: 35px;
	line-height: 1;
	font-size: 2.8rem;
	text-align: center;
	border-bottom: 3px solid #005aaa;
}

h1#flow_title {
	display: block;
	max-width: 200px;
	margin: 0 auto 35px auto;
	color: #ffffff;
	padding: 10px;
	line-height: 1;
	font-size: 2.8rem;
	text-align: center;
	border-bottom: 3px dashed #ffffff;
}

h2 {
	display: block;
	color: #fff;
	font-size: 2.4rem;
	margin-bottom: 30px;
	letter-spacing: .8em;
	text-align: center;
}


@media screen and (max-width: 640px) {
	h1#main_h1 {
		font-size: 2.4rem;
	}


}