@charset "utf-8";

/* 見た目確認のため追加 */
.top-mv-slider-item {
  transform: translateX(0);
}

/* slider */
.slide-items {
  width: 100%;
  display: flex;
  margin: auto;
  position: relative;
}

.slide-item {
  /* width: 756px; */
  width:auto;
  height: 378px;
  margin-right: 30px;
  margin-left: 30px;
  position: relative;
}

@media (max-width: 769px) {
  .slide-item {
    margin-right: 0;
    margin-left: 0;
  }

  .slide-item-text-container {
    left: 10%;
  }
}

.slide-item-image-container {
  width: 100%;
  height: 100%;
}

.slick-slide img {
  width: 100%;
  height: 100%;
}

.slide-item-text-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
}

.slide-item-text-title {
  font-size: 2em;
}

.slide-item-text {
  padding-top: 20px;
}

.slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #31ACCB;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  transition: all 0.5s ease 0s;
}

.slick-arrow:hover {
  background-color: rgba(49, 172, 203, 0.5);
}

.slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
.slick-next {
  right: 10px;
}
.slick-prev {
  left: 10px;
}
.slick-next::before {
  left: 20px;
}
.slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}

.slick-dots {
  bottom: 30px;
}

.slick-dots li {
  margin: 0 10px;
}

.slick-dots li button {
  color: #31ACCB;
  background: #31ACCB;
  border-radius: 50%;
  opacity: .5;
}

.slick-dots li.slick-active button {
  opacity: 1;
}

.slick-dots li button:before {
  color: transparent;
}

.slick-dots li.slick-active button:before {
  color: transparent;
}

@media (max-width: 500px) {
  .slick-dots {
    bottom: 20px;
  }

  .slide-item-text-container {
    left: 5%;
    width: 90%;
  }
}

/* dounano */
.dounano {
  max-width: 1000px;
  margin: 50px auto 20px;
  padding-bottom: 115px;
  position: relative;
}

.dounano-items {
  display: flex;
  justify-content: center;
}

@media (max-width: 500px) {
  .dounano-items {
    flex-wrap: wrap;
  }
}

.dounano-item {
  position: relative;
  /* width: 128px;
  height: 128px; */
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #c1e9f1;
  /* margin-right: 45px; */
  margin-right: 25px;
}

@media (max-width: 769px) {
  .dounano {
    padding-right: 10px;
    padding-left: 10px;
  }
  .dounano-item {
    margin-right: 15px;
    height: 140px;
  }
}

@media (max-width: 500px) {
  .dounano {
    padding-right: 0px;
    padding-left: 0px;
  }

  .dounano-item {
    width: 175px;
    height: 175px;
    margin-right: 10px;
  }

  .dounano-item:nth-child(odd) {
    margin-right: 15px;
  }

  .dounano-item:nth-child(even) {
    margin-right: 0px;
  }

  .dounano-item:nth-child(n+3) {
    margin-top: 20px;
  }
}

.dounano-item:last-child {
  margin-right: 0;
}

.dounano-item span {
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 128px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

.dounano-first {
  position: relative;
}

.dounano-first::after {
  position: absolute;
  content: "";
  background: url(/img/dounano-stick.png)no-repeat center center / contain;
  width: 35px;
  height: 45px;
  right: 0;
  bottom: -20px;
}

@media (max-width: 500px) {
  .dounano-first::after {
    display: none;
  }
}

.dounano-last {
  position: relative;
}

.dounano-last::after {
  position: absolute;
  content: "";
  background: url(/img/dounano-stick-last.png)no-repeat center center / contain;
  width: 35px;
  height: 45px;
  left: 0;
  bottom: -20px;
}

@media (max-width: 500px) {
  .dounano-last::after {
    display: none;
  }
}

.dounano-img {
  text-align: center;
  margin-top: -50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

@media (max-width: 500px) {
  .dounano-img {
    width: 100%;
  }
}

/* qa */
.qa {
  padding-top: 30px;
  max-width: 700px;
  margin: 0 auto 115px;
}

@media (max-width: 500px) {
  .qa {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.qa-area {
  margin-top: 50px;
}

.qa-item {
  padding-left: 50px;
  position: relative;
}

.qa-item::before {
  position: absolute;
  content: "";
  background: url(/img/question.png)no-repeat center center / contain;
  width: 40px;
  height: 90px;
  left: 0;
  top: -15px;
}

.qa-item:not(:first-child) {
  margin-top: 67px;
}

.qa-title {
  font-size: 18px;
  font-weight: bold;
}

.qa-answerarea {
  margin-top: 25px;
  padding: 20px 30px;
  background-color: #f6f6f6;
}

@media (max-width: 500px) {
  .qa-answerarea {
    padding: 20px 15px;
  }
}

.qa-answertitle {
  font-weight: bold;
  padding-bottom: 18px;
}

.qa-answertext {

}

.qa-more {
  margin-top: 40px;
  text-align: right;
}

.qa-more a {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}

.qa-more a::before {
  position: absolute;
  content: "";
  background: url(/img/more-button.png)no-repeat center center/contain;
  width: 15px;
  height: 15px;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
}

/* パンくず */
div#wrap_breadcrumb {
  margin-top: 50px;
  margin-bottom: 0!important;
}

/* メインビジュアル下リンク */
/* .jump-link ul li {
  width: 20%;
} */

@media (max-width: 500px) {
  .jump-link ul {
    flex-wrap: wrap;
  }

  .jump-link ul li {
    width: 49%;
  }

  .jump-link ul li:nth-child(n+3) {
    margin-top: 20px;
  }
}

/* 被り等微調整 */
.is-sp {
  display: none;
}

.item {
  z-index: 10;
}

.human .total-img1 img {
  top: 325px;
}

.special-down3 {
  margin-top: 175px;
}

@media (min-width: 768px) {
  .is-tab {
    display: block;
  }
}

@media (max-width: 769px) {
  .human .total-img1 img {
    top: 140px;
  }
}

@media (max-width: 767px) {
  .is-tab {
    display: none;
  }
}

@media (max-width: 500px) {
  .is-sp {
    display: block;
  }

  .item-title {
    padding-left: 10%;
  }

  .balloon1-with-more {
    margin-top: 2.5em;
  }

  .balloon1 .special-more {
    top: -24px;
  }

  .balloon1 span {
    left: 70px;
    top: 0px;
  }

  .howto-item .finish img {
    top: 50px;
    left: 74%;
  }

  .human .total-img1 span {
    left: 47px;
  }

  .human .total-img1 img {
    top: 135px;
  }
}