@charset "utf-8";
/* ------------------------------------- */
/*mv*/
/* ------------------------------------- */
/* ------------------------------------- */
/* タイトル */
.mv{
  position: relative;
}
.mv h2{
  font-size: 2rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  color:#fff;
  position: absolute;
  bottom: 0;
  left:0;
  background: rgba(84,167,52,0.85);
  border-radius: 0 30px 0 0;
  z-index: 10;
}
.mv h2 span{
  font-size: 1.2rem;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 3px;
  padding-left:20px;
  color:#fff;
}
@media screen and (min-width: 601px) {
  .mv h2 {
      padding: 15px 30px 15px 0px;
      padding-left: calc(calc(100% - 1110px)/2);
  }
}
@media screen and (max-width: 600px) {
  .mv h2{
    font-size: 2rem;
    padding:15px 30px 15px 4%;
  }
  .mv h2 span{
    display: block;
    padding-left:0;
    letter-spacing: 0;
    margin-top:5px;
  }
}
/* ------------------------------------- */
/* スライダー */
.swiper-container{
  height:660px;
  padding-bottom: 0;
}
.swiper-slide.slide1{
  background: url(../img/top/slide1.jpg) no-repeat;
  background-position:center;
  background-size: cover;
}
.swiper-slide.slide2{
  background: url(../img/top/slide2.jpg) no-repeat;
  background-position:center;
  background-size: cover;
}
.swiper-slide.slide3{
  background: url(../img/top/slide3.jpg) no-repeat;
  background-position:center;
  background-size: cover;
}
.swiper-slide.slide4{
  background: url(../img/top/slide4.jpg) no-repeat;
  background-position:center;
  background-size: cover;
}
.swiper-slide.slide5{
  background: url(../img/top/slide5.jpg) no-repeat;
  background-position:center;
  background-size: cover;
}
.swiper-slide.slide6{
  background: url(../img/top/slide6.jpg) no-repeat;
  background-position:center;
  background-size: cover;
}
.swiper-slide a{
  display: block;
  width:100%;
  height:100%;
}
/* ------------------------------------- */
/* 前ページ、次ページボタン共通のスタイル */
.swiper-button-prev,
.swiper-button-next {
	width: 50px;
	height: 50px;
	background-size: 50px 50px;
	margin-top: -25px; /* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
}
/* 次ページボタンのスタイル */
.swiper-button-next {
	background-image: url(../img/top/btn_next.svg);
}
/* 前ページボタンのスタイル */
.swiper-button-prev {
	background-image: url(../img/top/btn_prev.svg);
}
/* ------------------------------------- */
/* ページャー */
.swiper-container-horizontal>.swiper-pagination-bullets{
  bottom: 20px;
  width: auto;
  right: 11%;
  left: auto;
}
.swiper-pagination-bullet{
  background: transparent;
  border: 2px solid #fff;
  opacity: 1;
  width:15px;
  height:15px;
}
.swiper-pagination-bullet-active{
  background: #fff;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 6px;
}
/* ------------------------------------- */
@media screen and (max-width: 600px) {
  .swiper-container{
    height:auto;
  }
  .swiper-slide.slide1,.swiper-slide.slide2,.swiper-slide.slide3,.swiper-slide.slide4,.swiper-slide.slide5,.swiper-slide.slide6{
    background: none;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 25px;
    height: 50px;
    background-size: 25px 50px;
    margin-top: -12.5px; /* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
  }
  /* 次ページボタンのスタイル */
  .swiper-button-next {
    background-image: url(../img/top/btn_next_sp.svg);
    right:0;
  }
  /* 前ページボタンのスタイル */
  .swiper-button-prev {
    background-image: url(../img/top/btn_prev_sp.svg);
    left:0;
  }
  .swiper-container-horizontal>.swiper-pagination-bullets{
    right:4%;
  }
  .swiper-pagination-bullet{
    border: 1px solid #fff;
    width:9px;
    height:9px;
  }
  .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
    margin:0 4px;
  }
}
/* ------------------------------------- */
/*新着情報*/
/* ------------------------------------- */
.news{
  padding:45px 0 70px;
}
.news .sec-inner{
  max-width: 980px;
  display: flex;
  align-items: center;
  padding:0 30px;
  position: relative;
}
.news .text-wrap{
  width: 22.5%;
  padding-right: 30px;
}
.news .heading{
  margin-top:20px;
}
.news .heading span{
  display: block;
  margin-right:0;
}
.news-wrap{
  display: flex;
  flex-wrap: wrap;
  width:77.5%;
}
.news-wrap dl{
  width:100%;
}
.news-wrap .box{
  width:100%;
  margin-bottom:2px;
}
.news-wrap .box a{
  display: flex;
  align-items: center;
  padding:25px 20px;
  transition: 0.3s;
  border-radius: 10px;
  background: #fff;
}
.news-wrap .box a:hover{
  background:#f5d70f ;
}
.news-wrap dt{
  margin-right:20px;
  width:15%;
}
.news-wrap .date{
  display: inline-block;
  font-size: 1.2rem;
}
.news-wrap .box a .ttl{
  width:85%;
  line-height:1.3;
  white-space: nowrap;
  overflow: hidden;
}
/* ------------------------------------- */
/*準備中の場合*/
.news-wrap p.message{
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .news .sec-inner{
    display: block;
    padding:0 4%;
  }
  .news .text-wrap{
    width: 100%;
    padding-right:0;
  }
  .news .heading{
    position: static;
  }
  .news .heading span{
    margin-right: 10px;
    display: inline-block;
  }
  .news-wrap{
    width:100%;
    margin-bottom:35px;
  }
  .news-wrap .box a{
    display: block;
    padding:15px 4%;
  }
  .news-wrap .box a.new::before{
    top: 15px;
    right: 4%;
    left:auto;
    transform: translateY(0%);
  }
  .news-wrap .box dt,
  .news-wrap .box a .ttl{
    width:100%;
  }
  .news-wrap .box dt{
    margin-bottom:5px;
  }
  .news-wrap .box a .ttl{
    white-space: normal;
    display: -webkit-box; 
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    /*IE対策*/ 
    line-height: 1.3; 
    max-height: 2.6em;
  }
  .news .btn{
    position: static;
    width:100%;
  }
}
/* ------------------------------------- */
/*イベント*/
/* ------------------------------------- */
.event{
  background: #efe6c2;
}
.event .sec-inner{
  position: relative;
}
.event .bg-image1{
  width: 303px;
  position: absolute;
  top: -130px;
  right: 0;
}
.event .event-wrap{
  display: flex;
  flex-wrap: wrap;
}
.event .event-wrap .box{
  display: block;
  width: calc(25% - 30.5px);
  background: #fff;
  padding: 20px 20px 30px;
  border-radius: 10px;
  margin-right: 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  outline: 1px solid #e8e8e8;
}
.event .event-wrap .box:hover{
  outline:3px solid #54a734;
}
.event .event-wrap .box::before{
  content: "";
  width:80px;
  height:80px;
  border-radius: 100px;
  background: #54a734;
  position: absolute;
  bottom: -40px;
  right: -40px;
}
.event .event-wrap .box::after{
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom:11px;
  right:11px;
}
.event .event-wrap .box:last-of-type{
  margin-right: 0;
}
.event .event-wrap .box .date{
  border-bottom:1px solid #efe6c2;
  margin-bottom: 15px;
}
.event .event-wrap .box .date .box-heading{
  font-size: 1.4rem;
  background: #efe6c2; 
  padding: 8px;
  display: inline-block;
  border-radius: 4px 4px 0 0;
  margin-right:10px;
}
.event .event-wrap .box figure img{
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
  /* for ie (ofi.min.js) */
  font-family: 'object-fit: cover;';
}
.event .event-wrap .box .ttl{
  margin-top:20px;
  display: -webkit-box; 
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; 
  overflow: hidden; 
  /*IE対策*/ 
  line-height: 1.3; 
  max-height: 2.6em;
}
.event .btn{
  margin:40px auto 0;
}
/* ------------------------------------- */
/*準備中の場合*/
.event .event-wrap p.message{
  width: 100%;
  max-width: 920px;
  margin: 0 auto 50px;
  text-align: center;
  background: #f7f5ec;
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .event .bg-image1{
    width: 181px;
    top: -115px;
    right:-4%;
  }
  .event .event-wrap{
    display: block;
  }
  .event .event-wrap .box{
    width:100%;
    min-height:270px;
    margin-bottom:30px;
  }
  .event .event-wrap .box figure{
    width:44.6%;
    position: absolute;
    left:20px;
    top:20px;
  }
  .event .event-wrap .box .date .box-heading{
    margin-bottom:5px;
  }
  .event .event-wrap .box .date{
    padding-bottom:5px;
    margin-left:55.4%;
  }
  .event .event-wrap .box .ttl{
    margin-left:55.4%;
    display: -webkit-box; 
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    /*IE対策*/ 
    line-height: 1.3; 
    max-height: 6.5em;
  }
}
/* ------------------------------------- */
/*カテゴリー*/
/* ------------------------------------- */
.category-list{
  background: #54a734;
  padding-bottom:50px;
}
.category-list .sec-inner{
  position: relative;
}
.category-list .bg-image2{
  width: 311px;
  position: absolute;
  left: 0;
  top: -170px;
}
.category-list .heading,
.category-list .heading span{
  color: #fff;
  text-align: center;
}
.category-list .heading span{
  display: block;
  margin-bottom:12px;
}
.category-list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.category-list ul li{
  width: calc(33.3% - 20px);
  margin-bottom:30px;
}
.category-list ul li a{
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background:#fff;
}
.category-list ul li a img{
  transition: 0.3s;
}
.category-list ul li a:hover img{
  transform: scale(1.2);
  opacity: 0.5;
}
@media screen and (max-width: 600px) {
  .category-list{
    padding-bottom:60px;
  }
  .category-list .bg-image2{
    width:187px;
    top: -135px;
    left:-4%;
  }
  .category-list .heading span{
    margin-right:0;
  }
  .category-list ul{
    display: block;
  }
  .category-list ul li{
    width: 100%;
    margin-bottom:20px;
  }
}
/* ------------------------------------- */
/*その他*/
/* ------------------------------------- */
.other .sec-inner{
  display: flex;
  justify-content: space-between;
  row-gap: 15px;
  flex-wrap: wrap;
}
.other a{
  width:calc(50% - 15px);
  display: block;
  color: #54a734;
  font-weight: bold;
  font-size: 3rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  border-radius: 10px;
  border: 3px solid #54a734;
  background: #fff;
  padding: 30px 40px;
  position: relative;
  display: flex;
  align-items: center;
}
.other a::after{
  content: "";
  width:50px;
  height:50px;
  background: url(../img/top/btn_arrow.svg) no-repeat;
  background-size: 50px 50px;
  position: absolute;
  top:0;
  bottom:0;
  margin: auto;
  right:30px;
}
.other a span{
  font-family: 'Nunito', sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  margin-left: 30px;
}
@media screen and (max-width: 600px) {
  .other .sec-inner{
    display: block;
  }
  .other a{
    width:100%;
    font-size: 2.4rem;
    padding:25px 4%;
  }
  .other a:not(:last-of-type){
    margin-bottom:20px;
  }
  .other a::after{
    right: 4%;
  }
  .other a span{
    margin-left:0;
    font-size: 1.8rem;
  }
}
/* ------------------------------------- */
/*コンタクト*/
/* ------------------------------------- */
.contact{
  background: #f5d70f;
}
.contact .sec-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 980px;
  padding: 0 30px;
}
.contact .left-block{
  width:61%;
  padding-right:30px;
}
.contact p{
  line-height: 1.7;
}
.contact .btn{
  width: 36%;
}
@media screen and (max-width: 600px) {
  .contact .sec-inner{
    display: block;
    padding:0;
  }
  .contact .heading span{
    display: block;
  }
  .contact .left-block{
    width: 100%;
    padding-right:0;
  }
  .contact .btn{
    margin-top: 30px;
    width:100%;
  }
}
