/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
.mv {
  position: relative;
  width: 100%;
  min-height: 600px;
}
.mv_slider {
  height: 600px;
  position: relative;
  z-index: 1;
}
/*　背景画像設定　*/
.slider-item01 {
  background: url("/img/top/mv01sp.webp");
}
.slider-item02 {
  background: url("/img/top/mv02.webp");
}
.mv_slider .slider-item {
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0 0 50px 50px;
}
.mv_slider .slick-slide {
  min-height: 600px !important;
}
.scrolldown {
  position: absolute;
  bottom: 0px;
  right: 90%;
  z-index: 3;
}
.scrolldown span {
  position: absolute;
  left: -18px;
  bottom: 125px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  color: #fff;
}
.scrolldown:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(-45deg, #33A500 0%, #33A500 50%, #A1E800 100%);
  animation:
    circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 110px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 120px;
  background: #fff;
}
.mv_logo {
  position: absolute;
  z-index: 3;
  width: 85%;
  top: 50px;
  left: 0;
}
.mv_txt {
  position: absolute;
  bottom: 30px;
  right: 20px;
  text-align: right;
}
.mv_txt p {
  display: inline-block;
  padding: 3px 20px;
  border-radius: 3px 20px;
  background: linear-gradient(-45deg, #33A500 0%, #33A500 30%, #A1E800 100%);
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  margin: 0 auto 7px;
}
.mv_txt p:last-of-type {
  font-size: 3.3rem;
  border-radius: 3px 30px;
}
.about {
  overflow: hidden;
}
.about_txt {
  width: 80%;
  margin: auto;
  text-align: left;
}
.about_txt div {
  display: inline-block;
  padding: 3px 20px;
  border-radius: 3px 20px;
  background: linear-gradient(-45deg, #33A500 0%, #33A500 30%, #A1E800 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 7px;
}
.about_txt h2 {
  color: #7E4400;
  font-size: 2.8rem;
  line-height: 1.4;
}
.about_txt h2 span {
  display: block;
  font-size: 1.8rem;
}
.about_txt p {
  margin: 0.5em auto 1em;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500;
}
.about img {
  width: 105%;
  margin: 1em 0 0 5%;
}
.scene_bg {
  padding: 3.5em 0 3em;
  position: relative;
  background: #F5F1E5;
}
.scene_bg h2 {
  position: absolute;
  top: -1.3em;
  left: 50%;
  width: 340px;
  transform: translate(-50%, 0%);
  display: inline-block;
  padding: 7px 0px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  background: linear-gradient(-45deg, #33A500 0%, #33A500 50%, #A1E800 100%);
  border-radius: 30px;
}
.scene_bg h2::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #33A500;
}
.scene_slider {
  overflow: hidden;
  white-space: nowrap;
}
.scroll-track {
  display: inline-block;
  animation: scrollLeft 50s linear infinite;
}
.scroll-track li {
  display: inline-block;
  width: 180px;
  margin-right: 10px;
}
.scroll-track li img {
  border-radius: 10px 10px 0 0;
}
.scroll-track li p {
  background: #33A500;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 3px 0;
  border-radius: 0 0 10px 10px;
}
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.news_bg {
  padding: 3em 0 3em;
  width: 85%;
  margin: auto;
}
.news_bg .news {
  margin: 1em auto 2em;
}
/* ------------------------------------ */
/* ▼PC用デザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .mv {
    min-height: 800px;
  }
  .mv_slider {
    height: 800px;
  }
  .slider-item01 {
    background: url("/img/top/mv01.webp");
  }
  .mv_slider .slider-item {
    height: 800px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 0 0 100px 100px;
  }
  .mv_slider .slick-slide {
    min-height: 800px !important;
  }
  .scrolldown {
    right: 50%;
  }
  .scrolldown span {
    bottom: 130px;
  }
  .mv_logo {
    max-width: 550px;
    top: 10px;
  }
  .mv_txt {
    bottom: 50px;
    right: 50px;
  }
  .mv_txt p {
    padding: 3px 30px;
    border-radius: 5px 40px;
    margin: 0 auto 12px;
    font-size: 3vw;
    line-height: 1.3;
  }
  .mv_txt p:last-of-type {
    font-size: 5vw;
    border-radius: 5px 50px;
  }
  .about {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-between;
    align-items: center;
  }
  .about_txt {
    width: 50%;
    margin: 0;
    box-sizing: border-box;
    padding: 0 3% 0 8%;
  }
  .about_txt div {
    padding: 1px 25px;
    border-radius: 10px 50px;
    font-size: 4.5rem;
    margin: 0 auto 15px;
  }
  .about_txt h2 {
    font-size: 4.8rem;
  }
  .about_txt h2 span {
    font-size: 3rem;
  }
  .about_txt p {
    margin: 0.5em auto 1.5em;
    line-height: 2;
  }
  .about img {
    width: 55%;
    margin: 0 -5% 0 0;
  }
  .scene_bg {
    padding: 5em 0 4em;
  }
  .scene_bg h2 {
    top: -1.2em;
    width: 660px;
    padding: 7px 0px;
    font-size: 3rem;
    border-radius: 60px;
  }
  .scene_bg h2::before {
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #33A500;
  }
  .scroll-track {
    animation: scrollLeft 60s linear infinite;
  }
  .scroll-track li {
    width: 330px;
    margin-right: 10px;
  }
  .scroll-track li img {
    border-radius: 20px 20px 0 0;
  }
  .scroll-track li p {
    font-size: 2rem;
    padding: 4px 0;
    border-radius: 0 0 20px 20px;
  }
  .news_bg {
    padding: 5em 0 5em;
    width: 90%;
    max-width: 1000px;
  }
}