@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url("https://fonts.googleapis.com/css?family=Staatliches");
/* 要素のフォントサイズやマージン・パディングをリセットしています */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* 行の高さをフォントサイズと同じにしています */
body {
  line-height: 1;
}

/* 新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* nav要素内ulのマーカー（行頭記号）を表示しないようにしています */
nav ul {
  list-style: none;
}

/* 引用符の表示が出ないようにしています */
blockquote, q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツを追加しないように指定しています */
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています */
/* また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキストに打ち消し線が付くようにしています */
del {
  text-decoration: line-through;
}

/* IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています */
/* また、マウスオーバー時にヘルプカーソルの表示が出るようにしています */
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/* 隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線のデフォルトである立体的な罫線を見えなくしています */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* 縦方向の揃え位置を中央揃えに指定しています */
input, select {
  vertical-align: middle;
}

/* 要素にパディングとボーダーを幅と高さに含めるように指定 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 追加カスタム */
img {
  width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

p {
  word-break: break-all;
}

a {
  text-decoration: none;
}

html {
  height: 100%;
  padding: 0px;
  margin: 0px;
  font-size: 0.52vw;
  font-family: "Noto serif JP", sans-serif;
  font-weight: 900;
}

@media only screen and (max-width: 1919px) {
  html {
    font-size: 62.5%;
  }
}
body {
  height: 100%;
  width: 100%;
  padding: 0px;
  margin: 0px;
  background-color: #000;
}
body.fixed {
  position: fixed;
  top: 0;
  z-index: 900;
}

img {
  width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

p {
  word-break: break-all;
}

a {
  text-decoration: none;
}

/*---------------------------------------------------------------------
    layout
---------------------------------------------------------------------*/
.l-basic {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.l-basic-header {
  width: 100%;
}
.l-basic-body {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.l-basic-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: #000000;
  padding: 1.6rem;
}

/*---------------------------------------------------------------------
    component
---------------------------------------------------------------------*/
.c-seihinBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  border: 1px solid #00013B;
  border-bottom: 4px solid #00013B;
  background-color: #F00;
  position: relative;
  overflow: hidden;
}
.c-seihinBtn-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  width: 100%;
  padding: 2.4rem 4.8rem;
  color: #FFFF00;
  font-family: "Noto serif JP", sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  -webkit-box-shadow: 0 0 0.2rem 0.2rem rgba(255, 255, 255, 0.25) inset;
          box-shadow: 0 0 0.2rem 0.2rem rgba(255, 255, 255, 0.25) inset;
  z-index: 5;
}
.c-seihinBtn-text:after {
  display: block;
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.053em;
  border-top: 6px solid #FFFF00;
  border-right: 6px solid #FFFF00;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-seihinBtn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), color-stop(50%, rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

@media only screen and (max-width: 768px) {
  .c-seihinBtn {
    width: 100%;
  }
  .c-seihinBtn-text {
    gap: 1.4rem;
    padding: 0.75em 0.5em 0.802em;
    font-size: 2.8rem;
  }
  .c-seihinBtn-text:after {
    width: 1rem;
    height: 1rem;
    border-top-width: 4px;
    border-right-width: 4px;
  }
}
.c-sectionTitle {
  color: inherit;
  font-family: "Noto serif JP", sans-serif;
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1;
}

@media only screen and (max-width: 480px) {
  .c-sectionTitle {
    font-size: 4.2rem;
  }
}
.c-bnrList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.6rem;
  width: 100%;
}
.c-bnrList-item {
  display: block;
  width: calc((80% - 1.6rem) / 1);
}
.c-bnrList-anchor {
  display: block;
  width: 100%;
}
.c-bnrList-image {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 480px) {
  .c-bnrList {
    gap: 0.7rem;
  }
  .c-bnrList-item {
    display: block;
    width: 100%;
  }
}
.c-copyright {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  padding-top: 0.22em;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6em;
}
.c-copyright span {
  font-family: "Noto Sans JP", sans-serif;
  color: inherit;
}

@media only screen and (max-width: 768px) {
  .c-copyright {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-select {
  display: block;
  width: 100%;
  padding: 1.2rem;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  border-radius: 4px;
}

@media only screen and (max-width: 480px) {
  .c-select {
    padding: 1rem;
    font-size: 1.4rem;
  }
}
.c-socialBnrList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.8rem;
  width: 100%;
}
.c-socialBnrList-item {
  display: block;
  width: calc((100% - 1.6rem) / 3);
  max-width: 20rem;
}
.c-socialBnrList-anchor {
  display: block;
  width: 100%;
}
.c-socialBnrList-image {
  display: block;
  width: 100%;
  border: 1px solid #fff;
}

/* --- c-fbShareUI --- */
.c-fbShareUI {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 3px;
  font-size: 11px;
  height: 20px;
  text-decoration: none;
  color: #fff;
  padding: 0 6px;
  background: #1877f2;
  border: 0;
}
.c-fbShareUI-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 16px;
  vertical-align: middle;
  font-size: 11px;
  text-align: center;
}
.c-fbShareUI-logo img {
  width: 12px !important;
  height: 12px;
  aspect-ratio: auto 12/12;
  border: 0;
}
.c-fbShareUI-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 600;
  vertical-align: middle;
  text-align: center;
  font-family: Helvetica, Arial, "hiragino kaku gothic pro", meiryo, "ms pgothic", sans-serif;
  line-height: 1.28;
}

.c-footerText {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: 0.22em;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6em;
}

@media only screen and (max-width: 768px) {
  .c-footerText {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-scrollTopBtn {
  display: block;
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #F00;
  outline: none;
  opacity: 1;
  overflow: hidden;
  cursor: pointer;
  z-index: 200;
}
.c-scrollTopBtn:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -6px) rotate(-45deg);
      -ms-transform: translate(-50%, -6px) rotate(-45deg);
          transform: translate(-50%, -6px) rotate(-45deg);
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-top: 6px solid #fff;
  border-right: 6px solid #fff;
}

@media only screen and (max-width: 480px) {
  .c-scrollTopBtn {
    right: 1.2rem;
    bottom: 1.2rem;
    width: 4.2rem;
    height: 4.2rem;
  }
  .c-scrollTopBtn:before {
    -webkit-transform: translate(-50%, -4px) rotate(-45deg);
        -ms-transform: translate(-50%, -4px) rotate(-45deg);
            transform: translate(-50%, -4px) rotate(-45deg);
    width: 1.4rem;
    height: 1.4rem;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
  }
}
/*---------------------------------------------------------------------
    project
---------------------------------------------------------------------*/
.loadingWrap {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.loadingWrap.complete {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s linear 0.4s;
  transition: all 0.4s linear 0.4s;
  z-index: -1;
}
.loadingWrap .text {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s linear 0.4s;
  transition: all 0.4s linear 0.4s;
  text-align: center;
}
.loadingWrap .text span {
  position: relative;
  color: #fff;
  padding: 0 0.1em;
  visibility: hidden;
  opacity: 0;
  -webkit-animation: load 2s ease-in-out 0s;
          animation: load 2s ease-in-out 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  font-family: "Noto serif JP", sans-serif;
  font-size: 4rem;
  font-weight: 900;
}

@-webkit-keyframes load {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes load {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
.p-mainvisual {
  width: 100%;
}
.p-mainvisual-image {
  width: 100%;
}

.p-machineSection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2.4rem;
  width: 100%;
  padding: 4.8rem 1.6rem;
  background-color: #6F0000;
}
.p-machineSection-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
  z-index: 5;
  color: #111130;
}
.p-machineSection-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.6rem;
  width: 100%;
  max-width: 107.4rem;
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 480px) {
  .p-machineSection {
    gap: 1.4rem;
    padding: 2.1rem 1.4rem;
  }
  .p-machineSection-container {
    gap: 1.4rem;
  }
}
.p-movieSection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2.4rem;
  width: 100%;
  padding: 4.8rem 0;
  background-color: #000;
  background-image: url("./../images/pattern/pattern_08.png");
  background-size: 3rem;
}
.p-movieSection-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
  z-index: 5;
  color: #FFF;
}
.p-movieSection-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.6rem;
  width: 100%;
  max-width: 107.4rem;
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 480px) {
  .p-movieSection {
    gap: 1.4rem;
    padding: 2.1rem 0;
  }
  .p-movieSection-container {
    gap: 1.4rem;
  }
}
/* sanseichannelListWrap */
.sanseichannelListWrap {
  overflow: hidden;
}
.sanseichannelListWrap .swiper_ssch {
  position: relative;
}
.sanseichannelListWrap .swiper_ssch .swiper-button-prev,
.sanseichannelListWrap .swiper_ssch .swiper-button-next {
  display: none;
}

.sanseichannelListTitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
  z-index: 5;
  color: #111130;
}

@media screen and (min-width: 769px) {
  .sanseichannelList {
    width: 95%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sanseichannelList li {
    width: calc(100% / 5 - 1% * (5 - 1) / 5);
  }
}
@media screen and (min-width: 1079px) {
  .sanseichannelList {
    width: 90%;
  }
}
.btnPlay {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  -webkit-transition: all 0.1s linear 0s;
  transition: all 0.1s linear 0s;
}
.btnPlay:before, .btnPlay:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.1s linear 0s;
  transition: all 0.1s linear 0s;
  opacity: 0;
}
.btnPlay:before {
  width: 3.2rem;
  height: 3.2rem;
  border: 3px solid #fff;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 8px #333, -1px -1px 8px #333, 1px -1px 8px #333, -1px 1px 8px #333;
          box-shadow: 1px 1px 8px #333, -1px -1px 8px #333, 1px -1px 8px #333, -1px 1px 8px #333;
}
.btnPlay:after {
  width: 0px;
  height: 0px;
  border: 8px solid transparent;
  border-left: 12px solid #fff;
  margin-left: 5px;
  -webkit-filter: drop-shadow(-1px 0 4px #333) drop-shadow(1px 1px 4px #333) drop-shadow(1px -1px 4px #333);
          filter: drop-shadow(-1px 0 4px #333) drop-shadow(1px 1px 4px #333) drop-shadow(1px -1px 4px #333);
}
.btnPlay:hover {
  background: rgba(0, 0, 0, 0.6);
}
.btnPlay:hover:before, .btnPlay:hover:after {
  opacity: 1;
}
.btnPlay.visible:before, .btnPlay.visible:after {
  opacity: 1;
}
.btnPlay img {
  position: relative;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .btnPlay:before, .btnPlay:after {
    opacity: 1;
  }
  .btnPlay:before {
    width: 3.2rem;
    height: 3.2rem;
    border: 3px solid #fff;
    -webkit-box-shadow: 1px 1px 8px #333, -1px -1px 8px #333, 1px -1px 8px #333, -1px 1px 8px #333;
            box-shadow: 1px 1px 8px #333, -1px -1px 8px #333, 1px -1px 8px #333, -1px 1px 8px #333;
  }
  .btnPlay:after {
    width: 0px;
    height: 0px;
    border: 8px solid transparent;
    border-left: 12px solid #fff;
    margin-left: 5px;
    -webkit-filter: drop-shadow(-1px 0 4px #333) drop-shadow(1px 1px 4px #333) drop-shadow(1px -1px 4px #333);
            filter: drop-shadow(-1px 0 4px #333) drop-shadow(1px 1px 4px #333) drop-shadow(1px -1px 4px #333);
  }
  .btnPlay:hover {
    background: transparent;
  }
}
.movieModal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.movieModal .movie {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  max-width: 108rem;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.movieModal .movie:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.movieModal .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movieModal .closeBtn {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
}
.movieModal.active {
  opacity: 1;
  visibility: visible;
}

.closeBtn {
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  overflow: hidden;
  cursor: pointer;
}
.closeBtn:before, .closeBtn:after {
  display: block;
  content: "";
  width: 70%;
  height: 0.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.2rem;
  margin-left: -35%;
  background-color: #fff;
  opacity: 1;
}
.closeBtn:before {
  -webkit-transform: translateY(0) rotate(225deg);
      -ms-transform: translateY(0) rotate(225deg);
          transform: translateY(0) rotate(225deg);
}
.closeBtn:after {
  -webkit-transform: translateY(0) rotate(-225deg);
      -ms-transform: translateY(0) rotate(-225deg);
          transform: translateY(0) rotate(-225deg);
}

.p-bannerSection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2.4rem;
  width: 100%;
  padding: 4.8rem 1.6rem;
  background-color: #000;
}
.p-bannerSection-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
  z-index: 5;
  color: #FFF;
}
.p-bannerSection-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.6rem;
  width: 100%;
  max-width: 107.4rem;
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 480px) {
  .p-bannerSection {
    gap: 1.4rem;
    padding: 2.1rem 1.4rem;
  }
  .p-bannerSection-container {
    gap: 1.4rem;
  }
}
.p-spSocialBannerSection {
  display: none;
}

@media only screen and (max-width: 768px) {
  .p-spSocialBannerSection {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
    padding: 2.1rem 1.4rem;
    background-color: #000;
    border-bottom: 1px solid #404040;
  }
  .p-spSocialBannerSection-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    position: relative;
    z-index: 5;
  }
  .p-spSocialBannerSection-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 1.4rem;
    width: 100%;
    position: relative;
    z-index: 5;
  }
}
.p-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  width: 100%;
  padding: 4.8rem 1.6rem;
  background-color: #000;
 background-image: url("./../images/pattern/pattern_08.png");
  background-size: 3rem;
}
.p-search-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.6rem;
  width: 100%;
  max-width: 80rem;
}
.p-search-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}
.p-search-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-search-machine {
  display: block;
  width: 100%;
}
.p-search-area {
  display: block;
  width: 100%;
}
.p-search-btn {
  display: block;
  padding: 1.2rem 2.4rem;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  background-color: #D09500;
  border-radius: 4px;
  border: none;
  outline: none;
  cursor: pointer;
}
.p-search-text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}

@media only screen and (max-width: 768px) {
  .p-search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-search-title {
    font-weight: 600;
  }
  .p-search-body {
    width: 100%;
  }
  .p-search-btn {
    width: 80%;
    min-width: 28rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-search {
    gap: 2.1rem;
    padding: 2.4rem 1.4rem;
  }
  .p-search-form {
    gap: 1.4rem;
  }
  .p-search-title {
    font-size: 2.1rem;
  }
  .p-search-body {
    gap: 0.7rem;
  }
  .p-search-btn {
    width: 50%;
    padding: 1em 1em 1.052em;
    font-size: 1.4rem;
  }
  .p-search-text {
    font-size: 1.2rem;
  }
}
.p-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 107.9rem;
}
.p-footer-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.p-footer-header-logo {
  width: 8rem;
}
.p-footer-header-copyright {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-footer-bnrList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.p-footer-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .p-footer-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .p-footer-header-logo {
    width: 33%;
    max-width: 14rem;
  }
  .p-footer-header-copyright {
    opacity: 0;
  }
  .p-footer-header-social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .p-footer-footer {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-sharebtnlist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  overflow: hidden;
}
.p-sharebtnlist-item.u-twitter, .p-sharebtnlist-item.u-facebook {
  font-size: 0;
}

/*---------------------------------------------------------------------
    utility
---------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .u-isPC {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .u-isSP {
    display: none;
  }
}
.u-border-white {
  border: 1px solid #fff;
}

.u-bg-dotted-white,
.u-bg-dotted-black,
.u-bg-stripe-white,
.u-bg-stripe-black,
.u-bg-stripe-slanted-white,
.u-bg-stripe-slanted-black,
.u-bg-circlePlus-white,
.u-bg-circlePlus-black,
.u-bg-circlePlus-slanted-white,
.u-bg-circlePlus-slanted-black {
  position: relative;
  overflow: hidden;
}
.u-bg-dotted-white:before,
.u-bg-dotted-black:before,
.u-bg-stripe-white:before,
.u-bg-stripe-black:before,
.u-bg-stripe-slanted-white:before,
.u-bg-stripe-slanted-black:before,
.u-bg-circlePlus-white:before,
.u-bg-circlePlus-black:before,
.u-bg-circlePlus-slanted-white:before,
.u-bg-circlePlus-slanted-black:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.3;
  z-index: 2;
}

.u-bg-dotted-white:before {
  background-image: url("./../images/pattern/pattern_dotted_white.png");
  background-size: 0.8rem;
}

.u-bg-dotted-black:before {
  background-image: url("./../images/pattern/pattern_dotted_black.png");
  background-size: 0.8rem;
}

.u-bg-stripe-white:before {
  background-image: url("./../images/pattern/pattern_stripe_white.png");
  background-size: 1.6rem;
}

.u-bg-stripe-black:before {
  background-image: url("./../images/pattern/pattern_stripe_black.png");
  background-size: 1.6rem;
}

.u-bg-stripe-slanted-white:before {
  background-image: url("./../images/pattern/pattern_stripeSlanted_white.png");
  background-size: 0.8rem;
}

.u-bg-stripe-slanted-black:before {
  background-image: url("./../images/pattern/pattern_stripeSlanted_black.png");
  background-size: 0.8rem;
}

.u-bg-circlePlus-white:before {
  background-image: url("./../images/pattern/pattern_circlePlus_white.png");
  background-size: 2.4rem;
}

.u-bg-circlePlus-black:before {
  background-image: url("./../images/pattern/pattern_circlePlus_black.png");
  background-size: 2.4rem;
}

.u-bg-circlePlus-slanted-white:before {
  background-image: url("./../images/pattern/pattern_circlePlusSlanted_white.png");
  background-size: 4rem;
}

.u-bg-circlePlus-slanted-black:before {
  background-image: url("./../images/pattern/pattern_circlePlusSlanted_black.png");
  background-size: 4rem;
}