@charset "UTF-8";
/* ==========================================================================
   トップページ
   ========================================================================== */
@media screen and (max-width: 767px) {
  .main-block {
    margin-top: 5.33vw;
    padding-bottom: 4.53vw;
  }
}

@media screen and (min-width: 768px), print {
  #head {
    top: calc(100vh - 82px);
  }
}
/* common
   ========================================================================== */
.sec-ttl {
  color: #ce0000;
}
.sec-ttl .sub-ttl {
  display: block;
  color: #222;
  font-weight: 600;
}

.sec-viewing .sec-ttl {
  color: #fff;
}
.sec-viewing .sec-ttl .sub-ttl {
  color: #e90000;
}

@media screen and (min-width: 768px), print {
  .sec-ttl {
    font-size: 48px;
    font-size: 4.8rem;
  }
  .sec-ttl .sub-ttl {
    display: block;
    font-size: 15.2px;
    font-size: 1.52rem;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
  }

  .sec-viewing .sec-ttl {
    font-size: 48px;
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-ttl {
    font-size: 5.33vw;
    text-align: center;
  }
  .sec-ttl .sub-ttl {
    display: block;
    font-size: 2.93vw;
    margin-bottom: 2vw;
  }

  .sec-viewing .sec-ttl {
    font-size: 48px;
    font-size: 4.8rem;
  }

  .sec-recommend .sec-ttl {
    color: #fff;
  }
  .sec-recommend .sec-ttl .sub-ttl {
    color: #fff;
  }
}
/* progress
 ========================================================================== */
.progress-wrap {
  display: block;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  height: 2px;
}
.progress-wrap.hide {
  transition-duration: 0.5s;
  pointer-events: none;
  opacity: 0;
}
@media screen and (min-width: 768px), print {
  .progress-wrap {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .progress-wrap {
    width: 80%;
  }
}
.progress-wrap #progress {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #e90000;
  height: 100%;
  width: 0;
  transition-duration: 1s;
  transition-timing-function: linear;
}

#loading-bg {
  background-color: #000;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition-duration: 1s !important;
  pointer-events: none;
  z-index: 10;
}
#loading-bg.black {
  opacity: 1;
}

/* キービジュアル
  ========================================================================== */
@keyframes gradientAnim {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes filterAnim {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  5% {
    filter: blur(10px);
    opacity: 1;
  }
  50% {
    filter: blur(0);
    opacity: 1;
  }
  95% {
    filter: blur(0);
    opacity: 1;
  }
  100% {
    filter: blur(0);
    opacity: 0;
  }
}
@keyframes initAnim {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#canvas-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
}

#canvas {
  position: relative;
}

#canvas-photo {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow: hidden;
}
#canvas-photo > * {
  will-change: transform;
  display: block;
  position: absolute;
  transform: scale(0.001);
  opacity: 1;
  max-width: 240px;
  overflow: hidden;
  filter: brightness(0.85) contrast(1.2);
}
@media screen and (max-width: 767px) {
  #canvas-photo > * {
    max-width: 150px;
  }
}
#canvas-photo > *.vertical {
  max-width: 250px;
}
@media screen and (max-width: 767px) {
  #canvas-photo > *.vertical {
    max-width: 80px;
  }
}
#canvas-photo > *.first {
  transform: scale(1);
}
#canvas-photo > *.first .inner {
  filter: blur(0);
  animation-name: initAnim !important;
}
#canvas-photo > *.active {
  will-change: transform opacity;
  transition-timing-function: linear;
}
#canvas-photo > *.active .inner {
  will-change: animation;
  animation-name: filterAnim;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}
#canvas-photo > *.active .inner img {
  display: block;
  margin: 0 auto;
  padding: 0;
}
#canvas-photo > * > .inner {
  filter: blur(10px);
  animation-name: none;
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
#canvas-photo > * span {
  color: #fff;
  display: inline-block;
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 5;
  text-shadow: 1px 1px 0 #000;
  font-size: 10px;
  font-size: 1rem;
}
#canvas-photo .bg-blur span {
  color: transparent;
  text-shadow: 0px 0px 3px #fff;
}

.key-visual {
  position: relative;
  width: 100%;
  background: linear-gradient(100deg, #85d8d2, #61dac9, #da78f1);
  background-size: 200% 200%;
  animation: gradientAnim 4s ease infinite;
}
.key-visual.black #canvas-photo:before {
  opacity: 1;
}
.key-visual:before, .key-visual:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.key-visual:before {
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.key-visual:after {
  z-index: 7;
  pointer-events: none;
}
.key-visual .copy {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  z-index: 15;
}
.key-visual .copy .sub-txt {
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.key-visual .copy .sub-txt span {
  position: relative;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.key-visual .copy .sub-txt::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(213, 0, 2, 0.89);
  transform: skewX(-20deg);
  position: absolute;
  top: 0;
  left: 0;
}
.key-visual .copy .main-txt {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  margin-top: -40px;
}

@media screen and (max-width: 1199px), print {
  .key-visual {
    width: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .key-visual {
    height: calc(100vh - 82px);
  }
  .key-visual .visual img {
    height: 100vh;
  }
  .key-visual .copy .sub-txt {
    font-size: 21px;
    font-size: 2.1rem;
    padding: 2px 24px;
  }
  .key-visual .copy .main-txt {
    margin-top: -42px;
  }
  .key-visual:after {
    box-shadow: 0 0 15vw 16vw rgba(0, 0, 0, 0.72) inset;
  }
}
@media screen and (max-width: 767px) {
  .key-visual {
    height: calc(100vh - 63px);
  }
  .key-visual .visual img {
    height: calc(100vh - 63px);
  }
  .key-visual .copy .sub-txt {
    font-size: 2.67vw;
    padding: 0.4vw 3.33vw;
  }
  .key-visual .copy .main-txt {
    margin-top: -4vw;
    padding: 0 8.67vw;
  }
  .key-visual:after {
    box-shadow: 0 0 60vw 20vw rgba(0, 0, 0, 0.9) inset;
  }
}
/* GAORA Bros. とは？
  ========================================================================== */
.sec-about {
  position: relative;
}
.sec-about::before {
  content: "";
  position: absolute;
  top: 0;
  background-color: #fff;
}
.sec-about .sec-inner {
  position: relative;
  overflow: hidden;
}
.sec-about .txt-box {
  position: relative;
}
.sec-about .txt-box .txt {
  line-height: 1.8;
}
.sec-about .txt-box .txt p {
  margin-top: 1em;
}
.sec-about .txt-box .txt p:first-child {
  margin-top: 0;
}
.sec-about .img-box .img {
  position: absolute;
  box-shadow: 0 0 60px 0 rgba(212, 212, 214, 0.1);
  border-radius: 20px;
}
.sec-about .img-box .img::before {
  opacity: 1;
}
.sec-about .img-box .img:nth-child(1) {
  z-index: 30;
  bottom: 0;
}
.sec-about .img-box .img:nth-child(1)::before {
  transition: opacity 0.3s 1.25s;
}
.sec-about .img-box .img:nth-child(2) {
  z-index: 20;
  bottom: 1px;
}
.sec-about .img-box .img:nth-child(2)::before {
  transition: opacity 0.3s 0.75s;
}
.sec-about .img-box .img:nth-child(3) {
  z-index: 10;
  bottom: 1px;
}
.sec-about .img-box .img:nth-child(3)::before {
  transition: opacity 0.3s 0.25s;
}
.sec-about.inview-fade .img-box .img::before {
  opacity: 0;
}

@media screen and (min-width: 768px), print {
  .sec-about {
    margin-top: 90px;
  }
  .sec-about::before {
    min-width: 1200px;
    width: 100vw;
    height: 1183px;
    right: 20.2380952381%;
  }
  .sec-about .sec-inner {
    min-height: 720px;
    padding-top: 125px;
  }
  .sec-about .txt-box {
    width: 50%;
    padding-right: 35px;
  }
  .sec-about .txt-box .txt {
    font-size: 17px;
    font-size: 1.7rem;
    margin-top: 40px;
  }
  .sec-about .img-box {
    width: 1072px;
    height: 635px;
    position: absolute;
    top: 80px;
    left: 50%;
  }
  .sec-about .img-box .img::before {
    content: "";
    display: block;
    background-color: #000;
    position: absolute;
  }
  .sec-about .img-box .img:nth-child(1)::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 165px;
    height: 110px;
  }
  .sec-about .img-box .img:nth-child(2) {
    left: 74px;
  }
  .sec-about .img-box .img:nth-child(2)::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 385px;
    height: 290px;
  }
  .sec-about .img-box .img:nth-child(3) {
    left: 309px;
  }
  .sec-about .img-box .img:nth-child(3)::before {
    top: 25px;
    right: 0;
    left: 0;
    margin: auto;
    width: 715px;
    height: 430px;
  }
}
@media screen and (max-width: 767px) {
  .sec-about {
    position: relative;
    margin-bottom: 0;
  }
  .sec-about::before {
    width: calc(100vw - 2.67vw);
    height: 100%;
  }
  .sec-about .sec-inner {
    padding-top: 7.33vw;
    padding-bottom: 13.33vw;
  }
  .sec-about .txt-box .txt {
    font-size: 3.47vw;
    margin-top: 6vw;
    padding-right: 2.67vw;
  }
  .sec-about .img-box {
    margin-top: 5.33vw;
    width: 102.4vw;
    padding-top: 60.53vw;
    left: 6.13vw;
    position: relative;
  }
  .sec-about .img-box .img::before {
    content: "";
    display: block;
    background-color: #000;
    position: absolute;
  }
  .sec-about .img-box .img:nth-child(1) {
    width: 23.47vw;
  }
  .sec-about .img-box .img:nth-child(1)::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 16vw;
    height: 10.67vw;
  }
  .sec-about .img-box .img:nth-child(2) {
    left: 7.07vw;
    width: 44.8vw;
  }
  .sec-about .img-box .img:nth-child(2)::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 36.67vw;
    height: 28vw;
  }
  .sec-about .img-box .img:nth-child(3) {
    left: 29.6vw;
    width: 72.67vw;
  }
  .sec-about .img-box .img:nth-child(3)::before {
    top: 2vw;
    right: 0;
    left: 0;
    margin: auto;
    width: 68vw;
    height: 41.33vw;
  }
}
/* 視聴方法
  ========================================================================== */
.sec-viewing {
  position: relative;
}
.sec-viewing .sec-inner {
  background-color: #000;
  box-shadow: 0px 0px 40px 10px rgba(0, 88, 111, 0.2);
}
.sec-viewing .txt-box .txt {
  color: #fff;
}
.sec-viewing .btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sec-viewing .btn-box .btn-col {
  background-color: #fff;
  border-radius: 5px;
  transition: box-shadow 0.3s 0s ease;
  position: relative;
}
.sec-viewing .btn-box .btn-col:first-child::before {
  display: none;
}
.sec-viewing .btn-box .btn-col::before {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.35);
  margin: auto;
}
.sec-viewing .btn-box .btn-col a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.2s ease;
  border-radius: 5px;
}
.sec-viewing .btn-box .btn-col a::before, .sec-viewing .btn-box .btn-col a::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fb0000;
  transition: all 0.2s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.sec-viewing .btn-box .btn-col a::before {
  transform: rotate(-45deg);
  transform-origin: bottom;
}
.sec-viewing .btn-box .btn-col a:hover {
  box-shadow: 0px 0px 0px 3px #cd0000 inset;
}
.sec-viewing .btn-box .btn-col span {
  pointer-events: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #cd0000;
}

@media screen and (min-width: 768px), print {
  .sec-viewing {
    margin-top: 110px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sec-viewing .sec-inner {
    margin: 0 5.3571428571%;
    padding: 100px 0 130px;
    min-width: 1000px;
    width: 100%;
  }
  .sec-viewing .txt-box {
    text-align: center;
  }
  .sec-viewing .txt-box .txt {
    margin-top: 20px;
  }
  .sec-viewing .btn-box {
    width: 1000px;
    margin: 45px auto 0;
    padding: 0 13px;
  }
  .sec-viewing .btn-box .btn-col {
    width: 302px;
    height: 280px;
  }
  .sec-viewing .btn-box .btn-col + .btn-col {
    margin-left: 40px;
  }
  .sec-viewing .btn-box .btn-col::before {
    width: 1px;
    height: 100%;
    top: 0;
    bottom: 0;
    left: -20px;
    margin: auto;
  }
  .sec-viewing .btn-box .btn-col:hover {
    box-shadow: 0px 0px 30px 10px rgba(189, 0, 13, 0.4);
  }
  .sec-viewing .btn-box .btn-col a::before, .sec-viewing .btn-box .btn-col a::after {
    right: 25px;
  }
  .sec-viewing .btn-box .btn-col a::before {
    width: 1px;
    height: 14px;
    bottom: 26px;
  }
  .sec-viewing .btn-box .btn-col a::after {
    width: 30px;
    height: 2px;
    bottom: 25px;
  }
  .sec-viewing .btn-box .btn-col a:hover::before {
    transform: translateX(5px) rotate(-45deg);
  }
  .sec-viewing .btn-box .btn-col a:hover::after {
    transform: translateX(5px);
  }
  .sec-viewing .btn-box .btn-col span {
    font-size: 13px;
    font-size: 1.3rem;
    top: 35%;
  }
}
@media screen and (max-width: 767px) {
  .sec-viewing {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sec-viewing .sec-inner {
    padding: 6.67vw 0 8vw;
    width: 100%;
  }
  .sec-viewing .txt-box .txt {
    margin-top: 4vw;
    font-size: 3.47vw;
    padding: 0 8vw;
  }
  .sec-viewing .btn-box {
    margin: 5.33vw 2.67vw 0;
    flex-wrap: wrap;
  }
  .sec-viewing .btn-box::before {
    display: none;
  }
  .sec-viewing .btn-box .btn-col {
    width: 100%;
    height: 29.33vw;
    margin-top: 2.67vw;
    overflow: hidden;
  }
  .sec-viewing .btn-box .btn-col:first-child {
    margin-top: 0;
  }
  .sec-viewing .btn-box .btn-col img {
    max-width: 80%;
  }
  .sec-viewing .btn-box .btn-col:nth-child(2) img {
    max-width: 43%;
  }
  .sec-viewing .btn-box .btn-col:nth-child(3) img {
    max-width: 45%;
  }
  .sec-viewing .btn-box .btn-col:hover {
    box-shadow: 0px 0px 2.67vw 1.33vw rgba(189, 0, 13, 0.4);
  }
  .sec-viewing .btn-box .btn-col a::before, .sec-viewing .btn-box .btn-col a::after {
    right: 2.67vw;
  }
  .sec-viewing .btn-box .btn-col a::before {
    width: 1px;
    height: 1.87vw;
    bottom: 3.47vw;
  }
  .sec-viewing .btn-box .btn-col a::after {
    width: 5.33vw;
    height: 1px;
    bottom: 3.33vw;
  }
  .sec-viewing .btn-box .btn-col a:hover::before {
    transform: translateX(0.67vw) rotate(-45deg);
  }
  .sec-viewing .btn-box .btn-col a:hover::after {
    transform: translateX(0.67vw);
  }
  .sec-viewing .btn-box .btn-col span {
    font-size: 3.33vw;
    top: 20%;
  }
}
/* Programおすすめ番組
  ========================================================================== */
@media screen and (min-width: 768px), print {
  .sec-recommend {
    padding: 90px 2.9761904762% 60px;
    margin-bottom: 0;
    overflow: hidden;
  }
}
.sec-recommend .sec-ttl {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .sec-recommend .sec-ttl {
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 767px) {
  .sec-recommend .sec-ttl {
    margin-bottom: 6.67vw;
  }
}
.sec-recommend .notice {
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .sec-recommend .notice {
    margin-top: 40px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-recommend .notice {
    margin-top: 4vw;
    font-size: 3.2vw;
  }
  .sec-recommend .notice p {
    margin-top: 2.67vw;
  }
  .sec-recommend .notice p :first-child {
    margin-top: 0;
  }
}

.sec-recommend-inner {
  position: relative;
}
@media screen and (min-width: 768px), print {
  .sec-recommend-inner {
    background-color: #fff;
    padding: 100px 0;
  }
  .sec-recommend-inner:before {
    background-color: #fff;
    content: "";
    width: 5.3vw;
    height: 100%;
    position: absolute;
    right: -5.3vw;
    top: 0;
  }
  .sec-recommend-inner > .box-center {
    min-width: 1150px;
  }
}
@media screen and (max-width: 767px) {
  .sec-recommend-inner {
    padding: 8vw 0 0;
  }
}

/* btn-program */
.btn-program {
  background-color: #fff;
  border: 2px solid #ebebeb;
  border-radius: 5px;
  text-align: center;
  line-height: 1;
  -webkit-backface-visibility: hidden;
}
.btn-program a {
  background: url(/bros/common/css/img/arrow_btn.png) no-repeat calc(100% - 36px) center;
  background-size: 34px auto;
  display: block;
  font-weight: 700;
  text-decoration: none;
  transition-duration: 0.25s;
}
@media screen and (max-width: 767px) {
  .btn-program a {
    background-size: 5.33vw auto;
    background-position: calc(100% - 15px) center;
  }
}
.btn-program span {
  background: url(/common/css/img/icon_program.png) no-repeat left center;
  padding: 20px 0;
}
@media screen and (min-width: 768px), print {
  .btn-program {
    margin-top: 40px;
    transition-duration: 0.25s;
    font-size: 28px;
    font-size: 2.8rem;
  }
  .btn-program:hover {
    border-color: #bd000d;
    box-shadow: 0 5px 20px #ddd;
    transform: translateY(-1%);
  }
  .btn-program:hover a {
    background-position: calc(100% - 30px) center;
  }
  .btn-program a {
    padding: 64px 0;
  }
  .btn-program span {
    background-size: 52px auto;
    padding-left: 82px;
  }
}
@media screen and (max-width: 767px) {
  .btn-program {
    margin-top: 2.67vw;
    font-size: 4vw;
  }
  .btn-program a {
    padding: 30px 0;
  }
  .btn-program span {
    background-size: 32px auto;
    padding-left: 42px;
  }
}