@charset "UTF-8";
:root {
  /*===================== Color =====================*/
  --color-toyopet: #005952;
  --color-hac-base: #005952;
  --color-chubase-red: #F40013;
  --color-hac-base: #0F5E75;
  --color-kinto: #20A5C0;
  --color-main: #1F1F1F;
  --color-light-blue: #44A0BE;
  --color-blue: #178BD2;
  --color-red: #DB0011;
  --color-red02: #E54956;
  --color-pink: #EB6B76;
  --color-orange: #F28212;
  --color-gold: #B18B31;
  --color-light-gray: #C8C8C8;
  --color-white-blue: #E1ECEF;
  --color-gray: #DEE4E8;
  --color-blue-gray-light: rgba(235, 241, 245, 0.9);
  --color-blue-gray: #8E9FA4;
  --color-used: #EC1223;
  --color-light-green: #46B41E;
  --color-dark-green: #3A4246;
  --color-green: #00A941;
  --color-green02: #46B196;
  --color-green03: #00CDA4;
  --color-02: #556168;
  --color-03: #2970C0;
  --color-navy: #38405C;
  --color-sub-txt: #818181;
  --color-sub-txt-v02: #6F6F6F;
  --color-sub: #9D9D9D;
  --color-sub-line05: #d6d6d6;
  /*表*/
  --color-table: #494949;
  /*Table*/
  --color-table-bg: #F2F2F2;
  --color-table-menu: #79888D;
  /*===================== Gradient =====================*/
  --gradient-green-blue: linear-gradient(90deg,#78B50F 1%,#69D04D 35%,#38B5CE 72%,#3C64A1 100%);
  --gradient-red-yellow: linear-gradient(90deg,#F05353,#E7B500);
  /*===================== Font =====================*/
  --font-montserrat: "Montserrat", sans-serif;
  --font-manrope: "Manrope", sans-serif;
  --font-bungee: "Bungee", sans-serif;
  /*===================== CONT radius =====================*/
  --ease-bounce-s:linear(0, 0.271 8.8%, 0.542 19.9%, 0.837 34.2%, 1 44.7%, 0.943 51.1%, 0.925 57.5%, 0.937 63.1%, 1 77.4%, 0.991 84.2%, 1);
  --ease-bounce:linear(0, 0.247 13.2%, 0.415 20.5%, 0.624 27.4%, 1 37.8%, 0.794 44.9%, 0.747 47.9%, 0.731 50.8%, 0.744 53.5%, 0.785 56.4%, 0.999 65.5%, 0.927 69.6%, 0.904 73.4%, 0.921 77%, 1 84.5%, 0.981 89.4%, 1);
}

/*================================= 見出し =================================*/
/*======================= SP-VW =======================*/
/*======================= PC-VW =======================*/
/*------ 使用例 ------
.text {
	font-size: spvw(16);
}
*/
/*======================= PCLG-VW =======================*/
/*================================= マウスオーバー =================================*/
/*================================= コンテンツ 角丸 =================================*/
/*================================= アニメーション =================================*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes big {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flipcard01 {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes flipcard02 {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*================================= メニュー左寄せ =================================*/
.l-lower-title-area h1 .large {
  font-size: calc(65 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-lower-title-area h1 .large {
    font-size: clamp(40px, 40 / 1366 * 100vw, 100px);
  }
}
.l-lower-title-area h1 .large .wrap .img.w01 {
  width: 78%;
  transform: translate(-50%, -50%);
}
.l-lower-title-area h1 .large .wrap .img.w02 {
  width: 95%;
}
.l-lower-title-area h1 .large .wrap .img.w03 {
  width: 58%;
  transform: translate(-55%, -50%);
}
.l-lower-title-area h1 .large .wrap .img.w04 {
  width: 73%;
  transform: translate(-45%, -52%);
}
.l-lower-title-area h1 .large .wrap .img.w05 {
  width: 75%;
  transform: translate(-45%, -52%);
}
.l-lower-title-area h1 .large .wrap .img.w06 {
  width: 58%;
  transform: translate(-45%, -52%);
}
.l-lower-title-area h1 .large .wrap .img.w07 {
  width: 75%;
  transform: translate(-53%, -50%);
}
.l-lower-title-area h1 .large .wrap .img.w08 {
  width: 68%;
  transform: translate(-53%, -52%);
}

.tv-top-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 0;
}
.tv-top-slider-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-main);
  z-index: -1;
}
.tv-top-slider-wrapper div.tv-top-slider {
  display: flex;
  width: 500%;
}
@media screen and (min-width: 768px) {
  .tv-top-slider-wrapper div.tv-top-slider {
    width: 280%;
  }
}
.tv-top-slider-wrapper .slider {
  animation: scroll-left 40s infinite linear 0.5s both;
  display: flex;
}
.tv-top-slider-wrapper .slide {
  padding-right: calc(8 / 750 * 100vw);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .tv-top-slider-wrapper .slide {
    padding-right: 8px;
  }
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*================================================  ================================================*/
.l-lower-cont-area {
  background: var(--color-main);
}

section.sec-tv div.channel-area {
  box-sizing: border-box;
  padding: calc(89 / 750 * 100vw) calc(33 / 750 * 100vw) calc(129 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-tv div.channel-area {
    padding: calc(71 / 1366 * 100vw) 39px calc(105 / 1366 * 100vw);
  }
}
section.sec-tv div.channel-area.bottom {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  section.sec-tv div.channel-area.bottom {
    padding-bottom: calc(58 / 1366 * 100vw);
  }
}
section.sec-tv div.channel-area h3 {
  color: var(--color-sub);
  font-weight: 500;
  font-size: calc(22 / 750 * 100vw);
  line-height: 1.2em;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  section.sec-tv div.channel-area h3 {
    font-size: calc(15 / 1366 * 100vw);
    margin-bottom: 1.6em;
  }
}
section.sec-tv div.channel-tab-btn-wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: calc(5 / 750 * 100vw);
  overflow-x: auto;
  box-sizing: border-box;
  width: calc(100% + 106 / 750 * 100vw);
  position: relative;
  left: calc(-53 / 750 * 100vw);
  z-index: 5;
  padding: 0 calc(53 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-tv div.channel-tab-btn-wrap {
    left: 0;
    width: auto;
    padding: 0;
    flex-wrap: wrap;
    gap: 7px;
  }
}
section.sec-tv div.channel-tab-btn-wrap a {
  display: inline-block;
  opacity: 0.8;
  background-color: rgba(255, 255, 255, 0.9);
  width: auto;
  margin: 0;
  line-height: 1em;
  font-size: calc(24 / 750 * 100vw);
  flex: 0 0 auto;
  width: auto;
  padding: 1em 1.6em;
  border-radius: calc(5 / 750 * 100vw);
  transition: all 0.3s;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: var(--color-sub-txt);
}
@media screen and (min-width: 768px) {
  section.sec-tv div.channel-tab-btn-wrap a {
    font-size: clamp(10px, 16 / 1366 * 100vw, 1000px);
    border-radius: 5px;
    padding: 1.4em 2.4em;
    transition: all 0.3s;
  }
  section.sec-tv div.channel-tab-btn-wrap a:hover {
    background: #fff;
    opacity: 1;
  }
}
section.sec-tv div.channel-tab-btn-wrap a.is-active {
  background: #fff;
  opacity: 1;
  color: var(--color-main);
}
section.sec-tv div.movie-list-area {
  border-top: solid 1px var(--color-sub-txt);
  box-sizing: border-box;
  padding: calc(75 / 750 * 100vw) 0 0;
  margin: 0 calc(33 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-tv div.movie-list-area {
    padding-top: calc(64 / 1366 * 100vw);
    margin: 0;
  }
}
section.sec-tv div.movie-list-area {
  /*&.is-active{
      display: block;
  }*/
}
section.sec-tv div.movie-list-area h2 {
  color: #fff;
  font-weight: 500;
  font-size: calc(35 / 750 * 100vw);
  line-height: 1.2em;
  margin-bottom: calc(60 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-tv div.movie-list-area h2 {
    font-size: clamp(10px, 26 / 1366 * 100vw, 1000px);
    margin-left: 1.4em;
    margin-bottom: 1.92em;
  }
}
section.sec-tv div.movie-list-area ul li {
  margin-bottom: calc(20 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-tv div.movie-list-area ul li {
    margin-bottom: 8px;
  }
}
section.sec-tv div.movie-list-area ul li button {
  background-color: #fff;
  display: block;
  box-sizing: border-box;
  text-align: left;
  padding: calc(32 / 750 * 100vw) calc(32 / 750 * 100vw) calc(60 / 750 * 100vw) calc(32 / 750 * 100vw);
  border-radius: calc(10 / 750 * 100vw);
  width: 100%;
}
@media screen and (min-width: 768px) {
  section.sec-tv div.movie-list-area ul li button {
    padding: calc(35 / 1366 * 100vw) calc(38 / 1366 * 100vw);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 5px;
    transition: all 0.3s;
  }
  section.sec-tv div.movie-list-area ul li button:hover {
    background-color: var(--color-light-green);
    color: #fff;
  }
  section.sec-tv div.movie-list-area ul li button:hover div.movie-img img {
    transform: scale(1.04);
  }
  section.sec-tv div.movie-list-area ul li button:hover div.movie-txt-wrap .movie-body-txt {
    color: #fff;
  }
}
section.sec-tv div.movie-list-area ul li div.movie-img {
  margin-bottom: calc(50 / 750 * 100vw);
  overflow: hidden;
  isolation: isolate;
  border-radius: calc(5 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-tv div.movie-list-area ul li div.movie-img {
    width: 27.2%;
    margin-bottom: 0;
    border-radius: 5px;
  }
}
section.sec-tv div.movie-list-area ul li div.movie-img img {
  transition: transform 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 280/158;
}
@media screen and (min-width: 768px) {
  section.sec-tv div.movie-list-area ul li div.movie-txt-wrap {
    width: 69%;
  }
}
section.sec-tv div.movie-list-area ul li div.movie-txt-wrap h3 {
  font-size: calc(32 / 750 * 100vw);
  line-height: 1.42em;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  section.sec-tv div.movie-list-area ul li div.movie-txt-wrap h3 {
    font-size: clamp(14px, 18 / 1366 * 100vw, 1000px);
  }
}
section.sec-tv div.movie-list-area ul li div.movie-txt-wrap .movie-body-txt {
  font-weight: 400;
  font-size: calc(24 / 750 * 100vw);
  line-height: 1.75em;
  letter-spacing: 0.02em;
  color: var(--color-sub-txt);
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  section.sec-tv div.movie-list-area ul li div.movie-txt-wrap .movie-body-txt {
    font-weight: 400;
    font-size: clamp(10px, 13 / 1366 * 100vw, 18px);
    line-height: 1.76em;
    letter-spacing: 0.02em;
  }
}
section.sec-tv div.movie-list-area ul li div.movie-txt-wrap .movie-category {
  display: inline-block;
  font-size: calc(22 / 750 * 100vw);
  line-height: 1.2em;
  border: solid 1px;
  padding: 0.4em 1em;
  margin-top: calc(72 / 750 * 100vw);
  border-radius: calc(2 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-tv div.movie-list-area ul li div.movie-txt-wrap .movie-category {
    font-size: clamp(10px, 12 / 1366 * 100vw, 1000px);
    margin-top: 2.8em;
    border-radius: 2px;
  }
}

@media screen and (min-width: 768px) {
  .modaal-overlay {
    z-index: 100000;
  }
}

.modaal-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  top: 0;
  right: 0;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .modaal-wrapper {
    z-index: 1000000;
  }
}

.modaal-inner-wrapper {
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.modaal-video-container {
  padding-bottom: 56.25%;
  height: auto;
  max-width: none;
}

.modaal-video-wrap {
  position: relative;
  margin: 0;
  width: 94.6%;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: none;
}
@media screen and (min-width: 768px) {
  .modaal-video-wrap {
    width: 56%;
    min-width: 600px;
  }
}

.modaal-close {
  position: relative;
  top: 0;
  left: 50%;
  right: 0;
  transform: translate(-50%, 0);
  background: #f00;
  font-size: 1em;
  order: -1;
  position: relative;
  width: 94.6%;
}
.modaal-close:hover {
  background: none;
}
.modaal-close:hover::after, .modaal-close:hover::before {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .modaal-close {
    width: 56%;
    min-width: 600px;
  }
}
.modaal-close::after, .modaal-close::before {
  width: 1px;
  height: 18px;
  top: 50%;
  right: 8px;
  left: auto;
}
.modaal-close::after {
  transform: translate(0, -50%) rotate(45deg);
}
.modaal-close::before {
  transform: translate(0, -50%) rotate(-45deg);
}
.modaal-close span {
  display: block;
  height: auto !important;
  clip: auto !important;
  overflow: visible !important;
  position: relative !important;
  line-height: 1em;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: calc(24 / 750 * 100vw);
  width: 5em !important;
  text-align: left;
  transform: translate(0, 0.1em);
  letter-spacing: 0.02em;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  .modaal-close span {
    font-size: 14px;
    transform: translate(0, -0.08em);
    width: 64px !important;
    height: 13px !important;
  }
}/*# sourceMappingURL=tv.css.map */