<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
.pc {
  display: none;
}
/*---------------------------------

  header

---------------------------------*/
#globalContainer {
  position: relative;
  font-size: 14px;
}
header {
  position: relative;
  z-index: 20;
}
header .wrap {
  padding: 15px 2.5%;
  width: 100%;
}
header .wrap #logo {
  width: 250px;
}
header .wrap #logo img {
  width: 100%;
}
header #gnav_main {
  width: 100%;
  display: block;
  z-index: 100;
  position: relative;
}
.navToggle {
  color: #88bf13;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 8px;
  right: 10px;
  z-index: 100;
  display: block;
  width: 50px;
  height: 58px;
  -moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  text-align: center;
}
.navToggle::after {
  content: 'MENU';
  font-size: 10px;
  font-size: 0.625em;
  line-height: 1;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  margin: auto;
}
.navToggle span {
  display: block;
  position: absolute;
  left: 10px;
  width: 30px;
  height: 3px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #88bf13;
  z-index: 100;
}
.navToggle span:nth-of-type(1) {
  top: 13px;
}
.navToggle span:nth-of-type(2) {
  top: 23px;
}
.navToggle span:nth-of-type(3) {
  top: 33px;
}
.navToggle.active::after {
  color: #88bf13;
  content: 'CLOSE';
  font-size: 10px;
  font-size: 0.625em;
  line-height: 1;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  margin: auto;
}
.navToggle.active span:nth-of-type(1) {
  display: none;
}
.navToggle.active span:nth-of-type(2) {
  width: 30px;
  -moz-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: 25px;
  right: 0;
}
.navToggle.active span:nth-of-type(3) {
  width: 30px;
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 25px;
  right: 0;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}
nav.globalMenuSp {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.97);
  color: #333;
  text-align: left;
  transform: translateY(-100%);
  /*transition: all 0.6s;*/
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
/* ドロワーメニュー */
header #gnav_main .gnav {
  display: block;
}
header #gnav_main .gnav ul {
  padding: 75px 0 0;
  list-style-type: none;
  display: block;
}
header #gnav_main .gnav ul li {
  width: 100%;
  border-bottom: 1px solid #eee;
}
header #gnav_main .gnav ul li a {
  display: block;
  width: 100%;
  padding: 0.3em 1em;
  color: #5A8726;
  overflow: hidden;
  position: relative;
  font-size: 1.05em;
  line-height: 45px;
  margin-right: 10px;
}
header #gnav_main .gnav ul li a:hover {
  opacity: 1;
}
/* ドロップダウン */
header #gnav_main .gnav ul li.dropdown {
  position: relative;
}
header #gnav_main .gnav ul li.dropdown .ac-btn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
header #gnav_main .gnav ul li.dropdown .ac-btn::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("../images/ac_btn.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  right: 20px;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
header #gnav_main .gnav ul li.dropdown .ac-btn.active::before {
  transform: rotate(-180deg);
  background: url("../images/ac_btn_close.svg") no-repeat;
  right: 21px;
}
/* 子カテゴリー */
header #gnav_main .gnav .in_menu {
  padding: 0;
  display: none;
}
header #gnav_main .gnav .in_menu ul.child {
  padding: 0;
}
header #gnav_main .gnav ul.child li {
  /*border-top: 1px dotted #ccc;*/
  border-bottom: none;
  margin-bottom: 0;
  background: rgba(235, 234, 229, 0.9);
}
header #gnav_main .gnav ul.child li a {
  line-height: 35px;
  margin-right: 10px;
  padding-left: 2.2em;
  font-size: .9em;
  position: relative;
  color: #333;
}
/* トグルメニューend */
@keyframes fade-in {
  0% {
    opacity: 0;
    /*transform: translate3d(0, 50%, 0);*/
  }
  100% {
    opacity: 1;
    /*transform: translate3d(0, 0, 0);*/
  }
}
/*
  検索
---------------------------------*/
header .gnav .sp.serch {
  background: #8ac617;
  padding: 20px 10px;
}
header .gnav .sp.serch .serch_box {
  width: 100%;
  align-items: center;
  transition: .3s;
}
header .gnav .sp.serch form {
  display: flex;
  position: relative;
  width: 100%;
}
header .gnav .sp.serch .text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: solid 1px #8ac617;
  border-radius: 30px;
  color: inherit;
  font-family: inherit;
  margin: 0 0 0 auto;
  padding: 8px 1.5em;
  width: 100%;
}
header .gnav .sp.serch .text:focus {
  box-shadow: none;
  outline: none;
}
header .gnav .sp.serch .btn {
  cursor: pointer;
  position: absolute;
  width: 15%;
  right: 0;
}
header .gnav .sp.serch .btn::after {
  content: '';
  background: url("../images/search.svg") no-repeat center;
  background-size: contain;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
}
header .gnav .sp.serch .submit {
  -webkit-appearance: none;
  background-color: transparent;
  background-image: none;
  border: none;
  border-radius: 0;
  color: #333;
  cursor: pointer;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 4px;
  margin: 0;
  padding: 0.8em .3em;
  position: relative;
  text-decoration: none;
  height: 100%;
  width: 100%;
  z-index: 1;
}
header .gnav .sp.serch .submit:hover, header .gnav .sp.serch .submit:focus {
  outline: none;
}
header .gnav .sp.serch .submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}
/*---------------------------------

  サブページ共通

---------------------------------*/
/*
  パンくず
---------------------------------*/
#breadlist {
  font-size: 14px;
  list-style: none;
  margin: 20px auto;
}
#breadlist li {
  display: inline-block;
}
#breadlist li::after {
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #fff;
  content: '';
  display: inline-block;
  margin: 0 5px;
  width: 0;
  height: 0;
}
#breadlist li:last-child::after {
  content: none;
}
#breadlist li a, #breadlist li {
  color: #fff;
}
/*
  見出し
---------------------------------*/
.ttl h2 {
  font-size: 24px;
}
.ttl span {
  color: #88bf13;
  font-weight: 600;
}
.link a, .content div.link {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  position: relative;
  padding-right: 60px;
}
.link.back {
  margin-top: 4rem;
  text-align: right;
}
.link a::before, .content div.link::before {
  content: "";
  position: absolute;
  background: #8ac617;
  color: #fff;
  width: 45px;
  height: 45px;
  text-align: center;
  display: block;
  border-radius: 50%;
  right: 0;
  top: -1rem;
}
.link a::after, .content div.link::after {
  content: "";
  position: absolute;
  background-image: url("../images/arrow_link.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 10px;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.txtlink {
  margin-bottom: 1rem;
}
.txtlink a {
  color: #095AA6;
  display: inline-block;
  font-weight: 500;
  padding-right: 1.7rem;
  position: relative;
  text-decoration: underline;
}
section .wrap .txtlink ul li {
  margin-bottom: 1rem;
}
.txtlink a[href^="http://"]::before, .txtlink a[href^="https://"]::before {
  content: "";
  position: absolute;
  background-image: url("../images/link.svg");
  top: .3rem;
  right: 0;
  width: 14px;
  height: 14px;
}
.txtlink a[href$=".pdf"]::before {
  content: "";
  position: absolute;
  background-image: url("../images/pdf.svg");
  top: .3rem;
  right: 0;
  width: 16px;
  height: 16px;
}
/*---------------------------------

	footer

---------------------------------*/
footer {
  margin-top: 70px;
}
footer .footer_copy {
  background: #669219;
  color: #fff;
  padding: 30px 0 40px;
  position: relative;
}
footer .footer_copy::before {
  content: "";
  position: absolute;
  background-image: url("../images/deco.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 80px;
  top: -80px;
}
footer .footer_copy .wrap {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
footer .footer_copy .wrap address {
  font-style: normal;
}
footer .footer_copy .wrap address a {
  color: #fff;
}
footer .footer_copy .wrap address strong {
  font-size: 20px;
  display: block;
  margin: 8px 0;
}
/*
	バナー
---------------------------------*/
footer .banner {
  margin: 20px auto;
}
footer .banner p {
  display: block;
  transition: .3s;
  width: 250px;
}
footer .banner p:hover {
  opacity: 0.7;
}
footer .banner p img {
  width: 100%;
}
/*
	コピーライト
---------------------------------*/
footer .copylight {
  display: flex;
  flex-direction: column;
}
footer .copylight p {
  text-align: center;
}
footer .copylight small {
  font-size: 12px;
  letter-spacing: 2px;
}
/*---------------------------------

	pagetop

---------------------------------*/
#page-top {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 5;
}
#page-top a {
  background: #5A8726;
  width: 40px;
  height: 40px;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
}
#page-top a .arrow {
  display: block;
}
#page-top a .arrow::before {
  content: '';
  width: 15px;
  height: 15px;
  background: url("../images/pagetop_arrow.svg") no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s;
}
#page-top a:hover {
  opacity: 1;
  text-decoration: none;
  background: #8ac617;
}
#page-top a:hover .arrow::before {
  top: -10px;
}
/*---------------------------------

  お知らせ

---------------------------------*/
section.info {
  width: 90%;
  margin: 10px auto 30px;
}
section.info .ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: solid 1px #ccc;
}
section.info .ttl div {
  display: flex;
  align-items: baseline;
}
section.info .ttl h2 {
  margin-right: 20px;
}
section.info .news {
  padding: 10px;
}
section.info .news ul {
  list-style: none;
  width: 100%;
  padding-bottom: 10px;
}
section.info .wrap .news ul {
  border-bottom: solid 1px #ccc;
}
section.info .news ul li {
  width: 100%;
}
section.info .news ul li a {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
}
section.info .news ul li a time {
  color: #666;
  width: 28%;
  max-width: 100px;
}
section.info .news ul li a span {
  width: 40%;
  max-width: 170px;
  display: inline-block;
  text-align: center;
  background: #8ac617;
  color: #fff;
  margin-bottom: 10px;
  height: 100%;
}
section.info .news ul li a span.important {
  background: #C1272D;
}
section.info .news ul li a .txt {
  width: 100%;
  color: #333;
}
section.info .news div.link {
  text-align: right;
  margin-top: 30px;
}
section.info div.link.pc {
  display: none;
}
/*---------------------------------

  詳しくはこちら

---------------------------------*/
section.shosai {
  width: 90%;
  margin: 10px auto 30px;
}
section.shosai .ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: solid 1px #ccc;
}
section.shosai .ttl div {
  display: flex;
  align-items: baseline;
}
section.shosai .ttl h2 {
  margin-right: 20px;
}
/*---------------------------------

  モーダル

---------------------------------*/
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 80;
}
.modal_bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
  z-index: 80;
}
.modal_content {
  background: #fff;
  border-radius: 1rem;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 85;
}
.modal_content .close {
	display: block;
	margin: 1.5rem 0 0;
	text-align: center;
}</pre></body></html>