@charset "UTF-8";
/*変数設定用*/
/*fontfamily-style
---------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@media screen and (max-width: 900px) {
  .vpc900 {
    display: none !important;
  }
}
@media not screen, screen and (min-width: 901px) {
  .vsp900 {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .vpc767 {
    display: none !important;
  }
}
@media not screen, screen and (min-width: 768px) {
  .vsp767 {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .vpc480 {
    display: none !important;
  }
}
@media not screen, screen and (min-width: 481px) {
  .vsp480 {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  html.active {
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .vpc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .vpc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .vsp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .vsp {
    display: block;
  }
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
a:hover p:hover {
  opacity: 0.7;
}
a:hover img:hover {
  opacity: 0.7;
}
a:link {
  text-decoration: none;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.3s;
}

.scroll-fade:not(.fade_on):nth-child(even) {
  transform: translateY(70px);
}

.scroll-fade2 {
  opacity: 0;
  transition: all 1.3s;
}

.scroll-fade3 {
  transition: all 1.3s;
}

.fade_on {
  opacity: 1 !important;
  transform: translateY(0);
}

.fade_on2 {
  opacity: 1 !important;
  transform: translateY(0);
}

.anime1 {
  position: relative;
  z-index: 1;
}
.anime1:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 40%;
  content: "";
  transition: 0.5s;
  transition-delay: 0.4s;
  z-index: -1;
}

.anime2:before {
  transition-delay: 0.7s;
}

.fade:before {
  width: 100%;
  height: 40%;
}

.mv {
  position: relative;
}
.mv__title {
  position: absolute;
  left: calc((100vw - 1380px) / 2 + 200px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.3rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .mv__title {
    left: 5%;
  }
}
.mv__img img {
  height: 296px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .mv__img img {
    height: 160px;
  }
}

.contents {
  padding: 0 5% 1px;
}
.contents__inner {
  max-width: 1380px;
  margin: 40px auto 150px;
}
@media screen and (max-width: 767px) {
  .contents__inner {
    margin-bottom: 80px;
  }
}
.contents__title {
  font-size: 2.4rem;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: solid 1px #fff;
  max-width: 700px;
  margin: 0 auto 12px;
}
@media screen and (max-width: 767px) {
  .contents__title {
    font-size: 2rem;
  }
}
.contents__subtitle {
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents__subtitle {
    font-size: 1.4rem;
  }
}

.download__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 45px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .download__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.download__list li a {
  position: relative;
}
.download__list li a:hover::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../../../img/download/icon_download.png) center center no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}
.download__title {
  margin-top: 10px;
  font-size: 1.3rem;
}
.download__size {
  font-size: 1rem;
}

.form {
  max-width: 568px;
  margin: 72px auto 40px;
}

.contact {
  text-align: center;
}
.contact a {
  font-size: 1.8rem;
  color: #fff;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .contact a {
    font-size: 1.6rem;
  }
}

.back {
  margin-top: 76px;
  text-align: center;
}
.back a {
  color: #fff;
  padding: 13px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  border: solid 2px #fff;
  border-radius: 8px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}