@charset "utf-8";
/*------------------------------------------------------------
	index
------------------------------------------------------------*/
.loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1000;
}
.loading img {
    max-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 10;
}
.mainVisual {
    position: relative;
}
.mainVisual .photo {
    width: 1200px;
    position:fixed;
    top: 50px;
}
.mainVisual .infoBox {
    /*margin-top: 403px;*/
	margin-top: calc(100vh - 117px);
    width: 100%;
    position: relative;
    z-index: 100;
	 text-align: center;
}
.mainVisual h2 {
    margin-bottom: 18px;
    text-align: center;
}
.mainVisual .textList {
    margin: -20px 0 26px;
    display: flex;
}
.mainVisual .textList li {
    margin-top: 20px;
    width: 220px;
    word-break: break-all;
	text-align: left;
}
.mainVisual .textList li:not(:last-of-type) {
    margin-right: 40px;
}
.mainVisual .textList li .title {
    color: #000;
    font-size: 1.5rem;
    font-family: 'Archivo Black', sans-serif;
}
.mainVisual .textList li p {
    font-size: 1.3rem;
    line-height: 1.7;
}
.mainVisual .textList li a {
    display: block;
}
.mainVisual .link {
    text-align: right;
}
.mainVisual .link a {
    color: #000;
    font-size: 2.5rem;
    font-style: italic;
    font-family: 'Archivo Black', sans-serif;
}
.mainVisual .news {
    padding: 27px 20px 23px;
    background: rgba(0,0,0,0.8);
}
.mainVisual .news .textList li .title {
    color: #e30b0c;
}
.mainVisual .news .link a {
    color: #e30b0c;
}
.mainVisual .live {
    padding: 27px 20px 23px;
    background: rgba(194,20,20,0.8);
}
#main h2 {
    margin-bottom: 24px;
    text-align: center;
}
#main {
    margin-top: 0;
    padding: 27px 0;
    position: relative;
    background: rgba(0,0,0,0.8);
    z-index: 100;
}
#main .videoList {
    margin-bottom: 20px;
}
#main .videoList li {
    width: 693px;
    height: 390px;
    position: relative;
    float: left;
    background: url("../img/index/photo01.png") no-repeat left top / 693px;
    overflow: hidden;
    cursor: pointer;
    -webkit-backface-visibility: hidden; 
    -webkit-transform-style: preserve-3d;
}
#main .videoList .slick-slide {
    margin: 0 28px;
    width: 693px;
}
#main .videoList .slick-slide > div {
    width: 693px;
}
#main .videoList li::after {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f53434;
    mix-blend-mode: hard-light;
    opacity: 0.8;
    transition: all 0.2s ease;
    content: '';
}
#main .videoList li .text {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
#main .videoList li .video {
    position: relative;
    height: 100%;
    z-index: 101;
}
#main .videoList li .video iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#main .videoList li .text p {
    color: #fff;
    font-size: 2.75rem;
}
#main .videoList .slick-prev,
#main .videoList .slick-next {
    margin-top: -20px;
    width: 26px;
    height: 36px;
    position: absolute;
    top: 50%;
    left: 18%;
    background: url("../img/common/icon10.png") no-repeat left top / 26px;
    border: 0;
    cursor: pointer;
    z-index: 100;
}
#main .videoList .slick-next {
    left: 79.7%;
    background-image: url("../img/common/icon09.png");
}
#main .video .link {
    margin: 0 106px;
    text-align: right;
    position: relative;
    z-index: 100;
}
#main .video .link a {
    color: #e30b0c;
    font-size: 2.5rem;
    font-style: italic;
    font-family: 'Archivo Black', sans-serif;
}
@media all and (min-width: 897px) {
    #main .videoList .slick-prev:hover {
        background-image: url("../img/common/icon13.png");
    }
    #main .videoList .slick-next:hover {
        background-image: url("../img/common/icon12.png");
    }
    #main .videoList li:hover::after {
        top: 0;
    }
    #main .videoList li:hover .text {
        opacity: 1;
    }
    .mainVisual .textList li a:hover {
        opacity: 0.7;
    }
    .mainVisual .link a:hover {
        color: #FFF;
    }
    #main .video .link a:hover {
        color: #FFF;
    }
}
@media all and (max-width: 896px) {
    .loading img {
        max-width: 80%;
    }
    #gHeader .hBox {
        padding: 3px 24px 10px;
    }
    .mainVisual .photo {
        width: auto;
        position:fixed;
        top: 50px;
    }
    .mainVisual .infoBox {
        margin-top: 306px;
        width: 100%;
        position: relative;
        z-index: 100;
    }
    .mainVisual h2 {
        margin-bottom: 33px;
    }
    .mainVisual .textList {
        margin: -20px 0 20px;
        display: block;
    }
    .mainVisual .textList li {
        margin-top: 20px;
        width: auto;
        word-break: break-all;
    }
    .mainVisual .textList li:not(:last-of-type) {
        margin: 0 0 11px;
    }
    .mainVisual .textList li .title {
        margin-bottom: 2px;
        font-size: 1.3rem;
    }
    .mainVisual .textList li p {
        font-size: 1.2rem;
        line-height: 1.67;
    }
    .mainVisual .link a {
        font-size: 1.5rem;
    }
    .mainVisual .news {
        padding: 22px 20px 8px;
    }
    .mainVisual .live {
        padding: 22px 20px 8px;
        background: rgba(194,20,20,1);
    }
    #main h2 {
        margin-bottom: 18px;
    }
    #main {
        margin-top: 0;
        padding: 23px 0;
    }
    #main .videoList {
        margin-bottom: 14px;
    }
    #main .videoList li {
        width: 300px;
        height: 169px;
        background: url("../img/index/photo01.png") no-repeat left top / cover;
    }
    #main .videoList li::before {
        margin: -13px 0 0 -15px;
        width: 31px;
        height: 26px;
        position: absolute;
        top: 50%;
        left: 50%;
        background: url("../img/common/sp_icon05.png") no-repeat left top / 31px;
        content: '';
    }
    #main .videoList .slick-slide {
        margin: 0 10px;
        width: 300px;
    }
    #main .videoList .slick-slide > div {
        width: 300px;
    }
    #main .videoList .slick-prev,
    #main .videoList .slick-next {
        display: none!important;
    }
    #main .video .link {
        margin: 0 20px;
        text-align: right;
    }
    #main .video .link a {
        font-size: 1.5rem;
    }
}

a#scroll {
	opacity: 1;
    transition: opacity 0.2s ease .1s;
		font-size: 2.5rem;
    /* color:#000; */
    color:#fff;
    font-family: 'Archivo Black', sans-serif;
		display: inline-block;
	margin-bottom: 50px;
}
a#scroll.scrolled{
	opacity: 0;
}
a#scroll span {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 6px solid #F3D000;
  border-bottom: 6px solid #F3D000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
a#scroll span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
a#scroll span:nth-of-type(2) {
  top: 32px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
a#scroll span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* === SP修正: 画像は自然高さ、中央寄せ/高さ固定は解除 === */
@media all and (max-width: 896px) {
  .mainVisual .photo {
    position: fixed;
    top: 50px;
    left: 0;
    right: auto;        /* PC向けの right:0 を打ち消し */
    width: auto !important;
    height: auto;       /* ← dvh 指定を解除 */
    display: block;     /* ← flex 指定を解除して元に戻す */
  }
  .mainVisual .photo img {
    width: 100%;
    height: auto;       /* 画像は切らずに縮小（contain 相当） */
    max-width: 100%;
    display: block;
  }
  .mainVisual .infoBox {
    margin-top: 306px;  /* 既存SPデザインに合わせる */
  }
}

a#scroll {
  /* opacity: 0;          /* 完全に見えなくする */
  /* pointer-events: none; /* クリックやホバーを無効化 再表示したくなったら opacity: 1; pointer-events:auto; に戻せる*/
}