@charset "UTF-8";
/* Vars
--------------------- */
/*
Noto Sans Japanese Weight
100	Thin
200	Light
300	DemiLight
400	Regular
500	Medium
700	Bold
900	Black
*/
/* ソースサイズ */
/* Mixin
--------------------- */
/* Extend
--------------------- */
/* Clearfix */
.visual-animate ul.slide::after {
  clear: both;
  content: "";
  display: block;
}

/* Ellipsis */
/* PseudoTable */
/* Inner */
/* .visual-animate
--------------------- */
.visual-animate {
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

/* .visual-animate__layer */
.visual-animate__layer {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

/* .visual-animate__layer__inner */
.visual-animate__layer__inner {
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* .visual-animate__bg */
.visual-animate__bg {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.visual-animate__bg__layer {
  display: table;
  height: 100%;
  width: 100%;
}

.visual-animate__bg__layer__inner {
  display: table-cell;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

/* .visual-animate__contents */
.visual-animate ul {
  /* .slide */
  /* .fade */
}
.visual-animate ul.slide {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.visual-animate ul.slide > li {
  float: left;
  height: 100%;
  position: relative;
  width: 100%;
}
.visual-animate ul.fade {
  height: 100%;
  width: 100%;
}
.visual-animate ul.fade > li {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.visual-animate ul figure {
  display: none;
}

/* .btn */
.visual-animate__btn-prev,
.visual-animate__btn-next {
  display: table;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 9999;
  width: 60px;
}
@media screen and (max-width: 750px) {
  .visual-animate__btn-prev,
.visual-animate__btn-next {
    width: 10vw;
  }
}

.visual-animate__btn-prev > div,
.visual-animate__btn-next > div {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  width: 100%;
}
.visual-animate__btn-prev span,
.visual-animate__btn-next span {
  cursor: pointer;
  display: inline-block;
  width: 100%;
}
.visual-animate__btn-prev img,
.visual-animate__btn-next img {
  opacity: 0.5;
  transform: translate(0, 0);
  transition: 0.1s ease-in-out;
  width: 100%;
}
.visual-animate__btn-prev span:hover img,
.visual-animate__btn-next span:hover img {
  opacity: 1;
}

.visual-animate__btn-prev {
  left: 10px;
}
.visual-animate__btn-prev span:hover img {
  transform: translate(-10px, 0);
}
@media screen and (max-width: 750px) {
  .visual-animate__btn-prev span:hover img {
    transform: translate(0, 0);
  }
}

.visual-animate__btn-next {
  right: 10px;
}
.visual-animate__btn-next span:hover img {
  transform: translate(10px, 0);
}
@media screen and (max-width: 750px) {
  .visual-animate__btn-next span:hover img {
    transform: translate(0, 0);
  }
}

/* ul.visual-animate__dot */
ul.visual-animate__dot {
  display: flex;
  justify-content: center;
  padding: 40px 0 0;
  text-align: center;
  width: 100%;
}
ul.visual-animate__dot li {
  background: #ccc;
  border-radius: 4px;
  cursor: pointer;
  height: 8px;
  margin-right: 8px;
  width: 8px;
}
ul.visual-animate__dot li:last-child {
  margin-right: 0;
}
ul.visual-animate__dot li.current {
  background: #115F73;
}

/* .visual-animate__num */
.visual-animate__num {
  bottom: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.visual-animate__num span {
  background: rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding: 2px 5px;
}

/* .visual-animate__overlay */
.visual-animate__overlay {
  background: rgba(255, 255, 255, 0.8);
  height: 100%;
  position: absolute;
  top: 0;
  width: calc((100% - 600px) / 2);
  z-index: 9998;
}
@media only screen and (max-width: 1000px) {
  .visual-animate__overlay {
    display: none;
  }
}

.visual-animate__overlay--left {
  left: 0;
}

.visual-animate__overlay--right {
  right: 0;
}

/* deactivate */
.deactivate .visual-animate {
  height: auto !important;
}
.deactivate .visual-animate ul {
  height: auto;
  position: relative;
  width: auto !important;
}
.deactivate .visual-animate ul li {
  height: auto !important;
}
.deactivate .visual-animate ul li figure {
  display: block;
}
.deactivate .visual-animate__layer {
  height: auto;
  overflow: unset;
}
.deactivate .visual-animate__layer__inner {
  height: auto;
  overflow: unset;
}
.deactivate .visual-animate__contents {
  height: auto;
}
.deactivate .visual-animate__btn-prev,
.deactivate .visual-animate__btn-next {
  display: none;
}