.popupwindow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  overflow-y: scroll;
}
.popupwindow.close {
  display: none;
}
.popupwindow_bg {
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.7;
  z-index: 1000;
}
.popupwindow_close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 20px;
  padding: 10px;
}
.popupwindow_inner {
  width: calc(100% - 40px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px;
  max-width: 980px;
  background-color: #f1eaa0;
  position: relative;
  margin: 80px auto;
  z-index: 2000;
}
.popupwindow .title {
  margin-bottom: 32px;
}
.popupwindow .title .title_h3 {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .popupwindow .title .title_h3 {
    font-size: 22px;
  }
}
.popupwindow .title .title_ja {
  font-size: 16px;
  font-weight: bold;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .popupwindow .title .title_ja {
    font-size: 14px;
  }
}
.popupwindow_events {
  margin-top: 120px;
}
.popupwindow_events_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
@media screen and (max-width: 768px) {
  .popupwindow_events_list {
    grid-template-columns: 1fr;
  }
}
.popupwindow_events_item {
  width: 100%;
}
.popupwindow_events_item_img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
  border: 1px solid;
}
.popupwindow_events_item_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popupwindow_events_item_detail dt {
  font-size: 20px;
  line-height: 1.3;
  margin-top: 24px;
  min-height: 64px;
}
.popupwindow_events_item_detail dt.soon {
  font-weight: 400;
  font-size: 16px;
}
.popupwindow_events_item_detail dt .date {
  display: block;
}
.popupwindow_events_item_detail dt .date .week {
  display: inline-block;
  font-size: 0.7em;
  margin-right: 2px;
}
.popupwindow_events_item_detail dd {
  font-size: 12px;
  margin-top: 12px;
}
.popupwindow_events_item .btn {
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid;
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.popupwindow_events_item .btn_en {
  font-size: 24px;
}/*# sourceMappingURL=popupwindow.css.map */