@charset "UTF-8";

/* すべてのWebページに適用される */
html {
	font-family: "NOW-GM";
}
html * {
	box-sizing: border-box;
}
body {
	margin: 0 0 0 0;
	background-color: #ffffff;
}
.wrapper {
	margin: 0 auto 0 auto;
	max-width: 960px;
}
h1 {
	color: #000000;
	font-size: 26px;
	font-weight: lighter;
	border: 1px solid #000000;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
h2 {
	color: #000000;
	font-size: 16px;
	font-weight: normal;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
h3 {
	color: #000000;
	font-size: 16px;
	font-weight: lighter;
	border-bottom: 1px dotted #000000;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 0px;
}

h4 {
	color: #000000;
	font-size: 20px;
	font-weight: lighter;
	border-bottom: 1px solid #000000;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 0px;
}

h5 {
	color: #000000;
	font-size: 12px;
	font-weight: lighter;
	margin-top: 50px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 0px;
}

p {
	line-height: 1.7;
	margin-top: 3px;
	margin-left: 3px;
	margin-bottom: 3px;
	font-size: 15px;
	
}

p b {
	font-family: "Midashi Go MB31";
}

a:link {
	color: #000000;
}
a:visited {
	color: #000000;
}
a:hover {
	color: #FDCE00;
}
a:active {
	color: #FDCE00;
}

img {
	max-width: 100%;
	height: auto;
	padding-bottom: 10px;
}

.button {
	text-align: right;
}

/* すべてのWebページに適用される ヘッダー */

.logo {
	margin: 0px 0 0px 0;
	padding: 10px 0 0px 0;
	line-height: 0;
	text-align: center;
	background-color: #000000;
	}

.nav li {
	font-family: "NOW-GM";
	display: inline;
	list-style-type: none;
	padding-right: 30px;
}
.nav ul {
	margin: 0 0 0 0;
	padding: 13px 10px 13px 10px;
	background-color: #000000;
	text-align: center;
}
.nav a:link {
	color: #FDCE00;
	text-decoration: none;
}
.nav a:visited {
	color: #FDCE00;
	text-decoration: none;
}
.nav a:hover {
	color: #FDCE00;
	text-decoration: none;
}
.nav a:active {
	color: #FDCE00;
	text-decoration: none;
}
/* すべてのページに適用 - フッター - */
.footer-container {
	overflow: hidden;
	margin-top: 30px;
	padding: 10px 10px 10px 10px;
	font-size: 8px;
	color: #000000;
	background-color: #000000;
	}

.footer-link {
	font-size: 10px;
	float: left;
	margin: 0px;
	}

.footer-link a:link {
	color: #FDCE00;
	text-decoration: none;
}

.footer-link a:visited {
	color: #FDCE00;
	text-decoration: none;
}

.footer-link a:hover {
	color: #FDCE00;
	text-decoration: none;
}

.footer-link a:active {
	color: #FDCE00;
	text-decoration: none;
}

.copyright {
	font-size: 10px;
	color: #FDCE00;
	float: right;
}

/* 個別のスタイル */
/* index.html */
.keyvisual {
	margin: 10px 0 0 0;
}

.top-tittle {
	text-align: center;
}

.topnews-item {
	text-align: center;
	margin: 0;
}

/* gallery.html */
.gallery-contents {
	display: flex;
	border-bottom: 1px solid #000000;
	padding: 20px 8px;
}
.gallery-photo {
	margin-right: 16px;
	flex: 1 1 auto;
}
.gallery-text {
	flex: 0 0 336px;
}

/* スマートフォン向けCSS */
@media (max-width: 767px) {
	/* 全体 - ナビゲーション */
	.wrapper {
		margin: 0 8px;
	}
	
	.logo {
	text-align: center;
	}
	
	.nav {
	background-color: #000000;
	}
	
	.nav li {
	display: block;
	padding: 0 0 0 0;
	}

	
	/* gallery.html - 横並び解除 */
	.gallery-contents {
		display: block;
	}
	.gallery-photo {
		margin-right: 0;
		width: 100%;
	}
	.gallery-text {
		width: 100%;
	}
}