@charset "utf-8";

/* 共通部分 -------------------- */
html {
	font-size: 100%;
}
body {
	font-family: 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.7;
	color: #000000;
	background-color: #ffffff;
	position: relative;
}
a {
	text-decoration: none;
}
.wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
.main {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
h3 {
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	font-size: 1.2rem;
}
.heading {
	border-top: solid 1px;
	border-bottom: solid 1px;
	margin-top: 0px;
	margin-bottom: 10px;
	display: block;
	background-color: #ffffff;
}
.main table {
	width: 100%;
}

/* header -------------------- */
.logo {
	width: 120px;
	margin-top: 5px;
}

.page-header {
	justify-content: space-between;
}
/* footer -------------------- */
.page-footer {
	display: flex;
	justify-content: center;
	clear: left;
}
div.page-footer {
	margin-top: 10px;
}
.copyright {
	padding: 5px;
}

/* home -------------------- */
#home {
	width: 100%;
	height: auto;
}
.page-title {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.page-title table {
	width: 100%;
}
.page-title .title {
	width:	100%;
	height: 58px;
	text-align: left;
	border-top: 2px solid #ff0000;
	border-bottom: 2px solid #ff0000;
	padding-top: 7px;
}
.page-title .title img{
	max-width: 75%;
}
.index {
	margin-top: 0px;
	margin-bottom: 0px;
}
.main-header table {
	width: 100%;
	margin-bottom: 5px;
}
.main-header table td {
	vertical-align: top;
}
.main-header table td p {
	margin-left: 5px;
	margin-right: 5px;
}

/* サイドメニュー -------------------- */
.sidemenu {
	display: none;
}

/* ページ内容 -------------------- */
td.content {
	padding-top: 0px;
	padding-left: 0px;
	vertical-align: top;
}
p.content {
	padding-left: 5px;
	margin-bottom: 5px;
}
p.content-indent {
	text-indent: 1em;
	padding-left: 20px;
	margin-bottom: 25px;
}
img.index {
	width: 100%;
}
div.thumbnail {
	background:#ffffff;
	text-align: center;
}
ul.thumbnail {
	list-style:none;
	overflow:hidden;
	padding-left:0;
}
ul.thumbnail li {
	float: left; 
	width: calc(100%/2);
	line-height: 0;
}
ul.thumbnail div.outer {
	display: table;
	width: 100%;
	height: auto;
	padding: 0px;
}
ul.thumbnail div.inner {
	background:#ffffff;
	display: table-cell;
	object-fit: contain;
	vertical-align: middle;
	text-align: center;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
}
ul.thumbnail div.inner:hover {
	background:#ffffff;
	transition: 0s ease;
}
ul.thumbnail img {
	vertical-align: middle;
	text-align: center;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	width: 100%;
	height: auto;
}

/* トピックス -------------------- */
.post-list li {
	border-bottom:1px dashed #c0c0c0;
	list-style: none;
}
.post-list a {
	text-decoration: none;
	display: block;
	padding: 4px 0px 4px 4px;
}
.post-list a:hover {
	background-color:#ccc;
}
.post-list span {
	color: #333;
	vertical-align: middle;
	display: inline-block;
	width: 85px;
	margin-right: 10px;
}
.post-list p {
	color: #333;
	display: inline-block;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}
.post-list div {
	padding: 4px 0px 4px 4px;
}

/* グーグルマップ -------------------- */
.gmap {
	width: 90%;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
}

/* スマホ用メニュー -------------------- */
nav {
	display: block;
	margin-top: -10px;
	margin-bottom: 5px;
	width: 100%;
	height: 0;
	background-color: transparent;
	overflow-y: hidden;
	z-index: 2;
}
.open nav {
	height: 100%;
	transition: all .5s;
}
nav .inner {
	width: 100%;
	background-color: #000000;
}
nav .inner ul {
	padding: 0;
}
nav .inner ul li {
	border-bottom: solid 1px #ffffff;
	padding-top: 8px;
	padding-bottom: 8px;
	text-align: center;
}
nav .inner ul div {
	width: 100%;
	color:#ffffff;
}
/* スマホ用メニューボタン -------------------- */
.toggle_btn {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 60px;
	height: 60px;
	background-color: #000000;
	cursor: pointer;
	z-index: 3;
}
.toggle_btn span {
	display: block;
	position: absolute;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: #ffffff;
	border-radius: 4px;
	transition: all .3s;
}
.toggle_btn span:nth-child(1) {
	top: 20px;
	left: 15px;
}
.toggle_btn span:nth-child(2) {
	top: 30px;
	left: 15px;
}
.toggle_btn span:nth-child(3) {
	top: 40px;
	left: 15px;
}
.open .toggle_btn span {
	background-color: #ffffff;
}
.open .toggle_btn span:nth-child(1) {
	-webkit-transform: translateY(10px) rotate(45deg);
	transform: translateY(10px) rotate(45deg);
}
.open .toggle_btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
	-webkit-transform: translateY(-10px) rotate(-45deg);
	transform: translateY(-10px) rotate(-45deg);
}
