@charset "UTF-8";

.main__list {
  margin-top: 30px;
}
.main__item {
  position: relative;
  padding-left: 15px;
}
.main__item:not(:first-child) {
  margin-top: 5px;
}
.main__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.column__thumb {
  width: 360px;
  min-width: 360px;
}


/* ---------------------
  movie
--------------------- */
.movie__btn {
  appearance: none;
  padding: 0;
  border: none;
  transition: 0.3s all;
  cursor: pointer;
}
.movie__btn:hover {
  opacity: 0.7;
}
.movie .main__btn {
  appearance: none;
  width: 230px;
  margin-top: 10px;
  padding: 8px 10px 5px;
  border: none;
  font-size: 1.8rem;
  background: linear-gradient(169deg, #8ec54a 0%, #8ec54a 50%, #a4d06f 50%, #a4d06f 100%);
  border-radius: 6px;
  cursor: pointer;
}
.movie .main__btn::after {
  top: 1px;
  width: 18px;
  height: 18px;
  background: url(../../common/images/renewal2023/ico_btn_03.png) no-repeat 0 0 / 100% auto;
}

/*=== モーダル ===*/
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2147483640;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal.is-modalShow {
  display: block;
  opacity: 1;
  visibility: visible;
}
.modal-body {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 700px;
  z-index: 100;
  transform: translate(-50%,-50%);
}
.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  overflow: hidden;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  text-indent: 100%;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  z-index: 10;
  cursor: pointer;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 40px;
  background: #fff;
  border-radius: 1.5px;
  transform: translate(-50%,-50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.modal-close:hover {
  text-decoration: none;
  opacity: 0.7;
}
.modal-inner {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-inner video {
  width: 100%;
}


/* SP */
@media screen and (max-width: 750px) {
  .main__list {
    margin-top: 20px;
  }
  .main__item:not(:first-child) {
    margin-top: 5px;
  }
  /* headline */
  .headline.column {
    display: flex;
    flex-wrap: wrap;
  }
  .headline .column__thumb {
    margin-top: 20px;
  }
  .headline .column__cont {
    margin-top: 0;
  }
}