@charset "utf-8";

/* CSS Document */
.pc-only {
  display: none;
}

.sp-only {
  display: block;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }

  .sp-only {
    display: none;
  }
}


/* 共通ボタン */
.common_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94.2029%;
  height: 40px;
  margin: 0 auto;
  font-family: 'Noto Sans Japanese-m';
  font-size: 1.4rem;
  color: #fff !important;
  background: linear-gradient(to left top, #313c4d 0 50%, #46505f calc(50% + 1px) 100%);
}

.common_btn:after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: block;
  content: '';
  width: 12px;
  height: 16px;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@media screen and (min-width: 768px) {
  .common_btn {
    width: 380px;
    height: 50px;
    margin: 0 auto;
    font-size: 18px;
  }

  .common_btn:after {
    width: 12px;
    height: 16px;
  }
}


.catalog-btn-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: "Noto Sans Japanese-m";
  font-size: 2rem;
  margin-top: 50px;
  margin-bottom: 10px;
}

.catalog-btn-lead::before,
.catalog-btn-lead::after {
  width: 2px;
  height: 42px;
  content: "";
  background-color: #333;
}

.catalog-btn-lead::before {
  transform: rotate(-45deg);
}

.catalog-btn-lead::after {
  transform: rotate(45deg);
}


/* 動画コンテンツ */
.movie__items {
  width: 100%;
  max-width: 1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
  margin: 20px auto 72px;
}

@media screen and (max-width: 767px) {
  .movie__items {
    width: 90%;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto
  }
}

.movie__item_img {
  display: block;
  margin-bottom: 2%
}

.movie__item {
  width: 30%;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 9px 0 rgba(167, 167, 167, .4);
  box-shadow: 0 1px 9px 0 rgba(167, 167, 167, .4);
  position: relative
}

@media screen and (max-width: 767px) {
  .movie__item {
    width: 100%
  }
}

.movie__item>a {
  display: block;
  height: 100%
}

.movie__item_inner {
  width: 90%;
  margin: 0 auto 1em
}

.movie__item_txt {
  margin-bottom: 5%;
  font-size: 1.6rem
}

@media screen and (min-width: 768px) {
  .movie__item_txt {
    min-height: 7.7rem
  }
}

.movie__item_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 9.33333vw;
  font-family: "Noto Sans Japanese-m";
  color: #fff !important;
  background: linear-gradient(to left top, #313c4d 0 50%, #46505f calc(50% + 1px) 100%)
}

@media screen and (min-width: 768px) {
  .movie__item_btn {
    height: 50px;
    font-size: 16px
  }
}

.movie__item_btn::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fff;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%)
}

.magazineLists__list {
  background-color: #fff;
}

.magazine__btn a {
  display: flex;
  font-size: 18px;
}