@charset "UTF-8";
#modal_overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 150%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  /*デフォルトで非表示*/
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  display: none;
  pointer-events: none;
  /*デフォルトで非表示*/
}
.modal.show {
  display: table;
}
.modal .modal_content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.modal .modal_detail {
  position: relative;
  visibility: hidden;
  height: auto;
  margin: 0 auto 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: all;
  width: 100%;
  max-width: 740px;
}
.modal .modal_detail.show {
  visibility: visible;
}
.modal .modal_detail .close_btn_narrow {
  display: none;
}
@media screen and (max-width: 640px) {
  .modal .modal_content .modal_detail {
    margin-top: 30px;
    width: 86.93333%;
  }
  .modal .modal_content .modal_detail .x_btn {
    position: absolute;
    display: block;
    width: 14.11765%;
    right: 0;
    top: 0;
    margin-right: 0;
    margin-top: 0;
  }
  .modal .modal_content .modal_detail .close_btn_narrow {
    position: absolute;
    display: block;
    width: 91.17647%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (min-width: 641px) {
  .modal .modal_content .modal_detail {
    margin-top: 30px;
  }
  .modal .modal_content .modal_detail .x_btn {
    position: absolute;
    width: 62px;
    height: 62px;
    right: 0px;
    top: 0px;
    cursor: pointer;
  }
}

#info_modal img {
  width: 100%;
}
@media screen and (max-width: 640px) {
  #info_modal .wide {
    display: none;
  }
  #info_modal .modal_content .modal_detail {
    width: 86.93333%;
  }
  #info_modal .modal_content .modal_detail .tdw_btn {
    position: absolute;
    display: block;
    left: 29.70588%;
    top: 0;
    margin-top: 69.41176%;
    width: 36.17647%;
  }
  #info_modal .modal_content .modal_detail .close_btn {
    position: absolute;
    right: 3.97059%;
    top: 0;
    margin-top: 4.26471%;
    width: 7.64706%;
  }
}
@media screen and (min-width: 641px) {
  #info_modal .narrow {
    display: none;
  }
  #info_modal .modal_content .modal_detail .tdw_btn {
    position: absolute;
    display: block;
    left: 38.37838%;
    top: 0;
    margin-top: 52.97297%;
    width: 22.7027%;
  }
  #info_modal .modal_content .modal_detail .tdw_btn:hover {
    opacity: 0.5;
  }
  #info_modal .modal_content .modal_detail .close_btn {
    display: block;
    width: 29px;
    height: 29px;
    top: 18px;
    right: 22px;
    margin: 0;
    text-align: center;
    position: absolute;
    -webkit-transition: -webkit-transform 400ms cubic-bezier(0.175, 0.885, 0.32, 1) 0ms;
    -webkit-transition: -webkit-transform 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0ms;
    transition: transform 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0ms;
  }
  #info_modal .modal_content .modal_detail .close_btn:hover {
    transform: rotate(361deg);
  }
}
