/* ===============================
   Hero (Swiper)
================================ */

.p-hero {
  position: relative;
  width: 100%;
  z-index: 99;
  padding: 0 0 40px 0;
}

.hero_copy_wrap {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 80%;
  margin: auto;
  background-color: #005A49;
  border-radius: 3rem 0 0 0;
  padding: 40px;
}

.hero_copy {
width: 800px;
max-width: 30%;
}

.hero_copy p {
  color: #005A49;
  background-color: #FFF;
  border-radius: 3rem;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  width: 9em;
  margin: 2rem auto 1.5rem auto;
  padding: 0.8rem;
}

.hero_copy h2 {
  text-align: center;
  line-height: 1.6;
}

.hero_copy h2 span {
  font-weight: 600;
  color: #FFF;
  font-size: 2rem;
  display: block;
}
.hero_copy h2 em {
  font-style: normal;
  color: #FFF;
  font-size: 2.8rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

.hero_copy .link {
  display: block;
  text-align: center;
}

.hero_copy .link a {
  display: inline-block;
  max-width: 100%;
  color: #005A49;
  background-color: #FFF;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 3rem;
  padding: 0.5rem 2rem 0.5rem 1rem;
  border-radius: 10px;
  border: 3px solid #FFF;
  transition: 0.5s;
  background-image: url(../images/arw1.svg);
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 0.7rem;
}
.hero_copy .link a:hover {
color: #FFF;
background-color: #005A49;
background-image: url(../images/arw2.svg);
}

.hero_copy .link a span {
  display: inline-block;
}

.p-hero .hero_bg {
  width: 100%;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

.stage_bg {
  width: 1200px;
  max-width: 65%;
  margin: 0 0 0 auto;
}
.radius-wrapper {
  overflow: hidden;
  border-radius: 2rem 0 0 2rem;
}
.slide-img picture source,
.slide-img picture img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1280px) {
.p-hero {
  padding: 40px 0;
}
.hero_copy_wrap {
  border-radius: 0;
  height: 100%;
  border-top: 1px solid #FFF;
}
.hero_copy p {
  font-size: 1.8rem;
  margin: 0 auto 1rem auto;
}
.hero_copy h2 span {
  font-size: 1.6rem;
}
.hero_copy h2 em {
  font-size: 2.2rem;
  display: inline-block;
}
.hero_copy h2 em.br {
  display: block;
}
.hero_copy .link a {
  font-size: 1.4rem;
  margin-top: 1rem;
}
}

@media (max-width: 960px) {
.p-hero {
  padding: 0;
}
.hero_copy_wrap {
  position: relative;
  padding: 30px;
  width: 100%;
}
.hero_copy {
  width: 100%;
  max-width: 100%;
}
.hero_copy h2 {
  line-height: 1.4;
}
.stage_bg {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  background-color: #005A49;
  padding-left: 30px;
  padding-bottom: 30px;
}
.radius-wrapper {
  border-radius: 1.5rem 0 0 1.5rem;
}
}

/* Firefoxはzoomなし */
@-moz-document url-prefix() {
  .stage_bg .fade-slider .swiper-slide-active .slide-img,
  .stage_bg .fade-slider .swiper-slide-duplicate-active .slide-img,
  .stage_bg .fade-slider .swiper-slide-prev .slide-img {
    animation: none !important;
    transform: scale(1) !important;
  }
}

.stage_bg .fade-slider .swiper-slide-active .slide-img,
.stage_bg .fade-slider .swiper-slide-duplicate-active .slide-img,
.stage_bg .fade-slider .swiper-slide-prev .slide-img {
  animation: zoomUp 10s linear 0s 1 normal both;
}

.stage_bg .fade-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}