@charset "UTF-8";

.popupbnr {
  position: fixed;
  width: 100%;
  height: auto;
  bottom: 0;
  top: 0;
  right: 0;
  z-index: 1000;
  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;
}
.popupbnr input#popupbnr-bg,
.popupbnr input#popupbnr-close {
  display: none;
}
.popupbnr:has(input#popupbnr-close:checked), .popupbnr:has(input#popupbnr-bg:checked) {
  display: none;
}
.popupbnr label.popupbnr_bg {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  inset: 0;
  cursor: pointer;
}
.popupbnr_inner {
  position: relative;
  width: 90%;
  max-width: 1100px;
  max-height: 85vh;
  background-color: #fff;
  z-index: 1001;
  overflow-y: auto;
  padding: 30px 20px 30px;
  border: 2px solid #000;
}
.popupbnr_inner .events {
  margin-top: 0;
}
.popupbnr_inner .events_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
@media screen and (max-width: 768px) {
  .popupbnr_inner .events_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
.popupbnr_inner .events_fullwidth {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: auto;
}
@media screen and (max-width: 768px) {
  .popupbnr_inner .events_fullwidth {
    display: block;
  }
}
.popupbnr_inner .events_fullwidth .events_fullwidth_img {
  aspect-ratio: auto;
  width: 66%;
}
@media screen and (max-width: 768px) {
  .popupbnr_inner .events_fullwidth .events_fullwidth_img {
    aspect-ratio: 1/1;
    width: 100%;
  }
}
.popupbnr_inner .events_fullwidth .events_fullwidth_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popupbnr_inner .events_fullwidth .fullwidth_text {
  margin-left: 20px;
  width: 32%;
}
@media screen and (max-width: 768px) {
  .popupbnr_inner .events_fullwidth .fullwidth_text {
    margin-left: 0px;
    width: 100%;
    margin-top: 20px;
  }
}
.popupbnr_inner .events_fullwidth .fullwidth_text dt.name {
  font-size: 3rem;
  line-height: 2;
}
.popupbnr_inner .events_item {
  width: 100%;
}
.popupbnr_inner .events_item_img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
  border: 1px solid;
}
.popupbnr_inner .events_item_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popupbnr_inner .events_item_detail dt {
  font-variation-settings: "slnt" 0, "wdth" 68, "wght" 700;
  font-size: 2rem;
  line-height: 1.3;
  margin-top: 24px;
  margin-bottom: 24px;
  min-height: 64px;
}
.popupbnr_inner .events_item_detail dt.soon {
  font-weight: 400;
  font-size: 1.8rem;
}
.popupbnr_inner .events_item_detail dt .date {
  display: block;
}
.popupbnr_inner .events_item_detail dt .date .week {
  display: inline-block;
  font-size: 0.7em;
  margin-right: 2px;
}
.popupbnr_inner .events_item_detail dd {
  font-size: 1.2rem;
  margin-top: 12px;
}
.popupbnr_inner .events_item_detail dd.status {
  text-align: center;
  background-color: #000;
  color: #fff;
  line-height: 2;
  margin-top: 20px;
}
.popupbnr_inner .events_item_detail dd.en-text {
  height: 50px;
}
.popupbnr_inner .events_item_detail dd.en-status {
  height: 50px;
  line-height: 50px;
}
.popupbnr_inner .events_item .btn {
  height: 70px;
  margin-top: 20px;
}
.popupbnr_inner .events_item .btn_en {
  font-size: 2.4rem;
}
.popupbnr .close_label {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #000;
  position: sticky;
  top: 0px;
  float: right;
  margin-right: -10px;
  margin-top: -50px;
  z-index: 1002;
  cursor: pointer;
}
.popupbnr .close_label::before, .popupbnr .close_label::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  inset: 50%;
  translate: -50% -50%;
}
.popupbnr .close_label::before {
  rotate: 45deg;
}
.popupbnr .close_label::after {
  rotate: -45deg;
}

main .consept .events .btn {
  height: 70px;
  margin-top: 20px;
}
main .consept .events .btn_en {
  font-size: 2.4rem;
}
.popupbnr .title {
    margin-bottom: 30px;
}
.popupbnr .title_h3 {
    font-size: 3.6rem;
    font-variation-settings: "slnt" -12, "wdth" 68, "wght" 800;
    line-height: 1;
    margin-bottom: 0;
}
.title_ja {
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 10px;
}
.popupbnr .hide_pc {
    display: none ;
    }
.popupbnr .hide_sp {
  display: block;
}
  @media screen and (max-width: 768px) {
    .popupbnr .hide_pc {
    display: block ;
    }
    .popupbnr .hide_sp {
  display: none;
}
}

.popupbnr .btn {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 446px;
  height: 90px;
  padding-inline: 40px;
  border: 2px solid #000;
  margin-inline: auto;
  position: relative;
  background-color: #fff;
  color: #000;
}

.popupbnr section {
    padding-block: 0px;
}