@charset "UTF-8";
/* CSS Document */
/*トップ*/
.top-image{
  position: relative;
  width: 100%;
  height: 400px;
  background: url("../images/BG_green.jpg") no-repeat center/cover;
}
.top-filter {
  background-color: rgba(0, 0, 0, 0.20);
  height: 100%;
  width: 100%;
}
.top-image::after {
  position: absolute;
  content: "";
  background-image: url(../images/wave_long.svg);
  left: 0;
  background-repeat: repeat-x;
  height: 17px;
  background-position: center;
  width: 100%;
  bottom: -1px;
  background-size: 1200px;
}
.top-logo {
  display: block;
  position: absolute;
  width: 220px;
  cursor: pointer;
  z-index: 500;
  transition: all .5s;
  top: 12px;
  left: 15px;
}
.top-logo img {
  width: 100%;
  object-fit: cover;
}
.page-title {
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  color: #fff;
}
.page-title h1 {
  font-size: 2.6rem;
  font-family: 'Zen Maru Gothic', serif;
    font-weight: 500;
  letter-spacing: 0.2rem;
}
.page-title p {
  font-family: Arial, Helvetica, "sans-serif", "Helvetica Neue";
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}
/*トップ(タブレット)*/
@media(min-width:600px) {
  .top-logo {
    width: 260px;
  }
  .page-title {
  top: 43%;
}
}
/*トップ(PC)*/
@media(min-width:1000px) {
  .top-image {
    height:75vh;
  }
  .top-image::after {
    height: 27px;
    background-position: center;
    width: 100%;
    bottom: -5px;
    background-size: 1500px;
  }
  .page-title {
    position: absolute;
    top: 48%;
    left: 0;
    right: 0;
    text-align: center;
    line-height: 1.4;
    color: #fff;
  }
  .page-title h1 {
    font-size: 3.6rem;
    margin-bottom: 10px;
  }
  .page-title p {
    font-size: 2.0rem;
  }
}

/*お知らせ*/
.section-news{
  padding: 60px 20px 80px;
  position: relative;
}
.news-content{
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  vertical-align: middle;
}
.section-news p{
  text-align: justify;
}
.news-single-illust1{
    position: absolute;
    width: 20vw;
    max-width: 80px;
    bottom: 5%;
    left: -2%;
}
.illust-wrapper{
  max-width: 460px;
}
.news-single-illust1 img,.news-single-illust2 img{
  width: 100%;
  object-fit: contain;
}
.news-single-illust2{
    position: absolute;
    width: 18vw;
    max-width: 80px;
    bottom: 5%;
    right: -1%;
    transform: scale(-1,1);
}
.news-button {
    margin: 40px auto 0;
  width: 200px;
  position: relative;
  z-index: 100;
}
.news-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  background-color: #abd91d;
  color: #fff;
  padding: 11px 0 12px 0px;
  border-radius: 50px;
  transition:all .4s;
}
.news-button a::before {
    content: "";
    width: 17px;
    height: 17px;
    background: url(../images/arrow_white_left.svg) no-repeat center/contain;
    transition: all .4s ease-out;
    margin: 2px 6px 0 0;
}
.news-button a:hover {
  background-color: #83cd43;
}
.news-button a:hover::before {
  transform: translateX(-5px);
}
/*お知らせ（タブレット）*/
@media(min-width:600px){
  .section-news{
  padding: 80px 70px 100px;
}
.news-content{
  max-width: 720px;
}
  .section-news p{
  text-align: justify;
}
.illust-wrapper{
  max-width: 800px;
}
.news-single-illust1{
    width: 16vw;
    max-width: 100px;
    bottom: 4%;
    left: 3%;
}
.news-single-illust2{
    width: 12vw;
    max-width: 100px;
    bottom: 3%;
    right: 3%;
    transform: scale(-1,1);
}
  .news-button {
    margin: 60px auto 0;
    width: 220px;
  }
  .news-button a {
    font-size: 1.8rem;
    padding: 13px 0px 14px;
    border-radius: 80px;
  }
  .news-button a::before {
    content: "";
    width: 19px;
    height: 19px;
    margin:2px 8px 0 0;
  }
}
/*お知らせ（PC）*/
@media(min-width:1000px){
  .section-news{
  padding: 100px 110px 140px; 
}
  .news-content{
  max-width: 1000px;
  margin: 0 auto;
}
  .section-news p{
  text-align: justify;
}
.illust-wrapper{
    height: 80px;
    max-width: 1220px;
    position: relative;
    margin: 0 auto;
}
.news-single-illust1{
    width: 12vw;
    max-width: 140px;
    bottom: 4%;
    left: 3%;
}
.news-single-illust2{
    width: 10vw;
    max-width: 120px;
    bottom: 4%;
    right: 4%;
    transform: scale(-1,1);
}
   .news-button {
    width: 240px;
    margin: 80px auto 0;
  }
  .news-button a {
    font-size: 1.8rem;
    padding: 13px 0px 14px 0;
    border-radius: 80px;
  }
  .news-button a::before {
    content: "";
    width: 19px;
    height: 19px;
    margin:2px 8px 0 0;
  }
}
