@charset "utf-8";
/*
Version:1.1
*/

/* ==================================================
	TOP 限定動画
================================================== */
h3#limited{
    margin: 40px auto 25px;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
}
.limited-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
  position:relative;
}
.limited-wrapper button {
  width: 36px;
  height: 36px;
  background-color: #fff;
  cursor: pointer;
  position: absolute;
  top:120px;
  /*transform:translateY(-50%);*/
  transition: all .3s ease;
  border: 1px solid #000;
  z-index: 100;
}
.limited-wrapper button:hover{
    background-color: #000;
}
.limited-wrapper button:before{
    content:'';
    width: 100%;
    height:100%;
    display: block;
    background-repeat:no-repeat;
    background-position: center;
}
.limited-wrapper button:hover:before{
    filter:invert(100%);
}
.limited-wrapper button.prev-btn:before{
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4LjE1NiIgaGVpZ2h0PSIxMi43MjgiIHZpZXdCb3g9IjAgMCA4LjE1NiAxMi43MjgiPiA8ZyBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyA0MiI+IDxwYXRoIGQ9Im02Ljc0MyAxLjQxMy01LjMzIDQuOTUxIiBkYXRhLW5hbWU9Iue3miA4Ii8+IDxwYXRoIGQ9Im02Ljc0MyAxMS4zMTUtNS4zMy00Ljk1MSIgZGF0YS1uYW1lPSLnt5ogOSIvPiA8L2c+PC9zdmc+");
}
.limited-wrapper button.prev-btn{
    left:-56px;
}
.limited-wrapper button.next-btn:before{
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4LjE1NiIgaGVpZ2h0PSIxMi43MjgiIHZpZXdCb3g9IjAgMCA4LjE1NiAxMi43MjgiPiA8ZyBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyA0MyI+IDxwYXRoIGQ9Im0xLjQxMyAxLjQxMyA1LjMzIDQuOTUxIiBkYXRhLW5hbWU9Iue3miA4Ii8+IDxwYXRoIGQ9Im0xLjQxMyAxMS4zMTUgNS4zMy00Ljk1MSIgZGF0YS1uYW1lPSLnt5ogOSIvPiA8L2c+PC9zdmc+");
}
.limited-wrapper button.next-btn{
    right:-56px;
}
.limited-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  /* スクロールバーの非表示化 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.limited-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.limited-container .card {
  flex: 0 0 calc(25% - 12px); /* 4列表示 */
  min-width: 220px;
  border: 1px solid #333;
  box-sizing: border-box;
  background: #fff;
}
.limited-container .card img {
  width: 100%;
  height: auto;
  display: block;
}
.limited-container .card-content {
  padding: 12px;
}
.limited-container .ttl{
    font-size:1.4rem;
    line-height:1.5;
    font-weight: bold;
    display:flex;
    align-items:flex-start;
}
.limited-container .ttl img{
    width: 10px;
    padding-top:2px;
}
.limited-container .meta {
  font-size: 1rem;
  margin-top:1rem;
  font-weight: 600;
}
.limited-container .tag {
  background: #eee;
  padding: 1px 6px;
  margin-right: 5px;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 1050px) {
  .limited-wrapper button.prev-btn{
      left:-12px;
      top:100px;
  }
  .limited-wrapper button.next-btn{
      right:-12px;
      top:100px;
  }
}
@media screen and (max-width: 768px) {
  h3#limited{
    font-size: 2.2rem;
  }
  .limited-container .ttl{
      font-size:1.4rem;
  }
  .limited-container .meta {
      font-size:1.2rem;
  }
}


/* ==================================================
	投稿 限定動画
================================================== */
.movie-limited .c-single__heading{
    display: block;
    margin-bottom: 30px;
}
.movie-limited .c-single__heading .top{
    display: flex;
    font-weight: normal;
    align-items: center;
    margin-bottom: 20px;
    gap:20px;
}
.movie-limited .c-single__heading .top .category{
    margin-bottom: 0;
    background: #E5E5E5;
    padding: 0 12px;
    height: 27px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
}
.movie-limited .c-single__heading .top .date{
    font-size: 1.6rem;
}
.movie-limited .c-single__heading .bottom{
    border-bottom: 2px solid #000;
    padding-bottom: 20px;    
}
.movie-limited .c-single__heading .bottom .title{
    font-weight: 500;
}

.limited-video-area {
  margin-bottom: 46px;
}
.limited-video,
.limited-video-locked {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
  max-width: 960px;
}

.limited-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.limited-video-locked__thumb,
.limited-video-locked__thumb img {
  width: 100%;
  height: 100%;
}

.limited-video-locked__thumb img {
  display: block;
  object-fit: cover;
}

.limited-video-locked__noimage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: #ddd;
  color: #777;
}

.limited-video-locked__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.60);
}

.limited-video-locked__button {
  padding: 16px 28px;
  max-width: 368px;
  width: 90%;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-weight: bold;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.7rem;
  border:1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:20px;
}
.limited-video-locked__button img{
    width: 21px;
    height: auto;
}
.limited-video-locked__text{
  font-size: 1.6rem;
  color:#fff;
  font-weight: bold;
  margin-top: 10px;
  letter-spacing: -0.1px;
}

.limited-content {
  line-height: 1.9;
}

.password-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.password-modal.is-active {
  display: block;
}

.password-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.password-modal__content {
  position: relative;
  z-index: 1;
  width: min(90%, 590px);
  margin: 250px auto 0;
  padding: 60px 32px;
  background: #fff;
  text-align: center;
}

.password-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.password-modal__title {
  margin-bottom: 12px;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
}

.password-modal__title img{
    width: 36px;
}

.password-modal__text {
  margin-bottom: 40px;
  font-size: 1.6rem;
  font-weight: 500;
}

.limited-password-form__field {
  margin-bottom: 20px;
  max-width: 388px;
  width: 100%;
  margin: 0 auto;
}

.limited-password-form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.limited-password-form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #000;
  font-size: 1.6rem;
}

.limited-password-form__button {
  width: 100%;
  padding: 14px 20px;
  border: none;
  background: #000;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  max-width: 388px;
  margin-top: 23px;
}

body.is-modal-open {
  overflow: hidden;
}

.l-content .movie-limited .single-entry{
    margin-bottom: 100px;
}
.l-content .movie-limited .single-entry h2{
    background-color: #fff;
    padding: 0 0 0 10px;
    font-size: 1.7rem;
    font-weight: 600;
    border-left: 3px solid #BF000F;
}
.l-content .movie-limited .single-entry p{
    padding: 0;
    font-size: 1.6rem;
}

@media (max-width: 768px) {
  .limited-single {
    padding: 48px 20px;
  }

  .limited-title {
    font-size: 24px;
  }
  .movie-limited .c-single__heading{
    margin-bottom: 20px;
  }
  .movie-limited .c-single__heading .top{
    margin-bottom: 12.5px;
    gap:10px;
  }
  .movie-limited .c-single__heading .top .category,
  .movie-limited .c-single__heading .top .date{
    font-size: 1.2rem;
  }
  .movie-limited .c-single__heading .bottom{
    padding-bottom: 15px;
  }

  .password-modal__content {
    margin-top: 80px;
    padding: 32px 24px;
  }

  .limited-video-locked__button {
    width: 100%;
    font-size: 1.4rem;
    gap:15px
  }
    .limited-video-locked__button img{
        width: 20px;
    }
    .limited-video-locked__text,
    .password-modal__text{
        font-size: 1.2rem;
    }
    .l-content .movie-limited .single-entry h2{
        font-size: 1.5rem;
    }
        .l-content .movie-limited .single-entry p{
            font-size: 1.4rem;
        }
}
