@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:700,400");
/* ベーススタイル */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #272727;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 769px) {
  body {
    font-size: 16px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ヘッダー */
.site-header {
  position: relative;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0));
  width: 100%;
  z-index: 100;
  padding: 15px 0;
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .site-header {
    padding: min(1.25vw, 24px) 0;
    margin-bottom: min(1.5625vw, 30px);
  }
}

.site-logo {
  width: fit-content;
  margin: auto;
}

.site-logo a img {
  height: 36px;
  width: auto;
}
@media (min-width: 769px) {
  .site-logo a img {
    height: 48px;
  }
}

.header-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  display: block;
  width: fit-content;
  font-size: 12px;
  padding: 0.75em 1.5em;
  background-color: transparent;
  color: #e50914;
  border: 1px solid #e50914;
  border-radius: 4px;
  line-height: 1;
  transition: all 0.3s;
}
.header-btn:hover {
  background-color: #e50914;
  color: #ffffff;
}
@media (min-width: 769px) {
  .header-btn {
    font-size: 16px;
    top: 24px;
    right: 20px;
  }
}
.header-btn i {
  margin-right: 0.5em;
}

/* フッター */
footer {
  border-top: 1px solid #6e6e6e;
  padding: 20px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  text-align: center;
  color: #a1a1a1;
}
@media (min-width: 769px) {
  footer {
    padding: min(2.0833333333vw, 40px) 0 min(6.25vw, 120px) 0;
    font-size: 14px;
  }
}

.footer-sns {
  display: flex;
  width: fit-content;
  margin: 0 auto 30px auto;
  gap: 20px;
  font-size: 20px;
}
.footer-sns a {
  color: #ffffff;
}
.footer-sns a:hover, .footer-sns a:visited {
  color: #ffffff;
}
@media (min-width: 769px) {
  .footer-sns {
    gap: min(1.5625vw, 30px);
    font-size: 24px;
    margin: 0 auto min(3.125vw, 60px) auto;
  }
}

.footer-nav {
  display: flex;
  gap: 1.5em;
  width: fit-content;
  margin: 0 auto 30px auto;
}
.footer-nav a {
  color: #a1a1a1;
}
.footer-nav a:hover, .footer-nav a:visited {
  color: #a1a1a1;
}

/* Top - ヒーローカルーセル */
#hero-slider .slick-slide:not(.slick-center) {
  filter: opacity(40%);
}

#hero-slider {
  overflow: hidden;
}
@media (min-width: 769px) {
  #hero-slider .slick-list {
    margin: 0 min(-1.5625vw, 30px);
  }
  #hero-slider .slick-slide {
    margin: 0 min(1.5625vw, 30px);
  }
}

.hero-slide {
  position: relative;
  outline: none;
  width: 100%;
  aspect-ratio: 16/9;
}
@media (min-width: 769px) {
  .hero-slide {
    height: 58vh;
    width: 100%;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/*
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #141414 0%, transparent 50%);
}
*/
.hero-content {
  position: absolute;
  bottom: 100px;
  left: 5%;
  z-index: 2;
  max-width: 600px;
}

.hero-title {
  font-size: 4em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* セクション共通 */
.section-title {
  font-size: 1.5em;
  margin: 40px 0 20px;
  color: #e5e5e5;
}
@media (min-width: 769px) {
  .section-title {
    font-size: 28px;
  }
}

/* Top - Shorts */
@media (min-width: 769px) {
  .section-shorts {
    display: flex;
    margin-top: min(4.1666666667vw, 80px);
    margin-bottom: min(5.2083333333vw, 100px);
  }
}

.shorts-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0 20px;
}
@media (min-width: 769px) {
  .shorts-header {
    width: auto;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
  }
}
.shorts-header h2 {
  margin: 0;
}
@media (min-width: 769px) {
  .shorts-header h2 {
    margin-top: 0;
    margin-bottom: min(2.0833333333vw, 40px);
  }
}

.shorts-wrapper {
  overflow: scroll;
}
@media (min-width: 769px) {
  .shorts-wrapper {
    overflow: auto;
  }
}

.shorts {
  display: flex;
  width: fit-content;
  gap: 15px;
}
@media (min-width: 769px) {
  .shorts {
    width: auto;
    gap: min(1.0416666667vw, 20px);
  }
}

.short-card {
  width: 150px;
}
@media (min-width: 769px) {
  .short-card {
    width: min(11.71875vw, 225px);
  }
}

.short-card img {
  border-radius: 4px;
  aspect-ratio: 9/16;
  object-fit: cover;
}

/* Top - Program グリッド */
@media (min-width: 769px) {
  .top-program-title {
    margin-bottom: min(3.125vw, 60px);
  }
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 769px) {
  .program-grid {
    margin-bottom: min(8.3333333333vw, 160px);
    grid-template-columns: repeat(4, 1fr);
    gap: min(3.125vw, 60px) min(2.0833333333vw, 40px);
  }
}

.program-card {
  transition: transform 0.3s;
  display: block;
}

.program-card:hover {
  transform: scale(1.05);
  z-index: 10;
}

.program-thumb img {
  border-radius: 4px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.program-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 10px;
  color: #ccc;
  height: 3.2em;
  overflow: hidden;
  font-size: 14px;
}
@media (min-width: 769px) {
  .program-title {
    margin-top: 1em;
    font-size: 18px;
  }
}

/* TOP - Goods */
.top-goods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media (min-width: 769px) {
  .top-goods-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: min(3.125vw, 60px) min(2.0833333333vw, 40px);
    margin-bottom: min(4.1666666667vw, 80px);
  }
}

.top-goods-h3 {
  margin-bottom: 1.5em;
}
.top-goods-h3 span {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  margin-left: 1em;
}
@media (min-width: 769px) {
  .top-goods-h3 span {
    font-size: 16px;
  }
}

/* 詳細ページ */
.program-hero {
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .program-hero {
    display: flex;
    flex-direction: row-reverse;
    gap: min(5.2083333333vw, 100px);
    margin-bottom: min(4.1666666667vw, 80px);
  }
}

@media (min-width: 769px) {
  .program-hero-image {
    flex: 1;
  }
}

.program-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-h2 {
  margin: 1em 0;
}
@media (min-width: 769px) {
  .program-h2 {
    font-size: 48px;
  }
}

@media (min-width: 769px) {
  .program-hero-content {
    flex: 1;
  }
}

.program-desc {
  margin-bottom: 2em;
}
@media (min-width: 769px) {
  .program-desc {
    font-size: 18px;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  margin-bottom: 100px;
}
@media (min-width: 769px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: min(4.1666666667vw, 80px) min(1.5625vw, 30px);
    margin-bottom: min(8.3333333333vw, 160px);
  }
}

.video-item img {
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 10px;
  color: #ccc;
  height: 3.2em;
  overflow: hidden;
}
@media (min-width: 769px) {
  .video-title {
    font-size: 16px;
  }
}

/* ページ - オフィシャルグッズ */
.page-goods {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  text-align: center;
  padding-bottom: 80px;
}

.page-goods-link {
  display: block;
  width: 100%;
  padding: 1em;
  font-weight: bold;
  border: 2px solid #ffffff;
  color: #ffffff;
  transition: all 0.3s;
}
.page-goods-link:visited {
  color: #ffffff;
}
.page-goods-link:hover {
  background-color: #ffffff;
  color: #272727;
}
@media (min-width: 769px) {
  .page-goods-link {
    width: 50%;
    margin: auto;
  }
}
.page-goods-link i {
  margin-right: 0.5em;
}

.btn {
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  display: inline-block;
  line-height: 1;
  font-size: 12px;
}
.btn i {
  margin-right: 0.5em;
}
@media (min-width: 769px) {
  .btn {
    font-size: 16px;
  }
}

.btn-primary {
  background-color: #e50914;
  border: none;
  color: #ffffff;
  font-weight: bold;
}

/* Slick カスタマイズ */
.slick-dots {
  bottom: 20px;
}

.slick-dots li button:before {
  color: #ffffff;
}