@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;
}
@media (min-width: 701px) and (max-width: 850px) {
}
@media (max-width: 700px) {
}

/*------------------------------
	ハンバーガーメニュー
------------------------------*/
/*ヘッダーまわりはサイトに合わせて調整してください*/
header {
	position: relative;
	z-index: 9999;
}

#nav-drawer {
  position: fixed;
	padding: 20px 20px;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 50px;
	vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 30px;/*長さ*/
  border-radius: 3px;
  background: #2f2f2f;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 50%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 350px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fef4f4;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}
#nav-content .list {
	padding: 50px 20px;
}
#nav-content .list li {
	display: flex;
	margin-bottom: 35px;
}
#nav-content .list li a {
	text-decoration: none;
	font-size: 18px;
	line-height: 1.5;
	color: #2f2f2f;
	font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
	padding-left: 0.8em;
	text-indent: -0.8em;
}
#nav-content .list li img {
	margin-right: 10px;
	margin-bottom: 9px;
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
  @media (max-width: 700px) {
  	#nav-content {
  		width: 50%;
  	}
  	#nav-content .list li a {
  		font-size: 16px;
  		line-height: 1.5;
  	}
  	#nav-content .list li img {
  		margin-right: 5px;
  		margin-bottom: 8px;
  	}
  }

/*------------------------------
	nav
------------------------------*/
#navi {
  display: none;
}

/*------------------------------
	topix
------------------------------*/
#contents .topic {
	max-width: 1150px;
	margin: 20px auto 60px auto;
	padding-left: 10px;
}
#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;
}
@media (max-width: 700px) {
	#contents .topic {
		margin-bottom: 40px;
	}
}

/*------------------------------
	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: 40px 0;
  color: #fff;
  font-size: 16px;
}
#footer .inner .name {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-bottom: 15px;
}
#footer .inner .name span {
  font-size: 14px;
  margin-right: 10px;
}
#footer .inner .address {
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
}
#footer .inner .address a {
  color: #fff;
}
#footer .inner .comment {
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
#footer .inner .copy {
  font-size: 14px;
  letter-spacing: 0.03em;
}
#footer .inner .copy span {
  font-size: 15px;
  margin-right: 3px;
}
  @media (min-width: 751px) {
    #footer .inner .address a {
      pointer-events: none;
      cursor: default;
      text-decoration: none;
      color: #fff;
    }
  }
  @media (max-width: 700px) {
    #footer .inner {
      max-width: 950px;
      text-align: center;
      padding: 30px 0;
      color: #fff;
      font-size: 14px;
    }
    #footer .inner .name {
      margin-bottom: 10px;
    }
    #footer .inner .address {
      font-size: 14px;
      margin-bottom: 10px;
      line-height: 1.7;
    }
    #footer .inner .comment {
      margin-bottom: 10px;
      line-height: 1.7;
    }
  }
