@charset "UTF-8";
/* =================================================================================================

　ブロックエディタ用

================================================================================================= */
/* ----------------------------------------------------------------------------
　entrybody
---------------------------------------------------------------------------- */
.entrybody {
  margin-bottom: 3rem;
}
.entrybody a {
  color: #0056a7;
}

.entrybody p {
  line-height: 180%;
  margin-bottom: 2rem;
}

.entrybody > h3 {
  margin-bottom: 2rem;
}

.entrybody .guard {
  pointer-events: auto;
}

/* ----------------------------------------------------------------------------
　画像block
---------------------------------------------------------------------------- */
.mt-figure {
  margin-bottom: 2rem;
}

figcaption {
  margin-top: 1rem;
  font-size: 0.875rem;
}

/* ----------------------------------------------------------------------------
　youtube_block
---------------------------------------------------------------------------- */
.youtube_block {
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 56%;
}
.youtube_block a {
  display: block;
  position: absolute;
  width: 100%;
  top: -16.5%;
}
.youtube_block a:after {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url("/img/icon_play.svg") center center no-repeat;
  background-size: 12% auto;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.youtube_block a:hover:after {
  background-size: 15% auto;
}
.youtube_block a img {
  width: 100%;
}

/* ----------------------------------------------------------------------------
　uliza_block
---------------------------------------------------------------------------- */
.uliza_block {
  margin-bottom: 2.5rem;
  position: relative;
}
.uliza_block a {
  display: block;
  position: relative;
}
.uliza_block a:after {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url("/img/icon_play.svg") center center no-repeat;
  background-size: 12% auto;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.uliza_block a:hover:after {
  background-size: 15% auto;
}
.uliza_block a img {
  width: 100%;
}

/* ----------------------------------------------------------------------------
　各見出し
---------------------------------------------------------------------------- */
.ttl_block.style1 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  background-color: #333;
  color: #fff;
  padding: 1rem;
}

.ttl_block.style2 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  background-color: #313e6b;
  color: #fff;
  padding: 1rem;
}

.ttl_block.style3 {
  font-size: 1.125rem;
  color: #11172B;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #11172B;
}

/* ----------------------------------------------------------------------------
　マルチカラム
---------------------------------------------------------------------------- */
.mt-be-columns {
  margin-bottom: 2rem;
}

.mt-be-column {
  width: 100%;
  margin-right: 1rem;
}
.mt-be-column:last-child {
  margin-right: 0rem;
}

.mt-be-column p {
  margin-bottom: 0.5rem;
}

/* ----------------------------------------------------------------------------
　枠線スタイル01
---------------------------------------------------------------------------- */
.line_block01 {
  margin-bottom: 2.5rem;
}

.line_block01 dt {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 0.5rem 1rem;
  position: relative;
  top: 2px;
  margin: 0 0 0 0;
}

.line_block01 dd {
  border: 2px solid #ccc;
  background-color: #fff;
  padding: 1rem;
  margin: 0 0 0 0;
}

.line_block01 dd p {
  margin-bottom: 1rem;
}

.line_block01 dd p:last-child {
  margin-bottom: 0rem;
}

/* ----------------------------------------------------------------------------
　背景ブロック01
---------------------------------------------------------------------------- */
.bg_block01 {
  margin-bottom: 2.5rem;
  background-color: #ddd;
  padding: 2rem;
}
.bg_block01.blue {
  background-color: #abd7fb;
}
@media screen and (max-width: 592px) {
  .bg_block01 {
    padding: 1rem;
  }
}

.bg_block01 p {
  margin-bottom: 1rem;
}

.bg_block01 p:last-child {
  margin-bottom: 0rem;
}

/* ----------------------------------------------------------------------------
　サンクス
---------------------------------------------------------------------------- */
.thanks {
  font-weight: 600;
  text-align: center;
  color: #cc0000;
}

/* ----------------------------------------------------------------------------
　区切り線
---------------------------------------------------------------------------- */
hr {
  margin: 3.5rem 0;
}

/* ----------------------------------------------------------------------------
　本文モーダル
---------------------------------------------------------------------------- */
.entrybody_modal_block {
  margin-bottom: 1rem;
}

.entrybody_modal_block p {
  margin-bottom: 0rem;
}

.entrybody_modal_block .entrybody_modal_link {
  background: url("/img/icon_modal_black.svg") right 0 top 0.4rem no-repeat;
  background-size: 15px auto;
  padding: 0 20px 0 0;
}

.entrybody_modal_bg {
  position: fixed;
  top: 0rem;
  left: 0rem;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
  display: none;
}
.entrybody_modal_bg.active {
  display: block;
  -webkit-animation: movieModalBgAnime 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0s forwards;
          animation: movieModalBgAnime 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0s forwards;
}

@-webkit-keyframes movieModalBgAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes movieModalBgAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.entrybody_modal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 800px;
  border: 1px solid #666;
  background-color: #fff;
  -webkit-box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0rem;
  left: calc((100% - 800px) / 2);
  z-index: 101;
  display: none;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.entrybody_modal.active {
  display: block;
  -webkit-animation: movieModalAnime 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
          animation: movieModalAnime 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
}
@media screen and (max-width: 880px) {
  .entrybody_modal {
    width: 95%;
    left: 2.5%;
  }
}

@-webkit-keyframes movieModalAnime {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes movieModalAnime {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.entrybody_modal .close {
  position: absolute;
  top: -45px;
  right: 0rem;
  display: block;
  width: 35px;
  height: 35px;
  background: url("/img/icon_close_white.svg") 0 0 no-repeat;
  background-size: 100% auto;
  font-size: 0rem;
  -webkit-transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.entrybody_modal .close:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and (max-width: 592px) {
  .entrybody_modal .close {
    width: 30px;
    height: 30px;
    top: -40px;
  }
}

.entrybody_modal .entrybody_modal_scroll {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.5rem;
  height: 500px;
  overflow-y: auto;
  -webkit-overflow-scrolling: auto;
}

.entrybody_modal .entrybody_modal_scroll::-webkit-scrollbar {
  width: 5px;
}

.entrybody_modal .entrybody_modal_scroll::-webkit-scrollbar-thumb {
  background-color: #5AB2F9;
}

.entrybody_modal p {
  margin-bottom: 1rem;
}
.entrybody_modal p:last-child {
  margin-bottom: 0rem;
}

/* ----------------------------------------------------------------------------
　ボタン01
---------------------------------------------------------------------------- */
.btn_block01 {
  width: 80%;
  margin: 0 auto 2rem;
}

.btn_block01 a {
  padding: 1rem 0;
  display: block;
  text-align: center;
  background: url("/img/icon_arrow_right_white.svg") 1rem 50% no-repeat;
  background-size: 10px auto;
  background-color: #333;
  color: #fff;
  text-decoration: none;
}

.btn_block01._blank a {
  background: url("/img/icon_blank_white.svg") 1rem 50% no-repeat;
  background-size: 20px auto;
  background-color: #333;
}

.btn_block01.style1 a {
  background-color: #cc0000;
}

.btn_block01.style2 a {
  background-color: #0056a7;
  border-radius: 100px;
}

.btn_block01.style3 a {
  background-color: #11172B;
  -webkit-box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.2);
}

/* ----------------------------------------------------------------------------
　加入バナー
---------------------------------------------------------------------------- */
.joining_bnr {
  width: 70%;
  margin: 0 auto 2rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .joining_bnr {
    width: 100%;
  }
}
.joining_bnr a {
  display: block;
  background: url("/img/icon_arrow_right_white.svg") right 1rem top 50% no-repeat;
  background-size: 10px auto;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 1.1rem 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 592px) {
  .joining_bnr a {
    font-size: 1.3rem;
  }
}
.joining_bnr a em {
  color: #00b8ff;
  font-style: normal;
}

/* ----------------------------------------------------------------------------
　WOWOWオンデマンドバナー
---------------------------------------------------------------------------- */
.wod_bnr {
  margin: 0 auto 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 592px) {
  .wod_bnr {
    display: block;
  }
}

.wod_bnr .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 170px;
          flex: 0 0 170px;
  margin-right: 1.5rem;
}
@media screen and (max-width: 592px) {
  .wod_bnr .logo {
    width: 50%;
    margin: 0 auto 1rem;
  }
}
.wod_bnr .logo img {
  width: 100%;
}

.wod_bnr .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 0.875rem;
  margin-right: 1.5rem;
}
@media screen and (max-width: 592px) {
  .wod_bnr .txt {
    text-align: center;
    margin: 0 0 1rem 0;
  }
}

.wod_bnr ul {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .wod_bnr ul {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    display: block;
  }
}
.wod_bnr ul li {
  width: 50%;
  margin-left: 1rem;
}
.wod_bnr ul li:last-child {
  margin-bottom: 0rem;
}
@media screen and (max-width: 1024px) {
  .wod_bnr ul li {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.wod_bnr ul li a {
  font-size: 0.875rem;
  display: block;
  text-align: center;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 1rem 0;
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 1024px) {
  .wod_bnr ul li a {
    padding: 0.5rem 0;
  }
}
.wod_bnr ul li a:hover {
  background-color: #333;
  color: #fff;
}