@charset "UTF-8";
#main {
  overflow: visible;
}

/* ▼▼▼ メンテナンス情報
=====================================*/
.ttl_wrap {
  margin: var(--Padding-Layout-SectionInnermedium) auto;
}

.category_title {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px), print {
  .category_title {
    margin-bottom: 32px;
  }
}

.heading_h3 {
  margin-bottom: 0;
}

.tab_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 100%;
  margin: 0 auto 24px;
}
@media screen and (min-width: 768px), print {
  .tab_list {
    max-width: 1256px;
    margin-bottom: 48px;
  }
}
.tab_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 33.3333333333%;
  border-radius: 20px 20px 0px 0px;
  background: var(--Background-Quaternary);
  font-weight: 500;
  font-size: var(--Heading-H6);
  text-align: center;
  color: #fff;
  height: 77px;
}
.tab_list li.active {
  color: var(--Object-Primary);
  border-top: 1px solid var(--Line-Secondary);
  border-right: 1px solid var(--Line-Secondary);
  border-left: 1px solid var(--Line-Secondary);
  background: var(--Background-Primary-Base);
}

.movie_content {
  display: grid;
  gap: 24px 0;
  margin-bottom: 56px;
}
@media screen and (min-width: 768px), print {
  .movie_content {
    margin-bottom: 48px;
  }
}
.movie_content .movie_note_ttl {
  font-weight: 500;
  font-size: var(--Heading-H4);
}
.movie_content .movie_note_text {
  line-height: 1.6;
}
.movie_content .movie_item_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (min-width: 768px), print {
  .movie_content .movie_item_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.movie_content .movie_item_list .movie_item {
  border: 1px solid transparent;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (min-width: 768px), print {
  .movie_content .movie_item_list .movie_item {
    border-radius: 20px;
  }
}
.movie_content .movie_item_list .movie_item:hover {
  border: 1px solid var(--Brand-color-Primary);
}
.movie_content .movie_item_list .movie_item:hover::before {
  opacity: 0;
}
.movie_content .movie_item_list .movie_item::before {
  content: "";
  background: rgba(34, 36, 38, 0.15);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.movie_content .movie_item_list .movie_item .movie_play_btn {
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgb(16, 156, 243) 25%, rgb(104, 176, 255) 70%, rgb(175, 224, 255) 100%);
  width: 40px;
  aspect-ratio: 1/1;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.movie_content .movie_item_list .movie_item .movie_play_btn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 55%;
}
@media screen and (min-width: 768px), print {
  .movie_content .movie_item_list .movie_item .movie_play_btn {
    width: 56px;
  }
}
.movie_content .movie_item_list .movie_item_title {
  font-weight: 500;
  font-size: var(--Heading-H6);
  margin-top: 8px;
}

.document_item_list {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 768px), print {
  .document_item_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.document_item_list li {
  font-size: var(--Label-Medium);
  font-weight: 500;
}
.document_item_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--Object-Primary-Reverse);
  border: 1px solid var(--Object-Primary-Reverse);
  border-radius: 10px;
  padding: 24px 16px;
}
@media screen and (min-width: 768px), print {
  .document_item_list li a {
    border-radius: 20px;
    min-height: 101px;
    padding: 26px 32px;
  }
}
.document_item_list li a:hover {
  opacity: 1;
  border: 1px solid var(--Brand-color-Primary);
}
.document_item_list .download_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 2px;
  width: 151px;
  height: 34px;
  background: var(--Object-Primary-Reverse);
  border: 1px solid var(--Line-Primary);
  border-radius: 100vmax;
  font-weight: 500;
  font-size: var(--Navigation-X-Small);
  color: #109CF3;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .document_item_list .download_btn {
    width: 166px;
    height: 37px;
  }
}
.document_item_list .download_btn::after {
  content: "";
  width: 12px;
  height: 12px;
  padding-top: 3px;
  background-image: url(../img/icon_download.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-filter: invert(46%) sepia(39%) saturate(3607%) hue-rotate(180deg) brightness(102%) contrast(91%);
  filter: invert(46%) sepia(39%) saturate(3607%) hue-rotate(180deg) brightness(102%) contrast(91%);
}