@charset "utf-8";
/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);

  justify-content: center;
  align-items: center;
}
.modal-content {
  position: relative;
  background-color: #fff;
  width: 96%;
  max-width: 1000px;
  height: auto;
  padding: 40px;
  border-radius: 30px;
  box-sizing: border-box;
  overflow: hidden;
}
.close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #123524;
  border-radius: 5px;
}
.close-btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 10px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 20px;
}
.close-btn span:nth-of-type(1) {
  top: 13px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 25px;
}
.close-btn span:nth-of-type(2){
  top: 25px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 25px;
}

.modal_item_no{
  font-size: 20px;
  line-height: 24px;
  color: #123524;
  font-weight: 600;
  margin-bottom: 12px;
}
.modal_flex{
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
.modal_flex > .box_img{
  max-width: 700px;
  width: 70%;
  text-align: center;
}
.modal_flex > .box_img img{
  max-height: 500px;
}
.modal_flex > .box_txt{
  width: calc(30% - 30px);
  margin-left: 30px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {


  .modal_flex{
    align-items: unset;
  }
  .modal_flex > .box_img{
    width: 100%;
    margin-top: 10px;
  }
  .modal_flex > .box_txt{
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

}
