@charset "utf-8";
@import url("header.css");
@import url("footer.css");
@import url("btn.css");
@import url("list.css?a");
@import url('https://fonts.googleapis.com/css2?family=Yuji+Syuku&family=Zen+Kaku+Gothic+New&display=swap');
/*------------------------------ 基本設定 ------------------------------*/
* {
  margin: 0;
  padding: 0;
  color: #111;
  font-size: 15px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
  list-style: none;
}
@media screen and (max-width: 640px) {
  * {
    font-size: 15px;
	line-height: 1.6;
	letter-spacing: 0.01em;
  }
}
html {
  scroll-behavior: smooth;
}
body, html {
  height: 100%;
}
/*img下のなぞの余白を消す呪文*/
img {
  vertical-align: bottom;
}
.h1 {
  font-size: 28px;
}
.h2 {
  font-size: 24px;
}
.h3 {
  font-size: 21px;
}
.h4 {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .h1 {
    font-size: 21px;
  }
  .h2 {
    font-size: 18px;
  }
  .h3 {
    font-size: 18px;
  }
}
/* font */
.gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-style: normal;
}
/* color */
.white {
	color: #fff;
}
.bg_white {
	background-color: #fff;
}
.bg_black {
	background-color: #111;
}
.bg_gray {
	background-color: #ccc!important;
}
.border_area {
	border: 1px solid #111;
}
.horizon_bg {
  background-color: #111;
  color: #fff;
  margin-bottom: 60px;
  padding: 1px 0;
}
.horizon_bg h1 {
  padding: 20px 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.horizon_bg h1 + span {
  font-size: 11px;
  color: #fff;
  display: block;
  margin-top: -20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .horizon_bg {
    margin-bottom: 30px;
  }
}
.center_line {
  position: relative;
  padding-bottom: 16px;
  text-align: center;
  margin-bottom: 40px;
}
.center_line span {
  font-size: 16px;
  display: block;
  padding-top: 10px;
}
.center_line:before {
  position: absolute;
  bottom: 50px;
  left: calc(50% - 50px);
  width: 100px;
  height: 1px;
  content: '';
  border-radius: 3px;
  background: #ccc;
}
@media screen and (max-width: 768px) {
  .center_line {
    margin-bottom: 0;
  }
}
.under_line {
  border-bottom: 2px solid #111;
}
.under_line h1 {
  padding-bottom: 6px;
  font-size: 24px;
  font-weight: 400;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.lead {
  text-align: center;
}
.lead p {
  font-size: 18px;
  line-height: 2.2em;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .lead p {
    font-size: 15px;
	line-height: 1.6em;
    text-align: left;
  }
}
.text_justify {
	text-align: justify;
}

/*ページヘッダー*/
.page_header {
  position: relative;
  padding-top: 36%;
  overflow: hidden;
  background-color: #000;
}
.page_header img, .page_header div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_header img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
  opacity: 0.6;
}
.page_header div h1 {
  color: #fff;
  font-size: 24px;
}
/*------------------------------ 便利ツール ------------------------------*/
/*幅で消えたり現れたりする*/
.appear1200 {
  display: none;
}
.appear960 {
  display: none;
}
.appear768 {
  display: none;
}
.appear640 {
  display: none;
}
@media screen and (max-width: 1200px) {
  .appear1200 {
    display: block;
  }
  .disappear1200 {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .appear960 {
    display: block;
  }
  .disappear960 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .appear768 {
    display: block;
  }
  .disappear768 {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .appear640 {
    display: block;
  }
  .disappear640 {
    display: none;
  }
}
/*固定ヘッダー分を考慮したリンクのアンカー*/
.anchor {
  margin-top: -160px;
  padding-top: 160px;
}
@media screen and (max-width: 1200px) {
  .anchor {
    margin-top: -60px;
    padding-top: 60px;
  }
}
/*背景色が交互に変わる*/
.bg_alt {
  background-color: #fff;
}
.bg_alt:nth-child(even) {
  background-color: #ede3d6;
}
.bg_alt .side_by_side_alt .text {
  background-color: #ede3d6;
}
.bg_alt:nth-child(even) .side_by_side_alt .text {
  background-color: #fff;
}
/*------------------------------ レイアウト ------------------------------*/
/*インナー*/
.inner1200, .inner960, .inner768, .inner640 {
  margin-right: auto;
  margin-left: auto;
  width: 90%;
}
.inner1200_nm {
	margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
	width: 100%;
}
.inner1200 {
  max-width: 1200px;
}
.inner960 {
  max-width: 960px;
}
.inner768 {
  max-width: 768px;
}
.inner640 {
  max-width: 640px;
}
.inner280 {
  margin: 0 auto;
  max-width: 480px;
}
/*幅*/
.width100 {
  width: 100% !important;
}
.width80 {
  width: 80% !important;
}
.width280 {
  max-width: 280px !important;
}
/*テキスト寄せ*/
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.center_to_left {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .center_to_left {
    text-align: left;
  }
}
/*マージン*/
.mb_s {
  margin-bottom: 10px !important;
}
.mb_sm {
  margin-bottom: 20px !important;
}
.mb_m {
  margin-bottom: 30px !important;
}
.mb_l {
  margin-bottom: 60px !important;
}
.mb_xl {
  margin-bottom: 100px !important;
}
.mt_s {
  margin-top: 10px !important;
}
.mt_m {
  margin-top: 30px !important;
}
.mt_l {
  margin-top: 60px !important;
}
.mt_xl {
  margin-top: 100px !important;
}
@media screen and (max-width: 640px) {
  .mb_xl {
    margin-bottom: 60px !important;
  }
  .mb_l {
    margin-bottom: 40px !important;
  }
  .mb_m {
    margin-bottom: 20px !important;
  }
}
/*パディング*/
.padding_all_s {
	padding: 10px;
}
.padding_all_m {
	padding: 30px;
}
.padding_all_l {
	padding: 60px;
}

.padding_m {
	padding-top: 30px;
	padding-bottom: 30px;
}

.pb_s {
  padding-bottom: 10px !important;
}
.pb_m {
  padding-bottom: 30px !important;
}
.pb_l {
  padding-bottom: 60px !important;
}
.pb_xl {
  padding-bottom: 100px !important;
}
.pt_s {
  padding-top: 10px !important;
}
.pt_m {
  padding-top: 30px !important;
}
.pt_l {
  padding-top: 60px !important;
}
.pt_xl {
  padding-top: 100px !important;
}
@media screen and (max-width: 640px) {
	.padding_all_s {
	padding: 10px;
}
.padding_all_m {
	padding: 20px;
}
.padding_all_l {
	padding: 40px;
}
	.padding_m {
	padding-top: 10px;
	padding-bottom: 10px;
}
  .pt_xl {
    padding-top: 60px !important;
  }
  .pb_xl {
    padding-bottom: 60px !important;
  }
}
/*---------- パソコンで横並び、スマホで縦になるdiv ----------*/
.side_by_side {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.side_by_side .text {
  width: 40%;
  padding-right: 5%;
}
.side_by_side .text_bg {
  width: 40%;
  padding: 5%;
  background-color: #ede3d6;
}
.side_by_side .pict {
  width: 50%;
}
.side_by_side .map {
  width: 50%;
  height: 100%;
}
.side_by_side .map iframe {
  height: 460px;
}
@media screen and (max-width: 960px) {
  .side_by_side {
    flex-direction: column;
  }
  .side_by_side .text, .side_by_side .pict, .side_by_side .map {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .side_by_side .text_bg {
    width: 90%;
  }
  .side_by_side .map iframe {
    height: 300px;
  }
}
/*---------- パソコンで交互に横並び、スマホで縦になるdiv ----------*/
.side_by_side_alt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.side_by_side_alt:nth-child(even) {
  flex-direction: row-reverse;
}
.side_by_side_alt .text {
  width: 40%;
  padding: 5%;
}
.side_by_side_alt .pict {
  width: 50%;
}
.side_by_side_alt .map {
  width: 50%;
  height: 100%;
}
.side_by_side_alt .map iframe {
  height: 600px;
}
@media screen and (max-width: 960px) {
  .side_by_side_alt {
    flex-direction: column;
  }
  .side_by_side_alt:nth-child(even) {
    flex-direction: column;
  }
  .side_by_side_alt .pict, .side_by_side_alt .map {
    width: 100%;
  }
  .side_by_side_alt .text {
    width: 90%;
  }
}
/*画像の上に見出し*/
.text_on_picture {
  position: relative;
  padding-top: 42%;
  overflow: hidden;
  background-color: #000;
}
.text_on_picture img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 100%;
  vertical-align: top;
  opacity: 0.6;
}
.text_on_picture div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.text_on_picture div .center_line, .text_on_picture div .center_line span {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .text_on_picture {
    padding-top: 64%;
  }
}
/*---------- 画像トリミング ----------*/
.trim {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}
.trim img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  max-width: 110%;
  vertical-align: top;
}
.trim_square {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
.trim_square img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  max-width: 150%;
  vertical-align: top;
}
.trim_square02 {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background-color: #000;
}
.trim_square02:hover {
  opacity: 0.6;
}
.trim_square02 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  max-width: 150%;
  vertical-align: top;
  opacity: 0.6;
}
.trim_square02 span {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: #fff;
} /*
.trim_square02::after {
  position: absolute;
  right: 30px;
  top: 50%;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}*/
.trim_circle {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 50%;
}
.trim_circle img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  max-width: 150%;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .trim_circle {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    border-radius: 0;
  }
  .trim_circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    max-width: 110%;
    vertical-align: top;
  }
}
/*table*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table th, table td {
  padding: 10px 0;
  text-align: left;
}
table tr:nth-child(odd) {
  background-color: #eee
}
a.bana img {
	width: 100%;
}
a.bana:hover {
	opacity: 0.6;
}
/*---------- gallery ----------*/
.gallery p {
	margin-bottom: 10px;
}
.gallery ul li {
	margin-bottom: 10px;
}
.gallery ul li img {
	width: 90%;
}
.gallery_top h2 {
	margin-bottom: 10px;
}
.gallery_photo ul li {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
}
.gallery_photo ul li img {
	display: block;
	width: 100%;
	padding-bottom: 8px;
}
.gallery_photo ul li p {
	text-align: justify;
	line-height: 1.4em;
	letter-spacing: 0.05em;
}

/* 蚯蚓通信 */
.mimizu_list ul li a img {
	width: 100%;
}
.mimizu_list ul li a {
	display: block;
}
.mimizu_list ul li a:hover {
	opacity: 0.6;
}
/* 受賞歴 */
.awards_list ul li a img {
	width: 100%;
}
.awards_list ul li a {
	display: block;
	text-decoration: none;
}
.awards_list ul li a:hover {
	opacity: 0.6;
	text-decoration: underline;
}
.awards_list ul li a p {
	padding-top: 6px;
	font-family: Meiryo, "メイリオ", 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", sans-serif;
	letter-spacing: 0.05em;
	font-size: 12px;
	line-height: 1.2em;
}
.awards_text {
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	width: 90%;
	font-family: Meiryo, "メイリオ", 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", sans-serif;
	letter-spacing: 0.01em;
}
/* 竹林伐採 */
.bamboo_logging {
	border: 2px solid #111;
	padding: 4.5%;
}
.bamboo_logging p {
	font-family: Meiryo, "メイリオ", 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", sans-serif;
	line-height: 1.4em;
	letter-spacing: 0.01em;
	font-size: 14px;
	padding-bottom: 20px;
}
.bamboo_logging img {
	width: 100%;
	padding-bottom: 20px;
}
.bamboo_logging dt {
	font-family: Meiryo, "メイリオ", 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", sans-serif;
	line-height: 1.4em;
	letter-spacing: 0.01em;
	font-size: 14px;
	font-weight: bold;
}
.bamboo_logging dd {
	font-family: Meiryo, "メイリオ", 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", sans-serif;
	line-height: 1.4em;
	letter-spacing: 0.01em;
	font-size: 14px;
	padding-bottom: 10px;
}
.movie-wrap {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
 
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}
.top_hy {
	background-color: #4FA35B;
}
.top_hy p {
	text-align: center;
}
.top_hy a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-style: normal;
	text-decoration: none;
	color:#fff;
}
@media screen and (max-width: 768px) {
	.top_hy p { text-align: left;}
}
/*
memo
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 960px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 640px) {}
background: rgba(255,255,255,0.6);
*/