@charset "UTF-8";
.contents-title .works-contents-wrap {
  padding-bottom: 0;
}

.youtube-contents {
  /* youtube */
}
.youtube-contents .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 80px;
}
.youtube-contents .container .box {
  position: relative;
}
.youtube-contents .container .box:after {
  content: "";
  background: url(../images/play_white.svg);
  width: 30px;
  height: 30px;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 25px;
  right: 25px;
}
.youtube-contents .container .box .thumbnail {
  cursor: pointer;
}
.youtube-contents .container #modal-video {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  transition: 0.5s;
}
.youtube-contents .container #modal-video.close {
  filter: opacity(0);
  visibility: hidden;
}
.youtube-contents .container #modal-video.open {
  filter: opacity(1);
  visibility: visible;
}
.youtube-contents .container #modal-video iframe {
  width: 64vw;
  height: 36vw;
}
.youtube-contents .about-sec {
  grid-template-columns: 1fr;
}
.youtube-contents .about-sec .text-box:hover {
  cursor: pointer;
}
.youtube-contents .about-sec .text-box .title {
  font-family: "Cormorant", serif;
  color: #615653;
  font-size: 30px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
  text-align: center;
  padding-top: 38px;
}
.youtube-contents .about-sec .roll-btn {
  font-family: "Cormorant", serif;
  color: #615653;
  font-weight: 300;
  font-size: 30px;
  line-height: 30px;
  position: relative;
  height: 30px;
  overflow: hidden;
  width: 180px;
  margin: 0 auto;
}
.youtube-contents .about-sec .roll-btn::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 178px;
  height: 1px;
  background: #615653;
}
.youtube-contents .about-sec .roll-btn:hover .roll-btn-default {
  transform: translateY(-30px);
}
.youtube-contents .about-sec .roll-btn:hover .roll-btn-hover {
  transform: translateY(-30px);
  opacity: 1;
}
.youtube-contents .about-sec .roll-btn-default {
  font-family: "Cormorant", serif;
  color: #615653;
  width: 100%;
  font-weight: 300;
  font-size: 30px;
  line-height: 30px;
  position: absolute;
  top: 0;
  transition: 0.5s;
  text-align: center;
}
.youtube-contents .about-sec .roll-btn-hover {
  font-family: "Cormorant", serif;
  color: #615653;
  width: 100%;
  font-weight: 300;
  font-size: 30px;
  line-height: 30px;
  position: absolute;
  top: 30px;
  transition: 0.5s;
  text-align: center;
}

.works-contents {
  /*リンクの位置調整*/
}
.works-contents .inner {
  padding-bottom: 154px;
}
.works-contents .tab-group {
  display: grid;
  grid-template-columns: 32px 24px 52px 154px;
  -moz-column-gap: 54px;
       column-gap: 54px;
  margin: 140px 0 44px;
}
.works-contents .tab-group a {
  color: #A09A98;
  letter-spacing: 0.08em;
  line-height: 1.3;
  font-size: 18px;
}
.works-contents .active {
  border-bottom: 2px solid #615653;
}
.works-contents .active a {
  color: #615653;
}
.works-contents #tab-mc, .works-contents #tab-tv, .works-contents #tab-radio, .works-contents #tab-tv2, .works-contents #tab-cm {
  margin-top: -200px;
  padding-top: 200px;
}
.works-contents .tab {
  font-family: "Poppins", sans-serif;
  flex-grow: 1;
  list-style: none;
  text-align: center;
  cursor: pointer;
}
.works-contents .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 80px;
}
.works-contents .container .thumbnail {
  width: 450px;
  height: 280px;
}
.works-contents .container .text-box {
  padding-top: 10px;
}
.works-contents .container .text-box .title {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.1em;
}
.works-contents .container .text-box .desc {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  padding-top: 10px;
}
.works-contents .container .text-box .date {
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.1em;
  color: #A09A98;
  padding-top: 30px;
}
.works-contents .pager {
  display: grid;
  justify-content: center;
  grid-template-columns: 45px 45px;
  -moz-column-gap: 25px;
       column-gap: 25px;
  margin: 100px 0 150px;
}
.works-contents .pager a {
  display: table-cell;
  width: 45px;
  height: 45px;
  vertical-align: middle;
  text-align: center;
  color: #615653;
}
.works-contents .active-page {
  background-color: #A09A98;
}
.works-contents .active-page a {
  color: #fff;
}

@media screen and (max-width: 960px) {
  .works-contents .inner {
    max-width: 750px;
    margin: 0 auto;
  }
  .works-contents .container {
    display: grid;
    -moz-column-gap: 56px;
         column-gap: 56px;
  }
  .works-contents .container .thumbnail {
    max-width: 315px;
    height: 190px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .works-contents .container .text-box .title {
    font-size: 16px;
    line-height: 24px;
  }
  .works-contents .container .text-box .date {
    font-size: 12px;
    line-height: 17px;
    padding-top: 17px;
  }
}
@media screen and (max-width: 600px) {
  .works-contents .tab-group {
    grid-template-columns: 32px 24px 52px 141px;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .works-contents .tab-group a {
    font-size: 16px;
  }
  .works-contents .container {
    display: grid;
    grid-template-columns: 1fr;
    -moz-column-gap: 56px;
         column-gap: 56px;
  }
  .works-contents .container .thumbnail {
    max-width: 315px;
    height: 190px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .works-contents .container .text-box .title {
    font-size: 16px;
    line-height: 24px;
  }
  .works-contents .container .text-box .date {
    font-size: 12px;
    line-height: 17px;
    padding-top: 17px;
  }

  .youtube-contents .container #modal-video iframe {
    width: 90vw;
    height: 51vw;
  }
  .youtube-contents .about-sec .text-box .title {
    width: 200px;
    padding-top: 28px;
    font-size: 20px;
  }
}/*# sourceMappingURL=works.css.map */