@charset "UTF-8";
/* CSS Document */
/*swiper_inner_ttl ==================*/
.swiper_inner_ttl {
  color: #fff;
  font-size: 35px;
  position: absolute;
  top: 45px;
}
@media screen and (max-width: 767px) {
  .swiper_inner_ttl {
  font-size: 25px;
}
}
@media screen and (max-width: 599px) {
  .swiper_inner_ttl {
  font-size: 19px;
}
}


/*swiper==============================*/
.swiper-slide_inner {
  background: cadetblue;
}
.swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: auto;
}
.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #fff; /*確認用　後で消す*/
  font-size: 16px; /*確認用　後で消す*/
  width: 100%;
  /*! min-height: calc(100vh - 15em); */
  text-align: center;
  padding: 50px;
  box-sizing: border-box !important;
}


/*　個別設定用　*/

/*　swiper 初期設定上書き*/
.swiper {
  max-width: 100%;
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0px !important; /*ページネーション 位置修正*/
  left: 0;
  width: 100%;
  color: #fff
}
.swiper-button-prev:after, .swiper-button-next:after {
 /* display: none;*/
}
.swiper-button-prev, .swiper-button-next {
  width: 12px; /* ボタンの幅 */
  height: 20px; /* ボタンの高さ */
  background-size: 12px 20px; /* 表示したいサイズ */
  transform: translateY(-50%);
  margin-top: 0;
}
/* 次ページボタンのスタイル */
.swiper-button-next {
  background-image: url("../img/common/arrow_right3.png");
  background-repeat: no-repeat;
}
/* 前ページボタンのスタイル */
.swiper-button-prev {
  background-image: url("../img/common/arrow_right3.png");
  background-repeat: no-repeat;
  transform: translateY(-50%) scale(-1, 1); /* 左右反転 */
}
.swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 12% !important;
  right: auto
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 12% !important;
  left: auto
}
/*modal==============================*/
.modal_wrap input {
  display: none;
}
.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}
.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal_content {
  /*! align-self: center; */
  width: 95vw;
  max-width: 1300px;
  padding: 150px 50px 15px;
  box-sizing: border-box;
  transform: scale(0.3);
  transition: 0.5s;
  /*background: #fff;*/ /*sliderの背景色*/
}

.close_button {
  position: absolute;
  top: 10%;
  right: 10%;
  font-size: 24px;
  cursor: pointer;
  z-index:10 
}
@media screen and (max-width: 1024px) {
  .close_button {
  position: absolute;
  top: 15%;
  right: 2%;
  font-size: 24px;
  cursor: pointer;
}
  
}

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
.modal_wrap input:checked ~ .modal_overlay .modal_content {
  transform: scale(1);
}
/* バツマーク */
.square_btn {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
}
.square_btn::before, .square_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px; /* 棒の幅（太さ） */
  height: 27px; /* 棒の高さ */
  background: #fff; /* バツ印の色 */
}
.square_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.square_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.open_button {
  /*! display: flex; */
  /*! justify-content: flex-start; */
  /*! align-items: center; */
  /*! width: 100%; */
  /*! height: 30px; */
  /*! margin: auto; */
  /*! padding: 100px 100px 100px 165px; */
  /*! color: #00a5eb; */
  font-size: 15px;
  cursor: pointer;
  border:1px solid #fff;
  padding: 3px;
  display: block;
  text-align: center;
  width: 130px;
  margin:15px auto 0;
  font-weight:bold;
}
.open_button:before{
  content: "\2B";
  display: inline-block;
  color: #fff;
  font-weight: bold;
  vertical-align: top;
}
.open_button_end:last-child {
  border-bottom: 1px solid #00a5eb
}
@media screen and (max-width: 1024px) {
  .swiper-slide_inner {
    min-height: 300px !important; /*確認用　後で消す*/
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0% !important;
    right: auto
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0% !important;
    left: auto
  }
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 15px !important; /*ページネーション 位置修正*/
    left: 0;
    width: 100%;
    color: #fff
  }
  .modal_content {
    width: 100vw;
    max-width: 100%;
    padding: 150px 15px 30px;
    box-sizing: border-box;
  }
}
.solution_list {
  position: relative
}