@charset "utf-8";

@keyframes fade_L {
  0% {
    opacity: 0;
    transform: translateX(-39px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


@keyframes fade_R {
  0% {
    opacity: 0;
    transform: translateX(39px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade_UP {
  0% {
    opacity: 0;
    transform: translateY(17px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================================================================
   メイン
========================================================================== */

#main {
  position: relative;
  background: url(../image/back_stripe_wh.jpg)  #faf5eb;
  animation: back_anime 150s linear infinite;
}

#main .main_wrapper {
  position: relative;
  z-index: 5;
  height: auto;
  padding: 336px 66px 154px 66px;
}

#main .main_wrapper .main_text {
  position: absolute;
  display: block;
  top: 164px;
  right: calc(50% + 6vw);
  width: 354px;
  animation: 1.0s fade_L ease-in-out forwards;
}

#main .main_wrapper .main_img {
  /* display: block; */
  width: 88vw;
  max-width: 1200px;
  margin: 0 auto;
  animation: 1.5s fade_R ease-in-out forwards;
}

#main::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 106px;
  background: url(../image/back_slope_yg.png) bottom center repeat-x;
  z-index: 100;
}





@media screen and (max-width : 960px ){

  #main .main_wrapper {
    padding: 248px 1.7vw 96px;
  }

  #main::after {
    bottom: -1px;
    height: 70px;
    background: url(../image/back_slope_yg.png) bottom center repeat-x;
    background-size: 924px 70px;
  }


  #main .main_wrapper .main_text {
    top: 124px;
    width: 268px;
    right: calc(50% + 4.5vw);
  }

}

@media screen and (max-width : 650px ){

  #main .main_wrapper {
    padding: 236px 0 70px;
  }

  #main .main_wrapper .main_text {
    top: 104px;
    width: 208px;
    right: inherit;
    left: 11vw;
  }

  #main .main_wrapper .main_img {
    width: 98.5vw;
    animation: 1.3s fade_UP ease-in-out forwards;
  }

  #main::after {
    bottom: -28px;
  }

}



/* ==========================================================================
   お知らせ
========================================================================== */
#top_news {
  position: relative;
  margin: 0 auto;
  padding: 110px 0 208px;
  background: url(../image/back_turf.png) top center no-repeat #b4d984;
  box-sizing: border-box;
  z-index: 200;
}
  
#top_news::before {
  content: "";
  display: block;
  position: absolute;
  top: -56px;
  left: 0;
  right: 0;
  width: 230px;
  height: 100px;
  margin: auto;
  background: url(../image/top_news_tit.png) bottom center no-repeat;
  background-size: cover;
  z-index: 300;
}

#top_news::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  width: 100%;
  height: 32px;
  background: url(../image/back_wave_under.png) bottom center repeat-x;
  z-index: 400;
}

#top_news .illust_area {
  position: absolute;
  overflow: hidden;
  top: -160px;
  width: 100%;
  height: 300px;
  z-index: 200;
}

#top_news .illust_area img {
  display: block;
  position: absolute;
}

#top_news .illust_area .l_tree {
  width: 148px;
  top: 72px;
  right: calc(50% + 400px); 
}

#top_news .illust_area .l_shrub {
  width: 98px;
  top: 212px;
  right: calc(50% + 300px); 
}

#top_news .illust_area .r_tree {
  width: 138px;
  top: 30px;
  left: calc(50% + 400px);
}

#top_news .illust_area .r_flower {
  width: 110px;
  top: 216px;
  left: calc(50% + 294px);
}

#top_news .top_news_inr {
  position: relative;
  width: 100%;
}

#top_news .top_news_inr .top_news_list {
  position: relative;
  width: calc(100% - 30px);
  max-width: 840px;
  margin: 47px auto 0;
  padding: 15px 17px;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 1px 3px 8px 1.5px rgba(0, 0, 0, 0.07);
  z-index: 300;
}

#top_news .top_news_inr .top_news_list dl {
  display: flex;
  position: relative;
  justify-content: left;
  flex-flow: row wrap;
  width: calc(100% - 30px);
  border-bottom: 1px dotted #d2d2d2;
  padding: 16px;
}

#top_news .top_news_inr .top_news_list dl:last-child {
  border-bottom: none;
}

#top_news .top_news_inr .top_news_list dt {
  color: #009977;
	font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight:700;
  text-transform: uppercase;
  padding: 0 28px 4px 0;
}

#top_news .top_news_inr .top_news_list dd {
  font-size: 18px;
}

#top_news .top_news_inr .top_news_list dd a {
  color: #333;
}

#top_news .top_news_inr .nav-archive {
  min-width: 184px;
  margin-top: 36px;
}

#top_news .top_news_inr .archive-button {
  max-width: 218px;
  height: 56px;
  font-size: 15px;
  border-radius: 28px;
  padding-top: 16px;
  color: #009977;
  border: 3px solid #009977;
}

#top_news .top_news_inr .archive-button:hover {
  color: #fff;
  background: #009977;
  opacity: 1.0;
}


@media screen and (max-width : 960px ){
  #top_news {
    padding: 68px 0 192px;
    background: url(../image/back_turf.png) top  center repeat-y #b4d984;
    background-size: 1120px 554px;
  }

  #top_news::before {
    top: -40px;
    width: 182px;
    height: 80px;
  }

  #top_news .illust_area {
    top: -84px;
    height: 184px;
  }
  
  #top_news .illust_area .l_tree {
    width: 118px;
    top: 18px;
    left: -40px;
    right: 0;
  }

  #top_news .illust_area .l_shrub {
    width: 68px;
    top: 116px;
    right: calc(50% + 33vw); 
  }
  
  #top_news .illust_area .r_tree {
    width: 104px;
    top: 0px;
    left: unset;
    right: -34px;
  }

  #top_news .illust_area .r_flower {
    width: 84px;
    top: 124px;
    left: calc(50% + 32vw);
  }
  

  #top_news .top_news_inr .top_news_list {
    margin: 24px auto 0;
  }

  #top_news .top_news_inr .top_news_list dt {
    font-size: 10px;
    padding: 0 16px 6px 0;
  }
  
  #top_news .top_news_inr .top_news_list dd {
    font-size: 14px;
    margin-inline-start: 3px;
  }

}

@media screen and (max-width : 650px ){

  #top_news {
    padding: 60px 0 137px;
  }
  
  #top_news::before {
    top: -20px;
    width: 136px;
    height: 59px;
  }

  #top_news .illust_area {
    height: 144px;
  }

  #top_news .illust_area .l_tree {
    width: 77px;
    top: 23px;
    left: -32px;
  }

  #top_news .illust_area .l_shrub {
    width: 50px;
    top: 102px;
  }
  
  #top_news .illust_area .r_tree {
    width: 71px;
    top: 14px;
    right: -29px;
  }

  #top_news .illust_area .r_flower {
    width: 60px;
    top: 102px;
  }

  #top_news .top_news_inr .top_news_list dl {
    display: block;
    width: 100%;
  }

  #top_news .top_news_inr .top_news_list dd {
    margin-inline-start: 0px;
  }

  #top_news .top_news_inr .archive-button {
    max-width: 200px;
    height: 48px;
    font-size: 13px;
    border-radius: 24px;
    padding-top: 16px;
    border: 2px solid #009977;
  }

}

/* ==========================================================================
   コネクタァスについて
========================================================================== */

#top_about {
  position: relative;
  padding: 154px 0 240px;
  background: url(../image/back_wave_yg.jpg) ;
  animation: back_anime 60s linear infinite;
}

#top_about::before {
  content: "";
  display: block;
  position: absolute;
  top: -28px;
  left: 54px;
  right: 0;
  width: 480px;
  height: 152px;
  margin: auto;
  background: url(../image/top_about_tit.png) bottom center no-repeat;
  background-size: cover;
  z-index: 200;
}

#top_about .illust_area {
  position: absolute;
  overflow: hidden;
  top: 150px;
  width: 100%;
  height: 100px;
  z-index: 300;
}

#top_about .illust_area img {
  display: block;
  position: absolute;
}

#top_about .illust_area .l_birds{
  width: 142px;
  top: 4px;
  right: calc(50% + 368px);
}

#top_about .illust_area .r_cat{
  width: 76px;
  top: 5px;
  left: calc(50% + 400px);
}

.top_about_inr {
  position: relative; 
  width: 100%;
  /* background: url(../image/top_about_bg.png) top 180px center no-repeat; */
  /* background-size: cover; */
}

.top_about_inr .about_upbox,
.top_about_inr .about_downbox {
  display: flex;
  position: relative;
  justify-content: space-between;
  flex-flow: row wrap;
  width: calc(100% - 30px);
  max-width: 1080px;
  padding: 20px 20px 30px;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 1px 3px 8px 1.5px rgba(0, 0, 0, 0.07);
  z-index: 100;
}


/* upbox */

.top_about_inr .about_upbox {
  margin: 30px auto 18px;
  
}

.top_about_inr .about_upbox .upbox {
  display: block;
  position: relative;
  width: 32%;
}

.top_about_inr .about_upbox .upbox .img_area {
  position: relative;
  width: 100%;
}

.top_about_inr .about_upbox .upbox .img_area::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 200;
}

.top_about_inr .about_upbox .upbox.box01 .img_area::after {
  bottom: -15px;
  width: 88px;
  height: 56px;
  background: url(../image/upbox_icon01.png) bottom center no-repeat;
  background-size: cover;
}

.top_about_inr .about_upbox .upbox.box02 .img_area::after {
  bottom: -14px;
  width: 60px;
  height: 58px;
  background: url(../image/upbox_icon02.png) bottom center no-repeat;
  background-size: cover;
}

.top_about_inr .about_upbox .upbox.box03 .img_area::after {
  bottom: -13px;
  width: 62px;
  height: 52px;
  background: url(../image/upbox_icon03.png) bottom center no-repeat;
  background-size: cover;
}

.top_about_inr .about_upbox .upbox .img_area .img_inr {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.top_about_inr .about_upbox .upbox .img_area img {
  transition: transform 0.4s ease;
}

.top_about_inr .about_upbox .upbox:hover .img_area img {
  transform: scale3d(1.1, 1.1, 1.1);
}

.top_about_inr .about_upbox .upbox h2 {
  text-align: center;
  color: #009977;
  font-size: 32px;
  font-weight: 700;
  margin: 40px auto 20px
}

.top_about_inr .about_upbox .upbox.box03 h2 .stxt {
  font-size: 0.85em;
}

.top_about_inr .about_upbox .upbox p {
  color: #333;
  font-size: 13px;
  line-height: 1.4;
  width: calc(100% - 13px);
  margin-bottom: 14px;
  padding-left: 6px;
}

.top_about_inr .about_upbox .upbox:hover .link_btn {
  color: #fff;
  background: #00bb88;
}


/* downbox */

.top_about_inr .about_downbox {
  margin: 0 auto;
}

.top_about_inr .about_downbox .downbox {
  display: block;
  position: relative;
  width: 23.5%;
}

.top_about_inr .about_downbox .downbox .img_area {
  position: relative;
  width: 100%;
}

.top_about_inr .about_downbox .downbox .img_area .img_inr {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.top_about_inr .about_downbox .downbox .img_area img {
  transition: transform 0.4s ease;
}

.top_about_inr .about_downbox .downbox:hover .img_area img {
  transform: scale3d(1.1, 1.1, 1.1);
}

.top_about_inr .about_downbox .downbox .text_area {
  position: relative;
  width: 100%;
}

.top_about_inr .about_downbox .downbox .text_area::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 200;
}

.top_about_inr .about_downbox .downbox.box01 .text_area::after {
  top: -72px;
  width: 60px;
  height: 52px;
  background: url(../image/downbox_icon01.png) top center no-repeat;
  background-size: cover;
}

.top_about_inr .about_downbox .downbox.box02 .text_area::after {
  top: -72px;
  width: 50px;
  height: 52px;
  background: url(../image/downbox_icon02.png) top center no-repeat;
  background-size: cover;
}

.top_about_inr .about_downbox .downbox.box03 .text_area::after {
  top: -72px;
  width: 54px;
  height: 58px;
  background: url(../image/downbox_icon03.png) top center no-repeat;
  background-size: cover;
}

.top_about_inr .about_downbox .downbox.box04 .text_area::after {
  top: -78px;
  width: 32px;
  height: 60px;
  background: url(../image/downbox_icon04.png) top center no-repeat;
  background-size: cover;
}

.top_about_inr .about_downbox .downbox h2 {
  text-align: center;
  color: #009977;
  font-size: 18px;
  font-weight: 700;
  margin: 30px auto 12px
}

.top_about_inr .about_downbox .downbox p {
  color: #333;
  font-size: 13px;
  line-height: 1.4;
  width: calc(100% - 3px);
  margin-bottom: 14px;
  padding-left: 6px;
}

.top_about_inr .about_downbox .downbox:hover .link_btn {
  color: #fff;
  background: #00bb88;
}

@media screen and (max-width : 960px ){
  #top_about {
    padding: 106px 0 240px;
  }

  #top_about::before {
    top: -32px;
    left: 42px;
    width: 344px;
    height: 107px;
  }


  #top_about .illust_area {
    top: 88px;
    height: 64px;
  }

  #top_about .illust_area .l_birds{
    width: 92px;
    top: 8px;
    right: calc(50% + 31vw); 
  }

  #top_about .illust_area .r_cat{
    width: 56px;
    top: 0;
    left: unset;
    left: calc(50% + 33vw);
  }

}



@media screen and (max-width : 650px ){

  #top_about::before {
    top: -24px;
    left: 3px;
    width: 256px;
    height: 81px;
    background: url(../image/top_about_tit_sp.png) bottom center no-repeat;
    background-size: cover;
  }

  #top_about .illust_area {
    top: 200px;
    height: 56px;
  }

  #top_about .illust_area .l_birds{
    width: 69px;
    top: 10px;
  }

  #top_about .illust_area .r_cat{
    width: 41px;
    top: 8px;
    left: calc(50% + 38vw);
  }

  .top_about_inr .about_upbox,
  .top_about_inr .about_downbox {
    padding: 12px 12px 24px;
    border-radius: 5px;
  }

  /* upbox */

  .top_about_inr .about_upbox {
    margin: 26px auto 10px;
  }

  .top_about_inr .about_upbox .upbox {
    width: 100%;
  }

  .top_about_inr .about_upbox .upbox .img_area .img_inr {
    border-radius: 6px;
  }

  .top_about_inr .about_upbox .upbox h2 {
    font-size: 28px;
    margin: 26px auto 15px
  }

  .top_about_inr .about_upbox .upbox p {
    font-size: 12px;
    width: calc(100% - 10px);
    margin-bottom: 10px;
  }

  .top_about_inr .about_upbox .upbox.box02 {
    margin: 32px 0;
  }


    /* downbox */

    .top_about_inr .about_downbox .downbox {
      width: 48%;
      margin-bottom: 15px;
    }
  
    .top_about_inr .about_downbox .downbox .img_area .img_inr {
      border-radius: 4px;
    }

    .top_about_inr .about_downbox .downbox.box01 .text_area::after {
      top: -65px;
    }
    
    .top_about_inr .about_downbox .downbox.box02 .text_area::after {
      top: -60px;
    }
    
    .top_about_inr .about_downbox .downbox.box03 .text_area::after {
      top: -61px;
      left: -3px;
    }
    
    .top_about_inr .about_downbox .downbox.box04 .text_area::after {
      top: -69px;
    }
  

    .top_about_inr .about_downbox .downbox h2 {
      font-size: 15px;
      margin: 20px auto 10px;
    }
  
    .top_about_inr .about_downbox .downbox p {
      font-size: 13px;
      width: 100%;
      margin-bottom: 10px;
      padding-left: 2px;
    }
  

}


