@charset "UTF-8";
/*
GENERAL STYLING
================================================ */
html {
  font-size: 100%;
  /* 16px */
  scroll-behavior: smooth;
  box-sizing: border-box;
}
@media (1100px <= width) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  position: relative;
  width: 100%;
  color: #D96136;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.7;
  font-weight: 400;
  background-color: #ffffff;
  overflow-x: hidden;
}

/*
COMMON
================================================ */
main {
  width: 100%;
  z-index: 0;
}

/* コンテンツ幅 */
.container-large {
  margin: 0 auto 80px;
  width: 90%;
}
@media (600px <= width < 1100px) {
  .container-large {
    margin: 0 auto 120px;
    width: 90%;
  }
}
@media (1100px <= width) {
  .container-large {
    margin: 0 auto 160px;
    width: 90%;
  }
}

.container-medium {
  margin: 0 auto 80px;
  width: 80%;
}
@media (600px <= width < 1100px) {
  .container-medium {
    margin: 0 auto 120px;
    width: 80%;
  }
}
@media (1100px <= width) {
  .container-medium {
    margin: 0 auto 160px;
    width: 80%;
  }
}

.container-grid {
  margin: 0 auto 80px;
  width: 90%;
}
@media (600px <= width < 1100px) {
  .container-grid {
    margin: 0 auto 120px;
    width: 90%;
  }
}
@media (1100px <= width) {
  .container-grid {
    margin: 0 auto 160px;
    width: 90%;
    max-width: 1100px;
  }
}

/* コンテンツ見出し */
.ttl {
  position: relative;
  margin: 0 auto 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  background-color: rgba(217, 97, 54, 0.1);
  border-radius: 80px;
}
@media (600px <= width < 1100px) {
  .ttl {
    margin: 0 auto 60px;
  }
}
@media (1100px <= width) {
  .ttl {
    margin: 0 auto 80px;
  }
}
.ttl::before, .ttl::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 100%;
  background-image: url(../images/ttl-ball.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.ttl::before {
  left: 0;
  margin-right: auto;
  background-position: center left;
}
.ttl::after {
  right: 0;
  margin-left: auto;
  background-position: center right;
}
.ttl-txt {
  display: grid;
  place-items: center;
  padding: 0.1em 4em;
  color: #D96136;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  text-align: center;
  font-size: clamp(1.25rem, 4vw, 3rem);
}

/*
固定背景
================================================ */
.bg-fixed::before {
  position: fixed;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background-image: url(../images/bg-dot-fixed.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.03;
  z-index: -100;
}

/*
画像保存禁止
================================================ */
.no-copy {
  /* PCの右クリック禁止 */
  pointer-events: stroke;
  user-select: text; /* テキストの選択を許可 */
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: text;
  -moz-touch-callout: none;
  -moz-user-select: text;
}

/* 画像を印刷させない */
@media print {
  body {
    display: none;
  }
}
header {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1000;
}
header .header-logo {
  position: absolute;
  top: 0;
  left: 0;
}
header .header-logo-link {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
}
header .header-logo-link:hover {
  opacity: 0.8;
}
header .header-logo-link > img {
  width: clamp(100px, 20vw, 230px);
  height: auto;
}

/* =================================
キービジュアル
==================================== */
.kv {
  margin-bottom: 40px;
  width: 100%;
  height: auto;
}
@media (600px <= width < 1100px) {
  .kv {
    margin-bottom: 100px;
  }
}
@media (1100px <= width) {
  .kv {
    margin-bottom: 160px;
  }
}
.kv-img {
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.kv-img > img {
  width: 100%;
  height: auto;
}

/* =================================
リード文
==================================== */
#lead {
  width: 100%;
  position: relative;
}
#lead::before, #lead::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 8%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
#lead::before {
  background-image: url(../images/ball-line-left-sp.png);
  background-position: right;
  left: 0;
  transform: translateX(50%);
}
@media (600px <= width < 1100px) {
  #lead::before {
    background-image: url(../images/ball-line-left.png);
  }
}
@media (1100px <= width) {
  #lead::before {
    background-image: url(../images/ball-line-left.png);
  }
}
#lead::after {
  background-image: url(../images/ball-line-right-sp.png);
  background-position: left;
  left: auto;
  right: 0;
  transform: translateX(-50%);
}
@media (600px <= width < 1100px) {
  #lead::after {
    background-image: url(../images/ball-line-right.png);
  }
}
@media (1100px <= width) {
  #lead::after {
    background-image: url(../images/ball-line-right.png);
  }
}

.lead-content {
  padding: 40px 1rem;
  background-color: rgba(204, 204, 204, 0.3);
  text-align: center;
}
@media (600px <= width < 1100px) {
  .lead-content {
    padding: 80px 1rem;
  }
}
@media (1100px <= width) {
  .lead-content {
    padding: 120px 1rem;
  }
}
.lead-content-ttl {
  margin-bottom: 40px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-size: clamp(1.25rem, 4vw, 4rem);
  text-shadow: 2px 2px 3px rgba(13, 28, 63, 0.2);
  opacity: 1;
  line-height: 1.4;
}
@media (1100px <= width) {
  .lead-content-ttl {
    margin-bottom: 80px;
  }
}
.lead-content-txt {
  width: 80%;
  margin: 0 auto 1em;
  word-break: keep-all;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #0D1C3F;
  opacity: 1;
}
.lead-content-txt.last {
  margin: 0 auto 40px;
}
@media (1100px <= width) {
  .lead-content-txt.last {
    margin: 0 auto 80px;
  }
}
.lead-content .date,
.lead-content .channel {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  text-shadow: 2px 2px 3px rgba(13, 28, 63, 0.2);
  opacity: 1;
  color: #0275AF;
  line-height: 1.2;
}
.lead-content .date {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 3vw, 2rem);
  word-break: keep-all;
}
@media (600px <= width < 1100px) {
  .lead-content .date {
    margin-bottom: 2rem;
  }
}
@media (1100px <= width) {
  .lead-content .date {
    margin-bottom: 2rem;
  }
}
.lead-content .channel {
  font-size: clamp(0.85rem, 3vw, 1.25rem);
  word-break: keep-all;
}

/* =================================
配信情報
==================================== */
/* サブタイトル */
.ttl-sub {
  margin: 0 auto 40px;
  padding: 0.5rem 0;
  width: clamp(240px, 20vw, 400px);
  background-color: #D96136;
  border-radius: 30px;
  font-size: clamp(1rem, 3vw, 2rem);
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1;
}

/* 配信テキスト */
.video-info {
  margin-bottom: 40px;
  color: #0D1C3F;
  text-align: center;
  word-break: keep-all;
}

/* 配信MC・実況・解説 */
.host {
  margin: 0 auto 40px;
  padding: 40px 6vw;
  width: 90%;
  background-color: rgba(20, 45, 87, 0.9);
  color: #ffffff;
  border-radius: 10px;
}
@media (600px <= width < 1100px) {
  .host {
    margin: 0 auto 60px;
    padding: 60px 6vw;
    width: 80%;
  }
}
@media (1100px <= width) {
  .host {
    margin: 0 auto 80px;
    padding: 60px 6vw;
    width: 90%;
  }
}

.host-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em 1em;
}
.host-content-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (600px <= width < 1100px) {
  .host-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 2em 1em;
  }
}
@media (1100px <= width) {
  .host-content {
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(10px, 2vw, 20px);
  }
}

.host-ttl,
.host-content-ttl {
  margin-bottom: 10px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-size: clamp(0.875rem, 1.4vw, 1.5rem);
  text-align: center;
  font-weight: 700;
  opacity: 0.8;
}
@media (1100px <= width) {
  .host-ttl,
.host-content-ttl {
    font-size: clamp(1rem, 1.2vw, 1.5rem);
  }
}

.host-content-ttl {
  margin-bottom: 20px;
}
@media (1100px <= width) {
  .host-content-ttl {
    font-size: 1.5rem;
  }
}

.host-image {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
}
.host-image-inner {
  width: 100%;
  height: auto;
}
.host-image-inner > img {
  width: 100%;
  height: auto;
}

.host-name {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.host-content.host-second {
  grid-template-columns: 1fr 2fr;
}
@media (1100px <= width) {
  .host-content.host-second {
    margin: 0 auto;
    width: 60%;
    grid-template-columns: 1fr 2fr;
  }
}

/* 配信動画 */
.video-content {
  margin: 0 auto 80px;
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16/9;
  width: 90%;
  max-width: 1000px;
  height: auto;
}
.video-content iframe {
  width: 100% !important;
  height: 100% !important;
}

/* =================================
チーム紹介
==================================== */
.team-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (600px <= width < 1100px) {
  .team-wrap {
    gap: 60px;
  }
}
@media (1100px <= width) {
  .team-wrap {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
  }
}

.team-wrap-box {
  position: relative;
  margin: 0 auto;
  padding: 60px;
  color: #ffffff;
  border-radius: 10px;
  padding: 40px 6vw;
}
@media (600px <= width < 1100px) {
  .team-wrap-box {
    padding: 60px 6vw;
  }
}
@media (1100px <= width) {
  .team-wrap-box {
    padding: 60px 4vw;
  }
}
.team-wrap-box::before {
  content: attr(data-text);
  position: absolute;
  top: -2%;
  right: 1%;
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  mix-blend-mode: soft-light;
  font-size: clamp(80px, 20vw, 140px);
  line-height: 1;
}
@media (1100px <= width) {
  .team-wrap-box::before {
    font-size: clamp(80px, 10vw, 140px);
  }
}

.team-ttl {
  margin-bottom: 20px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
  font-weight: 700;
  opacity: 0.8;
}
@media (1100px <= width) {
  .team-ttl {
    font-size: clamp(1.5rem, 1.4vw, 2rem);
  }
}

.team-lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.team-lists-inner {
  margin: 0 auto;
}

.team-image {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
}
@media (1100px <= width) {
  .team-image {
    margin-bottom: 20px;
  }
}
.team-image-inner {
  width: 100%;
  height: auto;
}

.team-name {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
@media (1100px <= width) {
  .team-name {
    font-size: clamp(1rem, 0.8vw, 1.25rem);
  }
}

/* チームカラー */
.team01 {
  background-color: rgba(179, 164, 77, 0.8);
}

.team02 {
  background-color: rgba(160, 139, 188, 0.8);
}

.team03 {
  background-color: rgba(223, 192, 76, 0.8);
}

.team04 {
  background-color: rgba(196, 187, 190, 0.8);
}

.team05 {
  background-color: rgba(57, 158, 202, 0.8);
}

.team06 {
  background-color: rgba(160, 165, 159, 0.8);
}

.team07 {
  background-color: rgba(67, 139, 155, 0.8);
}

.team08 {
  background-color: rgba(160, 109, 62, 0.8);
}

.team09 {
  background-color: rgba(99, 179, 87, 0.8);
}

.team10 {
  background-color: rgba(189, 53, 67, 0.8);
}

/* =================================
イベント内容
==================================== */
/* 背景 */
.about {
  padding: 80px 0;
  background-color: rgba(2, 117, 175, 0.1);
  background-blend-mode: multiply;
}
.about > .ttl {
  background-color: #ffffff;
}
.about > .container-grid {
  margin: 0 auto;
}
@media (600px <= width < 1100px) {
  .about {
    padding: 120px 0;
  }
}
@media (1100px <= width) {
  .about {
    padding: 160px 0;
  }
}

/* サブタイトル */
.about-ttl {
  margin: 0 auto;
  padding: 1em 0;
  width: 100%;
  background-color: #F8CB00;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* 内容説明 */
.about-content {
  margin-bottom: 40px;
  background-color: #ffffff;
  border: 2px solid #F8CB00;
  padding: min(6vw, 80px) 6vw;
  color: #0D1C3F;
  line-height: 1.6;
}
.about-content:last-child {
  margin-bottom: 0;
}
@media (600px <= width < 1100px) {
  .about-content {
    margin-bottom: 60px;
  }
}
@media (1100px <= width) {
  .about-content {
    margin-bottom: 80px;
  }
}
.about-content-ttl {
  margin-bottom: 0.6rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.about-content-txt {
  margin-bottom: 1rem;
}
.about-content-txt.last {
  margin-bottom: 2rem;
}
.about-content-txt.last-half {
  margin-bottom: 1rem;
}
.about-content-list, .about-content-star {
  position: relative;
  margin-left: 2rem;
}
.about-content-list.last, .about-content-star.last {
  margin-bottom: 2rem;
}
.about-content-list.last-half, .about-content-star.last-half {
  margin-bottom: 1rem;
}
.about-content-list::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: 2rem;
  height: 1rem;
}
.about-content-star::before {
  content: "★";
  display: block;
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: 2rem;
  height: 1rem;
}

/* =================================
視聴者プレゼント企画
==================================== */
/* 背景 */
.gift {
  padding: 80px 0;
  background-color: rgba(248, 203, 0, 0.7);
}
.gift > .ttl {
  background-color: #ffffff;
}
.gift > .container-grid {
  margin: 0 auto;
}
@media (600px <= width < 1100px) {
  .gift {
    padding: 120px 0;
  }
}
@media (1100px <= width) {
  .gift {
    padding: 160px 0;
  }
}

/* サブタイトル */
.gift-ttl {
  margin: 0 auto;
  padding: 1em 1em;
  width: 100%;
  background-color: #0275AF;
  font-size: clamp(1.125rem, 3vw, 2rem);
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  word-break: keep-all;
}

/* 内容説明 */
.gift-content {
  position: relative;
  margin-bottom: 40px;
  background-color: #ffffff;
  border: 2px solid #0275AF;
  padding: min(6vw, 80px) 6vw;
  color: #0D1C3F;
  line-height: 1.6;
  z-index: 1;
}
.gift-content:last-child {
  margin-bottom: 0;
}
@media (600px <= width < 1100px) {
  .gift-content {
    margin-bottom: 60px;
  }
}
@media (1100px <= width) {
  .gift-content {
    margin-bottom: 80px;
  }
}
.gift-content-lead {
  margin-bottom: 2rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 700;
  color: #0275AF;
  text-align: center;
  word-break: keep-all;
}
.gift-content-img {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 0;
}
@media (600px <= width < 1100px) {
  .gift-content-img {
    grid-template-columns: 1fr 1fr;
  }
}
@media (1100px <= width) {
  .gift-content-img {
    grid-template-columns: 1fr 1fr;
  }
}
.gift-content-img-inner {
  margin-bottom: 2rem;
  width: 100%;
  height: auto;
}
.gift-content-img-inner > img {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
}
.gift-content-img-inner .gift-name {
  text-align: center;
  line-height: 1.2;
}
.gift-content-img02 {
  display: flex;
  flex-direction: column;
  gap: 20px 10px;
  align-items: center;
  justify-content: center;
}
@media (600px <= width < 1100px) {
  .gift-content-img02 {
    flex-direction: row;
  }
}
@media (1100px <= width) {
  .gift-content-img02 {
    flex-direction: row;
  }
}
.gift-content-img02 .camera {
  flex: 20%;
}
.gift-content-img02 .plus {
  flex: 1;
  text-align: center;
}
.gift-content-img02 .plus img {
  width: 40px;
  height: auto;
}
.gift-content .card {
  flex: 60%;
}
.gift-content-ttl {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0275AF;
}
.gift-content-txt {
  margin-bottom: 1rem;
}
.gift-content-txt.last {
  margin-bottom: 2rem;
}
.gift-content .sub-margin {
  margin-left: 1em;
}
.gift-content-list, .gift-content-sublist, .gift-content-no1, .gift-content-no2 {
  margin-bottom: 1rem;
  position: relative;
  margin-left: 2rem;
}
.gift-content-list.last, .gift-content-sublist.last, .gift-content-no1.last, .gift-content-no2.last {
  margin-bottom: 2rem;
}
.gift-content-list::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: 2rem;
  height: 1rem;
}
.gift-content-sublist::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: 2rem;
  height: 1rem;
}
.gift-content-no1::before {
  content: "①";
  display: block;
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: 2rem;
  height: 1rem;
}
.gift-content-no2::before {
  content: "②";
  display: block;
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: 2rem;
  height: 1rem;
}

/* =================================
フッター
==================================== */
.footer {
  position: relative;
  padding: 60px 0;
  width: 100%;
  margin: 0 auto;
  background-color: #000;
  color: #ffffff;
}

/* トップに戻る */
.page-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  padding: 1em 0;
  width: 200px;
  height: 48px;
  background-color: #000;
  border-radius: 1em 1em 0 0;
}
.page-top-inner {
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
.page-top-inner:hover {
  color: #ccc;
}

/* SNSリンク */
.share {
  margin: 0 auto 80px;
}
.share-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (600px <= width < 1100px) {
  .share-list {
    flex-direction: row;
  }
}
@media (1100px <= width) {
  .share-list {
    flex-direction: row;
  }
}
.share-list > li > a {
  display: block;
  width: 200px;
  height: 50px;
  padding: 1em;
  border: 1px solid #ffffff;
  border-radius: 3rem;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}
.share-list > li > a > img {
  height: 1em;
}

/* フッターインナー */
.footer-inner {
  max-width: 1280px;
  margin: 0 5%;
}

.trainer-web {
  line-height: 1.7;
  margin-bottom: 25px;
}
.trainer-web-inner {
  max-width: 400px;
  display: block;
}
.trainer-web-inner > img {
  width: 100%;
  height: auto;
}

.copyright {
  margin-bottom: 18px;
  font-size: 11px;
  color: #ccc;
}

.note {
  font-size: 11px;
  color: #ccc;
}
.note > a {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.note > a:hover {
  text-decoration: none;
}

/*footer
  ----------------------------------------*/
/*# sourceMappingURL=style.css.map */