@charset "UTF-8";
.p-kv {
    color: #fff;
}
#explanation {
    scroll-margin-top: 100px;
}
#about {
    scroll-margin-top: 100px;
}
#howToWatch {
    scroll-margin-top: 100px;
}
#campaign {
    scroll-margin-top: 100px;
}
/* l-wrapperの背景色（このLP専用上書き） */
.l-wrapper {
  background: #1d1d1d;
  background: linear-gradient(90deg, #303030 0%, #1d1d1d 30%, #1d1d1d 70%, #303030 100%);
  background-attachment: fixed;
}
.attention_bnr {
  padding: 20px;
  background-color: #000;
}
.attention_bnr a {
    text-decoration: underline;
}
.attention_bnr p {
    padding-top: 10px;
    font-size: 13px;
    text-align: right;
}
@media screen and (min-width: 768px) {
  .attention_bnr p {
    font-size: 18px;
    text-align: right;
  }
}
/* ---------------------------------------------
*   c-login_area
--------------------------------------------- */
.c-login_area {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}
.c-login_area_gray {
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  background-color: #1d1d1d ;
}
.c-login_list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.c-login_item {
  max-width: 320px;
  width: 100%;
}
.c-login_text {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.c-login_subttl {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}
.c-login_item img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (hover: hover) {
  .c-login_item a:hover img {
    opacity: 0.8;
  }
}
.c-login_guide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
}
.c-login_guide-icon {
  width: 14px;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-login_guide {
    font-size: 24px;
  }
  .c-login_area_gray {
    padding: 80px 20px;
  }
  .c-login_subttl {
    font-size: 24px;
    margin-bottom: 10px;
    }
  .c-login_text {
    font-size: 20px;
  }
}
/* ---------------------------------------------
* p-attention_match
--------------------------------------------- */
.p-attention_match {
  position: relative;
  background-color: #b20000;
  color: #fff;
  overflow: hidden;
}
.p-attention_match::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: url(../img/bg_attention_top.png) no-repeat top center / 100% auto;
}
.p-attention_match::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: url(../img/bg_attention_btm.png) no-repeat bottom center / 100% auto;
}
.p-attention_content {
  position: relative;
  z-index: 1;
  padding: 120px 20px 200px;
}
.c-match_info_area {
  margin-top: 30px;
}
.c-match_cat {
  font-size: 18px;
  font-weight: 700;
}
.c-match_ttl {
  font-size: 16px;
}
.c-match_img {
  margin-top: 10px;
}
.c-match_datetxt {
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
}
.c-match_datetxt span {
  display: block;
  font-weight: 400;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-attention_content {
    padding: 120px 20px 300px;
  }
  .p-attention_match::before {
    height: 350px;
  }
  .p-attention_match::after {
    height: 300px;
  }
  .c-match_info_area {
    margin-top: 30px;
  }
  .c-match_cat {
    font-size: 24px;
  }
  .c-match_ttl {
    font-size: 22px;
  }
  .c-match_datetxt {
    font-size: 22px;
  }
  .c-match_datetxt span {
    font-size: 24px;
  }
}
/* ---------------------------------------------
* p-schedule
--------------------------------------------- */
.p-schedule {
  width: 100%;
  color: #fff;
  background-color: #0f1a32;
}
.p-schedule_bg {
  width: 100%;
  height: auto;
  display: block;
}
.p-schedule_content {
  padding: 0 20px 100px;
  box-sizing: border-box;
  background-image: url(../img/bg-schedule_bottom.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}
.schedule_txt {
  font-size: 16px;
  margin-top: 30px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
/* ===== アコーディオン全体 ===== */
.accordion {
  max-width: 360px;
  margin: 0 auto;
  color: #fff;
  font-family: sans-serif;
}

/* ===== 各アコーディオン ===== */
.accordion_item {
  margin-bottom: 12px;
  border: 1px solid #fff;
  background: transparent;
}

/* ===== ヘッダー ===== */
.accordion_header {
  width: 100%;
  padding: 14px 16px;
  background: #000;
  color: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
}

/* ＋／− 記号 */
.accordion_header .icon {
  font-size: 20px;
  line-height: 1;
}

/* ===== 中身 ===== */
.accordion_content {
  display: none;
  background: #fff;
  color: #000;
}

/* 開いている状態 */
.accordion_item.is-open .accordion_content {
  display: block;
}

/* ===== 試合リスト ===== */
.game_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.game_list li {
  padding: 15px 30px;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.game_list li:last-child {
  border-bottom: none;
}
.time {
  font-size: 13px;
  color: #666;
}
.teams {
  font-size: 15px;
}
.watch-btn {
  position: absolute;
  right: 17px;
  top: 70%;
  transform: translateY(-50%);
}
.watch-btn img {
  width: 80px !important;
  height: auto !important;
  display: block;
}
.tab_outer {
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

/* ===== タブボタン全体 ===== */
.schedule_tabs .tab_button {
  display: inline-flex;
  gap: 8px;
  min-width: max-content;
  white-space: nowrap;
  margin: 30px auto 24px;
  padding: 6px;
  border-radius: 9999px;
  border: 1px solid #C2C2C2;
  background: #0F1C24;
  scrollbar-width: none;
}
.schedule_tabs .tab_button::-webkit-scrollbar {
  display: none;
}
/* ===== タブ ===== */
.schedule_tabs .tab {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 10px 16px;
  border: none;
  border-radius: 9999px;
  background: transparent;
  color: #fffa00;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.tab-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.tab-icon-wrap {
  position: relative;
  width: 20px;
  height: 20px;
}
.tab-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
}
.tab-text {
  line-height: 1;
  white-space: nowrap;
}
/* ===== アクティブ ===== */
.schedule_tabs .tab.active {
  background: #fffa00;
  color: #0F1C24;
}

/* ===== タブアイコン ===== */
.schedule_tabs .tab .tab-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 4px;
}
.schedule_tabs .tab .tab-icon--active {
  display: none;
}
.schedule_tabs .tab .tab-icon--inactive {
  display: inline-block;
}
.schedule_tabs .tab.active .tab-icon--active {
  display: inline-block;
}
.schedule_tabs .tab.active .tab-icon--inactive {
  display: none;
}

/* ===== チーム表示 ===== */
.team_with_logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.accordion_item .team_logo--inline {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
}
.team_name {
  font-size: 15px;
}

/* ===== PC ===== */
@media screen and (min-width: 768px) {
  .p-schedule_content {
    padding: 0 20px 150px;
  }
  .schedule_txt {
    font-size: 22px;
  }
  .schedule_tabs .tab {
    padding: 10px 10px;
  }
  .schedule_tabs .tab_button {
    display: flex;
  }
  .accordion {
    max-width: 480px;
  }
  .accordion_header {
    font-size: 18px;
    padding: 20px;
  }
  .game_list li {
    padding: 17px 40px;
  }
  .time {
    font-size: 15px;
  }
  .teams {
    font-size: 18px;
  }
  .team_name {
    font-size: 18px;
  }
  .accordion_item .team_logo--inline {
    width: 24px;
    height: 24px;
  }
  .watch-btn {
    right: 30px;
  }
  .watch-btn img {
    width: 80px !important;
  }
}
/* ---------------------------------------------
* p-explanation_area
--------------------------------------------- */
.p-explanation_area {
  padding-top: 20px;
  background-color: #1d1d1d;
}
@media screen and (min-width: 768px) {
  .p-explanation_area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-about_area {
  background-color: #1d1d1d;
}
/* ---------------------------------------------
* p-howtowatch
--------------------------------------------- */
.p-howtowatch {
  color: #fff;
  background-color: #1d1d1d;
  padding-top: 20px;
}
.howtowatch_img {
  margin-top: 20px;
}
.howtowatch_txt {
  font-size: 22px;
  font-weight: 700;
  margin-top: 25px;
  text-align: center;
}

.tab_button {
  display: flex;
  justify-content: space-between;
  margin: 30px auto 24px;
  padding: 6px;
  border-radius: 9999px;
  border: 1px solid #C2C2C2;
  background: #0F1C24;
}
.p-howtowatch .tab_button {
  max-width: 360px;
}
.tab {
  flex: 1;
  border: none;
  background: transparent;
  color: #fffa00;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.tab.active {
  background: #fffa00;
  color: #0F1C24;
}
.tab_contents {
  margin-top: 24px;
}
.tab_panel {
  display: none;
}
.tab_panel.active {
  display: block;
}
.tab_panel img {
  width: 100%;
  height: auto;
  display: block;
}
.c-support_bnr {
  margin-top: 40px;
  padding: 0 23px;
}
.c-support_bnr_txt {
  margin-top: 10px;
  font-size: 12px;
  text-align: left;
}
.c-support_bnr_anno {
  margin-top: 10px;
  font-size: 10px;
  text-align: left;
}
.c-support_bnr a {
  display: block;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-howtowatch {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .howtowatch_txt {
    font-size: 28px;
  }
  .p-howtowatch .tab_button {
    max-width: 480px;
  }
  .tab_contents {
    margin-top: 40px;
  }
  .c-support_bnr {
    margin-top: 60px;
    padding: 0 36px;
  }
  .c-support_bnr_txt {
    font-size: 16px;
  }
  .c-support_bnr_anno {
    font-size: 14px;
  }
}

/* ---------------------------------------------
* c-banner_area
--------------------------------------------- */
.c-banner_area {
  background-color: #1d1d1d;
}
.c-banner_area__list {
  margin-top: 20px;
}
.c-banner_area_txt {
  margin-top: 10px;
  font-size: 10px;
  text-align: left;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .c-banner_area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
    .c-banner_area__list {
    margin-top: 40px;
  }
  .c-banner_area_txt {
    font-size: 14px;
  }
}
/* ---------------------------------------------
* p-question_area
--------------------------------------------- */
.p-question_area {
  padding-top: 20px;
  background-color: #1d1d1d;
}
.qa-list_subttl{
  font-weight: 700;
  text-align: left;
  color: #fff;
}
.qa-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 15px auto 0;
  padding: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}
.qa-more-btn__arrow {
  width: 25px;
  height: auto;
  display: block;
}
.qa-more-btn__arrow.is-open {
  transform: rotate(180deg);
}
.qa-more-wrapper {
  display: none;
}
.qa-more-wrapper.is-show {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-question_area {
    padding-top: 80px;
  }
  .qa-list_subttl{
    font-size: 20px;
  }
  .question_ttl {
    font-size: 24px;
  }
  .qa-more-btn {
    font-size: 22px;
  }
  .qa-more-btn__arrow {
    font-size: 28px;
  }
}
/* ---------------------------------------------
* p-contact_area
--------------------------------------------- */
.p-contact_area {
  padding: 20px 20px;
  background-color: #1d1d1d;
}
.p-contact-gray_area {
  background-color: #FFFFFFE6;
  text-align: center;
  padding: 32px 20px;
  margin-bottom: 24px;
}
.p-contact-gray_area > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-contact-gray_area > div img {
  width: 40px;
  height: auto;
}
.p-contact-gray_area ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0 auto 20px;
  max-width: 420px;
  text-align: left;
}
.p-contact-gray_area ul li {
  font-size: 14px;
  margin-bottom: 8px;
}
.p-contact-gray_area ul li a,
.p-contact-gray_area ul li span {
  color: #cc0033;
  font-weight: 700;
  text-decoration: underline;
}
.p-contact-gray_area p {
  font-size: 14px;
}
.shop_link {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 24px auto 0;
  padding-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #cc0033;
  text-decoration: underline;
  text-align: center;
  position: relative;
}

.shop_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 360px;
  height: 1px;
  background-color: #cccccc;
}
@media screen and (min-width: 768px) {
  .p-contact_area {
    padding: 80px 20px;
  }
  .p-contact-gray_area > div img {
    width: 50px;
  }
  .p-contact-gray_area > div {
    font-size: 22px;
    gap: 12px;
  }
  .p-contact-gray_area ul li {
    font-size: 16px;
  }
  .p-contact-gray_area p {
    font-size: 18px;
  }
  .shop_link {
    font-size: 18px;
  }
  .shop_link::before {
    max-width: 420px;
  }
}

/* ---------------------------------------------
* footer ※module.cssを上書き
--------------------------------------------- */
.l-footer {
  position: relative;
  z-index: 1;
}
.l-footer__nav {
  background-color: #1d1d1d;
}
.l-footer__copyright {
  background-color: #1d1d1d;
}
.l-footer-nav__link::before {
  display: none;
}
.l-footer__copyright {
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  br.sp-only {
    display: none;
  }
}
/* ---------------------------------------------
* pc_anchor_arrow　
--------------------------------------------- */
.pc_anchor_arrow {
  width: 25px;
  height: auto;
  margin-left: 6px;
  vertical-align: middle;
}
/* ---------------------------------------------
* pc_side（module.css上書き）
--------------------------------------------- */
.pc_side .right {
  left: calc(50% + 320px);
  right: 0;
  top: 0;
  width: auto;
  height: 100vh;
  background-image: url('../img/pc_bg_right.png');
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
/* .pc_side .left {
    width: 300px;
} */
 .pc_side .left {
    left: auto;
    right: calc(50% + 320px);
    top: 8em;
    width: 280px;
    height: auto;
    background-image: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 20px;
}
.pc_side .left::before {
    content: "";
    position: fixed;
    left: 0;
    right: calc(50% + 320px);
    top: 0;
    height: 100vh;
    z-index: -1;
    background-image: url('../img/pc_bg_left.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
}
.pc_anchor_list li {
    font-size: 15px;
}

/* qa-list 開く/閉じるボタン幅を固定（文字数差による被りを防ぐ） */
.c-cassette-1__head.js-acc-trigger02::after {
    width: 4em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-cassette-1__head.js-acc-trigger02::after {
        width: 4em;
        text-align: center;
        font-size: calc(13 / var(--design-width) * 100vw);
    }
}


