/*//////////////////////////////////////////////////

Title : video.scss
For   : mbl Video Liat

Created       : 2022-11-15
Last Modified : 2022-11-15

==========================================

Content
  01: common
  02: layout
  03: contents
  04: modal

//////////////////////////////////////////////////*/
/* ===================== 01: common */
.pageVideo * {
  font-weight: inherit;
  box-sizing: border-box;
}
.pageVideo a {
  display: block;
}
.pageVideo picture,
.pageVideo img {
  width: 100%;
  height: auto;
}

/* --- for small viewport ---*/
@media screen and (max-width: 768px) {
  .pageVideo .hidden-sml {
    display: none;
  }
}
/* --- for large viewport ---*/
@media screen and (min-width: 769px) {
  .pageVideo .hidden-lrg {
    display: none;
  }
}
/* ===================== 02: breadcrumb */
.pageVideo {
  margin-inline: auto;
}

/* --- for small view port --- */
@media screen and (max-width: 768px) {
  /* #Contents {
    -webkit-padding-before: calc(290 * 100vw / 750);
            padding-block-start: calc(290 * 100vw / 750);
  } */
  .pageVideo {
    -webkit-margin-after: calc(90 * 100vw / 750);
            margin-block-end: calc(90 * 100vw / 750);
    padding-inline: calc(15 * 100vw / 430);
    -webkit-padding-before: calc(20 * 100vw / 430);
            padding-block-start: calc(20 * 100vw / 430);
  }
  .pageVideo__wrapper {
    -webkit-margin-before: calc(50 * 100vw / 750);
            margin-block-start: calc(50 * 100vw / 750);
  }
}
/* --- for large view port --- */
@media screen and (min-width: 769px) {
  .pageVideo {
    max-width: 1000px;
    width: 95%;
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
    -webkit-margin-after: 100px;
            margin-block-end: 100px;
  }
  .pageVideo__wrapper {
    -webkit-margin-before: 60px;
            margin-block-start: 60px;
  }
}
/* ===================== 03: contents */
.pageVideo__list {
  display: grid;
}
.pageVideo__card {
  display: flex;
  flex-direction: column;
}
.pageVideo__summary {
  /* -webkit-margin-before: auto;
          margin-block-start: auto; */
}
.pageVideo__summary * {
  cursor: pointer;
}
.pageVideo__ttl {
  overflow: hidden;
  text-overflow: ellipsis;
}
.pageVideo__date {
  color: #999999;
}

/* --- for mobile phone --- */
@media screen and (max-width: 768px) {
  .pageVideo__amount {
    -webkit-margin-before: calc(40 * 100vw / 750);
            margin-block-start: calc(40 * 100vw / 750);
    font-size: 12px;
  }
  .pageVideo__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: calc(50 * 100vw / 750);
    -moz-column-gap: calc(20 * 100vw / 750);
         column-gap: calc(20 * 100vw / 750);
  }
  .pageVideo__card {
    gap: calc(20 * 100vw / 750);
  }
  .pageVideo__ttl {
    font-size: 12px;
  }
  .pageVideo__date {
    -webkit-padding-before: calc(20 * 100vw / 750);
            padding-block-start: calc(20 * 100vw / 750);
    font-size: 10px;
  }
}
/* --- for desktop --- */
@media screen and (min-width: 769px) {
  .pageVideo__amount {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
    font-size: 15px;
  }
  .pageVideo__list {
    grid-template-columns: repeat(5, 1fr);
    row-gap: 50px;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .pageVideo__card {
    gap: 20px;
  }
  .pageVideo__ttl {
    font-size: 14px;
  }
  .pageVideo__date {
    -webkit-padding-before: 10px;
            padding-block-start: 10px;
    font-size: 12px;
  }
  .pageVideo__thumb {
    border: 2px solid #fff;
    width: calc(100% - 4px);
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
}
/* ===================== 04: modal */