@charset "UTF-8";
/*=======================================
	responsive
=======================================*/
:root {
  --main_color: #006DD9;
}

.product_ttl__bg {
  margin-bottom: 17px;
}
.product_ttl__bg span {
  font-size: 18px;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #CFEDFE));
  background: linear-gradient(transparent 0%, #CFEDFE 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.product_ttl__bg span:nth-of-type(1), .product_ttl__bg span:nth-of-type(2) {
  position: relative;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .product_ttl__bg span:nth-of-type(1), .product_ttl__bg span:nth-of-type(2) {
    padding-bottom: 0;
    margin-bottom: 4px;
  }
  .product_ttl__bg span:nth-of-type(1)::before, .product_ttl__bg span:nth-of-type(2)::before {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .product_ttl__bg span {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .product_ttl__bg span {
    font-size: 16px;
  }
}
.product_ttl__bg .cent {
  padding: 3px 10px;
}
.product_ttl__bg .pad_l {
  padding: 3px 0 3px 10px;
}
@media screen and (max-width: 768px) {
  .product_ttl__bg .pad_l {
    padding: 3px 10px;
  }
}
.product_ttl__bg .pad_r {
  padding: 3px 10px 3px 0;
}
@media screen and (max-width: 768px) {
  .product_ttl__bg .pad_r {
    padding: 3px 10px;
  }
}

/*=======================================
　パンくずリスト
=======================================*/
.tab_pankuzu .content {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

/*=======================================
　movie
=======================================*/
.movie .content {
  margin: 120px auto 150px;
}
@media screen and (max-width: 768px) {
  .movie .content {
    margin: 60px auto 100px;
  }
}
.movie__clm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 100px 80px;
}
@media screen and (max-width: 1200px) {
  .movie__clm {
    gap: 8.333vw 6.6666vw;
  }
}
@media screen and (max-width: 768px) {
  .movie__clm {
    max-width: 500px;
    margin: 0 auto;
    gap: 35px;
  }
}
.movie__box {
  width: 410px;
}
@media screen and (max-width: 1200px) {
  .movie__box {
    width: calc((100% - 6.6666vw) / 2);
  }
}
@media screen and (max-width: 768px) {
  .movie__box {
    width: 100%;
  }
}
.movie__box iframe {
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.movie__box .plain {
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .movie__box .plain {
    margin-bottom: 8px;
  }
}
.movie__img {
  margin-bottom: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}
@media screen and (max-width: 768px) {
  .movie__img {
    margin-bottom: 15px;
  }
}
.movie__img:hover {
  opacity: 0.8;
}
.movie__link {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  padding-left: 19px;
  position: relative;
  color: var(--main_color);
}
.movie__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background-color: var(--main_color);
  border-radius: 50%;
}/*# sourceMappingURL=movie.css.map */