@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
	font-size: 100%;
}

body{
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
	line-height: 1.7;
	background-color: #f6f6f6;
	text-align: center;
}

a {
	text-decoration: none;
	color: #000000;
}

a:hover {
	color: #ec6d71;
	font-weight: bold;
}

/* HEADER */
.main-nav {
	display: flex;
	list-style: none;
}

.main-nav li {
	margin-left: 36px;
}

.page-header {
	display: flex;
	justify-content: space-between;
	font-size: 1rem;
	padding: 10px 20px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.title {
	font-family: "Yu Mincho", "Sawarabi Mincho", serif;
	font-size: 2.25rem;
	font-weight: bold;
	margin-top: 80px;
	margin-bottom: 80px;
}

/* MAIN */

.container {
	display: grid;
	justify-content: center;
	grid-template-columns: 150px 600px;
}

.item1{
	text-align: left;
	font-size: 1.25rem;
	font-weight: bold;
}

.item1-sub{
	color: #007bbb;
	font-size: 0.8rem;
	font-style: italic;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}

.item2{
	margin-left: 50px;
	margin-bottom: 75px;
	text-align: left;
}

.aten{
	font-size: 0.9rem;
}
/* bottom */
.bottom {
	padding: 10px;
	background: #007bbb;
	color: #f6f6f6;
	font-size: 1rem;
}

/* モバイル用 */
@media screen and (max-width: 785px){
.page-header {
	flex-direction:column;
	align-items: center;
}

.title {
		font-size: 2.2rem;
	}

.container {
	display: grid;
	justify-content: center;
	grid-template-columns: 100%;
}

.item1{
	text-align: center;
	font-size: 1.25rem;
	margin-bottom: 20px;
}

.item2{
	margin-left: 10px;
}