@charset "UTF-8";

/* アニメーション */
.animate__duration-125s {
  animation-duration: 1.25s;
}
@-webkit-keyframes fadeInUpSlowShort {
  0% {
  opacity:0;
  -webkit-transform:translate3d(0,5%,0);
  transform:translate3d(0,5%,0)
  }
  to {
  opacity:1;
  -webkit-transform:translateZ(0);
  transform:translateZ(0)
  }
}
@keyframes fadeInUpSlowShort {
  0% {
  opacity:0;
  -webkit-transform:translate3d(0,5%,0);
  transform:translate3d(0,5%,0)
  }
  to {
  opacity:1;
  -webkit-transform:translateZ(0);
  transform:translateZ(0)
  }
}
.animate__fadeInUpSlowShort {
  -webkit-animation-name:fadeInUpSlowShort;
  animation-name:fadeInUpSlowShort;
}

/* mv */
.mv {
  height: 860px;
  background-color: #20AEE5;
}
.mv__wrap {
  width: 100%;
  position: relative;
}
.mv__container {
  width: 100%;
  height: 860px;
}
.slider-area {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider-item {
  position: absolute;
  bottom: 0;
  inset: 0;
  opacity: 0;
  z-index: 0;
  animation: sliderAnime 21s linear infinite 0s;
}
.slider-item:nth-child(2) {
  animation-delay: 7s;
}
.slider-item:nth-child(3) {
  animation-delay: 14s;
}
.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes sliderAnime {
  0% {
      opacity: 0;
      animation-timing-function: ease-in;
  }
  8% {
      opacity: 1;
      animation-timing-function: ease-out;
  }
  20% {
      opacity: 1;
  }
  60%,
  100% {
      opacity: 0;
      transform: scale(1.2);
  }
}
.mv__text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  width: 100%;
  line-height: 1.5;
  text-align: center;
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .mv {
    height: 900px;
  }
  .mv__text {
    font-size: 3.4rem;
  }
}

/* intro */
.intro {
  position: relative;
}
.intro::before {
  content: '';
  display: block;
  width: 1920px;
  height: 300px;
  background-image: url(../../../assets/img/home/intro_img_blue-curve.webp);
  position: absolute;
  top: -270px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
.intro__wrap {
  background-color: #20AEE5;
}
.intro__cloud-img {
  display: none;
}
.intro__text-container {
  padding: 100px 0 90px;
  position: relative;
}
.intro__logo {
  width: 312px;
  position: absolute;
  top: -190px;
  left: calc(50% - 157px);
  z-index: 20;
}
.intro__text {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 36px;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .intro__wrap {
    position: relative;
  }
  .intro__cloud-img {
    position: absolute;
    z-index: 30;
    animation: shake-side 15s infinite ease-in-out;
  }
  @keyframes shake-side {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
  }
  .intro__cloud-img.cloud--01 {
    display: block;
    width: 270px;
    top: 300px;
    right: calc(50% - 685px);
  }
  .intro__cloud-img.cloud--02 {
    display: block;
    width: 200px;
    top: 400px;
    left: calc(50% - 600px);
    animation: shake-side 25s infinite ease-in-out;
  }
  .intro__cloud-img.cloud--03 {
    display: block;
    width: 260px;
    top: 500px;
    left: calc(50% - 670px);
    animation: shake-side 20s infinite ease-in-out;
  }
  .intro__text-container {
    background-color: #20AEE5;
    padding: 100px 0;
  }
  .intro__logo {
    width: 420px;
    top: -303px;
    left: calc(50% - 210px);
  }
  .intro__text {
    font-size: 1.8rem;
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 1920px) {
  .intro::before {
    width: 100%;
    background-size: 100% 300px;
    top: -300px;
  }
}

/* city */
.city{
  position: relative;
  padding-top: 80px;
}
.city::before {
  content:'';
  display: block;
  width: 1000px;
  height: 81px;
  background-image: url(../../../assets/img/home/city_img_town-sp.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-47%);
}
.page__lead {
  color: #20AEE5;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}
.city__lead-text {
  margin-bottom: 50px;
}
.city__container {
  position: relative;
  margin-bottom: 100px;
  max-width: 425px;
  margin: 0 auto 100px;
}
.city__image {
  width: 422px;
  height: 306px;
  margin-bottom: 20px;
  margin-left: -50px;
}
.container--leisure .city__image {
  width: 426px;
  height: 301px;
  margin-bottom: 30px;
}

@keyframes shake-side--catch {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(17px);
  }
}

.city__image::after {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  animation: shake-side--catch 6s infinite ease-in-out;
}
.container--industry .city__image::after {
  background-image: url(../../../assets/img/home/city_catch_industry.webp);
  width: 140px;
  height: 99px;
  top: 288px;
  right: 55px;
}
.container--agriculture .city__image::after {
  background-image: url(../../../assets/img/home/city_catch_agriculture.webp);
  width: 140px;
  height: 130px;
  top: 275px;
  right: 55px;
}
.container--leisure .city__image::after {
  background-image: url(../../../assets/img/home/city_catch_leisure.webp);
  width: 140px;
  height: 130px;
  top: 300px;
  right: 60px;
}
.features__sub-title {
  color: #007739;
  font-weight: bold;
  margin-bottom: 6px;
}
.features__title {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}
.features__text {
  margin-bottom: 20px;
}
.button {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 14px 0 10px 75px;
  margin: 0 auto;
  border: 2px solid #2FA945;
  width: 280px;
  border-radius: 30px;
  background :linear-gradient(to right,#137A47 0%,#2FA945 50%,#71bb44 100%);
  background-position: 0 50%;
  background-size: 200% auto;
  position: relative;
  transition: .5s;
}
.button .button-text::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 21px;
  right: 18px;
  transition: .3s;
}
.button .button-text::after {
  content: '';
  width: 26px;
  height: 2px;
  border-top: 2px solid #fff;
  position: absolute;
  top: 26px;
  right: 18px;
  transition: .3s;
}
@media screen and (max-width: 360px) {
  .container--industry .city__image::after {
    right: 72px;
  }
  .container--agriculture .city__image::after {
    right: 70px;
  }
  .container--leisure .city__image::after {
    right: 73px;
  }
}
@media screen and (min-width: 400px) {
  .city__image {
    margin-left: -30px;
  }
}
@media screen and (min-width: 500px) {
  .city__image {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .city::before {
    width: 1920px;
    height: 168px;
    top: -165px;
    transform: translateX(-50%);
  }
  .page__lead {
    font-size: 2.8rem;
  }
  .city__lead-text {
    text-align: center;
    margin-bottom: 80px;
  }
  .city__container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: 1080px;
  }
  .city__container.container--industry {
    padding-bottom: 150px;
  }
  .city__container.container--agriculture {
    flex-direction: row;
    padding-bottom: 220px;
  }
  .city__container.container--leisure {
    padding-bottom: 160px;
  }
  .city__image {
    width: 730px;
  }
  .container--leisure .city__image {
    width: 730px;
  }
  .city__image::after {
    width: 283px;
    height: 200px;
    top: 300px;
    right: 78%;
  }
  .container--industry .city__image::after {
    width: 283px;
    height: 200px;
    top: 310px;
    right: 0px;
    left: -130px;
  }
  .container--agriculture .city__image::after {
    width: 251px;
    height: 233px;
    top: 310px;
    right: -150px;
    animation-delay:.5s;
  }
  .container--leisure .city__image::after {
    width: 271px;
    height: 181px;
    top: 340px;
    right: 0px;
    left: -120px;
    animation-delay: 1s;
  }
  .city__features {
    width: 28%;
    min-width: 260px;
    margin-right:40px;
  }
  .container--agriculture .city__features {
    margin-right:0px;
    margin-left:40px;
    padding-top: 25px;
  }
  .container--industry .city__features {
    padding-top: 70px;
  }
  .container--leisure .city__features {
    padding-top: 45px;
  }
  .features__sub-title {
    font-size: 1.8rem;
  }
  .features__title {
    font-size: 2.8rem;
  }
  .features__text {
    max-width: 280px;
  }
  .button {
    max-width: 250px;
    margin: 0;
    background :linear-gradient(to right,#137A47 0%,#2FA945 50%,#71bb44 100%);
    background-position: 0 50%;
    background-size: 200% auto;
    z-index: 0;
  }
  .button.dl__button {
    padding: 14px 0 10px 50px;
  }
  .button::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 30px;
    border: 2px solid #2FA945;
    background-color:#2FA945 ;
    opacity: 0;
    transition: .3s;
  }

  @media (hover: hover) {
    .button:hover {
      background-position: 100% 50%;
    }
    .button:hover .button-text::before {
      right: 8px;
    }
    .button:hover .button-text::after {
      right: 8px;
    }
  }
}

@media screen and (min-width:1080px){
  .button {
    max-width: 280px;
  }
  .button.dl__button {
    padding: 14px 0 10px 70px;
  }
}

@media screen and (min-width:1920px) {
  .city::before {
    width: 100%;
    background-size: cover;
    top: -167px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* more */
.more {
  padding-top: 90px;
  padding-bottom: 20px;
  position: relative;
  background-color: #EEF1F2;
}
.more::after {
  content: '';
  display: block;
  width: 768px;
  height: 63px;
  background-image :url(../../../assets/img/home/more_img_bg-deco.webp);
  background-repeat: no-repeat;
  background-size: 100% 63px;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.more__title {
  font-size: 2.1rem;
  font-weight: bold;
  color: #20AEE5;
  text-align: center;
  margin-bottom: 20px;
  z-index: 0;
  position: relative;
}
.more__text {
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
  z-index: 0;
  position: relative;
}
.more__image--concept-book {
  display: block;
  width: 204px;
  margin: 0 auto 27px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, .2);
  z-index: 0;
  position: relative;
}
.button.dl__button {
  margin: 0 auto;
}
.dl__button::before {
  content: '';
  display: block;
  width: 28px;
  height: 10px;
  background-image: url(../../../assets/img/home/more_img_button-deco.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 30px;
  right: 50px;
  transition: .5s;
}
.dl__button-text::before,
.dl__button-text::after {
  content: '';
  border-top: 2px solid #fff;
  position: absolute;
  transition: .3s;
}
.dl__button-text::before {
  width: 13px;
  height: 13px;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  top: 15px;
  right: 58px;
}
.dl__button-text::after {
  width: 17px;
  height: 2px;
  transform: rotate(90deg);
  top: 18px;
  right: 56px;
}
@media screen and (min-width: 768px) {
  .more {
    padding-top:  200px;
  }
  .more::after {
    width: 1920px;
    height: 200px;
    background-size: contain;
  }
  .more__title {
    font-size: 2.8rem;
  }
  .more__text {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  @media (hover: hover) {
    .dl__button:hover .dl__button-text::before {
      top: 21px;
    }
    .dl__button:hover .dl__button-text::after {
      top: 24px;
    }
  }
}
@media screen and (min-width:1920px) {
  .more::after {
    width: 100%;
    height: 200px;
    background-size: 100% 200px;
  }
}