@charset "utf-8";

/* MVテキスト中央寄せ */
.largeMv .title {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.largeMv .title p,
.largeMv .title li {
  white-space: nowrap;
}

/* MVテキストサイズ調整 */
@media screen and (max-width: 1400px) {
  .largeMv .title>h3>p {
    line-height: 1;
  }

  .largeMv .title>h3>p>span {
    font-size: 3.5vw;
  }
}

.largeMv .place li span {
  display: inline-block;
  padding-left: 0.5em;
  padding-right: 0.5em;
  background-color: rgba(0, 0, 0, 0.4);
  text-shadow: 0px 0px 3px #000000;
  font-weight: bold;
}

/* 優勝者インタビュー */
.spWinnerInterviewFlexBox table {
  margin-bottom: 30px;
}

/* サブレポート：背景色 */
.spReportBgSection:before,
.spReportBgSection:after {
  background-image: none;
}

/* サブレポート：小見出し */
.spReportBgSection .inner .subReport h4 {
  margin: 40px 0 0;
  color: #000;
}

/* サブレポート：文章 */
.spReportBgSection .inner .subReport>p {
  color: #000;
}

/* サブレポート：写真並び */
.spReportBgSection .inner .subReport .clearFix {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .spReportBgSection .inner .subReport .clearFix {
    flex-direction: column;
  }
}

/* 試合結果一覧：実施無しカラー */
.resultGray {
  background-color: #dfdfdf;
}

/* フォトギャラリー：センター配置 */
@media screen and (max-width: 767px) {
  .photoGallery {
    display: block;
    text-align: center;
  }
}

/* ダイハツ所属選手紹介 */
.playerInfobox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-left: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .playerInfobox {
    flex-direction: column;
  }
}

.playerInfobox li {
  text-align: center;
  width: 50%;
  padding: 0 2%;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .playerInfobox li {
    width: 100%;
    padding: 0 10%;
  }
}

/* 所属選手紹介：氏名 */
.playerInfobox h4 {
  font-size: 16px;
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  .playerInfobox h4 {
    font-size: 14px;
    line-height: 1.3;
  }
}

/* 所属選手紹介：画像部 */
@media screen and (min-width: 769px) {
  .playerInfobox li img {
    width: 100%;
  }
}