@charset "UTF-8";
/*$c-main: #213a70;*/
/* CSS Document */
* {
  zoom: 1;
}

.clearfix:after,
.cf:after {
  content: "";
  display: block;
  clear: both;
}

html {
  font-size: 16px;
}

.page-wrap p,
.page-wrap div,
.page-wrap h1,
.page-wrap h2,
.page-wrap h3,
.page-wrap h4,
.page-wrap h5,
.page-wrap h6,
.page-wrap ul,
.page-wrap li,
.page-wrap dl,
.page-wrap dt,
.page-wrap dd,
.page-wrap body {
  font-family: "Helvetica Neue", Arial, YakuHanJPs_Narrow, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

.page-wrap .mincho {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, serif;
}

.page-wrap p {
  line-height: 1.8em;
  letter-spacing: 0.05em;
}

.page-wrap ul {
  list-style: none;
}

.page-wrap {
  z-index: 10;
}

.page-wrap hr {
  border-top: solid 3px #dcdddd;
  margin: 0;
}

/*-------- img hover ---------*/
.page-wrap img {
  border: none;
}

.page-wrap a:hover img {
  opacity: 0.8;
}

/*----------------------------*/
.page-wrap a:link {
  text-decoration: none;
}

.page-wrap a:visited {
  text-decoration: none;
}

.page-wrap a:hover {
  text-decoration: none;
}

.page-wrap a:active {
  text-decoration: none;
}

/*----------------------------*/
/* ▼PC▼ */
#mbs_common_footerwrap,
#mbs_common_headerwrap2014 {
  display: block;
}

#globalsp_navigation,
#globalsp_footer {
  display: none;
}

.sp_only {
  display: none;
}

.xs_only {
  display: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ▲PC▲ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ▼Smartphone▼ */
@media screen and (max-width: 812px) {
  #mbs_common_footerwrap,
  #mbs_common_headerwrap2014 {
    display: none;
  }
  #globalsp_navigation,
  #globalsp_footer {
    display: block;
  }
  html {
    min-width: 100%;
    font-size: 14px;
  }
  body {
    min-width: 100% !important;
  }
  .page-wrap {
    position: relative;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  br.sp_only {
    display: inline;
  }
}
/* ▲Smartphone▲ */
@media screen and (max-width: 580px) {
  .xs_only {
    display: block;
  }
  br.xs_only {
    display: inline;
  }
}
.mark-window {
  display: inline-block;
  margin-left: 0.3em;
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 500;
}
.mark-window::after {
  content: "launch";
  vertical-align: -2px;
}

.youtube-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ef6800;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
body {
  background: #ef6800; /*遷移アニメーションと同じ色を指定*/
}

body.appear {
  background: #fff; /*画面を開いた後の背景色を指定*/
}

.splashbg {
  z-index: 9999998;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-width: 100vh; /*開始はボーダーの太さは0*/
  border-style: solid;
  border-color: #ef6800; /*拡大する四角の色*/
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes backBoxAnime {
  99.9% {
    /*アニメーション終了ぎりぎりまで*/
    z-index: 9999999;
    border-width: 0px; /*開始はボーダーの太さは0*/
  }
  100% {
    z-index: -1; /*最背面に*/
    border-width: 0px; /*終了はボーダーの太さは0*/
  }
}

@keyframes backBoxAnime {
  99.9% {
    /*アニメーション終了ぎりぎりまで*/
    z-index: 9999999;
    border-width: 0px; /*開始はボーダーの太さは0*/
  }
  100% {
    z-index: -1; /*最背面に*/
    border-width: 0px; /*終了はボーダーの太さは0*/
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#pagewrap {
  position: relative;
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #pagewrap {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-wrap #globalNav {
  display: none;
}
.page-wrap .global-menu {
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
  background-color: #fff;
}
.page-wrap .global-menu__inner {
  max-width: 1200px;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 896px) {
  .page-wrap .global-menu__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.page-wrap .global-menu__title {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 10;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-wrap .global-menu__title img {
  width: 100%;
}
@media (max-width: 896px) {
  .page-wrap .global-menu__title {
    width: auto;
    height: 50px;
  }
  .page-wrap .global-menu__title img {
    height: 100%;
    width: auto;
  }
}
.page-wrap .global-menu__club {
  position: absolute;
  right: 10px;
  top: auto;
  bottom: 8px;
  width: 300px;
}
@media (max-width: 896px) {
  .page-wrap .global-menu__club {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: auto;
    bottom: auto;
    text-align: right;
  }
}
.page-wrap .global-menu__club-btn {
  display: block;
  background-color: #ef6800;
  color: #fff;
  font-weight: 600;
  width: 100%;
  font-size: 14px;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 896px) {
  .page-wrap .global-menu__club-btn {
    display: inline-block;
    width: auto;
    font-size: 12px;
    padding: 0 12px;
    border-radius: 12px;
  }
}
.page-wrap .global-menu__club-btn:hover {
  background-color: #ff892e;
}
.page-wrap .global-nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #fff;
  display: block;
  padding: 10px 0;
}
@media (max-width: 896px) {
  .page-wrap .global-nav {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    top: 60px;
    height: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
.page-wrap .global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 896px) {
  .page-wrap .global-nav__list {
    display: block;
  }
}
@media (max-width: 896px) {
  .page-wrap .global-nav__list--main {
    border-top: solid 3px #ef6800;
  }
}
.page-wrap .global-nav__list--main .global-nav__item {
  padding: 0 10px;
  border-right: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 896px) {
  .page-wrap .global-nav__list--main .global-nav__item {
    padding: 1em 15px 0;
    border-right: none;
  }
  .page-wrap .global-nav__list--main .global-nav__item br {
    display: none;
  }
}
.page-wrap .global-nav__list--main .global-nav__item:first-child {
  border-left: 1px solid #ccc;
}
@media (max-width: 896px) {
  .page-wrap .global-nav__list--main .global-nav__item:first-child {
    border-left: none;
  }
}
.page-wrap .global-nav__list--main .global-nav__item a {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  padding: 0.3em 0.2em;
  color: #000;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.page-wrap .global-nav__list--main .global-nav__item a::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ef6800;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-wrap .global-nav__list--main .global-nav__item a:hover {
  color: #ef6800;
}
.page-wrap .global-nav__list--main .global-nav__item a:hover::after {
  height: 3px;
}
@media (max-width: 896px) {
  .page-wrap .global-nav__list--main .global-nav__item a:hover {
    background-color: #fff;
  }
}
@media (max-width: 896px) {
  .page-wrap .global-nav__list--main .global-nav__item a {
    padding: 0 0 0 1.4em;
    width: 100%;
    font-size: 14px;
    font-weight: normal;
    color: #000;
    text-align: left;
    display: block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .page-wrap .global-nav__list--main .global-nav__item a::before {
    content: "chevron_right";
    font-family: "Material Icons";
    display: block;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    color: #fff;
    font-size: 1em;
    line-height: 1.1em;
    height: 1em;
    width: 1em;
    background-color: #ef6800;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    border-radius: 50%;
  }
  .page-wrap .global-nav__list--main .global-nav__item a:hover {
    color: #ef6800;
  }
  .page-wrap .global-nav__list--main .global-nav__item a::after {
    display: none;
  }
}
.page-wrap .global-nav__list--main .global-nav__item a.disable {
  color: #999;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 896px) {
  .page-wrap .global-nav__list--main .global-nav__item--primary {
    border-bottom: solid 1px #ccc;
    padding: 12px 15px;
  }
  .page-wrap .global-nav__list--main .global-nav__item--primary:last-of-type {
    margin-bottom: 0.5rem;
  }
  .page-wrap .global-nav__list--main .global-nav__item--primary a {
    font-size: 15px;
  }
}
@media (max-width: 896px) {
  .page-wrap .global-nav__list--main .global-nav__item--padding {
    padding-top: 16px;
  }
}
.page-wrap .global-nav__list--sub {
  padding-top: 16px;
}
@media (max-width: 896px) {
  .page-wrap .global-nav__list--sub {
    padding-top: 0;
    padding-bottom: 16px;
  }
}
.page-wrap .global-nav__list--sub .global-nav__item {
  padding: 0 0 0 0.5em;
}
@media (max-width: 896px) {
  .page-wrap .global-nav__list--sub .global-nav__item {
    padding: 1em 15px 0;
  }
}
.page-wrap .global-nav__list--sub .global-nav__item a {
  font-size: 11px;
  padding: 0em 0.2em 0em 1.4em;
  color: #000;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-wrap .global-nav__list--sub .global-nav__item a::after {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #fff;
  font-size: 1em;
  line-height: 1.1em;
  height: 1em;
  width: 1em;
  background-color: #ef6800;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
}
@media (max-width: 896px) {
  .page-wrap .global-nav__list--sub .global-nav__item a {
    font-size: 14px;
    padding: 0 0 0 1.4em;
    width: 100%;
    text-align: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page-wrap .global-nav__list--sub .global-nav__item a:hover {
  color: #ef6800;
}
.page-wrap .global-nav__list--sub .global-nav__item a.disable {
  color: #999;
  cursor: default;
  pointer-events: none;
}
.page-wrap .global-nav__sns {
  display: none;
}
@media (max-width: 896px) {
  .page-wrap .global-nav__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #ef6800;
    padding: 12px;
  }
}
.page-wrap .global-nav__sns-item {
  padding: 0 5px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.page-wrap .global-nav__sns-item a {
  display: block;
}
.page-wrap .global-nav__sns-thumb {
  line-height: 0;
  text-align: center;
}
.page-wrap .global-nav__sns-thumb img {
  width: 80%;
}
.page-wrap .global-nav__sns-label {
  text-align: center;
  color: #fff;
  font-size: 10px;
}
.page-wrap .global-toggle {
  display: none;
}
@media (max-width: 896px) {
  .page-wrap .global-toggle {
    display: block;
    cursor: pointer;
  }
}
.page-wrap .global-hamburger {
  position: relative;
  width: 26px;
  height: 26px;
  border: 2px solid #ef6800;
  border-radius: 50%;
  margin: 0 auto;
}
.page-wrap .global-hamburger__text {
  font-size: 10px;
  color: #ef6800;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0;
}
.page-wrap .global-hamburger span,
.page-wrap .global-hamburger::before,
.page-wrap .global-hamburger::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 14px;
  border-radius: 3px;
  background-color: #ef6800;
  left: 6px;
  top: 8px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-wrap .global-hamburger::before {
  top: 12px;
}
.page-wrap .global-hamburger::after {
  top: 16px;
}
@media (max-width: 896px) {
  .page-wrap #globalNav:checked ~ .toggle-bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9000;
  }
}
@media (max-width: 896px) {
  .page-wrap #globalNav:checked ~ .global-menu .global-nav {
    display: block;
    height: auto;
    max-height: 85vh;
    overflow: auto;
  }
}
.page-wrap #globalNav:checked ~ .global-menu .global-toggle .global-hamburger span {
  background-color: rgba(255, 255, 255, 0);
}
.page-wrap #globalNav:checked ~ .global-menu .global-toggle .global-hamburger::before {
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page-wrap #globalNav:checked ~ .global-menu .global-toggle .global-hamburger::after {
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.page-wrap .global-footer {
  background-color: #ef6800;
  padding: 30px 0;
  background-image: url(../../images/index/footer-bg.jpg);
  background-position: center;
  background-size: cover;
}
@media (max-width: 896px) {
  .page-wrap .global-footer {
    padding: 30px;
  }
}
.page-wrap .global-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.page-wrap .global-footer__item {
  width: 25%;
  padding: 0.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 896px) {
  .page-wrap .global-footer__item {
    width: 33.33%;
  }
}
@media (max-width: 700px) {
  .page-wrap .global-footer__item {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .page-wrap .global-footer__item {
    width: 100%;
  }
}
.page-wrap .global-footer__item a {
  display: block;
  position: relative;
  padding: 0 0 0 1.4em;
  color: black;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.page-wrap .global-footer__item a::after {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: white;
  font-size: 1em;
  line-height: 1.1em;
  height: 1em;
  width: 1em;
  background-color: black;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
}
.page-wrap .global-footer__item a:hover {
  opacity: 0.6;
}
.page-wrap .global-sns-nav {
  background-color: #ef6800;
}
@media (min-width: 897px) {
  .page-wrap .global-sns-nav {
    position: fixed;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    padding: 6px;
    border-radius: 15px 0 0 15px;
  }
}
@media (max-width: 896px) {
  .page-wrap .global-sns-nav__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px;
  }
}
.page-wrap .global-sns-nav__item a {
  display: block;
}
@media (max-width: 896px) {
  .page-wrap .global-sns-nav__item {
    padding: 0 5px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .page-wrap .global-sns-nav__item a {
    display: block;
  }
}
@media (min-width: 897px) {
  .page-wrap .global-sns-nav__thumb {
    padding: 6px;
    line-height: 0;
  }
  .page-wrap .global-sns-nav__thumb img {
    width: 36px;
  }
}
@media (max-width: 896px) {
  .page-wrap .global-sns-nav__thumb {
    line-height: 0;
    text-align: center;
  }
  .page-wrap .global-sns-nav__thumb img {
    width: 80%;
  }
}
@media (min-width: 897px) {
  .page-wrap .global-sns-nav__label {
    display: none;
  }
}
@media (max-width: 896px) {
  .page-wrap .global-sns-nav__label {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 10px;
  }
}
.page-wrap .cornar-wrap {
  border-top: solid 3px #dcdddd;
}
.page-wrap .corner-inner {
  max-width: 1180px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 10px;
  margin: 0 auto;
}
@media (max-width: 1040px) {
  .page-wrap .corner-inner {
    padding: 40px 20px;
  }
}
.page-wrap .corner-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  padding: 0 0 10px 0;
}
.page-wrap .corner-head h2 {
  font-size: 1.8rem;
  color: #595757;
}
.page-wrap .corner-head h3 {
  font-size: 0.9rem;
  color: #595757;
  padding-left: 1em;
  padding-bottom: 0.1em;
}
.page-wrap .corner-head__link {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #595757;
  font-weight: 600;
  display: inline-block;
  line-height: 1;
  padding-right: 1.4em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.page-wrap .corner-head__link::after {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #fff;
  font-size: 1em;
  line-height: 1.1em;
  height: 1em;
  width: 1em;
  background-color: #ef6800;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
}
.page-wrap .corner-head__link:hover {
  color: #ef6800;
}
.page-wrap .main-visual__slick.slick-dotted {
  margin-bottom: 0;
  padding-bottom: 30px;
}
.page-wrap .main-visual__slick-item {
  line-height: 0;
}
.page-wrap .main-visual__slick-item img {
  width: 100%;
}
.page-wrap .main-visual__slick .slick-dots {
  bottom: 5px;
}
.page-wrap .important-notice {
  margin-top: 20px;
  background-color: #fffde4;
}
.page-wrap .important-notice__inner {
  padding: 20px;
  max-width: 840px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 896px) {
  .page-wrap .important-notice__inner {
    display: block;
  }
}
.page-wrap .important-notice__head {
  width: 8em;
  font-size: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 0.2em;
}
@media (max-width: 896px) {
  .page-wrap .important-notice__head {
    width: 100%;
    font-size: 1.1rem;
    padding-bottom: 0.6rem;
  }
}
.page-wrap .important-notice__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.1em 0;
}
@media (max-width: 896px) {
  .page-wrap .important-notice__item {
    display: block;
  }
}
.page-wrap .important-notice__date {
  width: 8em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 0.1em 0 0 1.4em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-wrap .important-notice__date::after {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 1em;
  line-height: 1.1em;
  height: 1em;
  width: 1em;
  background-color: #ef6800;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
}
.page-wrap .important-notice__text {
  line-height: 1.4;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media (max-width: 896px) {
  .page-wrap .important-notice__text {
    padding: 0.2rem 0 0 1.3em;
  }
}
.page-wrap .main-contents-bnr {
  padding: 40px 0;
  background-image: url(../../images/index/bnr-bg.jpg);
  background-position: center;
}
@media (max-width: 896px) {
  .page-wrap .main-contents-bnr {
    padding: 20px 0;
  }
}
.page-wrap .main-contents-bnr__items {
  max-width: 1180px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 800px) {
  .page-wrap .main-contents-bnr__items {
    padding: 0 10px;
  }
}
.page-wrap .main-contents-bnr__item {
  padding: 10px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 25%;
}
@media (max-width: 800px) {
  .page-wrap .main-contents-bnr__item {
    width: 100%;
  }
}
.page-wrap .main-contents-bnr__item img {
  width: 100%;
}
.page-wrap .main-contents-bnr__item--l {
  width: 100%;
}
@media (max-width: 800px) {
  .page-wrap .main-contents-bnr__item--l {
    padding-bottom: 20px;
  }
}
.page-wrap .main-contents-bnr__item--half {
  width: 50%;
}
@media (max-width: 800px) {
  .page-wrap .main-contents-bnr__item--half {
    width: 100%;
    padding-bottom: 20px;
  }
}
.page-wrap .main-contents-bnr__item--third {
  width: 33.3%;
}
@media (max-width: 800px) {
  .page-wrap .main-contents-bnr__item--third {
    width: 100%;
    padding-bottom: 20px;
  }
}
.page-wrap .whats-new__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.page-wrap .whats-new__item {
  width: 33.3%;
  padding: 30px 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-wrap .whats-new__item:nth-of-type(n + 4) {
  display: none;
}
@media (max-width: 1000px) {
  .page-wrap .whats-new__item {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .page-wrap .whats-new__item {
    width: 100%;
    padding: 20px 10px 0;
  }
  .page-wrap .whats-new__item:nth-of-type(n + 4) {
    display: none;
  }
}
.page-wrap .whats-new__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
}
.page-wrap .whats-new__item a::after {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  height: 12px;
  width: 12px;
  background-color: #ef6800;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
}
.page-wrap .whats-new__item a:hover .whats-new__text {
  color: #ef6800;
}
.page-wrap .whats-new__item a:hover .whats-new__date {
  color: #ef6800;
}
.page-wrap .whats-new__thumb {
  width: 40%;
  line-height: 0;
}
@media (max-width: 700px) {
  .page-wrap .whats-new__thumb {
    width: 35%;
  }
}
.page-wrap .whats-new__thumb img {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px #dcdddd;
}
.page-wrap .whats-new__detail {
  width: 55%;
  padding: 0 0 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 700px) {
  .page-wrap .whats-new__detail {
    width: 65%;
  }
}
.page-wrap .whats-new__text {
  line-height: 1.5;
  color: #595757;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.page-wrap .whats-new__date {
  font-size: 0.9em;
  color: #999;
  line-height: 1;
  padding-top: 0.5em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.page-wrap .information-wrap {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
.page-wrap .information-wrap__head {
  font-family: "Noto Sans JP", sans-serif !important;
  text-align: center;
  color: #ef6800;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-indent: 0em;
  font-size: 1.8rem;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: 20px 0;
}
@media (max-width: 896px) {
  .page-wrap .information-wrap__head {
    font-size: 1.6rem;
    letter-spacing: 0;
    padding: 20px;
    line-height: 1.6;
  }
}
.page-wrap .information-wrap__head span {
  display: inline-block;
}
.page-wrap .information-wrap__head--strong {
  font-size: 4rem;
  padding: 0px 20px 20px;
}
@media (max-width: 896px) {
  .page-wrap .information-wrap__head--strong {
    font-size: 3rem;
  }
}
.page-wrap .information-wrap__body {
  text-align: center;
  padding: 2rem 1.5rem 0;
  font-size: 1.2rem;
  line-height: 2;
}
.page-wrap .information-wrap__body span {
  display: inline-block;
}
.page-wrap .information-wrap__release {
  padding: 10px 10px 40px 10px;
  background-color: #f3f6fd;
}
.page-wrap .information-wrap__release__box {
  padding: 40px;
  background-color: white;
  border-radius: 5px;
  max-width: 1000px;
  margin: 50px auto 10px;
}
@media (max-width: 896px) {
  .page-wrap .information-wrap__release__box {
    padding: 20px;
  }
}
.page-wrap .information-wrap__release__box--top {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  font-size: 36px;
  line-height: 1.8;
  color: #e2bb06;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
}
.page-wrap .information-wrap__release__box--top strong {
  font-size: larger;
  font-weight: unset !important;
}
@media (max-width: 896px) {
  .page-wrap .information-wrap__release__box--top {
    font-size: 28px;
    padding: 0.5rem 0 0;
    margin-bottom: 1rem;
  }
}
.page-wrap .information-wrap__release__box--last {
  text-align: end;
  padding-top: 2rem;
}
.page-wrap .information-wrap__release__box.movie-spot {
  margin: 30px auto;
  max-width: 900px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background-color: #f5c51d;
}
.page-wrap .information-wrap__link {
  padding: 20px;
}
.page-wrap .information-wrap__link--head {
  text-align: center;
  padding: 1rem 1.5rem 0;
  line-height: 2;
}
.page-wrap .information-wrap__link--head small {
  font-size: smaller !important;
  display: inline-block;
}
.page-wrap .information-wrap__link--head span {
  display: inline-block;
}
.page-wrap .information-wrap__link--p {
  font-family: "Noto Sans JP", sans-serif !important;
  text-align: center;
  line-height: 1.4;
  text-indent: 0em;
  font-size: 1.8rem;
  font-weight: 700;
}
.page-wrap .information-wrap__link--p small {
  font-size: 16px !important;
  display: inline-block;
  font-weight: normal;
}
.page-wrap .information-wrap__link--p span {
  display: inline-block;
}
@media (max-width: 896px) {
  .page-wrap .information-wrap__link--p {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .page-wrap .information-wrap__link--p small {
    font-size: 14px !important;
  }
}
.page-wrap .information-wrap__link--btn {
  display: block;
  max-width: 1060px;
  margin: 20px auto;
}
.page-wrap .information-wrap__link--btn img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  max-width: -moz-fit-content;
}
.page-wrap .information-wrap__btn {
  border: solid 2px #ef6800;
  display: block;
  position: relative;
  max-width: 400px;
  margin: 2rem auto 0;
  padding: 1.2em 1.8em;
  font-size: 1rem;
  text-align: center;
  color: #ef6800;
  font-weight: 600;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  line-height: 1;
}
.page-wrap .information-wrap__btn::after {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 1em;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #fff;
  font-size: 1em;
  line-height: 1.1em;
  height: 1em;
  width: 1em;
  background-color: #ef6800;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
}
.page-wrap .information-wrap__btn--no-margin {
  margin: 0 auto;
}
.page-wrap .information-wrap__btn:hover {
  background-color: #ef6800;
  color: #fff;
}
.page-wrap .information-wrap__btn:hover::after {
  color: #ef6800;
  background-color: #fff;
}
.page-wrap .information-wrap__period p {
  font-family: "Noto Sans JP", sans-serif !important;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-indent: 0em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 896px) {
  .page-wrap .information-wrap__period p {
    font-size: 1.6rem;
    letter-spacing: 0;
    padding: 20px;
    line-height: 1.6;
  }
}
.page-wrap .information-wrap__period p small {
  font-size: 18px;
}
.page-wrap .youtube-wrap {
  overflow: hidden;
}
.page-wrap .youtube-wrap .corner-head__link:hover .mark-window--gray {
  background-image: url(../../images/common/mark-window-or.png);
}
.page-wrap .youtube-wrap__list {
  padding: 10px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 900px) {
  .page-wrap .youtube-wrap__list {
    margin: 0 -10px;
  }
}
.page-wrap .youtube-wrap__item {
  padding: 10px 20px;
  width: 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 900px) {
  .page-wrap .youtube-wrap__item {
    width: 50%;
    padding: 10px 10px;
  }
}
.page-wrap .youtube-wrap__item a {
  display: block;
}
.page-wrap .youtube-wrap__item a:hover .youtube-wrap__text {
  color: #ef6800;
}
.page-wrap .youtube-wrap__text {
  line-height: 1.5;
  color: #595757;
  padding-top: 0.3em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.page-wrap .youtube-wrap__thumb img {
  width: 100%;
}
.page-wrap .sponsor-wrap {
  position: relative;
  margin: 0 auto;
  padding: 40px 0;
  max-width: 1080px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-wrap .sponsor-wrap__block {
  padding: 20px 0 0 0;
}
.page-wrap .sponsor-wrap__head {
  text-align: center;
  color: #7b7a7a;
  font-size: 14px;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  padding-bottom: 0.4rem;
}
.page-wrap .sponsor-wrap__items {
  text-align: center;
}
.page-wrap .sponsor-wrap__item {
  display: inline-block;
  padding: 6px 6px 10px 6px;
  font-size: 1.4rem;
  font-weight: 600;
}
.page-wrap .sponsor-wrap__item img {
  width: 140px;
}
.page-wrap .sponsor-wrap__item--vertical img {
  height: 20px;
  width: auto;
}
.page-wrap .sponsor-wrap__item--special img {
  width: 200px;
}
.page-wrap .footer-btn-wrap {
  overflow: hidden;
}
.page-wrap .footer-btn-wrap__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-wrap .footer-btn-wrap__item {
  width: 50%;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 896px) {
  .page-wrap .footer-btn-wrap__item {
    width: 100%;
  }
}
.page-wrap .footer-btn-wrap__item a {
  border: solid 2px #ef6800;
  display: block;
  position: relative;
  padding: 1.3em 1.8em;
  font-size: 1.1rem;
  text-align: center;
  color: #ef6800;
  font-weight: 600;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-wrap .footer-btn-wrap__item a::after {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 1em;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #fff;
  font-size: 1em;
  line-height: 1.1em;
  height: 1em;
  width: 1em;
  background-color: #ef6800;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
}
.page-wrap .footer-btn-wrap__item a:hover {
  background-color: #ef6800;
  color: #fff;
}
.page-wrap .footer-btn-wrap__item a:hover::after {
  color: #ef6800;
  background-color: #fff;
}
.page-wrap .footer-btn-wrap__text {
  line-height: 1.5;
  color: #595757;
  padding-top: 0.3em;
}
.page-wrap .footer-btn-wrap__thumb img {
  width: 100%;
}
.page-wrap .live-wrap {
  background: -webkit-gradient(linear, left top, right top, from(rgb(147, 125, 43)), color-stop(50%, rgb(203, 191, 95)), to(rgb(147, 125, 43)));
  background: linear-gradient(90deg, rgb(147, 125, 43) 0%, rgb(203, 191, 95) 50%, rgb(147, 125, 43) 100%);
  padding: 0 0 20px;
}
.page-wrap .live-wrap h1 {
  color: white;
  font-size: 46px;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 0;
  text-align: center;
  padding: 10px 0;
}
.page-wrap .live-wrap h1 img {
  max-width: 428px;
  width: 100%;
}
@media (max-width: 896px) {
  .page-wrap .live-wrap h1 img {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .page-wrap .live-wrap h1 {
    font-size: 9vw;
  }
}
.page-wrap .live-wrap__inner {
  background-image: url(../../images/index/bnr-bg.jpg);
  background-position: center center;
  background-size: cover;
  padding: 24px 16px;
}
.page-wrap .live-detail-wrap {
  padding: 40px 0;
  border-bottom: solid 3px #dcdddd;
  position: relative;
  overflow: hidden;
}
@media (max-width: 896px) {
  .page-wrap .live-detail-wrap {
    padding: 20px 0;
  }
}
.page-wrap .live-detail-wrap::before {
  content: "LIVE STREAMING";
  color: rgba(244, 205, 27, 0.1);
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 11vw;
  font-weight: 600;
  text-align: center;
  word-break: break-all;
  width: 100%;
  display: block;
  z-index: -1;
}
@media (max-width: 896px) {
  .page-wrap .live-detail-wrap::before {
    white-space: pre;
    content: "LIVE\aSTREAMING";
    font-size: 14vw;
  }
}
.page-wrap .live-detail-wrap__head {
  text-align: center;
  color: #ef6800;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  font-size: 2.2rem;
  font-weight: 600;
}
.page-wrap .live-detail-wrap__head span {
  display: inline-block;
}
@media (max-width: 896px) {
  .page-wrap .live-detail-wrap__head {
    font-size: clamp(1.2rem, 0.867rem + 1.67vw, 1.8rem);
  }
}
.page-wrap .live-detail-wrap__body {
  text-align: center;
  padding: 2.5rem 1.5rem;
  line-height: 2;
}
.page-wrap .live-detail-wrap__btns {
  max-width: 720px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 896px) {
  .page-wrap .live-detail-wrap__btns {
    padding: 0;
  }
}
.page-wrap .live-detail-wrap__btn {
  padding: 10px;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-wrap .live-detail-wrap__btn a {
  border: solid 2px #ef6800;
  display: block;
  padding: 1.3em 1em 1.3em 2.4em;
  font-size: 1.1rem;
  text-align: center;
  color: #ef6800;
  font-weight: 600;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  position: relative;
}
@media (max-width: 896px) {
  .page-wrap .live-detail-wrap__btn a {
    font-size: 1rem;
    letter-spacing: 0;
    text-indent: 0;
  }
}
.page-wrap .live-detail-wrap__btn a::before {
  font-family: "Material Icons";
  content: "\e639";
  font-size: 24px;
  font-weight: normal;
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translate(0, -56%);
          transform: translate(0, -56%);
}
@media (max-width: 896px) {
  .page-wrap .live-detail-wrap__btn a::before {
    left: 0.6rem;
    font-size: 22px;
  }
}
.page-wrap .live-detail-wrap__btn a:hover {
  background-color: #ef6800;
  color: #fff;
}
.page-wrap .live-detail-wrap__btn--webex {
  width: 100%;
}
.page-wrap .live-detail-wrap__btn--webex a {
  border: solid 2px #01bceb;
  color: #01bceb;
}
.page-wrap .live-detail-wrap__btn--webex a:hover {
  background-color: #01bceb;
  color: #fff;
}
.page-wrap .live-detail-wrap__btn--yt {
  width: 100%;
}
.page-wrap .live-detail-wrap__btn--yt a {
  border: solid 2px #c00;
  color: #c00;
}
.page-wrap .live-detail-wrap__btn--yt a:hover {
  background-color: #c00;
  color: #fff;
}
.page-wrap .live-detail-wrap__btn--dizm a {
  border: solid 2px #accd00;
  color: #accd00;
}
.page-wrap .live-detail-wrap__btn--dizm a:hover {
  background-color: #accd00;
  color: #fff;
}
.page-wrap .program-detail-wrap {
  padding: 40px 0;
  border-bottom: solid 3px #dcdddd;
  position: relative;
  overflow: hidden;
}
@media (max-width: 896px) {
  .page-wrap .program-detail-wrap {
    padding: 20px 10px;
  }
}
.page-wrap .program-detail-wrap::before {
  content: "SPECIAL PROGRAM";
  color: rgba(244, 205, 27, 0.1);
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 9.5vw;
  font-weight: 600;
  text-align: center;
  word-break: break-all;
  width: 100%;
  display: block;
  z-index: -1;
}
@media (max-width: 896px) {
  .page-wrap .program-detail-wrap::before {
    white-space: pre;
    content: "SPECIAL\aPROGRAM";
    font-size: 14vw;
  }
}
.page-wrap .program-detail-wrap__con {
  border-top: 1px solid #dcdddd;
  padding-top: 30px;
  margin-top: 60px;
}
.page-wrap .program-detail-wrap__head {
  text-align: center;
  color: #ef6800;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  font-size: 1.6rem;
  font-weight: 600;
}
@media (max-width: 896px) {
  .page-wrap .program-detail-wrap__head {
    padding-top: 2rem;
  }
}
.page-wrap .program-detail-wrap__body {
  text-align: center;
  padding: 2.5rem 1.5rem;
  line-height: 2;
}
.page-wrap .program-detail-wrap__oa {
  text-align: center;
  padding: 1rem 1.5rem;
  line-height: 1.2;
  font-size: 1.2rem;
}
.page-wrap .program-detail-wrap__oa span {
  font-size: 1.8rem;
}
.page-wrap .program-detail-wrap__ondemand {
  text-align: center;
  padding: 3rem 1.5rem 1rem;
  line-height: 1.4;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ef6800;
}
.page-wrap .program-detail-wrap__ondemand span {
  font-size: 1.4rem;
}
@media (max-width: 896px) {
  .page-wrap .program-detail-wrap__ondemand {
    font-size: 1rem;
    padding: 2rem 1.5rem 1rem;
  }
}
.page-wrap .program-detail-wrap__station {
  text-align: center;
  padding: 0 1rem;
  font-size: 1.2rem;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
}
.page-wrap .program-detail-wrap__station span {
  display: inline-block;
  border-top: 1px solid #000;
  padding: 0 1em;
  font-weight: bold;
}
.page-wrap .program-detail-wrap__station small {
  font-size: smaller;
}
.page-wrap .program-detail-wrap__sub-station {
  text-align: center;
  line-height: 1.6;
  max-width: 1000px;
  margin: 20px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
  border: 2px solid;
  border-top-color: #f5a100;
  border-right-color: #f9c45e;
  border-bottom-color: #f9c45e;
  border-left-color: #F5A100;
}
.page-wrap .program-detail-wrap__sub-station small {
  font-size: smaller;
}
.page-wrap .program-detail-wrap__sub-station--p {
  width: 100%;
  padding: 20px !important;
}
.page-wrap .program-detail-wrap__sub-station--dl {
  width: calc(25% - 10px);
  margin: 10px 5px;
}
@media (max-width: 896px) {
  .page-wrap .program-detail-wrap__sub-station--dl {
    width: calc(50% - 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .page-wrap .program-detail-wrap__sub-station--dl {
    width: calc(100% - 10px);
  }
}
.page-wrap .program-detail-wrap__sub-station--dt {
  background-color: #f2932b;
  color: white;
  padding: 10px;
  line-height: 1.4;
}
@media (max-width: 896px) {
  .page-wrap .program-detail-wrap__sub-station--dt {
    -ms-flex-item-align: stretch;
        align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
    line-height: 1.4;
    max-width: 5em;
    min-width: 5em;
  }
}
@media (max-width: 480px) {
  .page-wrap .program-detail-wrap__sub-station--dt {
    max-width: unset;
    min-width: 30%;
  }
}
.page-wrap .program-detail-wrap__sub-station--dd {
  padding: 10px;
  line-height: 1.4;
}
.page-wrap .program-detail-wrap__sub-station--dd span {
  display: inline-block;
}
@media (max-width: 896px) {
  .page-wrap .program-detail-wrap__sub-station--dd {
    text-align: left;
  }
}
.page-wrap .program-detail-wrap__regular {
  font-size: 0.8rem;
  text-align: center;
  padding: 0.8rem 0 1rem;
  color: #666;
}
.page-wrap .program-detail-wrap__other {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 800px;
  margin: 20px auto 0;
  border-top: 1px solid #dcdddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-wrap .program-detail-wrap__other li {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0.5rem;
}
@media (max-width: 896px) {
  .page-wrap .program-detail-wrap__other li {
    width: 100%;
  }
}
.page-wrap .program-detail-wrap__other li dl {
  padding: 1rem 0;
}
.page-wrap .program-detail-wrap__other li dl dt {
  font-weight: bold;
  text-align: center;
}
.page-wrap .program-detail-wrap__other li dl dd {
  text-align: center;
  padding: 0.6rem 0 0;
}
.page-wrap .program-detail-wrap__title {
  padding: 20px 20px;
  text-align: center;
}
@media (max-width: 896px) {
  .page-wrap .program-detail-wrap__title {
    padding: 20px 0;
  }
}
.page-wrap .program-detail-wrap__title img {
  width: 100%;
  max-width: 740px;
  height: auto;
}
.page-wrap .program-detail-wrap__personality {
  max-width: 360px;
  margin: 1rem auto 0;
  background-image: url(../../images/index/bnr-bg.jpg);
  background-position: center;
  background-color: #004586;
  padding: 1rem;
}
.page-wrap .program-detail-wrap__personality dt {
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #fff;
  padding: 0.5rem;
  font-weight: bold;
}
.page-wrap .program-detail-wrap__personality dd {
  padding: 0.8rem 0.5rem;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
}
.page-wrap .program-detail-wrap__personality dd span {
  font-size: 14px;
  color: #ccc;
  display: block;
  text-align: center;
  padding-top: 0.5em;
}
.page-wrap .archive-wrap {
  background: -webkit-gradient(linear, left top, right top, from(rgb(147, 125, 43)), color-stop(50%, rgb(203, 191, 95)), to(rgb(147, 125, 43)));
  background: linear-gradient(90deg, rgb(147, 125, 43) 0%, rgb(203, 191, 95) 50%, rgb(147, 125, 43) 100%);
  padding: 0 0 20px;
}
.page-wrap .archive-wrap h1 {
  color: white;
  font-size: 46px;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 0;
  text-align: center;
  padding: 10px 0;
}
.page-wrap .archive-wrap h1 img {
  max-width: 428px;
  width: 100%;
}
@media (max-width: 896px) {
  .page-wrap .archive-wrap h1 img {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .page-wrap .archive-wrap h1 {
    font-size: 9vw;
  }
}
.page-wrap .archive-wrap__inner {
  background-image: url(../../images/index/live-visual.png);
  background-position: center center;
  background-size: cover;
  padding: 24px 16px;
}
.page-wrap .archive-wrap__btns {
  max-width: 720px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 896px) {
  .page-wrap .archive-wrap__btns {
    padding: 0;
  }
}
.page-wrap .archive-wrap__btn {
  padding: 20px 10px 10px;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-wrap .archive-wrap__btn a {
  border: solid 2px #ef6800;
  display: block;
  padding: 1.3em 1em 1.3em 2.4em;
  font-size: 1.1rem;
  text-align: center;
  color: #ef6800;
  font-weight: 600;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  position: relative;
  background-color: #fff;
}
@media (max-width: 896px) {
  .page-wrap .archive-wrap__btn a {
    font-size: 1rem;
    letter-spacing: 0;
    text-indent: 0;
  }
}
.page-wrap .archive-wrap__btn a::before {
  font-family: "Material Icons";
  content: "\e639";
  font-size: 24px;
  font-weight: normal;
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translate(0, -56%);
          transform: translate(0, -56%);
}
@media (max-width: 896px) {
  .page-wrap .archive-wrap__btn a::before {
    left: 0.6rem;
    font-size: 22px;
  }
}
.page-wrap .archive-wrap__btn a:hover {
  background-color: #ef6800;
  color: #fff;
}
.page-wrap .archive-wrap__btn--webex {
  width: 100%;
}
.page-wrap .archive-wrap__btn--webex a {
  border: solid 2px #01bceb;
  color: #01bceb;
}
.page-wrap .archive-wrap__btn--webex a:hover {
  background-color: #01bceb;
  color: #fff;
}
.page-wrap .archive-wrap__btn--yt a {
  border: solid 2px #c00;
  color: #c00;
}
.page-wrap .archive-wrap__btn--yt a:hover {
  background-color: #c00;
  color: #fff;
}
.page-wrap .archive-wrap__btn--dizm a {
  border: solid 2px #accd00;
  color: #accd00;
}
.page-wrap .archive-wrap__btn--dizm a:hover {
  background-color: #accd00;
  color: #fff;
}
.page-wrap .archive-wrap--extend {
  padding: 0 0 20px;
}
.page-wrap .archive-wrap--extend .archive-wrap__inner {
  background-image: none;
  padding: 0px 16px 24px 16px;
}
.page-wrap .archive-wrap--extend h1 img {
  max-width: 540px;
  width: 100%;
}
@media (max-width: 896px) {
  .page-wrap .archive-wrap--extend h1 img {
    width: 90%;
  }
}
.page-wrap .text-column-wrap {
  border-bottom: solid 3px #dcdddd;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
.page-wrap .text-column-wrap__head {
  font-family: "Noto Sans JP", sans-serif !important;
  text-align: center;
  background: #ef6800;
  background: radial-gradient(circle farthest-corner at center center, #ef6800 8%, #ef6800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-indent: 0em;
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: 20px 0;
}
@media (max-width: 896px) {
  .page-wrap .text-column-wrap__head {
    font-size: 1.6rem;
    letter-spacing: 0;
    text-align: left;
    padding: 20px;
    line-height: 1.6;
  }
}
.page-wrap .text-column-wrap__head span {
  display: inline-block;
}
.page-wrap .text-column-wrap__count {
  text-align: center;
  color: #f5c51d;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 1rem 1.5rem 0;
}
@media (max-width: 896px) {
  .page-wrap .text-column-wrap__count {
    font-size: 1.8rem;
  }
}
.page-wrap .text-column-wrap__count span {
  font-size: 1.2rem;
}
.page-wrap .text-column-wrap__body {
  text-align: center;
  padding: 2rem 1.5rem 0;
  font-size: 1.2rem;
  line-height: 2;
}
.page-wrap .text-column-wrap__body span {
  display: inline-block;
}
.page-wrap .text-column-wrap__release {
  padding: 10px 10px 40px 10px;
  background-color: #f3f6fd;
}
.page-wrap .text-column-wrap__release__box {
  padding: 40px;
  background-color: white;
  border-radius: 5px;
  max-width: 1000px;
  margin: 50px auto 10px;
}
@media (max-width: 896px) {
  .page-wrap .text-column-wrap__release__box {
    padding: 20px;
  }
}
.page-wrap .text-column-wrap__release__box--top {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  font-size: 36px;
  line-height: 1.8;
  color: #e2bb06;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
}
.page-wrap .text-column-wrap__release__box--top strong {
  font-size: larger;
  font-weight: unset !important;
}
@media (max-width: 896px) {
  .page-wrap .text-column-wrap__release__box--top {
    font-size: 28px;
    padding: 0.5rem 0 0;
    margin-bottom: 1rem;
  }
}
.page-wrap .text-column-wrap__release__box--last {
  text-align: end;
  padding-top: 2rem;
}
.page-wrap .text-column-wrap__release__box.movie-spot {
  margin: 30px auto;
  max-width: 720px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1rem;
  padding: 1rem;
  background-color: #ef6800;
}
.page-wrap .text-column-wrap__link {
  padding: 2rem 1rem;
}
.page-wrap .text-column-wrap__link--p {
  text-align: center;
  padding: 1rem 1.5rem 0;
  line-height: 2;
}
.page-wrap .text-column-wrap__link--p small {
  font-size: smaller !important;
  display: inline-block;
}
.page-wrap .text-column-wrap__link--p span {
  display: inline-block;
}
.page-wrap .text-column-wrap__btn {
  border: solid 2px #ef6800;
  display: block;
  position: relative;
  max-width: 400px;
  margin: 2rem auto 0;
  padding: 1.2em 1.8em;
  font-size: 1rem;
  text-align: center;
  color: #ef6800;
  font-weight: 600;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  line-height: 1;
}
.page-wrap .text-column-wrap__btn::after {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 1em;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #fff;
  font-size: 1em;
  line-height: 1.1em;
  height: 1em;
  width: 1em;
  background-color: #ef6800;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
}
.page-wrap .text-column-wrap__btn--no-margin {
  margin: 0 auto;
}
.page-wrap .text-column-wrap__btn:hover {
  background-color: #ef6800;
  color: #fff;
}
.page-wrap .text-column-wrap__btn:hover::after {
  color: #ef6800;
  background-color: #fff;
}
.page-wrap .text-column-wrap__period {
  position: relative;
  max-width: 1020px;
  margin: 40px auto;
  padding: 40px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 3px solid #595757;
  border-bottom: 3px solid #595757;
}
.page-wrap .text-column-wrap__period--detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .page-wrap .text-column-wrap__period--detail {
    display: block;
  }
}
.page-wrap .text-column-wrap__period--detail dt {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0 1em 0 0;
}
@media (max-width: 480px) {
  .page-wrap .text-column-wrap__period--detail dt {
    padding: 0 0 0.5em 0;
    text-align: center;
  }
}
.page-wrap .text-column-wrap__period--detail dd {
  font-size: 2rem;
  font-weight: 600;
}
.page-wrap .text-column-wrap__period--detail dd span {
  font-size: 0.6em;
}
@media (max-width: 480px) {
  .page-wrap .text-column-wrap__period--detail dd {
    text-align: center;
    font-size: 1.8rem;
  }
}
.page-wrap .whats-new-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-wrap .whats-new-text__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.page-wrap .whats-new-text__item {
  width: 100%;
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-wrap .whats-new-text__item:first-child {
  padding: 30px 10px 20px;
}
.page-wrap .whats-new-text__item:nth-of-type(n + 3) {
  display: none;
}
@media (max-width: 1000px) {
  .page-wrap .whats-new-text__item {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .page-wrap .whats-new-text__item {
    width: 100%;
  }
  .page-wrap .whats-new-text__item:nth-of-type(n + 3) {
    display: none;
  }
}
.page-wrap .whats-new-text__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
  padding-right: 30px;
}
.page-wrap .whats-new-text__item a::after {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  height: 20px;
  width: 20px;
  background-color: #ef6800;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
}
.page-wrap .whats-new-text__item a:hover .whats-new-text__text {
  color: #ef6800;
}
.page-wrap .whats-new-text__item a:hover .whats-new-text__date {
  color: #ef6800;
}
.page-wrap .whats-new-text__thumb {
  width: 40%;
  line-height: 0;
}
@media (max-width: 700px) {
  .page-wrap .whats-new-text__thumb {
    width: 35%;
  }
}
.page-wrap .whats-new-text__thumb img {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px #dcdddd;
}
.page-wrap .whats-new-text__detail {
  display: inline-block;
}
.page-wrap .whats-new-text__text {
  line-height: 1.5;
  color: #595757;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
}
.page-wrap .whats-new-text__date {
  font-size: 0.9em;
  color: #999;
  line-height: 1;
  padding-top: 0.5em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: inline-block;
}
.page-wrap .testimonials-wrap {
  background-color: #f5c51d;
  padding: 30px 0 10px;
}
.page-wrap .testimonials-wrap__head {
  color: white;
  text-align: center;
  padding-bottom: 20px;
  font-size: 1.6rem;
}
.page-wrap .testimonials-wrap__slick.slick-dotted {
  margin-bottom: 0;
  padding-bottom: 10px;
}
.page-wrap .testimonials-wrap__slick-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0;
  padding: 10px;
  margin: 0 10px;
  background-color: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
}
@media (max-width: 896px) {
  .page-wrap .testimonials-wrap__slick-items {
    max-width: 400px;
  }
}
.page-wrap .testimonials-wrap__slick-item {
  width: calc(50% - 20px);
  margin: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-wrap .testimonials-wrap__slick-item img {
  width: 100%;
}
@media (max-width: 896px) {
  .page-wrap .testimonials-wrap__slick-item {
    width: 100%;
  }
}
.page-wrap .testimonials-wrap__slick .slick-dots {
  bottom: 5px;
  max-width: 500px;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
  padding: 0 30px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-wrap .testimonials-wrap__slick .slick-dots li button:before {
  font-size: 14px !important;
  opacity: 1 !important;
  color: white;
}
.page-wrap .testimonials-wrap__slick .slick-dots li.slick-active button:before {
  color: #ef6800;
}
.page-wrap .testimonials-wrap__slick-arrow {
  max-width: 300px;
  margin: -24px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.page-wrap .testimonials-wrap__slick-arrow .slide-arrow {
  color: white;
  z-index: 8;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 30px;
  cursor: pointer;
}
.page-wrap .testimonials-wrap__slick-arrow .slide-arrow span {
  font-size: 45px;
}
.page-wrap .testimonials-wrap__photo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  max-width: -moz-fit-content;
}
.page-wrap .testimonials-wrap__text p {
  line-height: 1.6;
  letter-spacing: 0px;
  font-size: clamp(1rem, 0.688rem + 0.5vw, 1.125rem);
}
.page-wrap .chorus-wrap {
  max-width: 1020px;
  margin: 0 auto;
  padding: 40px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-wrap .chorus-wrap__p {
  padding-top: 1rem;
}
.page-wrap .chorus-wrap__introduction-end {
  padding: 20px 0px 40px;
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
  font-size: 1.2rem;
}
@media (max-width: 896px) {
  .page-wrap .chorus-wrap__introduction-end {
    font-size: 3.6vw;
  }
}
.page-wrap .chorus-wrap__introduction-end small {
  font-size: 0.9em;
  color: #999;
  line-height: 1;
  padding-top: 0.5em;
}
.page-wrap .chorus-wrap__visual img {
  width: 100%;
}
.page-wrap .chorus-wrap__notes-wrap {
  padding: 40px 0;
}
.page-wrap .chorus-wrap__notes-list {
  padding: 0.5rem 0 0;
}
.page-wrap .chorus-wrap__notes-list li {
  padding: 0.5rem 0 0 1.2em;
  line-height: 1.6;
  position: relative;
}
.page-wrap .chorus-wrap__notes-list li::before {
  content: "〇";
  position: absolute;
  top: 0.5rem;
  left: 0;
}
.page-wrap .chorus-wrap__btn {
  border: solid 2px #ef6800;
  display: block;
  position: relative;
  max-width: 300px;
  margin: 1rem auto 0;
  padding: 0.8em 1.8em;
  font-size: 1rem;
  text-align: center;
  color: #ef6800;
  font-weight: 600;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  line-height: 1;
}
.page-wrap .chorus-wrap__btn::after {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 1em;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #fff;
  font-size: 1em;
  line-height: 1.1em;
  height: 1em;
  width: 1em;
  background-color: #ef6800;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
}
.page-wrap .chorus-wrap__btn--no-margin {
  margin: 0 auto;
}
.page-wrap .chorus-wrap__btn:hover {
  background-color: #ef6800;
  color: #fff;
}
.page-wrap .chorus-wrap__btn:hover::after {
  color: #ef6800;
  background-color: #fff;
}
.page-wrap .chorus-wrap__prevention-adviser {
  text-align: left;
  padding: 2em 1em 0;
}
.page-wrap .chorus-wrap__prevention-adviser br.tab {
  display: none;
}
@media (max-width: 896px) {
  .page-wrap .chorus-wrap__prevention-adviser br.tab {
    display: inline;
  }
}
.page-wrap .chorus-wrap__entry {
  padding: 20px 0;
}
.page-wrap .chorus-wrap__entry-text {
  padding: 20px 0 0;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
.page-wrap .chorus-wrap__entry-link {
  padding: 20px 0;
}
.page-wrap .chorus-wrap__entry-link--p {
  text-align: center;
  padding: 1rem 1.5rem 0;
  line-height: 2;
}
.page-wrap .chorus-wrap__entry-btn {
  max-width: 420px;
  margin: 1rem auto 0;
  border: solid 2px #ef6800;
  display: block;
  position: relative;
  padding: 1.4em 1.8em;
  font-size: 1rem;
  text-align: center;
  color: #ef6800;
  font-weight: 600;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-wrap .chorus-wrap__entry-btn::after {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 1em;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #fff;
  font-size: 1em;
  line-height: 1.1em;
  height: 1em;
  width: 1em;
  background-color: #ef6800;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
}
.page-wrap .chorus-wrap__entry-btn:hover {
  background-color: #ef6800;
  color: #fff;
}
.page-wrap .chorus-wrap__entry-btn:hover::after {
  color: #ef6800;
  background-color: #fff;
}
.page-wrap .chorus-wrap__entry-btn span {
  display: inline-block;
}
.page-wrap .chorus-wrap__entry-pdf {
  padding-bottom: 40px;
}
.page-wrap .chorus-wrap__pdf-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-wrap .chorus-wrap__pdf-link .chorus-wrap__btn {
  margin: 1rem auto 0;
  width: calc(50% - 10px);
}
@media (max-width: 896px) {
  .page-wrap .chorus-wrap__pdf-link .chorus-wrap__btn {
    margin: 1rem auto 0;
    width: calc(100% - 0px);
  }
}
.page-wrap .caution-wrap {
  padding: 40px 0;
}
.page-wrap .caution-item {
  border-bottom: solid 1px #dcdddd;
  padding: 1.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 896px) {
  .page-wrap .caution-item {
    display: block;
  }
}
.page-wrap .caution-item__title {
  width: 12em;
  padding: 0 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ef6800;
  font-weight: bold;
  line-height: 1.6;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 896px) {
  .page-wrap .caution-item__title {
    padding: 0;
    margin-bottom: 0.5rem;
    width: 100%;
  }
  .page-wrap .caution-item__title br {
    display: none;
  }
}
.page-wrap .caution-item__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding: 0 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.6;
}
.page-wrap .caution-item__photos {
  padding-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 896px) {
  .page-wrap .caution-item__photos {
    display: block;
  }
}
.page-wrap .caution-item__photos dd, .page-wrap .caution-item__photos li {
  padding: 0 0.5em;
}
@media (max-width: 896px) {
  .page-wrap .caution-item__photos dd, .page-wrap .caution-item__photos li {
    text-align: center;
    padding: 0.5em 0;
  }
}
.page-wrap .caution-item__photos dd img, .page-wrap .caution-item__photos li img {
  max-width: 100%;
  height: auto;
}
.page-wrap .caution-item__value {
  display: grid;
  grid-template-columns: repeat(2, -webkit-max-content) 1fr;
  grid-template-columns: repeat(2, max-content) 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  font-weight: bold;
}
.page-wrap .caution-item__value--cost {
  text-align: right;
}
.page-wrap .caution-list__item {
  padding: 0 0 0.5em 1em;
  line-height: 1.8;
  position: relative;
}
.page-wrap .caution-list__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.page-wrap .caution-list__item--heading {
  font-weight: bold;
}
.page-wrap .caution-annotation {
  font-size: 14px;
  padding: 0 0 0.5em 1.2em;
  line-height: 1.8;
  position: relative;
  color: #595757;
}
.page-wrap .caution-annotation::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.page-wrap .caution-number {
  counter-reset: number 0;
}
.page-wrap .caution-number__item {
  padding: 0.5em 0 0 1em;
  line-height: 1.8;
  position: relative;
}
.page-wrap .caution-number__item::before {
  counter-increment: number 1;
  content: counter(number) " ";
  position: absolute;
  top: 0.5em;
  left: 0;
}
.page-wrap .caution-notice {
  padding: 0 0 0.5em 1.2em;
  line-height: 1.8;
  position: relative;
}
.page-wrap .caution-notice::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.page-wrap .caution-notice--heading {
  font-weight: bold;
}
.page-wrap .protect img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  -ms-user-select: none;
      user-select: none;
}
@media print {
  .page-wrap .protect img {
    display: none !important;
  }
}
@-moz-document url-prefix() {
  @media print {
    .page-wrap .protect img {
      display: none !important;
    }
  }
}/*# sourceMappingURL=style.css.map */