@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #333;
  font-family: "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans Japanese";
  font-size: 1.5rem;
  line-height: 1.8;
  background: #fbfbfb9;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

a {
  color: #027204;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.bold {
  font-weight: bold;
}

#wrapper {
  overflow: hidden;
}

/* animation
----------------------------------*/
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  -webkit-animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  -webkit-animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.loader::after {
  -webkit-animation: loader .5s linear infinite;
          animation: loader .5s linear infinite;
  border: 1px solid #027204;
  border-radius: 50%;
  border-right: 1px solid rgba(2, 114, 4, 0.2);
  border-top: 1px solid rgba(2, 114, 4, 0.2);
  content: '';
  height: 70px;
  width: 70px;
  /*    content: "";
    width: 110px;
    height: 304px;
    background: url(../img/logo.png) no-repeat center center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);*/
}

.loader.off {
  display: none;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

#header {
  /*background: rgba(#000, 0.3);*/
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 980;
}

#header #head-contact {
  /*  border-bottom: 1px solid rgba(#fff, 0.5);*/
  height: 36px;
}

#header #head-contact .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#header .head-tel,
#header .head-fax,
#header .head-mail,
#header .head-map {
  color: #fff;
  font-size: 14px;
  margin-top: 2px;
}

#header .head-tel a,
#header .head-fax a,
#header .head-mail a,
#header .head-map a {
  border-radius: 5px;
  color: #fff;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: auto;
  height: 34px;
  line-height: 34px;
  padding: 0 10px;
  text-align: center;
  background: url(../img/board.jpg);
  font-weight: bold;
  letter-spacing: 1px;
}

#header .head-tel a:before,
#header .head-fax a:before,
#header .head-mail a:before,
#header .head-map a:before {
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

@media all and (max-width: 896px) {
  #header .head-tel,
  #header .head-fax,
  #header .head-mail,
  #header .head-map {
    display: none;
  }
}

#header .head-tel {
  margin-right: 10px;
}

#header .head-tel a {
  background: #027204;
}

#header .head-tel a:before {
  content: "\f095";
}

#header .head-tel a:hover {
  background: #025903;
}

#header .head-fax {
  margin-right: 10px;
}

#header .head-fax a {
  color: #027204;
  background: #fff;
}

#header .head-fax a:before {
  content: "\f1ac";
}

#header .head-mail {
  margin-right: 10px;
}

#header .head-mail a {
  color: #fefefe;
  background: #8a2206;
  font-family: "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans Japanese";
}

#header .head-mail a:before {
  content: "\f0e0";
}

#header .head-mail a:hover {
  background: #411003;
}

#header .head-map a {
  font-family: "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans Japanese";
}

#header .head-map a:before {
  content: "\f3c5";
}

#header .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#header .inner #logo {
  position: absolute;
  top: -30px;
  left: 10px;
  width: 400px;
}

@media screen and (max-width: 1200px) {
  #header .inner #logo {
    width: 330px;
    left: 5px;
  }
}

#header .inner #head-right {
  margin-left: auto;
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

#header.scrolled .inner #logo {
  width: 280px;
}

#header.scrolled #navi ul li a {
  color: #111;
  text-shadow: none;
}

#header.scrolled #navi ul li a span {
  color: #bb2e08;
}

#navi {
  padding: 5px 0 3px;
}

#navi ul {
  margin: 0 auto;
  max-width: 1200px;
  width: 65%;
  float: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#navi ul li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: center;
  /*   &:before{
      position: absolute;
      content: '/';
      left: 0;
      top: 50%;
      transform: translate3D(0,-50%,0);
    }*/
}

#navi ul li a {
  display: block;
  letter-spacing: .1rem;
  position: relative;
  line-height: 1.5;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 3px 0 8px;
  font-weight: bold;
  text-align: center;
}

#navi ul li a span {
  display: block;
  font-size: 1.4rem;
  color: #ec3a0a;
  font-weight: bold;
  font-family: "Sulphur Point", "Playfair Display", serif;
}

#navi ul li a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #03a406;
  content: '';
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

#navi ul li a:hover:before {
  width: 100%;
}

#navi ul li:first-child:before {
  display: none;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}

#page-top a {
  display: block;
  background: #8a2206;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
          box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-family: 'FontAwesome';
  font-size: 1.2rem;
  text-align: center;
}

/* foot_navi
----------------------------------*/
.footer_navi {
  padding: 10px 0;
}

.footer_navi ul {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer_navi ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin-bottom: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer_navi ul li a {
  color: #027204;
  position: relative;
  padding-left: 20px;
  font-weight: bold;
}

.footer_navi ul li a:before {
  content: "";
  background-color: #bb2e08;
  width: 10px;
  height: 4px;
  position: absolute;
  top: .45em;
  left: 0;
}

.footer_navi ul li a:hover {
  color: #8a2206;
}

.footer_navi ul li a span {
  display: none;
}

/* footer
----------------------------------*/
#footer {
  color: #111;
}

#footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0 15px 0;
}

#footer .inner .address {
  margin-bottom: 10px;
}

.copyright {
  padding: 3px 0;
  background: #027204;
  color: #fff;
  font-size: 1.2rem;
  border-top: 3px solid #8a2206;
}

/* juicysliderbox
----------------------------------*/
#juicysliderbox {
  position: relative;
  overflow: hidden;
}

.juicysliderimg {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 500;
}

.juicysliderimg h1,
.juicysliderimg div {
  opacity: 0;
  -webkit-transition: 4s;
  transition: 4s;
  width: 100%;
  color: #FFFFFF;
  font-family: "Sawarabi Mincho";
  line-height: 1.3;
}

#catch01 {
  z-index: 1000;
  margin-bottom: 2rem;
}

#catch02 {
  z-index: 1000;
  font-size: 3rem;
  -webkit-text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  -moz-text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  -ms-text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

#catch01.catch01On,
#catch02.catch02On {
  opacity: 1;
  -webkit-transition: 3s;
  transition: 3s;
}

/* slideshow
----------------------------------*/
/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoom-in 11s linear 0s 1 normal both;
          animation: zoom-in 11s linear 0s 1 normal both;
}

.swiper-slide {
  position: relative;
}

.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}

.swiper-slide.slide1:before {
  background-image: url(../img/slide/1.jpg);
}

.swiper-slide.slide2:before {
  background-image: url(../img/slide/2.jpg);
}

.swiper-slide.slide3:before {
  background-image: url(../img/slide/3.jpg);
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (max-width: 896px) {
  .slide-img {
    height: 50vw;
  }
}

@media all and (max-width: 639px) {
  .slide-img {
    height: 40vh;
  }
}

#slideshow {
  position: relative;
  width: 100%;
  /*&:before {
  position: absolute;
  content: "";
  width: 15%;
  height: 100%;
  top: 0;
  right: -70px;
  /*  background-image: linear-gradient(to bottom, #fff, $base_color);
  background-color: $base_color;
  transform: skew(-45deg);
  z-index: 2;
  opacity: 0.4;
}*/
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 30px !important;
  right: auto;
  background: rgba(2, 114, 4, 0.7);
}

@media all and (max-width: 639px) {
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 10px !important;
  }
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 30px !important;
  left: auto;
  background: rgba(2, 114, 4, 0.7);
}

@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 10px !important;
  }
}

@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 17px !important;
    height: 28px !important;
    background-size: 17px 28px !important;
  }
}

#catch {
  z-index: 50;
  position: absolute;
  left: 2%;
  bottom: 5%;
  width: 700px;
  text-align: center;
  opacity: 0;
}

#catch.on {
  opacity: 1;
  -webkit-transition: 2s;
  transition: 2s;
}

@media all and (max-width: 1000px) {
  #catch {
    width: 60%;
  }
}

@media all and (max-width: 639px) {
  #catch {
    bottom: 15px;
    -webkit-transform: none;
            transform: none;
    width: 65%;
  }
}

#flash {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#flash:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 87px;
  left: 0;
  bottom: -2px;
  background: url(../img/paper-top.png) no-repeat center bottom;
  z-index: 10;
}

@media all and (max-width: 639px) {
  #flash:before {
    height: 50px;
    background-size: auto 50px;
  }
}

@media all and (max-width: 896px) {
  #flash {
    height: 70vh;
  }
}

#slidepro_wrapper {
  width: 100%;
  margin-top: 99px;
  background: #F2F2F2;
  padding: 10px 0;
}

@media all and (max-width: 896px) {
  #slidepro_wrapper {
    margin-top: 40px;
  }
}

#slidepro {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

@media all and (max-width: 896px) {
  #slidepro {
    width: 100%;
  }
}

.slideshow {
  position: relative;
}

.slideshow #catch,
.slideshow .catch {
  position: absolute;
  z-index: 999;
  width: 100%;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media all and (max-width: 896px) {
  .slideshow {
    margin-top: 67px;
  }
}

.top-scroll a {
  display: block;
  position: absolute;
  z-index: 400;
  left: 0;
  right: 0;
  top: auto;
  bottom: 5%;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  padding-top: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.top-scroll a:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  top: auto;
  bottom: 12px;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media all and (max-width: 896px) {
  .top-scroll a {
    display: none;
  }
}

/* bg_contact
----------------------------------*/
.bg_contact {
  background: #F2F2F2;
}

.bg_contact .single {
  padding: 30px 0;
}

@media all and (max-width: 639px) {
  .bg_contact .single {
    padding: 20px 0;
  }
}

.contact-txt {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

@media all and (max-width: 639px) {
  .contact-txt {
    font-size: 1.5rem;
  }
}

.contact_bnr {
  text-align: center;
}

.contact_bnr li {
  display: inline-block;
  margin: 0 15px;
}

.contact_bnr li .bnr_tel {
  border: 1px solid #027204;
  color: #FFFFFF;
  letter-spacing: .1em;
  background: #027204;
}

.contact_bnr li .bnr_tel:before {
  content: "\f095";
}

.contact_bnr li .bnr_tel:hover {
  background: #014002;
  color: #FFFFFF;
}

.contact_bnr li .bnr_fax {
  background: #FFFFFF;
  border: 1px solid #027204;
  color: #027204;
}

.contact_bnr li .bnr_fax:before {
  content: "\f1ac";
}

.contact_bnr li .bnr_mail {
  background: #8a2206;
  color: #fefefe;
}

.contact_bnr li .bnr_mail:before {
  content: "\f0e0";
}

.contact_bnr li .bnr_mail:hover {
  background: #027204;
  color: #fff;
}

.contact_bnr li a,
.contact_bnr li span {
  display: block;
  padding: 8px 5px;
  width: 250px;
  color: #FFFFFF;
  font-size: 1.7rem;
  font-weight: bold;
  /*   border-radius: 25px;*/
}

.contact_bnr li a:before,
.contact_bnr li span:before {
  font-family: 'FontAwesome';
  margin-right: 5px;
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 0;
  position: relative;
}

@media all and (max-width: 1000px) {
  .single {
    width: 95%;
  }
}

.single02 {
  margin: 0 auto;
  padding: 50px 0;
}

.single03 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
  position: relative;
}

.single03.top {
  padding: 90px 0 30px 0;
}

@media all and (max-width: 1000px) {
  .single03 {
    width: 95%;
  }
}

.margin-top {
  margin-top: -40px;
}

@media all and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.mbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 8px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px -3px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
}

@media all and (max-width: 639px) {
  .mbox {
    padding: 15px;
  }
}

.mbox2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border: 1px solid #027204;
  padding: 30px;
  background: #fefefe;
  color: #111;
}

@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

.mbox3 {
  border: 2px solid #fff;
  padding: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}

.mbox-welcome {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 8px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px -3px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 30px;
}

@media all and (max-width: 639px) {
  .mbox-welcome {
    padding: 15px;
  }
}

.mbox-footer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 8px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px -3px rgba(0, 0, 0, 0.2);
  background: rgba(254, 254, 254, 0.7);
  padding: 30px;
}

@media all and (max-width: 639px) {
  .mbox-footer {
    padding: 15px;
  }
}

.mbox-black {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  color: #fff;
}

@media all and (max-width: 639px) {
  .mbox-black {
    padding: 10px;
  }
}

.mbox-white {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
}

@media all and (max-width: 639px) {
  .mbox-white {
    padding: 15px;
  }
}

.equal-box {
  max-width: 700px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  margin: 10px auto;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}

.bg01 {
  background: url(../img/bg_body2.jpg);
}

.bg02 {
  background: rgba(2, 114, 4, 0.4);
}

.bg-grid {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
  border-bottom: 1px solid #555;*/
  background-image: -webkit-linear-gradient(transparent 95%, rgba(170, 170, 170, 0.2) 50%, rgba(170, 170, 170, 0.2)), -webkit-linear-gradient(0deg, transparent 95%, rgba(170, 170, 170, 0.2) 50%, rgba(170, 170, 170, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
}

@media all and (max-width: 639px) {
  .bg-map {
    background-size: auto 200px;
  }
}

.bg-wood {
  background: url(../img/bg-wood.jpg);
}

#main {
  float: left;
  width: 70%;
}

#side {
  float: right;
  width: 26%;
}

@media all and (max-width: 639px) {
  #main,
  #side {
    float: none;
    width: 100%;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  color: #5c4332;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.6rem;
}

.mtitle span {
  font-size: 4rem;
  color: #5c4332;
  line-height: 1.4;
  display: block;
  position: relative;
  font-family: "Sulphur Point", "Playfair Display", serif;
  color: #027204;
  letter-spacing: .1rem;
}

.mtitle span:after {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 10px;
  background: url(../img/wood.jpg);
  position: absolute;
  left: 50%;
  bottom: -1px;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

.mtitle.white {
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 14, 0, 0.7);
}

.mtitle.white span {
  color: #fff;
}

.mtitle.white span:after {
  /*background: darken(lemonchiffon, 10%);*/
}

.mtitle.mtitle_left {
  text-align: left;
}

.mtitle.mtitle_left span:after {
  left: 0;
  -webkit-transform: none;
          transform: none;
}

.mtitle2 {
  font-weight: bold;
  color: #5c4332;
  font-size: 2.2rem;
  line-height: 1.4;
  padding-left: 80px;
  padding-top: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 10px;
  z-index: 1;
}

.mtitle2.banana:before {
  background: url(../img/title-icon2.png) no-repeat left top;
}

.mtitle2:before {
  position: absolute;
  content: "";
  background: url(../img/title-icon.png) no-repeat left top;
  width: 130px;
  height: 39px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}

@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.7rem;
    padding-left: 60px;
  }
  .mtitle2:before {
    width: 100px;
    background-size: 100px auto;
  }
}

.mtitle_point {
  margin-bottom: 15px;
  font-size: 1.7rem;
  position: relative;
  text-align: center;
}

.mtitle_point:after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #027204;
  display: block;
  margin: 10px auto 0;
}

.title-point {
  font-weight: bold;
  color: #5c4332;
  background: #ccc;
  padding: 3px 5px;
}

.mtitle-bll {
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
  position: relative;
  margin-bottom: 15px;
}

.mtitle-bll:before {
  margin-right: 5px;
  font-family: 'FontAwesome';
  content: "\f105";
}

.mtitle-bll:after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #027204;
  bottom: -2px;
  width: 100px;
  left: 0;
  text-indent: 2px;
  color: #AAAAAA;
}

@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.5rem;
  }
}

.mtitle_box {
  background: #027204;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
}

.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: '\f30a';
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}

@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.6rem;
  }
}

.mtitle_box.col2 {
  background: #8a2206;
  color: #5c4332;
}

.mtitle_box.col2:before {
  color: #5c4332;
}

.mtext1 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: .1rem;
  line-height: 1.5;
  color: #111;
}

.mtext2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

.mtext3 {
  font-size: 2rem;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.6rem;
  }
}

.mtext4 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
}

@media all and (max-width: 639px) {
  .mtext4 {
    font-size: 1.4rem;
  }
}

.greet-title {
  font-size: 2.5rem;
  color: #027204;
  background: -webkit-linear-gradient(0deg, #ffe53b, #ff9d1d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.greet-title span {
  font-size: 2rem;
}

.mtitle_bnr {
  font-size: 2rem;
  font-weight: 600;
  color: #027204;
  text-align: center;
  margin-bottom: 10px;
}

.mtitle_bnr:before {
  font-family: 'FontAwesome';
  font-weight: bold;
  margin-right: 5px;
}

.mtitle_bnr.mtitle_bnr_01:before {
  content: "\f015";
}

.mtitle_bnr.mtitle_bnr_02:before {
  content: "\f0ad";
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}

.mtitle_category:before {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: "\f0ca";
  margin-right: 5px;
  color: #027204;
}

.mtitle_catch {
  margin-bottom: 20px;
  background: #F2F2F2;
  padding: 14px 15px 10px;
  font-size: 1.8rem;
  font-weight: normal;
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  border-left: 6px solid #8a2206;
  margin: 8px 0 15px;
  font-size: 1.7rem;
}

.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #027204;
}

@media all and (max-width: 639px) {
  .mtitle_sub {
    font-size: 1.4rem;
  }
}

/* btn
----------------------------------*/
.btn01.opa0 a {
  background: rgba(255, 255, 255, 0);
}

.btn01 a {
  background: #83cbde;
  color: #fefefe;
  text-align: center;
  width: 250px;
  margin: 0 auto;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border: 2px solid #fefefe;
  border-radius: 25px;
}

.btn01 a:hover {
  background: #027204;
  color: #FFFFFF;
}

.btn01.col2 a {
  background: #027204;
  border: 1px solid #027204;
  color: #fff;
}

.btn01.col2 a:hover {
  background: #FFFFFF;
  color: #027204;
}

.btn02 {
  max-width: 300px;
  margin: 20px auto 0;
}

.btn02 a {
  display: block;
  position: relative;
  padding: 8px 0;
  background-color: #333;
  line-height: 24px;
  letter-spacing: .1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #FFFFFF;
}

.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn02 a:hover i {
  width: 34px;
}

@media all and (max-width: 639px) {
  .btn02 {
    max-width: 280px;
  }
  .btn02 a {
    font-size: 1.4rem;
  }
}

/* news
----------------------------------*/
.news {
  overflow: hidden;
}

.news dt {
  float: left;
  width: 8em;
  padding-top: 10px;
  font-weight: normal;
}

.news dd {
  padding: 10px 0 10px 8em;
  border-bottom: 1px dotted #DDDDDD;
}

.news dd:last-child {
  border-bottom: none;
}

.news-bl {
  overflow: hidden;
  margin: 15px auto;
}

.news-bl dt {
  letter-spacing: 1.5px;
  float: left;
  width: 7em;
  padding: 3px 5px;
  line-height: 1.5;
  background: #027204;
  color: #FFFFFF;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
}

.news-bl dd {
  padding: 0 0 10px 9em;
  line-height: 1.6;
  border-bottom: 1px dotted #DDDDDD;
  margin: 0 0 10px;
}

.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
  padding-bottom: 0;
}

/* bg-greet
----------------------------------*/
.bg-greet {
  background: url(../img/bg-greet.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 400px;
  margin-bottom: -350px;
}

.fixed {
  height: 380px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 20%;
}

.fixed.fixed1 {
  background-image: url(../img/bg-fixed01.jpg);
}

@media all and (max-width: 639px) {
  .fixed.fixed1 {
    background-image: url(../img/bg-fixed01_s.jpg);
  }
}

@media all and (max-width: 639px) {
  .fixed {
    background-position: center;
  }
}

.bg-01 {
  background: #F2F2F2;
}

.bg-02 {
  background: #202020;
  background: url(../img/bg-w01.jpg) no-repeat center;
  background-size: cover;
}

.bg-thought {
  background: url(../img/bg-thought.jpg) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}

@media all and (max-width: 639px) {
  .bg-thought {
    background-attachment: scroll;
  }
}

.bg-thought2-1 {
  background: url(../img/bg-thought2.jpg) no-repeat center top;
  background-size: cover;
}

.bg-thought2-2 {
  background: url(../img/bg-thought2.jpg) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}

@media all and (max-width: 639px) {
  .bg-thought2-2 {
    background-attachment: scroll;
  }
}

.bg-thought3 {
  background: url(../img/bg-thought3.jpg) no-repeat center top;
  background-size: cover;
}

.bg-thought4 {
  background: url(../img/bg-thought4.jpg) no-repeat center top;
  background-size: cover;
}

.bg-papaya {
  background: url(../img/bg-papaya.jpg) no-repeat center top;
  background-size: cover;
}

.bg-plant {
  background: url(../img/bg-w02.jpg) no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;
}

@media all and (max-width: 896px) {
  .bg-plant {
    background-attachment: scroll;
  }
}

.bg-bege {
  background: url(../img/bg-greet.jpg) no-repeat center top;
  background-size: cover;
}

.bg-black1 {
  background: rgba(0, 0, 0, 0.5);
}

.bg-blue {
  background: rgba(12, 59, 75, 0.5);
}

.bg-yellow2 {
  background: rgba(255, 222, 8, 0.5);
}

.bg-red {
  background: rgba(220, 109, 88, 0.3);
}

/* article
----------------------------------*/
.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.article .article_image {
  width: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.article .article_detail {
  width: 40%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 100px 0;
}

.article .article_detail .inner {
  margin: 0 auto;
  width: 80%;
}

@media all and (max-width: 896px) {
  .article .article_detail .inner {
    width: 90%;
  }
}

.article.article_01 {
  background: url(../img/bg-wood_horizon.jpg);
}

.article.article_01 .article_image {
  background-image: url(../img/article_image_01.jpg);
}

@media all and (max-width: 639px) {
  .article .article_image,
  .article .article_detail {
    width: 100%;
  }
  .article .article_image {
    display: none;
  }
  .article .article_detail {
    padding: 30px 0;
  }
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}

.tbl.tbl-price {
  margin-bottom: 40px;
}

.tbl.tbl-price th {
  width: 40%;
  background: url(../img/bg-pattern01.jpg);
}

.tbl.tbl-price th span {
  display: block;
  font-size: 1.4rem;
}

.tbl.tbl-price td {
  text-align: right;
}

.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ccc;
  font-size: 1.4rem;
}

.tbl th {
  background: #8a2206;
  text-align: left;
  color: #fefefe;
  width: 20%;
}

.tbl thead th {
  background: #F2F2F2;
}

.tbl td {
  background: #fff;
}

.tbl .th-1 {
  background: rgba(138, 34, 6, 0.3);
}

.tbl .th-2 {
  background: rgba(12, 59, 75, 0.2);
}

.tbl .th-3 {
  width: calc(80% / 3);
}

.tbl.type1 td {
  text-align: left;
}

@media all and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px;
    font-size: 12px;
  }
  .tbl th span,
  .tbl td span {
    font-size: 12px;
  }
}

.tbl_new {
  width: 100%;
}

.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 10px;
}

.tbl_new tr th {
  font-weight: 600;
  color: #5c4332;
}

.tbl_new tr th span {
  font-size: 1.4rem;
}

.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
  background: rgba(138, 34, 6, 0.4);
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.company th,
.company td {
  padding: 10px;
  vertical-align: middle;
}

.company th {
  text-align: left;
  width: 25%;
  position: relative;
  background: #027204;
  color: #FFFFFF;
  font-weight: normal;
}

.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #F9F9F9;
  border-width: 10px;
  border-left-color: #027204;
  margin-top: -10px;
}

.company td {
  background: #F9F9F9;
  padding-left: 20px;
}

.tbl-border {
  width: 100%;
}

.tbl-border th,
.tbl-border td {
  padding: 15px 0px;
  border-bottom: 2px solid;
  vertical-align: middle;
}

@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}

.tbl-border th {
  width: 20%;
  color: #027204;
  text-align: left;
  border-color: #8a2206;
}

.tbl-border th.th-1 {
  width: 45%;
}

@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.tbl-border td {
  border-color: #e5e5e5;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 10px;
  padding-left: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #CCCCCC;
}

.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_note {
  background: #fefefe;
  padding: 8px;
}

.list_note li {
  padding-bottom: 5px;
}

.list_note li:not(:last-child) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}

.list_note li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  margin-right: 3px;
  color: #027204;
}

.list_check {
  padding: 10px;
}

.list_check li {
  padding-bottom: 5px;
}

.list_check li span {
  border-radius: 5px;
  margin-left: 7px;
  font-weight: normal;
  font-size: 0.9em;
  padding: 4px;
  background: rgba(204, 204, 204, 0.2);
}

.list_check li:not(:last-child) {
  margin-bottom: 5px;
  border-bottom: 1px dotted #5c4332;
}

.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: normal;
  margin-right: 5px;
  color: #027204;
}

@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2.w50 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list_check2.w50 li {
  width: 49%;
}

@media all and (max-width: 639px) {
  .list_check2.w50 li {
    width: 100%;
  }
}

.list_check2.w500 {
  width: 500px;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  .list_check2.w500 {
    width: 95%;
  }
}

.list_check2.w33 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list_check2.w33 li {
  width: 33%;
  margin: 10px 0;
}

@media all and (max-width: 639px) {
  .list_check2.w33 li {
    width: 49%;
    margin: 0;
  }
}

.list_check2 li {
  margin-bottom: 5px;
}

.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: bold;
  margin-right: 10px;
  color: #8a2206;
}

.list_check3 li {
  display: inline-block;
  margin-right: 1%;
}

.list_check3 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: bold;
  margin-right: 6px;
  color: #026303;
}

@media all and (max-width: 639px) {
  .list_check3 li {
    width: 100%;
    margin: 0 auto 5px;
  }
}

.ol-list {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
  margin: 0;
  padding: 0;
}

.ol-list li {
  line-height: 2;
  border-bottom: 1px dashed #ddd;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  background: #027204;
  display: inline-block;
  width: 2em;
  height: 2em;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  margin-right: .3em;
}

.icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}

.icon-list li {
  width: calc(100% / 5);
  /*&:nth-child(2n) {
    a {
    display: block;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
    height: 100%;
    // border-right: 1px dashed $sub_color;
    transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
    position: relative;
    padding: 10px 0;
    transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
    figure {
    margin: 0 auto 15px;
    width: 70px;
  }
  .icon-title {
  color: #fff;
  position: relative;
  z-index: 2;
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  @include for-size(phone-only) {
  padding: 12px 5px;
}
}
&:before {
position: absolute;
content: "";
width: 100%;
height: 100%;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background: url(../img/bg-02.jpg);
background-color: darken($sub_color2, 20%);
border: 2px solid $white;
opacity: 0.95;
transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
z-index: -1;

}
&:hover {
&:before {
transform: translate(-50%, -50%) scale(1.07, 1.02);
opacity: 1;
background-color: $base_color;
}
z-index: 2;
}
}
}
*/
}

.icon-list li a {
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  height: 100%;
  -webkit-transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  position: relative;
  padding: 10px 0;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1), -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}

.icon-list li a figure {
  margin: 0 auto 15px;
  width: 70px;
}

.icon-list li a .icon-title {
  color: #fff;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}

@media all and (max-width: 639px) {
  .icon-list li a .icon-title {
    padding: 12px 5px;
  }
}

.icon-list li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/bg-02.jpg);
  background-color: #5abad4;
  border: 2px solid #fefefe;
  opacity: 0.95;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1), -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  z-index: -1;
}

.icon-list li a:hover {
  z-index: 2;
}

.icon-list li a:hover:before {
  -webkit-transform: translate(-50%, -50%) scale(1.07, 1.02);
          transform: translate(-50%, -50%) scale(1.07, 1.02);
  opacity: 1;
  background-color: #027204;
}

@media all and (max-width: 639px) {
  .icon-list li {
    width: 48%;
    margin-bottom: 15px;
  }
}

/* point
----------------------------------*/
.point-wrap {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  margin-bottom: 5px;
}

.point-wrap dt {
  position: relative;
  overflow: hidden;
  padding-left: 90px;
  font-size: 1.8rem;
  color: #027204;
  border-bottom: 1px dashed #027204;
  margin-bottom: 5px;
}

.point-wrap dt span {
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  background: #014002;
  font-size: 4rem;
  color: #fff;
  left: 0;
  bottom: -30px;
  text-align: center;
}

.point-wrap dd {
  padding: 5px;
}

@media all and (max-width: 639px) {
  .point-wrap dt {
    font-size: 1.6rem;
    line-height: 1.6;
    overflow: visible;
    padding-left: 70px;
  }
  .point-wrap dt span {
    width: 60px;
    height: 40px;
    line-height: 40px;
    bottom: 0;
    font-size: 2rem;
  }
}

/* blog
----------------------------------*/
.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog-wrap > li {
  width: 32%;
  margin: 0 0.5% 20px 0.5%;
  position: relative;
  background: #fefefe;
  padding: 0;
  -webkit-box-shadow: rgba(2, 114, 4, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
          box-shadow: rgba(2, 114, 4, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

@media all and (max-width: 1000px) {
  .blog-wrap > li {
    width: 49%;
  }
}

.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-detail {
  padding: 10px;
}

.blog-date {
  background: #591604;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fefefe;
  font-size: 12px;
  border: 1px solid #591604;
}

.blog-title {
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
  color: #027204;
}

.blog-txt {
  line-height: 1.5;
  padding: 10px;
}

@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

.blog-date {
  background: #591604;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fefefe;
  font-size: 12px;
  border: 1px solid #591604;
}

.pages2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.pages2 .page_next,
.pages2 .page_prev {
  width: 48%;
  position: relative;
}

.pages2 .page_next a,
.pages2 .page_prev a {
  color: #8a2206;
  padding: 10px;
  background: rgba(255, 255, 255, 0);
  font-size: 13px;
  line-height: 1.6;
  display: block;
  text-align: center;
}

.pages2 .page_next a:hover,
.pages2 .page_prev a:hover {
  color: #8a2206;
}

.pages2 .page_next:before,
.pages2 .page_prev:before {
  position: absolute;
  left: 50%;
  top: -15px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pages2 .page_next {
  margin-right: 3%;
}

.pages2 .page_next:before {
  color: #027204;
  content: "Next";
}

.pages2 .page_next:after {
  position: absolute;
  content: "";
  right: -2%;
  top: 0;
  width: 1px;
  height: 100%;
  z-index: 1;
  background: #ccc;
}

.pages2 .page_prev:before {
  color: #027204;
  content: "Previous";
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}

.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: bold;
  margin-right: 5px;
  color: #027204;
}

.blog-month2 {
  margin-bottom: 15px;
}

.blog-month2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-month2 ul li {
  width: 90%;
  padding: 3px;
  text-align: center;
  font-size: 1.4rem;
  background: #411003;
  margin: 0 0 5px;
}

.blog-month2 ul li a {
  color: #fefefe;
}

.blog-month2 ul li a:hover {
  color: #bebebe;
}

@media all and (max-width: 896px) {
  .blog-month2 ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .blog-month2 ul li {
    width: 48%;
    font-size: 1.1rem;
  }
  .blog-month2 ul li:nth-child(even) {
    margin-left: 1%;
  }
}

.blog_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog_list .blog_img {
  width: 35%;
  overflow: hidden;
}

.blog_list .blog_img img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.blog_list .blog_detail {
  width: 60%;
}

.blog_list .blog_detail .blog_ttl {
  font-weight: 500;
  color: #027204;
  margin-bottom: 5px;
}

.blog {
  display: block;
  padding: 15px;
  background: #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #323232;
}

.blog:hover .blog_img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.date {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.date.date_02 {
  margin-bottom: 15px;
}

.date:before {
  font-family: 'FontAwesome';
  content: "\f017";
  margin-right: 5px;
}

.pages {
  text-align: center;
  margin-top: 30px;
}

.pages .page_next,
.pages .page_prev {
  display: inline;
  margin: 0 20px;
}

.category_nav {
  border: 1px solid #DDDDDD;
}

.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #DDDDDD;
  background-color: #FFFFFF;
}

.category_nav li a:before {
  font-family: 'FontAwesome';
  content: "\f0a9";
  margin-right: 5px;
}

.category_nav li a:hover {
  background: #F2F2F2;
}

.category_nav li:last-child a {
  border-bottom: none;
}

.bloglist-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bloglist-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bloglist-wrap > li {
  width: 48%;
  margin: 0 1% 15px 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  background: #fefefe;
  border: 2px solid #027204;
}

@media screen and (max-width: 768px) {
  .bloglist-wrap > li {
    width: 100%;
  }
}

.bloglist-wrap > li:hover {
  background: rgba(255, 229, 59, 0.3);
}

.bloglist-img {
  width: 120px;
  height: 120px;
  overflow: hidden;
  margin-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
}

.bloglist-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: 'object-fit: cover;';
  /*IE対策*/
}

.bloglist-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.bloglist-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bloglist-date {
  color: #027204;
  font-size: 14px;
}

.bloglist-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  margin-right: 5px;
}

.bloglist-txt {
  color: #555;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .bloglist-txt {
    font-size: 12px;
  }
}

.mtitle_bl {
  line-height: 2;
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #027204;
  margin: 8px 0;
}

.mtitle_bl:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: '';
  width: 6px;
  height: 50%;
  background-color: #8a2206;
}

.mtitle_bl.navy {
  color: #336699;
}

/* column
----------------------------------*/
.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column2 .child {
  position: relative;
  width: 49%;
}

.column2 .child > .child1 {
  width: 55%;
  float: left;
}

.column2 .child > .child1 > .news-bl dt {
  width: 5em;
}

.column2 .child > .child1 > .news-bl dd {
  padding-left: 6.5em;
}

@media all and (max-width: 639px) {
  .column2 .child {
    width: 100%;
    margin: 0 auto 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .column2 .child > .child1 {
    float: none;
    width: 100%;
    text-align: left;
  }
}

.child-p40 {
  width: 680px;
  margin: 20px auto 10px;
}

@media all and (max-width: 639px) {
  .child-p40 {
    width: 222px;
  }
}

.column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.3rem;
}

.column3 .child {
  width: 31.3%;
  position: relative;
}

@media all and (max-width: 639px) {
  .column3 .child {
    width: 100%;
  }
}

.column3.align-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column4 .child {
  width: 23.5%;
  margin: 0 2% 2% 0;
  position: relative;
}

.column4 .child:nth-child(4n) {
  margin: 0 0 2% 0;
}

/* flickSlider
--------------------------- */
.flickSlider {
  margin: 0 auto;
  text-align: left;
  display: none;
}

.flickSlider .flickView {
  width: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.flickSlider .flickView ul {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

.flickSlider .flickView ul li {
  width: 100%;
  float: left;
  display: inline;
  overflow: hidden;
}

.flickSlider .flickView ul li img {
  width: 100%;
}

.flickSlider .flickThumb {
  width: 100%;
  overflow: hidden;
}

.flickSlider .flickThumb ul {
  width: 110%;
}

.flickSlider .flickThumb ul li {
  float: left;
  cursor: pointer;
  display: inline;
}

.flickSlider .flickThumb ul li img {
  width: 100%;
}

.flickSlider .flickThumb ul li.active {
  filter: alpha(opacity=100) !important;
  -moz-opacity: 1 !important;
  opacity: 1 !important;
}

.flickSlider .btnPrev,
.flickSlider .btnNext {
  top: 0;
  width: 5%;
  height: 100%;
  position: absolute;
  cursor: pointer;
}

.flickSlider .btnPrev {
  left: 0;
  background: url(../img/btnPrev.png) no-repeat center center #000000;
}

.flickSlider .btnNext {
  right: 0;
  background: url(../img/btnNext.png) no-repeat center center #000000;
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.num {
  color: #FF0000;
  font-weight: bold;
  margin-right: 5px;
}

.color1 {
  color: #025903;
}

.color2 {
  color: #8a2206;
}

.color3 {
  color: #027204;
}

.paypay-txt {
  font-weight: bold;
  text-align: left;
}

@media all and (max-width: 639px) {
  .paypay-txt {
    text-align: center;
  }
}

.sec1-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1800px;
  margin-right: auto;
  margin-left: auto;
}

.sec1-wrap + .sec1-wrap {
  margin-top: 120px;
}

.sec1-wrap .sec1-img-box {
  width: 56%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.sec1-wrap .sec1-img-box img {
  width: 100%;
}

.sec1-wrap .sec1-img-box .sec1-img01 {
  width: 58%;
}

.sec1-wrap .sec1-img-box .sec1-img02 {
  width: 37%;
}

.sec1-wrap .sec1-box {
  width: 40%;
  padding: 40px;
}

@media all and (max-width: 896px) {
  .sec1-wrap .sec1-box {
    padding: 20px;
  }
}

.sec1-wrap.type1 .sec1-img-box {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.sec1-wrap.type1 .sec1-img-box .sec1-img01 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media all and (max-width: 639px) {
  .sec1-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec1-wrap + .sec1-wrap {
    margin-top: 60px;
  }
  .sec1-wrap .sec1-img-box {
    width: 95%;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .sec1-wrap .sec1-box {
    width: 100%;
    padding: 20px;
  }
}

.sentence {
  font-weight: bold;
  margin-bottom: 20px;
}

.sentence p {
  margin-bottom: 10px;
}

/* page_title_box
----------------------------------*/
.page_title_box {
  position: relative;
  padding: 180px 0 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page_title_box .page_title {
  text-align: center;
  font-size: 4rem;
  line-height: 1.2;
  width: 1200px;
  margin: 0 auto;
  color: #027204;
  text-shadow: 2px 2px 4px #fff;
  font-weight: bold;
  letter-spacing: .1rem;
  font-family: "Sulphur Point", "Playfair Display", serif;
}

.page_title_box .page_title span {
  display: block;
  font-size: 1.8rem;
  border-top: 1px solid #fff;
  padding-top: 10px;
  font-weight: bold;
  font-family: "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans Japanese";
  letter-spacing: 2px;
}

.page_title_box .page_title.white {
  color: #fff;
  text-shadow: none;
}

.page_title_box .page_title.white span {
  color: #fff;
  text-shadow: none;
}

.page_title_box01 {
  background: url(../img/title_box01.jpg) no-repeat center;
  background-size: cover;
  background-position: 50% 40%;
}

.page_title_box02 {
  background: url(../img/title_box02.jpg) no-repeat 50% 70%;
  background-size: cover;
}

.page_title_box03 {
  background: url(../img/title_box03.jpg) no-repeat center 30%;
  background-size: cover;
}

.page_title_box04 {
  background: url(../img/title_box04.jpg) no-repeat 50% 40%;
  background-size: cover;
}

.page_title_box05 {
  background: url(../img/title_box05.jpg) no-repeat center;
  background-size: cover;
}

/* breadcrumb_box
----------------------------------*/
.breadcrumb_box {
  padding: 5px 0;
  margin: 0 auto;
  position: relative;
}

.breadcrumb_box .breadcrumb {
  margin: 0 auto 0;
  width: 1200px;
  padding-left: 0;
}

.breadcrumb_box .breadcrumb li {
  display: inline;
}

.breadcrumb_box .breadcrumb li a {
  color: #027204;
}

.breadcrumb_box .breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

.breadcrumb_box .breadcrumb li .home {
  font-family: 'FontAwesome';
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
}

.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: bold;
}

.form dl dt span {
  font-weight: normal;
  color: #fff;
  background: #df2500;
  padding: 2px 5px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 5px;
  position: relative;
  top: -2px;
}

.form dl dt b {
  color: #fff;
  font-weight: normal;
  background: #555;
  padding: 2px 5px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 5px;
  position: relative;
  top: -2px;
}

.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}

.form dl dd:last-child {
  border-bottom: none;
}

.form .textarea,
.form textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form .textarea {
  height: 30px;
}

.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}

.form .textarea02:last-child {
  margin-right: 0;
}

.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}

.form button {
  cursor: pointer;
  display: block;
  color: #111;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 8px 5px;
  margin: 0 auto;
  width: 250px;
  background: #027204;
  border: 1px solid #027204;
  border-radius: 25px;
  color: #fff;
}

.form button:hover {
  background: #8a2206;
  color: #fff;
}

.form button:before {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: "\f0e0";
  margin-right: 10px;
}

.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}

.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: .6875rem 2.1875rem .6875rem .6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}

.form .entypo-down-open-mini:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  font-weight: bold;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: .75rem;
  margin-top: -8px;
  margin-top: -.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #027204;
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: '';
  z-index: 3;
}

.form label.radio_text:after {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 5px;
  background-color: #027204;
  z-index: 1;
}

.form label.radio_text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #f5f5f5;
          box-shadow: 20px -1px #f5f5f5;
}

.form label.radio_text input[type="radio"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          box-shadow: 20px -1px #eeebda;
}

.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form label.checkbox_text:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form label.checkbox_text:after {
  content: '';
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #027204;
  border-bottom: 3px solid #027204;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}

.form label.checkbox_text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #FFF;
          box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
  -webkit-box-shadow: 41px 0px #EEE;
          box-shadow: 41px 0px #EEE;
}

.tp_txt {
  font-size: 1.2em;
  font-weight: bold;
}

/* bnr
----------------------------------*/
.bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bnr li {
  width: 33.3333333%;
}

@media all and (max-width: 639px) {
  .bnr {
    display: block;
  }
  .bnr li {
    float: none;
    width: 100%;
  }
}

/* top_bnr
----------------------------------*/
.top_bnr {
  position: relative;
  overflow: hidden;
  min-width: 220px;
  width: 100%;
  background: #000000;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
}

.top_bnr * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}

.top_bnr img {
  max-width: 100%;
  position: relative;
  opacity: 0.9;
}

.top_bnr figcaption {
  position: absolute;
  top: 45%;
  left: 7%;
  right: 7%;
  bottom: 45%;
  border: 1px solid white;
  border-width: 1px 1px 0;
}

.top_bnr .heading {
  overflow: hidden;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  position: absolute;
  bottom: 0;
  width: 100%;
}

.top_bnr h2 {
  display: table;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  text-align: center;
  width: auto;
  font-size: 2.2rem;
  text-transform: uppercase;
  text-shadow: -2px 1px 0 rgba(0, 0, 0, 0.6);
  font-weight: bold;
}

.top_bnr h2:before, .top_bnr h2:after {
  position: absolute;
  display: block;
  width: 1000%;
  height: 1px;
  content: '';
  background: white;
  top: 50%;
}

.top_bnr h2:before {
  left: -1000%;
}

.top_bnr h2:after {
  right: -1000%;
}

.top_bnr p {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  width: 100%;
  padding: 0 20px;
  margin: 0;
  opacity: 0;
  line-height: 1.6em;
}

.top_bnr a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.top_bnr:hover img,
.top_bnr.hover img {
  opacity: 0.25;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top_bnr:hover figcaption,
.top_bnr.hover figcaption {
  top: 7%;
  bottom: 7%;
}

.top_bnr:hover p,
.top_bnr.hover p {
  opacity: 1;
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.shadow {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/*photoギャラリー*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 15.66%;
  margin: 0 0.5% 15px;
}

.gallery li a {
  background: #f2f2f2;
  display: block;
  text-align: center;
  padding: 0px;
  height: 120px;
  vertical-align: middle;
}

.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /*IE対策*/
}

.gallery li p {
  font-size: 13px;
  line-height: 1.4;
}

.gallery.gallery2 li {
  width: calc((100% - 32px) /5);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 8px 20px 0;
}

.gallery.gallery2 li:nth-child(5n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .gallery.gallery2 li {
    width: calc((100% - 40px) /3);
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    margin: 0 6px 10px;
  }
  .gallery.gallery2 li:nth-child(3n) {
    margin-right: 0;
  }
  .gallery.gallery2 li:nth-child(5n) {
    margin-right: 6px;
  }
}

@media all and (max-width: 896px) {
  .gallery > li {
    width: 24%;
  }
  .gallery > li a {
    height: 80px;
  }
}

@media all and (max-width: 639px) {
  .gallery > li {
    width: 32%;
  }
  .gallery > li a {
    height: 70px;
  }
}

.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list2 > li,
.list2 .child {
  width: 48%;
  margin: 0 4% 20px 0;
}

.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-right: auto;
  }
}

@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 0 auto 20px;
  }
}

.list2 > li.order,
.list2 .child.order {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media all and (max-width: 639px) {
  .list2 > li.order,
  .list2 .child.order {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.list2 > li.center,
.list2 .child.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list2 > li .recruit-txt,
.list2 .child .recruit-txt {
  text-align: center;
  font-size: 1.6rem;
  padding: 10px auto;
}

@media all and (max-width: 896px) {
  .list2 > li .recruit-txt,
  .list2 .child .recruit-txt {
    font-size: 1.2rem;
  }
}

.prv dt {
  color: #027204;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list3 > li {
  width: 31%;
  margin: 0 3% 15px 0;
}

.list3 > li:nth-child(3n) {
  margin-right: 0;
}

.list3 > li.order {
  background: #fefefe;
  padding: 10px;
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list4 li {
  width: 23%;
  margin-right: 2.33%;
  margin-bottom: 20px;
}

.list4 li:nth-child(4n) {
  margin-right: 0;
}

@media all and (max-width: 896px) {
  .list4 li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
    text-align: center;
  }
  .list4 li img {
    width: 100%;
  }
  .list4 li:nth-child(2n) {
    margin-right: 0;
  }
}

@media all and (max-width: 639px) {
  .list4 li {
    width: 90%;
    margin: 0 auto 20px;
  }
  .list4 li:nth-child(2n) {
    margin-right: auto;
  }
}

/* linkbtnA
----------------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.flex li {
  margin: 10px 0;
  width: 24%;
  padding: 15px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border: 2px solid rgba(2, 114, 4, 0.2);
}

@media all and (max-width: 639px) {
  .flex li {
    margin: 0;
  }
}

.flex li .border {
  position: absolute;
  background: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.flex li .border:nth-of-type(1) {
  top: 0;
  left: 0;
  border-left: 1px solid #5c4332;
  border-top: 1px solid #5c4332;
  width: 50px;
  height: 30px;
}

.flex li .border:nth-of-type(2) {
  bottom: 0;
  right: 0;
  border-right: 1px solid #5c4332;
  border-bottom: 1px solid #5c4332;
  width: 50px;
  height: 30px;
}

.flex li:hover {
  background: #027204;
}

.flex li:hover .border {
  width: 102%;
  height: 105%;
}

.flex li:hover .linkbtn-more {
  background: #027204;
  color: #fff;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.flex li a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.flex li:hover .snip1445 img,
.flex li:hover .snip1445 .hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.4;
  opacity: 0.4;
}

.flex li:hover .snip1445 figcaption:before,
.flex li:hover .snip1445 .hover figcaption:before,
.flex li:hover .snip1445 figcaption:after,
.flex li:hover .snip1445 .hover figcaption:after,
.flex li:hover .snip1445 figcaption div:before,
.flex li:hover .snip1445 .hover figcaption div:before,
.flex li:hover .snip1445 figcaption div:after,
.flex li:hover .snip1445 .hover figcaption div:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.flex li:hover .snip1445 figcaption:before,
.flex li:hover .snip1445 .hover figcaption:before,
.flex li:hover .snip1445 figcaption:after,
.flex li:hover .snip1445 .hover figcaption:after {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.flex li:hover .linkbtn-ttl {
  color: #fff;
}

.snip1445 {
  position: relative;
  overflow: hidden;
  min-width: 230px;
  max-width: 100%;
  height: 200px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #fff;
  background-color: #111;
  border: 1px solid #fff;
}

.snip1445 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.snip1445 *:before, .snip1445 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.snip1445 img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  vertical-align: top;
}

.snip1445 figcaption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 10px 10px;
}

.snip1445 figcaption:before, .snip1445 figcaption:after {
  height: 1px;
  width: 100%;
  position: absolute;
  content: '';
  background-color: #ffffff;
}

.snip1445 figcaption:before {
  top: 0;
  left: 0;
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
}

.snip1445 figcaption:after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(-250%);
  transform: translateX(-250%);
}

.snip1445 figcaption > div:before, .snip1445 figcaption > div:after {
  width: 1px;
  height: 300px;
  position: absolute;
  content: '';
  background-color: #ffffff;
}

.snip1445 figcaption > div:before {
  top: 0;
  left: 0;
  -webkit-transform: translateY(200%);
  transform: translateY(200%);
}

.snip1445 figcaption > div:after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(-250%);
  transform: translateY(-250%);
}

.snip1445 h2,
.snip1445 h4 {
  margin: 0;
  width: 150px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  color: #027204;
}

.snip1445 h2 {
  font-size: 1.6rem;
  line-height: 2;
  font-family: "Sulphur Point", "Playfair Display", serif;
  letter-spacing: 1px;
}

.snip1445 .click {
  display: block;
  font-weight: bold;
  width: 170px;
  margin-left: auto;
  background-color: #8a2206;
  padding: 3px 10px;
  color: #111;
  text-shadow: #fff 0px 0px 0px;
}

.snip1445 img {
  opacity: 0.9;
}

.linkbtn-ttl {
  font-size: 2rem;
  color: #5c4332;
  margin-bottom: 10px;
  float: left;
  border-bottom: 1px solid #8a2206;
}

@media all and (max-width: 639px) {
  .linkbtn-ttl {
    font-size: 1.6rem;
  }
}

.linkbtn-more {
  float: right;
  background: #111;
  color: #fff;
  padding: 3px;
  border: 1px solid lemonchiffon;
}

@media all and (max-width: 639px) {
  .linkbtn-more {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .flex li {
    width: 80%;
    margin-bottom: 30px;
  }
  .snip1445 {
    min-width: 230px;
    max-width: 100%;
    height: 200px;
  }
  .snip1445 img {
    opacity: 0.6;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .flex li {
    width: 95%;
  }
}

.txt {
  line-height: 2;
  padding: 5px;
}

.linkbtn-txt {
  color: #111;
  line-height: 1.5;
  margin-top: 10px;
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.content img {
  width: 48%;
}

.content:before {
  display: block;
  content: attr(data-text) "";
  font-family: "font__en";
  position: absolute;
  font-weight: normal;
  font-size: 4.5rem;
  top: -50px;
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  text-shadow: #fff 2px 0px, #fff -2px 0px,
 #fff 0px -2px, #fff 0px 2px,
 #fff 2px 2px, #fff -2px 2px,
 #fff 2px -2px, #fff -2px -2px,
 #fff 1px 2px, #fff -1px 2px,
 #fff 1px -2px, #fff -1px -2px,
 #fff 2px 1px, #fff -2px 1px,
 #fff 2px -1px, #fff -2px -1px;
}

@media all and (max-width: 896px) {
  .content {
    display: block;
  }
  .content img {
    width: 100%;
    display: block;
  }
  .content:before {
    font-size: 4rem;
  }
}

@media all and (max-width: 639px) {
  .content:before {
    font-size: 2.5rem;
    white-space: inherit;
    top: -30px;
    line-height: 1.2;
    width: 100%;
  }
}

.box1 {
  padding: 10px;
  position: relative;
  background: lemonchiffon;
  margin-bottom: 15px;
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list3 > li {
  width: 32%;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.list3 > li:not(:nth-child(3n)) {
  margin-right: 1.7%;
}

@media all and (max-width: 639px) {
  .list3 > li {
    width: 100%;
    margin: 0 auto 15px;
  }
  .list3 > li:not(:nth-child(3n)) {
    margin: 0 auto 15px;
  }
}

.list3.voice li {
  border: 2px solid #fff;
  padding: 15px 10px 10px 20px;
  position: relative;
}

.list3.voice li:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border: 2px solid #fff;
  border-radius: 100%;
  left: 5px;
  top: 5px;
}

.memo {
  background: #F2F2F2;
  padding: 10px;
}

.list-type01 li {
  font-weight: bold;
  background: #0c3b4b;
  padding: 4px 5px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.list-type01 li:not(:last-child) {
  margin-right: 20px;
}

.list-type01 li:not(:last-child):after {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2.5rem;
  color: #ffca10;
}

@media all and (max-width: 639px) {
  .list-type01 li {
    width: 100%;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .list-type01 li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .list-type01 li:not(:last-child):after {
    font-family: "Font Awesome 5 Free";
    content: "\f0d7";
    position: absolute;
    right: auto;
    left: 50%;
    top: auto;
    bottom: -30px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 2.5rem;
    color: #ffca10;
  }
}

.lsingle {
  float: left;
}

@media all and (max-width: 639px) {
  .lsingle {
    margin-bottom: 20px;
  }
}

.rsingle {
  float: right;
}

.lsingle,
.rsingle {
  width: 48.44%;
}

@media all and (max-width: 896px) {
  .lsingle,
  .rsingle {
    float: none;
    width: 100%;
  }
}

.foot_logo {
  text-align: center;
  margin: 0 auto 10px;
}

.point {
  padding: 15px 10px 10px;
  margin-top: 25px;
  border: 3px solid #8a2206;
  background: lemonchiffon;
  position: relative;
}

.point:before {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 3px 9px;
  line-height: 1;
  font-size: 16px;
  background: #8a2206;
  color: #fff;
  font-weight: bold;
  content: "ワンポイント";
  border-radius: 5px;
}

.plant-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 900px;
  margin: 0 auto 10px;
}

.plant-dl dt, .plant-dl dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.plant-dl dt {
  width: 35%;
  margin-right: 20px;
  font-size: 2.5rem;
  border-right: 1px dashed #fff;
  line-height: 1.4;
  padding-right: 10px;
  font-weight: bold;
  text-align: right;
  margin-bottom: 20px;
}

.plant-dl dd {
  width: calc(100% - 38%);
  margin-bottom: 20px;
}

@media all and (max-width: 639px) {
  .plant-dl dt {
    font-size: 2rem;
    margin-right: 15px;
  }
  .plant-dl dd {
    width: calc(100% - 43%);
  }
}

.list-center {
  text-align: center;
}

.list-center li {
  display: inline-block;
}

.list-center li:not(:last-child) {
  margin-right: 10px;
}

@media all and (max-width: 639px) {
  .list-center li {
    margin-bottom: 10px;
  }
  .list-center li:not(:last-child) {
    margin-right: 0;
  }
}

/*プルダウンメニュー*/
#navi ul li {
  position: relative;
}

#navi ul li ul {
  position: absolute;
  top: 55px;
  width: 112px;
  z-index: 100;
}

#navi ul li ul li {
  visibility: hidden;
  overflow: hidden;
  height: 0;
  background: rgba(0, 0, 0, 0.3);
}

#navi ul li ul li a {
  display: block;
  width: 180px;
  height: 40px;
  color: #fff;
  background: none;
  text-align: left;
  text-indent: 10px;
  font-size: 13px;
  border: none;
}

#navi ul li:hover ul li, #navi ul li a:hover ul li {
  visibility: visible;
  overflow: visible;
  height: 40px;
  z-index: 10;
}

#navi * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#navi ul li ul li a:before {
  position: absolute;
  bottom: 19px;
  left: 0;
  width: 0;
  height: 1px;
  background: #26ae60;
  content: '';
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

#header.scrolled #navi ul li ul li a {
  background: #fff;
}

.tcenter_pc {
  text-align: center;
}

@media all and (max-width: 639px) {
  .tcenter_pc {
    text-align: left;
  }
}

a.anchor {
  display: block;
  padding-top: 120px;
  margin-top: -120px;
}

@media screen and (max-width: 768px) {
  a.anchor {
    padding-top: 50px;
    margin-top: -50px;
  }
}

/* Tiny Carousel */
.slider1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 0px;
  background-repeat: repeat;
}

.slider1 .viewport {
  width: 100%;
  margin: 0 auto;
  height: 220px;
  position: relative;
}

.slider1 .buttons {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  position: absolute;
  top: 22%;
  left: 0;
  width: 10px;
  height: -50px;
  color: #aaa;
  text-decoration: none;
  margin: 0 5px;
  z-index: 5;
  cursor: pointer;
  font-size: 60px;
}

.slider1 .next {
  right: 10px;
  left: auto;
  top: 22%;
}

.slider1 .buttons:hover {
  opacity: 0.6;
}

.slider1 .disable {
  visibility: hidden;
}

.slider1 .overview {
  list-style: none;
  position: absolute;
  padding: 0;
  margin: 0;
  width: 180px;
  left: 0;
  top: -5px;
}

.slider1 .overview li {
  width: 220px;
  float: left;
  text-align: center;
  vertical-align: middle;
  display: table;
  z-index: 99999;
  overflow: hidden;
  font-weight: bold;
  margin: 5px;
}

.slider1 img {
  -webkit-box-shadow: 2pz 2pz 2px rgba(0, 0, 0, 0.3);
          box-shadow: 2pz 2pz 2px rgba(0, 0, 0, 0.3);
  border: 1px solid #f4f4f4;
  border-radius: 100%;
  background: #fff;
  width: 200px;
  height: 200px;
  padding: 5px;
  vertical-align: middle;
  text-align: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider1 li p {
  margin-top: 10px;
  height: -60px;
  text-align: center;
  color: #555 !important;
  font-weight: normal;
  font-size: 13px !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 90%;
  color: #5c4332;
  font-weight: bold;
  line-height: 1.4;
}

.mini {
  font-size: 90%;
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -10px;
}

.list4 li {
  overflow: hidden;
  width: 24.25%;
  margin: 0 1% 10px 0;
}

.list4 li p {
  font-size: 90%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: bold;
  letter-spacing: 1.5px;
}

@media screen and (min-width: 801px) {
  .list4 li:nth-child(4n) {
    margin-right: 0;
  }
}

.list4 li img {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (max-width: 896px) {
  .list4 li {
    overflow: hidden;
    width: 49%;
    margin: 0 2% 10px 0;
  }
  .list4 li:nth-child(2n) {
    margin-right: 0;
  }
  .list4 li img {
    height: 200px;
  }
}

@media screen and (max-width: 500px) {
  .list4 li {
    overflow: hidden;
    width: 49%;
    margin: 0 2% 10px 0;
  }
  .list4 li:nth-child(2n) {
    margin-right: 0;
  }
  .list4 li img {
    height: 100px;
  }
}

.bg-img1 {
  background: url(../img/bg-img1.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}

@media all and (max-width: 896px) {
  .bg-img1 {
    background: url(../img/bg-img1sp.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
  }
}

.bg-img2 {
  background: url(../img/bg-img2.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}

@media all and (max-width: 896px) {
  .bg-img2 {
    background: url(../img/bg-img2sp.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
  }
}

.bg-img3 {
  /* background: url(../img/bg-img3.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;*/
}

@media all and (max-width: 896px) {
  .bg-img3 {
    background: url(../img/bg-img3sp.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
  }
}

.bg-img4 {
  background: url(../img/bg-img4.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}

@media all and (max-width: 896px) {
  .bg-img4 {
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
  }
}

.hover_txt {
  width: 300px;
  height: 300px;
  /*overflow: hidden;*/
  margin: 0 auto 20px;
  position: relative;
}

.hover_txt img {
  border-radius: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hover_txt .caption {
  color: #fff;
  padding: 10px;
  font-size: 90%;
  font-weight: bold;
}

.hover_txt .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(1, 64, 2, 0.8);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
  /* 大きさを０にして表示しない */
  transform: scale(0);
}

.hover_txt:hover .mask {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.hover_txt:hover img {
  border-radius: 0%;
}

.marker-g {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #a9d9be));
  background: linear-gradient(transparent 70%, #a9d9be 0%);
  z-index: 0;
}

.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

@media all and (max-width: 639px) {
  .wrap {
    display: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.wrap > div {
  width: 50%;
}

@media all and (max-width: 639px) {
  .wrap > div {
    width: initial;
  }
}

.slick-slide img {
  width: 100%;
}
/*# sourceMappingURL=basis.css.map */