@charset "UTF-8";
/* CSS Document */

/*------------------------------*/
#pageTop {
    position: fixed;
    bottom: 20px;
    right: 0px;
	z-index : 4;
}
#pageTop:hover {
	opacity: 0.6;
	-moz-opacity: 0.60;
	filter: alpha(opacity=60);
	cursor: pointer;
}
/*------------------------------
	ハンバーガーメニュー（無し）
------------------------------*/
header  {
  display: none;
}

/*------------------------------
	nav
------------------------------*/
#navi {
  margin-bottom: 10px;
  border-bottom: solid 1px #d1d1d1;
}
#navi .naviBox {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
#navi .naviBox ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#navi .naviBox li {
  font-size: 16px;
  cursor: pointer;
}
#navi .naviBox li a{
	display: inline-block;
	position: relative;
	color: #2f2f2f;
 	text-decoration: none;
	padding: 30px 0;
}
#navi .naviBox li a:before{
	content: "";
	position: absolute;
	 left: 0;
	bottom: 23px;
	width: 100%;
	height: 1px;
	background: #555;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.4s;
}
#navi .naviBox li a:hover:before {
	transform: scale(1);
}
#navi .naviBox li span {
	font-size: 12px;
	margin-right: 5px;
}

/*------------------------------
	topix
------------------------------*/
#contents .topic {
	max-width: 1150px;
	margin: 20px auto 100px auto;
}
#contents .topic a {
	text-decoration: none;
	color: #2f2f2f;
}
#contents .topic a:hover {
	-webkit-opacity: 0.6;
	-moz-opacity: 0.6;
	-ms-opacity: 0.6;
	text-decoration: underline;
}
/*------------------------------
	footer
------------------------------*/
#footer {
  position: relative;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
  width: 100%;
  background-color: #9b9b9b;
}
#footer .inner {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .inner .name {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-bottom: 15px;
}
#footer .inner .name span {
  font-size: 14px;
  margin-right: 10px;
}
#footer .inner .address {
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
#footer .inner .address a {
  pointer-events: none;
  text-decoration: none;
  color: #fff;
}
#footer .inner .comment {
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
#footer .inner .copy {
  font-size: 14px;
  letter-spacing: 0.02em;
}
#footer .inner .copy span {
  font-size: 13px;
  margin-right: 5px;
}
