@charset "UTF-8";
/*
#overview
変数定義

色やフォント、ブレイクポイントなどはsass変数として管理しています
*/
/*
#styleguide
ブレイクポイント

以下ブレイクポイント変数をmixinにセットしています。@include mq(sd){}で指定の範囲を示して、
{}で囲った範囲がメディアクエリとして書き出されます。詳細はsass関数ページに記述。

- 新仕様ページ用
$breakpoint_xxsd: 320px;
$breakpoint_xsd: 384px;
$breakpoint_sd:	592px;
$breakpoint_md:	800px;
$breakpoint_ld:	1152px;
$breakpoint_xld: 1366px;

- 既存ページ用
$breakpoint-generic:	640px;
*/
/*
#styleguide
フォント

以下5つのフォントセットをsass変数化して、使用しています。

$font: 'YuGothicM-Universal','YuGothic',-apple-system,"メイリオ","MS PGothic",sans-serif;
$font-webfont: 'Noto Sans JP','Noto Sans Japanese','YuGothicM-Universal','YuGothic',-apple-system,"メイリオ","MS PGothic",sans-serif;
$font-number: Avenir,"Avenir Next",-apple-system,Helvetica,Arial,'YuGothicM-Universal','YuGothic',sans-serif;
$font-smartdevice: -apple-system,BlinkMacSystemFont,sans-serif;
$font-design: Tinos;

```
<p style="font-family:'YuGothicM-Universal','YuGothic',-apple-system,"メイリオ","MS PGothic",sans-serif;">$font: 1234567890かっこうはいっしょのごつごつうち顔へ口へ考えつい窓ますた。</p>
<p style="font-family:'Noto Sans JP','Noto Sans Japanese','YuGothicM-Universal','YuGothic',-apple-system,"メイリオ","MS PGothic",sans-serif;">$font-webfont: 1234567890かっこうはいっしょのごつごつうち顔へ口へ考えつい窓ますた。</p>
<p style="font-family:-apple-system,BlinkMacSystemFont,sans-serif;">$font-smartdevice: 1234567890かっこうはいっしょのごつごつうち顔へ口へ考えつい窓ますた。</p>
<p style="font-family:Avenir,"Avenir Next",-apple-system,Helvetica,Arial,'YuGothicM-Universal','YuGothic',sans-serif">$font-number: 1234567890かっこうはいっしょのごつごつうち顔へ口へ考えつい窓ますた。</p>
<p style="font-family:'Tinos'">$font-design: 1234567890かっこうはいっしょのごつごつうち顔へ口へ考えつい窓ますた。</p>
```
*/
/*
#text-size

@txt-size : 16;
@txt-size_xld : 16;
@txt-size_ld : 14;
@txt-size_md : 14;
@txt-size_sd : 14;
@txt-size_xsd : 14;
@txt-size_xxsd : 12;

*/
/*
#colors

## CSSカラー変数

@color_white: #fff;
@color_red: #E00D0D;
@color_blue: #1C52AC;

@color_prime: rgb(0,86,167);
@color_live: rgb(189,8,82);
@color_cinema: rgb(0,162,115);


@color_primary: #0056A7;
@color_primary-safe: #003399;

@color_title: #1E3A67;
@color_text: #222;
@color_text-light: #555;
@color_text-safe: #767676;
@color_date: #666;

@color_caution:	#CC3333;
@color_promotion	:	#EE0000;
@color_linktext: #235990;

@color_hover : #eee;
@color_selected: #222;


//背景色
@bgcolor: #fff;
@bgcolor_header: rgba(255,255,255,1);
@bgcolor_control: #DDD;

@bgcolor_gray: #E5E5E5;
@bgcolor_lightgray: #F4F4F4;


@bgcolor_service: #EBF5FF;

@bgcolor_page-title:	#EFEFEF;
@bgcolor_lightgray-title:	#CCE8F4;


@btn_join: #cf2f6f;


*/
/*
//overview
sass関数

多用する記述をsass関数として定義しています
*/
/*
//styleguide
メディアクエリ記述関数

@全領域

各ブレイクポイントを指定して、メディアクエリを出力する。
※sassの@extendはmixiln内で使用できません。

@ include mq(sd){
	sd(592px以下)向けのCSS記述
}
*/
@media screen and (max-width: 1366px) {
  ._dumy_ {
    display: none; } }

@media screen and (max-width: 1152px) {
  ._dumy_ {
    display: none; } }

@media screen and (max-width: 800px) {
  ._dumy_ {
    display: none; } }

@media screen and (max-width: 800px) and (orientation: landscape) {
  ._dumy_ {
    display: none; } }

@media screen and (max-width: 592px) {
  ._dumy_ {
    display: none; } }

@media screen and (max-width: 384px) and (orientation: portrait) {
  ._dumy_ {
    display: none; } }

@media screen and (max-width: 320px) and (orientation: portrait) {
  ._dumy_ {
    display: none; } }

@media screen and (max-width: 592px) {
  .is-visible-sd {
    display: initial !important; } }

[class*="row"][class*="__noEdgeGutter"] {
  margin-left: -0.5rem;
  margin-right: -0.5rem; }

/* utility class */
.utl-nowrap {
  display: inline-block;
  white-space: nowrap; }

.utl-img-fluid {
  max-width: 100%;
  height: auto; }
  .utl-img-fluid.-fill {
    width: 100%; }

.utl-guard {
  position: relative; }
  .utl-guard::before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2; }

/* semantic-color - oscar */
:root {
  --background-award-a: var(--color-oscar98-10);
  --background-award-b: var(--color-oscar98-70);
  --background-award-c: var(--color-oscar98-80);
  --background-award-d: var(--color-oscar98-90);
  --background-default: var(--color-gray-100);
  --background-primary-action-enabled: var(--color-gray-100);
  --background-primary-action-hoverd: var(--color-gray-90);
  --background-secondary-action-enabled: var(--color-oscar98-10);
  --background-subtle: var(--color-gray-90);
  --background-subtler: var(--color-gray-50);
  --background-tertiary-action-enabled: var(--color-oscar98-80);
  --background-tertiary-action-hoverd: var(--color-gray-90);
  --border-default: var(--color-oscar98-10);
  --border-primary-action-enabled: var(--color-oscar98-10);
  --border-secondary-action-enabled: var(--color-blue-10);
  --border-subtle: var(--color-gray-80);
  --border-subtler: var(--color-gray-20);
  --text-award: var(--color-oscar98-10);
  --text-default: var(--color-gray-20);
  --text-inverse: var(--color-gray-100);
  --text-primary-action: var(--color-blue-10);
  --text-subtle: var(--color-gray-70);
  --text-wowow: var(--color-wowow-00);
  --text-wowow-b: var(--color-yellow-10); }

/* primitive-color - 値 */
:root {
  --color-blue-10: rgb(28 82 172);
  --color-grammy66-10: rgb(98 91 220);
  --color-grammy66-70: rgb(196 193 240);
  --color-grammy66-80: rgb(229 228 245);
  --color-grammy66-90: rgb(240 240 251);
  --color-grammy67-10: rgb(20 130 120);
  --color-grammy67-70: rgb(150 210 210);
  --color-grammy67-80: rgb(200 230 230);
  --color-grammy67-90: rgb(230 245 245);
  --color-gray-100: rgb(255 255 255);
  --color-gray-20: rgb(34 34 34);
  --color-gray-50: rgb(57 60 65);
  --color-gray-70: rgb(119 119 119);
  --color-gray-80: rgb(225 225 225);
  --color-gray-90: rgb(247 247 247);
  --color-oscar-10: rgb(186 158 94);
  --color-oscar-70: rgb(245 234 204);
  --color-oscar-80: rgb(245 238 219);
  --color-oscar-90: rgb(248 245 240);
  --color-oscar98-10: rgb(203 135 56);
  --color-oscar98-70: rgb(244 214 134);
  --color-oscar98-80: rgb(250 236 179);
  --color-oscar98-90: rgb(252 245 203);
  --color-tony-10: rgb(76 143 181);
  --color-tony-70: rgb(190 225 244);
  --color-tony-80: rgb(232 240 245);
  --color-tony-90: rgb(248 252 255);
  --color-wowow-00: rgb(0 86 167);
  --color-yellow-10: rgb(255 255 0); }

.mdl__info.-award li:not(.__rss) a:before {
  display: none;
  content: ""; }

.mdl__information-box .mdl__info.-award li.__new span {
  padding-left: 0; }

.mdl__info.-award li.__new:after {
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 20px;
  padding: 1px 11px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: var(--background-award-a);
  color: var(--text-wowow-b);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-left: 10px;
  border: 0; }
  @media screen and (max-width: 592px) {
    .mdl__info.-award li.__new:after {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 40px;
      height: 18px;
      padding: 1px 11px;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 10px;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      margin-left: 17px;
      top: 8px; } }

.mdl__info li:not(.__rss) a[target="_blank"]:after {
  content: unset;
  display: none !important; }

.nav__toggle > .nav__toggle-switch + .mdl__information-box > dd {
  padding-right: 0; }

.nav__toggle > .nav__toggle-switch + .mdl__information-box > dd li:nth-child(3) {
  display: unset; }

.nav__toggle > .nav__toggle-switch + .mdl__information-box > dd li:nth-child(n + 4) {
  overflow: hidden;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.05s ease-out;
  -o-transition: grid-template-rows 0.05s ease-out;
  transition: grid-template-rows 0.05s ease-out;
  transition: grid-template-rows 0.05s ease-out, -ms-grid-rows 0.05s ease-out;
  height: 0; }
  .nav__toggle > .nav__toggle-switch + .mdl__information-box > dd li:nth-child(n + 4) .__item {
    overflow-y: hidden; }

.nav__toggle > .nav__toggle-switch:checked + .mdl__information-box > dd li:nth-child(n + 4) {
  height: auto;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr; }

@-webkit-keyframes AnimationSlide {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0); }
  50% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0); }
  51% {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5); }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1); } }

@keyframes AnimationSlide {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0); }
  50% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0); }
  51% {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5); }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1); } }

.nav__toggle > .nav__toggle-switch + .mdl__information-box > dd {
  position: relative;
  padding-bottom: 30px; }

.nav__toggle > .nav__toggle-switch + .mdl__information-box > dd label[for="mdl__information-box"].is-visible + ul.mdl__info {
  padding-bottom: 0; }

.nav__toggle > .nav__toggle-switch + .mdl__information-box .__icon {
  left: auto;
  right: 0;
  bottom: 0;
  width: auto; }
  @media screen and (max-width: 592px) {
    .nav__toggle > .nav__toggle-switch + .mdl__information-box .__icon {
      right: 10px; } }

.mdl__information-box.-award {
  overflow-x: hidden;
  background: none;
  margin: 0 auto;
  padding: 0; }
  .mdl__information-box.-award > dt {
    margin-bottom: 11px;
    color: var(--background-award-a);
    font-style: normal;
    font-weight: 700;
    line-height: normal; }
    @media screen and (max-width: 592px) {
      .mdl__information-box.-award > dt {
        padding-left: 16px; } }
  .mdl__information-box.-award > dd > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 0; }
    .mdl__information-box.-award > dd > ul > li {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      display: block;
      width: 100%;
      padding: 0 0 0 0; }
      .mdl__information-box.-award > dd > ul > li .__item {
        width: 100%;
        margin-bottom: 2px;
        padding: 0;
        background: var(--color-oscar98-80); }
        .mdl__information-box.-award > dd > ul > li .__item:has(a) {
          background-color: var(--color-oscar98-80);
          -webkit-transform: background-color 0 linear;
          -ms-transform: background-color 0 linear;
          transform: background-color 0 linear; }
        @media (hover: hover) {
          .mdl__information-box.-award > dd > ul > li .__item:has(a:hover) {
            background-color: #8CE6E6;
            -webkit-transition: background-color 0.25s linear;
            -o-transition: background-color 0.25s linear;
            transition: background-color 0.25s linear; } }

@-webkit-keyframes AnimationBg {
  0% {
    background-size: 10% 100%;
    background-position: 0 0; }
  100% {
    background-size: 100% 100%;
    background-position: 0 0; } }

@keyframes AnimationBg {
  0% {
    background-size: 10% 100%;
    background-position: 0 0; }
  100% {
    background-size: 100% 100%;
    background-position: 0 0; } }
        .mdl__information-box.-award > dd > ul > li .__item > a {
          display: block;
          padding: 0;
          text-decoration: none; }
          .mdl__information-box.-award > dd > ul > li .__item > a[target="_blank"] .__inner::after {
            font-family: wol;
            content: "";
            display: inline-block; }
          @media (hover: hover) {
            .mdl__information-box.-award > dd > ul > li .__item > a:hover {
              -webkit-animation: AnimationBg 0.25s ease forwards;
              animation: AnimationBg 0.25s ease forwards;
              background: -webkit-gradient(linear, left top, right top, from(#FAFA6E), to(rgba(255, 255, 255, 0))) 0 0 no-repeat;
              background: -webkit-linear-gradient(left, #FAFA6E 0%, rgba(255, 255, 255, 0) 100%) 0 0 no-repeat;
              background: -o-linear-gradient(left, #FAFA6E 0%, rgba(255, 255, 255, 0) 100%) 0 0 no-repeat;
              background: linear-gradient(90deg, #FAFA6E 0%, rgba(255, 255, 255, 0) 100%) 0 0 no-repeat; } }
        .mdl__information-box.-award > dd > ul > li .__item .__inner {
          display: block;
          width: 100%;
          padding: 15px 10px 15px 64px;
          text-align: left;
          gap: 10px;
          color: #0f162f;
          font-style: normal;
          font-weight: 400;
          line-height: 1.5; }
          @media screen and (max-width: 592px) {
            .mdl__information-box.-award > dd > ul > li .__item .__inner {
              padding: 8px 17px 8px; } }
      @media screen and (max-width: 592px) {
        .mdl__information-box.-award > dd > ul > li.__new .__inner {
          padding-top: 28px; } }

.award-info__hd {
  color: var(--background-award-a);
  font-family: "Noto Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal; }

.award-info__list {
  gap: 2px 0; }
  .award-info__list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1280px;
    padding: 0px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    background: var(--color-oscar98-80); }

body, main {
  overflow: visible; }

footer {
  overflow-x: hidden; }
  footer .btn__pagetop {
    padding: 48px 0 0 0; }
  footer .btn__pagetop:before {
    top: 0; }

.main {
  position: relative; }

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap; }

main {
  /* slick.css customize */ }
  main .slick-list {
    overflow: visible; }
  main .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  main .slick-slide {
    height: auto !important; }
  main picture + .__icn_channel,
  main .__icn_onair + .__icn_channel {
    margin-left: 5px; }

.l-anchor {
  position: relative; }
  @media screen and (max-width: 800px) {
    .l-anchor {
      top: 5rem; } }
  .l-anchor.-cast-sub {
    top: -5rem; }
    @media screen and (max-width: 800px) {
      .l-anchor.-cast-sub {
        top: -3rem; } }

.btn_navToggle {
  position: relative;
  display: inline-block;
  width: 3.33333rem;
  height: 3.33333rem;
  background: var(--background-award-a); }
  .btn_navToggle > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .btn_navToggle > span::after, .btn_navToggle > span::before {
      content: "";
      display: block;
      width: 2.08333rem;
      height: 0.25rem;
      background: #fff;
      margin: 0.33333rem 0; }
  .btn_navToggle.is-open > span::after, .btn_navToggle.is-open > span::before {
    position: absolute; }
  .btn_navToggle.is-open > span::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .btn_navToggle.is-open > span::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }

.btn_link {
  position: relative;
  display: inline-block;
  width: 18.75rem;
  height: 3.125rem;
  background: var(--background-award-a);
  -webkit-transition: opacity .1s linear;
  -o-transition: opacity .1s linear;
  transition: opacity .1s linear; }
  .btn_link > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff; }
    .btn_link > span::before {
      position: absolute;
      right: 0.9375rem;
      top: 50%;
      margin-top: -.5em;
      line-height: 1;
      font-family: wol;
      content: "";
      display: inline-block;
      color: #fff; }
  .btn_link.-down > span::before {
    content: ""; }
  .btn_link:hover {
    opacity: .8; }

.btn_link2 {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 31.25rem;
  height: 8.125rem;
  background: #fff;
  border: 1px solid #0056a3;
  -webkit-transition: opacity .1s linear;
  -o-transition: opacity .1s linear;
  transition: opacity .1s linear; }
  @media screen and (max-width: 800px) {
    .btn_link2 {
      max-width: 23.33333rem;
      height: 5rem; } }
  .btn_link2 > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #0056a3; }
    .btn_link2 > span::before {
      position: absolute;
      right: 0.9375rem;
      top: 50%;
      margin-top: -.5em;
      line-height: 1;
      font-family: wol;
      font-size: 1.625rem;
      content: "";
      display: inline-block;
      color: inherit; }
      @media screen and (max-width: 800px) {
        .btn_link2 > span::before {
          right: 0.66667rem;
          font-size: 1.16667rem; } }
    .btn_link2 > span small {
      line-height: 1.5;
      font-size: 1rem; }
      @media screen and (max-width: 800px) {
        .btn_link2 > span small {
          line-height: 1.6;
          font-size: 0.66667rem; } }
    .btn_link2 > span b {
      font-size: 1.625rem;
      line-height: 1.8;
      font-weight: bold; }
      @media screen and (max-width: 800px) {
        .btn_link2 > span b {
          margin-top: 0.08333rem;
          font-size: 1.16667rem; } }
  .btn_link2.-down > span::before {
    content: ""; }
  .btn_link2:hover {
    opacity: .8; }

.btn_genreTop {
  position: relative;
  display: inline-block;
  width: 46rem;
  height: 8.125rem;
  background: #fff;
  border: 1px solid #0056a3;
  -webkit-transition: opacity .1s linear;
  -o-transition: opacity .1s linear;
  transition: opacity .1s linear; }
  @media screen and (max-width: 800px) {
    .btn_genreTop {
      width: 23.33333rem;
      height: 5rem; } }
  .btn_genreTop > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #0056a3; }
    .btn_genreTop > span .__icon {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 0 1.5625rem 0 2.1875rem;
      font-size: 5.5rem; }
      .btn_genreTop > span .__icon [class*='icn-'] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      @media screen and (max-width: 800px) {
        .btn_genreTop > span .__icon {
          padding: 0 1rem 0 0.66667rem;
          font-size: 3.16667rem; } }
    .btn_genreTop > span .__txt {
      padding-right: 1.875rem;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      text-align: left;
      font-size: 1rem; }
      .btn_genreTop > span .__txt b {
        font-size: 1.625rem;
        font-weight: bold; }
      @media screen and (max-width: 800px) {
        .btn_genreTop > span .__txt {
          font-size: 0.75rem; }
          .btn_genreTop > span .__txt b {
            font-size: 1rem; } }
    .btn_genreTop > span::before {
      position: absolute;
      right: 0.9375rem;
      top: 50%;
      margin-top: -.5em;
      line-height: 1;
      font-family: wol;
      font-size: 1.5rem;
      content: "";
      display: inline-block; }
      @media screen and (max-width: 800px) {
        .btn_genreTop > span::before {
          right: 0.5rem;
          font-size: 1.16667rem; } }
  .btn_genreTop:hover {
    opacity: .8; }

.btn_lineup_more {
  position: relative;
  display: inline-block;
  width: 12.5rem;
  height: 3.125rem;
  background: #fff;
  -webkit-transition: opacity .1s linear;
  -o-transition: opacity .1s linear;
  transition: opacity .1s linear; }
  .btn_lineup_more > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--background-award-a);
    font-size: 1rem;
    border: 1px solid var(--background-award-a); }
    .btn_lineup_more > span::before {
      position: absolute;
      right: 0.9375rem;
      top: 50%;
      margin-top: -.5em;
      line-height: 1;
      font-family: wol;
      content: "";
      display: inline-block; }
  .btn_lineup_more.-down > span::before {
    content: ""; }
  .btn_lineup_more:hover {
    opacity: .8; }

.btn_comment {
  position: relative;
  display: inline-block;
  width: 9.25rem;
  height: 3.125rem;
  background: #fff;
  border: 1px solid var(--background-award-a);
  margin-right: 1rem;
  margin-top: 1.25rem;
  -webkit-transition: opacity .1s linear;
  -o-transition: opacity .1s linear;
  transition: opacity .1s linear; }
  @media screen and (max-width: 800px) {
    .btn_comment {
      display: block;
      width: 7.5rem;
      height: 2.5rem; } }
  .btn_comment > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    line-height: 1.1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--background-award-a);
    font-size: 1rem; }
    @media screen and (max-width: 800px) {
      .btn_comment > span {
        font-size: 0.75rem; } }
    .btn_comment > span::before {
      position: absolute;
      right: 0.3125rem;
      top: 50%;
      margin-top: -.5em;
      line-height: 1;
      font-family: wol;
      font-size: 1.125rem;
      content: "";
      display: inline-block;
      color: inherit; }
      @media screen and (max-width: 800px) {
        .btn_comment > span::before {
          right: 0.5rem;
          font-size: 0.83333rem; } }
  .btn_comment:hover {
    opacity: .8; }

.btn_icon {
  display: inline-block;
  margin-right: 0.375rem;
  margin-top: 1.25rem;
  -webkit-transition: opacity .1s linear;
  -o-transition: opacity .1s linear;
  transition: opacity .1s linear; }
  .btn_icon:last-child {
    margin-right: 0; }
  .btn_icon img {
    max-width: 100%;
    height: auto; }
  @media screen and (max-width: 800px) {
    .btn_icon {
      margin-top: 0.83333rem;
      margin-right: 0; }
      .btn_icon img {
        width: 2.5rem;
        height: 2.5rem; } }
  .btn_icon:hover {
    opacity: .8; }

.btn_bnr {
  display: inline-block;
  -webkit-transition: opacity .1s linear;
  -o-transition: opacity .1s linear;
  transition: opacity .1s linear;
  text-align: center; }
  .btn_bnr:hover {
    opacity: .8; }
  .btn_bnr img {
    max-width: 100%;
    height: auto; }

.btn_twitter {
  position: relative;
  display: inline-block;
  width: 23.125rem;
  height: 3.125rem;
  background: #fff;
  border: 1px solid var(--background-award-a);
  -webkit-transition: opacity .1s linear;
  -o-transition: opacity .1s linear;
  transition: opacity .1s linear; }
  @media screen and (max-width: 800px) {
    .btn_twitter {
      width: 17.5rem;
      height: 2.5rem; } }
  .btn_twitter > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 2.5rem 0 3rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--background-award-a);
    font-size: 1rem; }
    @media screen and (max-width: 800px) {
      .btn_twitter > span {
        padding: 0 1.66667rem 0 1.66667rem;
        font-size: 0.75rem; } }
    .btn_twitter > span::before {
      position: absolute;
      left: 0.75rem;
      top: 50%;
      margin-top: -0.875rem;
      line-height: 1;
      font-family: wol;
      font-size: 1.875rem;
      content: "";
      width: 1.75rem;
      height: 1.75rem;
      background: transparent url(../img/icon_x_nobg.svg) center center no-repeat;
      background-size: contain; }
      @media screen and (max-width: 800px) {
        .btn_twitter > span::before {
          left: 0.41667rem;
          font-size: 1.5rem;
          margin-top: -0.66667rem;
          width: 1.33333rem;
          height: 1.33333rem; } }
    .btn_twitter > span::after {
      position: absolute;
      right: 0.5rem;
      top: 50%;
      margin-top: -.5em;
      line-height: 1;
      font-family: wol;
      font-size: 1.25rem;
      content: "";
      display: inline-block; }
      @media screen and (max-width: 800px) {
        .btn_twitter > span::after {
          right: 0.41667rem;
          font-size: 0.91667rem; } }
  .btn_twitter:hover {
    opacity: .8; }

.btn_x {
  position: relative;
  display: -ms-inline-grid;
  display: inline-grid;
  grid-template-areas: "x account";
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  width: 46rem;
  height: 8.125rem;
  padding: 1.4375rem 2.5rem;
  background: #fff;
  border: 1px solid #0056a3;
  -webkit-transition: opacity .1s linear;
  -o-transition: opacity .1s linear;
  transition: opacity .1s linear; }
  @media screen and (max-width: 800px) {
    .btn_x {
      max-width: 23.33333rem;
      height: auto;
      padding: 0.83333rem 1rem; } }
  .btn_x .__x {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.25rem;
    padding: 0 2.5rem 0 0;
    border-right: 1px solid #0056a3; }
    @media screen and (max-width: 800px) {
      .btn_x .__x {
        gap: 0.5rem;
        padding: 0 1rem 0 0; } }
    .btn_x .__x .__icon {
      display: block;
      width: 2.75rem;
      height: auto; }
      @media screen and (max-width: 800px) {
        .btn_x .__x .__icon {
          width: 1.5rem; } }
    .btn_x .__x .__label {
      line-height: 1.5;
      font-size: 1rem;
      text-align: left; }
      @media screen and (max-width: 800px) {
        .btn_x .__x .__label {
          line-height: 1.3;
          font-size: 0.83333rem; } }
  .btn_x .__account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 0 2.5rem; }
    @media screen and (max-width: 800px) {
      .btn_x .__account {
        padding: 0 0 0 1rem; } }
    .btn_x .__account .__icon {
      display: block;
      width: 5rem;
      height: auto; }
      @media screen and (max-width: 800px) {
        .btn_x .__account .__icon {
          width: 2.66667rem; } }
    .btn_x .__account .__label {
      display: block;
      width: 100%;
      padding: 0 0 0 1.875rem;
      line-height: 1.3;
      font-size: 1.625rem;
      font-weight: bold;
      color: #EB5693;
      text-align: left; }
      @media screen and (max-width: 800px) {
        .btn_x .__account .__label {
          padding: 0 0 0 0.5rem;
          font-size: 0.83333rem; } }
  .btn_x:hover {
    opacity: .8; }
  .btn_x::before {
    position: absolute;
    right: 0.9375rem;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    font-family: wol;
    font-size: 1.625rem;
    content: "";
    display: inline-block;
    color: #0056a3; }
    @media screen and (max-width: 800px) {
      .btn_x::before {
        right: 0.66667rem;
        font-size: 1.16667rem; } }

main {
  color: #222222; }
  main ul {
    list-style: none; }

@media screen and (max-width: 1366px) {
  .mainNav .container,
  .mainNews .container,
  .mainPoint .container,
  .mainSchedule .container,
  .mainCast .container,
  .mainNomination .container,
  .mainSpecial .container,
  .mainSns .container,
  .mainJoin .container,
  .mainLinkBnr .container,
  .mainLink .container,
  .mainLink2 .container {
    padding: 0 0.625rem; } }

@media screen and (max-width: 800px) {
  .mainNav .container,
  .mainNews .container,
  .mainPoint .container,
  .mainSchedule .container,
  .mainCast .container,
  .mainNomination .container,
  .mainSpecial .container,
  .mainSns .container,
  .mainJoin .container,
  .mainLinkBnr .container,
  .mainLink .container,
  .mainLink2 .container {
    padding: 0 1.66667rem; } }

.mainBg {
  background: #F7F7F7; }

.mainHd {
  margin: 0 auto 2rem;
  line-height: 1.2;
  text-align: center; }
  .mainHd b {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-family: Tinos,serif;
    font-size: 3.75rem;
    font-weight: normal;
    letter-spacing: 0.5625rem;
    color: var(--background-award-a); }
    @media screen and (max-width: 800px) {
      .mainHd b {
        font-size: 2.5rem; } }
  .mainHd small {
    line-height: 1.8;
    display: block;
    font-size: 1rem;
    font-weight: 300;
    color: #222222; }
    .mainHd small em {
      font-weight: bold;
      font-style: normal; }
    @media screen and (max-width: 800px) {
      .mainHd small {
        line-height: 1.5;
        font-size: 1rem; } }

.mainHero__r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap; }
  @media screen and (max-width: 800px) {
    .mainHero__r {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-flow: column-reverse nowrap;
      flex-flow: column-reverse nowrap; } }
  .mainHero__r > .mainHero__c {
    padding: 2.5rem 0; }
    @media screen and (max-width: 1152px) {
      .mainHero__r > .mainHero__c {
        padding-top: 1.25rem;
        padding-bottom: 2.08333rem; } }
    @media screen and (max-width: 800px) {
      .mainHero__r > .mainHero__c {
        padding: 0; } }
    .mainHero__r > .mainHero__c:nth-child(1) {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      padding-top: 0;
      padding-left: 0;
      padding-right: 0; }
      @media screen and (max-width: 800px) {
        .mainHero__r > .mainHero__c:nth-child(1) {
          padding: 0; } }
      .mainHero__r > .mainHero__c:nth-child(1) > .mainHero__logo {
        margin-left: -26px; }
        @media screen and (max-width: 1366px) {
          .mainHero__r > .mainHero__c:nth-child(1) > .mainHero__logo {
            margin-left: -18px; } }
        @media screen and (max-width: 1152px) {
          .mainHero__r > .mainHero__c:nth-child(1) > .mainHero__logo {
            margin-left: 0; } }
        @media screen and (max-width: 800px) {
          .mainHero__r > .mainHero__c:nth-child(1) > .mainHero__logo {
            margin-left: 0; } }
      .mainHero__r > .mainHero__c:nth-child(1) > :not(.mainHero__logo) {
        padding-left: 1.66667rem;
        padding-right: 1.66667rem; }
        @media screen and (max-width: 1152px) {
          .mainHero__r > .mainHero__c:nth-child(1) > :not(.mainHero__logo) {
            padding-left: 1.66667rem;
            padding-right: 1.66667rem; } }
    .mainHero__r > .mainHero__c:nth-child(2) {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto; }

.mainHero__logo {
  margin-bottom: 0;
  padding: 0; }
  @media screen and (max-width: 800px) {
    .mainHero__logo {
      text-align: center; } }
  .mainHero__logo img {
    max-width: 100%;
    height: auto;
    vertical-align: middle; }

.mainHero__title {
  margin-bottom: 2.1875rem;
  line-height: 1.56;
  font-size: 1.875rem;
  font-weight: bold; }
  @media screen and (max-width: 800px) {
    .mainHero__title {
      margin-left: -1.66667rem;
      margin-right: -1.66667rem;
      margin-bottom: 1.66667rem;
      text-align: center;
      font-size: 1.5rem; } }

.mainHero__mv {
  text-align: right; }
  @media screen and (max-width: 800px) {
    .mainHero__mv {
      padding: 0;
      text-align: center; } }
  .mainHero__mv img {
    max-width: 100%;
    height: auto; }

@media screen and (max-width: 800px) {
  .mainHero__oaList {
    min-width: 300px; } }

.mainHero__oaList a {
  display: block;
  pointer-events: none !important; }

.mainHero__oaList ul {
  list-style: none; }
  .mainHero__oaList ul > li {
    margin-bottom: 2.8125rem; }
    @media screen and (max-width: 800px) {
      .mainHero__oaList ul > li:last-child {
        margin-bottom: 0; } }

.mainHero__oaList .mainOaItem .__title {
  margin-bottom: 0.3125rem;
  line-height: 1.3;
  font-size: 1.0625rem;
  font-weight: bold; }
  .mainHero__oaList .mainOaItem .__title small {
    font-size: inherit;
    font-weight: inherit; }
  @media screen and (max-width: 800px) {
    .mainHero__oaList .mainOaItem .__title {
      font-size: 1.08333rem; } }

.mainHero__oaList .mainOaItem .__oa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.3;
  font-size: 1rem; }
  @media screen and (max-width: 800px) {
    .mainHero__oaList .mainOaItem .__oa {
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
      font-size: 1.08333rem; } }
  .mainHero__oaList .mainOaItem .__oa .__txt,
  .mainHero__oaList .mainOaItem .__oa .__icon {
    margin-top: 0.33333rem; }
  .mainHero__oaList .mainOaItem .__oa .__txt {
    margin-right: 8px; }
  .mainHero__oaList .mainOaItem .__oa .__icon {
    display: inline-block;
    font-size: 0; }
    .mainHero__oaList .mainOaItem .__oa .__icon .__icn_channel[src*="icon_ch_wod."] {
      margin-left: 5px; }
    @media screen and (max-width: 592px) {
      .mainHero__oaList .mainOaItem .__oa .__icon br + .__icn_channel[src*="icon_ch_wod."] {
        margin-left: 0; } }

.mainHero__oaList .js-modal {
  pointer-events: auto !important; }

.mainHero__oaList .__nohero {
  display: none !important; }

.mainHero__oaList .__oa_ngtrial {
  position: relative;
  top: 2px;
  display: inline-block;
  line-height: 19px;
  margin-left: .5rem;
  padding-top: 2px;
  font-size: .8rem; }
  @media screen and (max-width: 800px) {
    .mainHero__oaList .__oa_ngtrial {
      line-height: 17px; } }

@media screen and (max-width: 800px) {
  .mainHero__ngtrial {
    margin-top: 2rem;
    margin-bottom: 1rem; } }

.mainHero__ngtrial a {
  text-decoration: underline;
  -webkit-transition: opacity .1s linear;
  -o-transition: opacity .1s linear;
  transition: opacity .1s linear; }
  .mainHero__ngtrial a:hover {
    opacity: .7; }

.mainNavContainer {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 64px;
  background: var(--background-award-a); }
  @media screen and (max-width: 800px) {
    .mainNavContainer {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
      display: none; }
      .mainNavContainer.is-sp-open {
        display: block;
        position: -webkit-sticky;
        position: sticky;
        z-index: 10;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh; } }

.mainNav {
  width: 100%;
  height: 64px; }
  .mainNav > .container {
    height: 100%; }

.mainNav__itemList {
  width: 100%;
  height: 100%; }
  @media screen and (max-width: 800px) {
    .mainNav__itemList {
      max-width: 35rem;
      margin: 0 auto; } }
  .mainNav__itemList.-align-left > ul > li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
    .mainNav__itemList.-align-left > ul > li.__join {
      -webkit-box-flex: 5;
      -ms-flex: 5 1 auto;
      flex: 5 1 auto;
      text-align: right; }
  .mainNav__itemList > ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 100%; }
    @media screen and (max-width: 800px) {
      .mainNav__itemList > ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 3.33333rem; } }
    .mainNav__itemList > ul > li {
      line-height: 1.1;
      font-size: 1.125rem;
      font-weight: bold;
      color: #fff; }
      @media screen and (max-width: 800px) {
        .mainNav__itemList > ul > li {
          margin-bottom: 2.5rem;
          font-size: 1.33333rem; } }
      .mainNav__itemList > ul > li a {
        position: relative;
        color: inherit;
        text-decoration: none;
        -webkit-transition: opacity .1s linear;
        -o-transition: opacity .1s linear;
        transition: opacity .1s linear; }
        .mainNav__itemList > ul > li a:hover {
          opacity: .8; }
        .mainNav__itemList > ul > li a.is-new::before, .mainNav__itemList > ul > li a.is-new::after {
          position: absolute;
          top: -0.875rem;
          right: -1.75rem;
          height: 0;
          width: 2.5rem;
          height: 1.0625rem;
          line-height: 1.0625rem;
          text-align: center; }
          @media screen and (max-width: 1366px) {
            .mainNav__itemList > ul > li a.is-new::before, .mainNav__itemList > ul > li a.is-new::after {
              right: -0.75rem; } }
          @media screen and (max-width: 800px) {
            .mainNav__itemList > ul > li a.is-new::before, .mainNav__itemList > ul > li a.is-new::after {
              top: calc(50% - .5em);
              right: -4.66667rem;
              width: 3.66667rem;
              height: 1.41667rem; } }
        .mainNav__itemList > ul > li a.is-new::before {
          content: "";
          display: block;
          -webkit-transform: skewX(-25deg);
          -ms-transform: skewX(-25deg);
          transform: skewX(-25deg);
          background: #ffff00; }
        .mainNav__itemList > ul > li a.is-new::after {
          content: "NEW";
          display: block;
          color: #000;
          font-size: 0.75rem;
          font-weight: normal; }
          @media screen and (max-width: 800px) {
            .mainNav__itemList > ul > li a.is-new::after {
              font-size: 1rem; } }
        .mainNav__itemList > ul > li a.is-disabled {
          pointer-events: none; }
      .mainNav__itemList > ul > li.__join a {
        display: inline-block;
        width: 11.4375rem;
        height: 2.25rem;
        line-height: 2.25rem;
        border-radius: 1.125rem;
        background: #fff;
        color: var(--background-award-a);
        font-size: 1.125rem;
        text-align: center; }
        @media screen and (max-width: 800px) {
          .mainNav__itemList > ul > li.__join a {
            width: 15.25rem;
            height: 3rem;
            line-height: 3rem;
            border-radius: 1.5rem;
            font-size: 1.5rem; } }

.mainNavToggleBtn {
  display: none; }
  @media screen and (max-width: 800px) {
    .mainNavToggleBtn {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
      display: block;
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 11;
      height: 0;
      text-align: right; } }

.mainNews {
  overflow-x: hidden;
  padding: 1.5625rem 0 3.125rem; }
  @media screen and (max-width: 800px) {
    .mainNews {
      padding: 0 0 4.16667rem; } }

.mainNews__hd {
  margin-bottom: 0.375rem;
  font-size: 16px;
  font-weight: bold; }

.mainNews__itemList ul {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
  list-style: none; }
  .mainNews__itemList ul.slick-initialized {
    opacity: 1; }
  .mainNews__itemList ul li {
    margin-right: 1.25rem; }

.newsItem {
  height: 100%; }
  .newsItem a {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity .1s linear;
    -o-transition: opacity .1s linear;
    transition: opacity .1s linear; }
    .newsItem a:hover {
      opacity: .7; }
    .newsItem a .__txt {
      text-decoration: underline; }
  .newsItem .__inner {
    width: 21.5625rem;
    height: 100%;
    border: 1px solid var(--background-award-a);
    padding: 9px;
    line-height: 1.5;
    font-size: 1rem; }
    @media screen and (max-width: 800px) {
      .newsItem .__inner {
        font-size: 0.91667rem; } }
  .newsItem .__date {
    color: var(--background-award-a); }
  .newsItem .__txt {
    color: #222222; }

.is-prepared + .mainNews__ctrl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 800px) {
    .is-prepared + .mainNews__ctrl {
      display: none; } }

.mainNews__ctrl {
  display: none;
  width: 100%;
  height: 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 1.75rem; }
  .mainNews__ctrl .__prev,
  .mainNews__ctrl .__next {
    position: relative;
    width: 2.25rem;
    height: 2.25rem;
    margin-left: 3.3125rem;
    background: #efefef;
    color: var(--background-award-a);
    -webkit-transition: opacity .1s linear;
    -o-transition: opacity .1s linear;
    transition: opacity .1s linear;
    cursor: pointer; }
    .mainNews__ctrl .__prev:hover,
    .mainNews__ctrl .__next:hover {
      opacity: .8; }
    .mainNews__ctrl .__prev[aria-disabled='true'],
    .mainNews__ctrl .__next[aria-disabled='true'] {
      visibility: hidden; }
    @media screen and (max-width: 800px) {
      .mainNews__ctrl .__prev,
      .mainNews__ctrl .__next {
        width: 26px;
        height: 26px;
        border-radius: 13px;
        margin-top: -25px; } }
    .mainNews__ctrl .__prev.__prev::before,
    .mainNews__ctrl .__next.__prev::before {
      content: ""; }
    .mainNews__ctrl .__prev.__next,
    .mainNews__ctrl .__next.__next {
      right: 0; }
      .mainNews__ctrl .__prev.__next::before,
      .mainNews__ctrl .__next.__next::before {
        content: ""; }
    .mainNews__ctrl .__prev::before,
    .mainNews__ctrl .__next::before {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 1;
      display: inline-block;
      line-height: 1;
      color: inherit;
      font-family: wol;
      font-size: 1.375rem;
      margin-top: -.5em;
      margin-left: -.5em; }

.mainPoint {
  padding: 6.25rem 0; }
  @media screen and (max-width: 800px) {
    .mainPoint {
      padding: 5rem 0; } }

.mainPointInfo {
  margin: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: row;
  -ms-flex: row wrap;
  flex: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem; }
  @media screen and (max-width: 592px) {
    .mainPointInfo {
      margin: 2.5rem 1.66667rem; } }

.mainPointInfo__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.9375rem 1.875rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: var(--color-oscar98-90);
  max-width: 43.75rem; }
  @media screen and (max-width: 592px) {
    .mainPointInfo__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 0.9375rem;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 10px;
      max-width: 23.42857rem; } }
  .mainPointInfo__item p {
    color: var(--color-oscar98-10);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    /* 32px */ }
    .mainPointInfo__item p:has(wbr) {
      word-break: keep-all; }
    .mainPointInfo__item p small {
      color: var(--color-oscar98-10);
      font-size: 13px;
      font-style: normal;
      font-weight: 700;
      line-height: 160%; }
    @media screen and (max-width: 592px) {
      .mainPointInfo__item p {
        font-size: 14px; }
        .mainPointInfo__item p small {
          font-size: 10px; } }

.mainPointItem {
  margin: 2.5rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap; }
  .mainPointItem:nth-child(1) {
    margin-top: 0; }
  .mainPointItem:nth-last-child(1) {
    margin-bottom: 0; }
  @media screen and (max-width: 800px) {
    .mainPointItem {
      margin: 0 auto 3.33333rem;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
      flex-flow: column nowrap; } }
  .mainPointItem:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse nowrap;
    flex-flow: row-reverse nowrap; }
    @media screen and (max-width: 800px) {
      .mainPointItem:nth-child(2n) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap; } }
    .mainPointItem:nth-child(2n) .mainPointItem__pic {
      padding-left: 0.625rem; }
      @media screen and (max-width: 800px) {
        .mainPointItem:nth-child(2n) .mainPointItem__pic {
          padding: 0; } }
    .mainPointItem:nth-child(2n) .mainPointItem__txt {
      padding: 1.875rem 5rem 0 0; }
      @media screen and (max-width: 800px) {
        .mainPointItem:nth-child(2n) .mainPointItem__txt {
          padding: 0; } }
  .mainPointItem .mainPointItem__pic {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    padding-right: 0.625rem; }
    @media screen and (max-width: 800px) {
      .mainPointItem .mainPointItem__pic {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        padding: 0; } }
  .mainPointItem .mainPointItem__txt {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    padding: 1.875rem 0 0 5rem; }
    @media screen and (max-width: 800px) {
      .mainPointItem .mainPointItem__txt {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        padding: 0; } }

.mainPointItem__pic {
  text-align: center; }
  .mainPointItem__pic img {
    max-width: 100%;
    height: auto; }
  @media screen and (max-width: 800px) {
    .mainPointItem__pic {
      margin: 0 0 0.83333rem;
      padding: 0; }
      .mainPointItem__pic img {
        max-width: none;
        width: 100%; } }

.mainPointItem__txt .__hd {
  margin-bottom: 2.5rem;
  line-height: 1.4;
  color: #222222;
  font-size: 1.625rem;
  font-weight: bold; }
  .mainPointItem__txt .__hd small {
    font-size: 1rem; }
  @media screen and (max-width: 800px) {
    .mainPointItem__txt .__hd {
      margin-bottom: 0.83333rem;
      font-size: 1.08333rem; }
      .mainPointItem__txt .__hd small {
        font-size: 0.75rem; } }

.mainPointItem__txt .__desc {
  margin-bottom: 1.875rem; }
  .mainPointItem__txt .__desc p {
    line-height: 1.8;
    font-size: 1rem; }
  @media screen and (max-width: 800px) {
    .mainPointItem__txt .__desc {
      margin-bottom: 1.66667rem; }
      .mainPointItem__txt .__desc p {
        font-size: 0.91667rem; } }

@media screen and (max-width: 800px) {
  .mainPointItem__txt .__link {
    text-align: center; } }

.mainJoin {
  padding: 6.25rem 0 0; }
  @media screen and (max-width: 800px) {
    .mainJoin {
      padding: 5rem calc(px2rem(20,xxsd) -1rem) 0.83333rem; } }

.mainSchedule {
  padding: 6.25rem 0 3.125rem; }
  @media screen and (max-width: 800px) {
    .mainSchedule {
      padding: 5rem 0; } }

@media screen and (max-width: 800px) {
  .mainSchedule__oaList .mainOaItem .__title {
    margin-bottom: 2px; } }

.mdl__program_info_links {
  margin-top: 0;
  padding: 0; }
  @media screen and (max-width: 800px) {
    .mdl__program_info_links {
      margin-top: 1.5rem; } }

.mainSchedule__oaList {
  margin: 0 auto 2.5rem;
  overflow: hidden; }
  @media screen and (max-width: 800px) {
    .mainSchedule__oaList {
      margin: 0 auto 2.5rem;
      padding: 0 0; } }
  .mainSchedule__oaList .__noschedule {
    display: none !important; }
  .mainSchedule__oaList .__hero {
    display: none !important; }
  .mainSchedule__oaList ul[data-schedule-layout="center"] {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .mainSchedule__oaList ul[data-schedule-layout="center"] ~ .oa__wodlink {
      text-align: center; }
      @media screen and (max-width: 800px) {
        .mainSchedule__oaList ul[data-schedule-layout="center"] ~ .oa__wodlink {
          text-align: left; } }
  .mainSchedule__oaList ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: auto;
    margin: 0 -1.25rem; }
    @media screen and (max-width: 800px) {
      .mainSchedule__oaList ul {
        margin: 0 auto; } }
    .mainSchedule__oaList ul > li {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
      flex: 0 1 50%;
      padding: 1.25rem; }
      @media screen and (max-width: 800px) {
        .mainSchedule__oaList ul > li {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 100%;
          padding: 0.3125rem 0; } }
  .mainSchedule__oaList a {
    position: relative;
    display: block;
    -webkit-transition: opacity .1s linear;
    -o-transition: opacity .1s linear;
    transition: opacity .1s linear; }
    .mainSchedule__oaList a:hover {
      opacity: .7; }
    .mainSchedule__oaList a .mainOaItem::before {
      position: absolute;
      right: 1.125rem;
      top: 50%;
      margin-top: -.5em;
      line-height: 1;
      font-family: wol;
      font-size: 1.125rem;
      content: "";
      display: inline-block;
      color: var(--background-award-a); }
  .mainSchedule__oaList .mainOaItem {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 100%;
    height: 11.5625rem;
    padding: 0.3125rem 1.875rem;
    color: #222222;
    border: 2px solid var(--background-award-a); }
    @media screen and (max-width: 800px) {
      .mainSchedule__oaList .mainOaItem {
        height: auto;
        padding: 1.66667rem 1.66667rem; } }
    .mainSchedule__oaList .mainOaItem .__title {
      margin-bottom: 1.125rem;
      line-height: 1.3;
      font-size: 1.5rem;
      font-weight: bold; }
      @media screen and (max-width: 800px) {
        .mainSchedule__oaList .mainOaItem .__title {
          font-size: 1.08333rem;
          margin-bottom: 2px; } }
    .mainSchedule__oaList .mainOaItem .__oa {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      line-height: 1.3;
      font-size: 1.25rem; }
      @media screen and (max-width: 1152px) {
        .mainSchedule__oaList .mainOaItem .__oa {
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-flow: column nowrap;
          flex-flow: column nowrap; } }
      @media screen and (max-width: 800px) {
        .mainSchedule__oaList .mainOaItem .__oa {
          font-size: 1.08333rem; } }
      .mainSchedule__oaList .mainOaItem .__oa .__txt,
      .mainSchedule__oaList .mainOaItem .__oa .__icon {
        margin-top: 0.41667rem; }
      .mainSchedule__oaList .mainOaItem .__oa .__txt {
        margin-right: 8px; }
      .mainSchedule__oaList .mainOaItem .__oa .__icon {
        display: inline-block;
        font-size: 0; }
        .mainSchedule__oaList .mainOaItem .__oa .__icon .__icn_channel[src*="icon_ch_wod."] {
          margin-left: 5px; }
        @media screen and (max-width: 592px) {
          .mainSchedule__oaList .mainOaItem .__oa .__icon br + .__icn_channel[src*="icon_ch_wod."] {
            margin-left: 0; } }
        @media screen and (max-width: 1152px) {
          .mainSchedule__oaList .mainOaItem .__oa .__icon {
            display: block; } }

@media screen and (max-width: 800px) {
  .mainSchedule__related {
    width: auto;
    margin: 0 -1.25rem; } }

.lineup__hd {
  margin-bottom: 0.875rem;
  padding: 0 0 0.875rem;
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 1px solid var(--background-award-a); }

.lineup__itemList.-collapsed > ul > li:nth-child(n + 5) {
  background: #cfc;
  display: none; }

.lineup__itemList > ul > li {
  padding-bottom: 1.875rem; }

.lineup__more {
  padding: 3.25rem 0 3.75rem;
  text-align: center; }

.lineupItem {
  position: relative;
  height: 100%; }
  .lineupItem a:hover {
    -webkit-animation-name: fadeInBgShadow;
    animation-name: fadeInBgShadow;
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .lineupItem > a, .lineupItem .__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%; }
  .lineupItem .__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch; }
  .lineup.-has-mod .lineupItem .__inner {
    padding-bottom: 22px; }
  .lineupItem .__img {
    position: relative; }
    .lineupItem .__img::before {
      content: "";
      display: block;
      height: 100%;
      position: absolute;
      width: 100%;
      z-index: 2; }
    .lineupItem .__img img {
      width: 100%;
      height: auto; }
  .lineupItem .__txt {
    -webkit-box-flex: 100;
    -ms-flex: 100 1 auto;
    flex: 100 1 auto;
    padding: .5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .lineupItem.pickupItem .__txt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .lineupItem.pickupItem .__title,
  .lineupItem.pickupItem .__title_sub,
  .lineupItem.pickupItem .__oaStart {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; }
  .lineupItem.pickupItem .__spec {
    padding-right: .5rem; }
  .lineupItem .__title {
    -webkit-box-flex: 10;
    -ms-flex: 10 1 auto;
    flex: 10 1 auto;
    line-height: 1.3;
    margin-bottom: .5rem; }
  .lineupItem .__title_sub {
    margin-bottom: .5rem;
    font-size: .8em;
    color: #555; }
  .lineupItem .__spec {
    margin-top: .5rem;
    margin-bottom: .5rem;
    font-size: 0; }
  .lineupItem .__oaStart {
    font-size: 1.4rem;
    margin-bottom: .5rem;
    white-space: nowrap; }
    @media screen and (max-width: 592px) {
      .lineupItem .__oaStart {
        font-size: 1rem; } }
  .lineupItem .__oa {
    font-size: 0.875rem; }
  .lineupItem .__wmod {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: auto;
    color: #fff;
    text-align: left;
    font-size: 0.75rem; }
    .lineupItem .__wmod a {
      display: inline-block;
      width: auto;
      height: auto;
      color: inherit; }
    .lineupItem .__wmod img {
      display: block;
      width: auto;
      height: 18px;
      max-height: 100%;
      vertical-align: middle; }
      @media screen and (max-width: 592px) {
        .lineupItem .__wmod img {
          width: 100%;
          height: auto; } }

.mainCast {
  padding: 6.25rem 0 0.0625rem; }
  @media screen and (max-width: 800px) {
    .mainCast {
      padding: 5rem 0 2.5rem; } }

.mainCast__section {
  margin: 0 auto 6.25rem; }
  @media screen and (max-width: 800px) {
    .mainCast__section {
      margin: 0 auto 2.5rem; }
      .mainCast__section:last-child {
        margin-bottom: 0; } }

.mainCast__hd2 {
  line-height: 1.2;
  margin: 0 auto 2.5rem;
  padding: 0 0 0.75rem 0;
  border-bottom: 1px solid var(--background-award-a);
  color: var(--background-award-a);
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center; }
  @media screen and (max-width: 800px) {
    .mainCast__hd2 {
      margin: 0 auto 1.66667rem;
      font-size: 1.08333rem; } }

.mainCast__hd3 {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: var(--background-award-a); }
  @media screen and (max-width: 800px) {
    .mainCast__hd3 {
      font-size: 1.08333rem; } }
  .mainCast__hd3::after {
    display: block;
    content: "";
    width: 0;
    height: 1.25rem;
    margin: 0.5rem auto 1.125rem;
    border-left: 1px solid var(--background-award-a); }

.mainCast__itemList {
  margin: 0 auto 0.625rem; }
  .mainCast__itemList.-center > ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .mainCast__itemList > ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media screen and (max-width: 800px) {
      .mainCast__itemList > ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
    .mainCast__itemList > ul > li {
      max-width: calc(250px + 4.25rem);
      padding: 0 2.125rem 2.125rem; }
      .mainCast__itemList > ul > li.-double {
        max-width: calc(500px + 4.25rem * 2); }
      @media screen and (max-width: 800px) {
        .mainCast__itemList > ul > li {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 46.42%;
          flex: 0 0 46.42%;
          padding: 0 0 2.5rem; }
          .mainCast__itemList > ul > li.-double {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%; } }

.mainCast__itemList2 {
  margin: 0 auto 1.25rem;
  overflow-x: hidden; }
  .mainCast__itemList2 > ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto;
    margin-left: -1.25rem;
    margin-right: -1.25rem; }
    .mainCast__itemList2 > ul > li {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
      flex: 0 0 33.33%;
      margin-bottom: 3.125rem;
      padding-left: 1.25rem;
      padding-right: 1.25rem;
      font-size: 1.25rem;
      font-weight: bold; }
      .mainCast__itemList2 > ul > li > span {
        display: block;
        border-bottom: 1px solid var(--background-award-a); }
      .mainCast__itemList2 > ul > li.-noborder > span {
        border-bottom: 0; }
      @media screen and (max-width: 800px) {
        .mainCast__itemList2 > ul > li {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 46.42%;
          flex: 0 0 46.42%;
          margin-bottom: 1.5rem;
          font-size: 0.75rem; } }

.castItem__pic {
  margin-bottom: 0.625rem; }
  .castItem__pic img {
    max-width: 100%;
    height: auto; }

.castItem__txt .__role {
  line-height: 1.4;
  font-size: 1rem;
  margin-bottom: 0.3125rem; }
  @media screen and (max-width: 800px) {
    .castItem__txt .__role {
      font-size: 0.75rem; } }

.castItem__txt .__name {
  line-height: 1.4;
  font-size: 1.25rem;
  font-weight: bold; }
  @media screen and (max-width: 800px) {
    .castItem__txt .__name {
      font-size: 0.91667rem; } }

.castItem__txt .__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left; }
  @media screen and (max-width: 800px) {
    .castItem__txt .__link {
      display: block; } }

.castItem__txt .__link__text {
  margin-top: 1rem;
  position: relative;
  text-decoration: none;
  color: darkgray;
  font-size: .8rem; }
  .castItem__txt .__link__text a {
    -webkit-transition: opacity .1s linear;
    -o-transition: opacity .1s linear;
    transition: opacity .1s linear; }
    .castItem__txt .__link__text a:hover {
      opacity: .7;
      text-decoration: underline; }
    .castItem__txt .__link__text a span {
      color: #1c52ac;
      position: relative;
      margin-left: .1rem;
      top: -.1rem; }

.mainLink {
  padding: 0 0 6.25rem;
  text-align: center; }

.mainNomination {
  padding: 6.25rem 0 4.375rem; }
  @media screen and (max-width: 800px) {
    .mainNomination {
      padding: 5rem 0; } }

.mainNomination__link {
  text-align: center; }

.mainSpecial {
  padding: 6.25rem 0 4.375rem; }
  @media screen and (max-width: 800px) {
    .mainSpecial {
      padding: 5rem 0 0; } }

.mainSpecial__hd2 {
  margin-bottom: 1.125rem;
  color: var(--background-award-a);
  font-size: 1.25rem;
  font-weight: bold;
  text-align: left; }
  @media screen and (max-width: 800px) {
    .mainSpecial__hd2 {
      margin-bottom: 0.75rem;
      font-size: 0.91667rem; } }

.mainSpecial__itemList {
  padding-bottom: 1.875rem; }
  .mainSpecial__itemList > ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .mainSpecial__itemList > ul > li {
      padding-bottom: 1.875rem; }
      @media screen and (max-width: 800px) {
        .mainSpecial__itemList > ul > li {
          padding-bottom: 2.5rem; } }
  .mainSpecial__itemList.-typeA {
    overflow: hidden; }
    .mainSpecial__itemList.-typeA > ul {
      width: auto; }
      .mainSpecial__itemList.-typeA > ul > li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
        flex: 0 0 45%; }
        @media screen and (max-width: 800px) {
          .mainSpecial__itemList.-typeA > ul > li {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%; } }
  .mainSpecial__itemList.-typeB > ul > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 31.25%;
    flex: 0 1 31.25%; }
    @media screen and (max-width: 800px) {
      .mainSpecial__itemList.-typeB > ul > li {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 46.42%;
        flex: 0 1 46.42%; } }

.specialItem {
  line-height: 1.8;
  color: #222222;
  font-size: 1rem;
  text-align: left; }
  .specialItem a {
    display: block;
    -webkit-transition: opacity .1s linear;
    -o-transition: opacity .1s linear;
    transition: opacity .1s linear; }
    .specialItem a:hover {
      opacity: .8; }
  .specialItem .__pic {
    margin: 0 auto 1.25rem;
    text-align: center; }
    .specialItem .__pic img {
      width: 100%;
      height: auto; }
    @media screen and (max-width: 800px) {
      .specialItem .__pic {
        margin: 0 auto 0.75rem; } }
  @media screen and (max-width: 800px) {
    .specialItem {
      font-size: 0.91667rem; } }
  .specialItem .__txt p {
    line-height: inherit;
    font-size: inherit; }
  .specialItem.-movie figcaption {
    line-height: 1.4;
    font-weight: bold; }

.mainLinkBnr {
  padding: 6.25rem 0;
  text-align: center; }
  @media screen and (max-width: 800px) {
    .mainLinkBnr {
      padding: 5rem 0 0; } }

.mainSns {
  padding: 4.375rem 0 6.25rem; }
  @media screen and (max-width: 800px) {
    .mainSns {
      padding: 5rem 0 5rem; } }
  .mainSns.-no-timeline {
    padding: 6.25rem 0; }
    @media screen and (max-width: 800px) {
      .mainSns.-no-timeline {
        padding: 3.75rem 0; } }

.mainSns__timeline {
  overflow: auto;
  border: 2px solid var(--background-award-a);
  margin: 5rem auto 3.125rem;
  max-width: 31.25rem;
  max-height: 43.75rem; }
  @media screen and (max-width: 800px) {
    .mainSns__timeline {
      max-width: 23.33333rem;
      max-height: 32.5rem;
      margin: 2.5rem auto 1.66667rem; } }
  @media print {
    .mainSns__timeline {
      display: none !important; } }

.mainSns__link {
  text-align: center; }

.mainLink2 {
  padding: 3.125rem 0; }
  @media screen and (max-width: 800px) {
    .mainLink2 {
      padding: 1.66667rem 0; } }

.mainLink2__hd {
  line-height: 1.3;
  margin: 0 auto 1.25rem;
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  color: #0056a3; }
  @media screen and (max-width: 800px) {
    .mainLink2__hd {
      font-size: 1rem;
      white-space: nowrap; } }

.mainLink2__itemList {
  margin: 0 auto;
  max-width: 66.25rem;
  overflow: hidden; }
  .mainLink2__itemList ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    margin: 0 -1.875rem;
    border-bottom: 1px solid transparent; }
    .mainLink2__itemList ul > li {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      text-align: center;
      padding: 0 1.875rem; }
    @media screen and (max-width: 800px) {
      .mainLink2__itemList ul {
        margin: 0 auto; }
        .mainLink2__itemList ul > li {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 100%;
          padding: 0;
          margin: 0 0 1.66667rem; }
          .mainLink2__itemList ul > li:last-child {
            margin-bottom: 0; } }

#detail-ondemand-static {
  margin-top: 6.25rem; }
  @media screen and (max-width: 800px) {
    #detail-ondemand-static {
      margin-top: 2.5rem; } }

.box__modal-comment .__inner {
  padding: 1.75rem 4rem;
  text-align: left; }
  @media screen and (max-width: 800px) {
    .box__modal-comment .__inner {
      padding: 0.83333rem; } }

.box__modal-comment .__hd {
  margin: 0 auto 2.5rem;
  line-height: 1.4;
  font-size: 1.625rem;
  font-weight: bold; }
  @media screen and (max-width: 800px) {
    .box__modal-comment .__hd {
      font-size: 1.08333rem; } }

.box__modal-comment .__desc p {
  line-height: 1.8;
  font-size: 1rem; }
  @media screen and (max-width: 800px) {
    .box__modal-comment .__desc p {
      font-size: 0.91667rem; } }

.mainHero__oaList .__icn_attention:hover,
.mainSchedule__oaList .__icn_attention:hover {
  opacity: 1; }

.mainHero__oaList .__icn_attention,
.mainSchedule__oaList .__icn_attention {
  pointer-events: none !important; }

.oa__wodlink {
  line-height: 1.4;
  margin-top: .5rem;
  margin-bottom: .5rem;
  /* font-size:1.25rem; */
  font-size: 1rem;
  /* font-weight:bold; */ }
  .oa__wodlink a {
    display: inline;
    color: #1c52ac;
    text-decoration: underline;
    pointer-events: unset !important; }
    .oa__wodlink a:hover {
      opacity: .7; }
  .oa__wodlink [class*="__icn_"] {
    vertical-align: middle; }
  .oa__wodlink p {
    margin: .2rem 0; }
  @media screen and (max-width: 800px) {
    .oa__wodlink {
      margin-top: 2rem;
      margin-bottom: 1rem;
      /* font-size:1.08333rem; */ } }
