@charset "UTF-8";
[data-modal] {
  cursor: pointer;
}

template {
  display: none;
}

.m-modal {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 2000;
  transition: all 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  width: 100vw;
  height: 100%;
  overflow: auto;
  touch-action: none;
  pointer-events: none;
}

.m-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  touch-action: auto;
  pointer-events: auto;
}

.m-modal.is-load-start {
  visibility: visible;
  opacity: 1;
  transition: all 0s cubic-bezier(0.5, 1, 0.89, 1);
  touch-action: auto;
  pointer-events: auto;
}

.m-modal.is-close {
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  touch-action: none;
  pointer-events: none;
}

.m-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.m-modal__bg::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background: #000;
  width: 100%;
  height: 100%;
  content: "";
}

.m-modal__content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72.039%;
  max-width: 159.993vh;
  height: auto;
  font-size: 0;
  text-align: center;
}

[data-modal-type=img] .m-modal__content {
  max-width: 900px;
}

[data-modal-type=template] .m-modal__content {
  max-width: 800px;
}

.is-modal-overflow-prep .m-modal__content {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin: 60px auto;
}

.m-modal__content > * {
  width: 100%;
  height: auto;
}

.m-modal__content > * img {
  backface-visibility: hidden;
  margin: 0 auto;
}

.m-modal__content-bg {
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.m-modal__close {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  opacity: 0;
  transition: opacity 0s linear 1s;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.is-modal-open .m-modal__close {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
}

.m-modal__close-in {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.m-modal__close-in::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: 1px solid #fff;
  width: 133%;
  height: 1px;
  content: "";
}

.m-modal__close-in::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-bottom: 1px solid #fff;
  width: 133%;
  height: 1px;
  content: "";
}
@keyframes arrow {
  0% {
    transform: translate(0, 0);
    opacity: 1;
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    transform: translate(10px, 0);
    opacity: 0;
  }
  26% {
    transform: translate(-10px, 0);
    opacity: 0;
  }
  50% {
    transform: translate(-10px, 0);
    opacity: 0;
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes arrow-l {
  0% {
    transform: scale(-1, 1) translate(0, 0);
    opacity: 1;
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    transform: scale(-1, 1) translate(10px, 0);
    opacity: 0;
  }
  26% {
    transform: scale(-1, 1) translate(-10px, 0);
    opacity: 0;
  }
  50% {
    transform: scale(-1, 1) translate(-10px, 0);
    opacity: 0;
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    transform: scale(-1, 1) translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: scale(-1, 1) translate(0, 0);
    opacity: 1;
  }
}
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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 {
  vertical-align: baseline;
  margin: 0;
  outline: 0;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 100%;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  vertical-align: baseline;
  margin: 0;
  background: transparent;
  padding: 0;
  font-size: 100%;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #cccccc;
  padding: 0;
  height: 1px;
}

input,
select {
  vertical-align: middle;
}

html {
  overflow-x: hidden;
  font-size: 62.5%;
}

*::before,
*::after {
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  background: #000;
  overflow: hidden;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.85px;
  letter-spacing: 0.085rem;
  line-height: 1.3;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a {
  color: #fff;
  text-decoration: none;
}

.clearfix:after {
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  content: " . ";
}

* {
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  background-color: transparent;
  min-height: 1.5em;
}

input[type=submit],
input[type=reset] {
  cursor: pointer;
  width: 80%;
  max-width: 350px;
  color: #fff;
  padding: 2%;
  transition: all 0.4s;
  border: #fff 1px solid;
  border-radius: 3px;
}
input[type=submit]:hover,
input[type=reset]:hover {
  background-color: #ff6243;
  border: #ff6243 1px solid;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=" tel "] {
  display: inline-block;
  color: inherit;
}

ol,
ul {
  list-style: none;
}

.is-narrow {
  display: none !important;
}

.is-narrow-inline {
  display: none !important;
}

img {
  display: block;
  vertical-align: middle;
  width: 100%;
}

img::-moz-selection {
  background: none;
}

img::selection {
  background: none;
}

[data-prefix]::before {
  content: attr(data-prefix);
}

[data-suffix]::after {
  content: attr(data-suffix);
}

/* ====================
Layout
 ==================== */
[data-scroll],
[data-modall] {
  cursor: pointer;
}

.l-wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.l-wrap__loader {
  display: block;
  position: fixed;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 10;
  width: 200px;
  height: 1px;
  overflow: hidden;
}

.is-load .l-wrap__loader {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.l-wrap__loader::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  animation: loader 0.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  background: #ff6243;
  width: 100%;
  height: 100%;
  content: "";
}
@keyframes loader {
  0% {
    transform: translateX(0);
    width: 0%;
  }
  50% {
    transform: translateX(0);
    width: 100%;
  }
  100% {
    transform: translateX(100%);
    width: 100%;
  }
}
.l-wrap__container {
  position: relative;
  z-index: 0;
  width: 100%;
}

.l-header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

.l-header__container {
  display: block;
  position: relative;
}

.l-header__deco {
  transform: translateX(-10px);
  opacity: 0;
  padding-top: 32px;
  padding-left: 30px;
}

.is-load .l-header__deco {
  transform: translateX(0);
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.l-header__deco-text {
  display: block;
  position: relative;
}

.l-header__deco-text img {
  width: auto;
  height: 12px;
}

.l-header__brand {
  display: block;
  position: relative;
  margin-top: 42px;
  margin-left: 28px;
  width: 335px;
}

.l-header__brand::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  background: url("../img/common/logo_common_b.svg") no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
}

.is-light .l-header__brand::before {
  opacity: 1;
}

.l-header__brand img {
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.is-light .l-header__brand img {
  opacity: 0;
}

.l-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 10;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  background: #000;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.is-menu-show .l-nav {
  display: block;
}

.is-menu-open .l-nav {
  opacity: 1;
  pointer-events: auto;
}

.l-nav__bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  filter: blur(20px);
  transition: filter 1.25s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 1.25s cubic-bezier(0.25, 1, 0.5, 1);
  width: calc(50% - 110px);
  height: 100%;
  overflow: hidden;
}

.is-menu-open .l-nav__bg {
  opacity: 1;
  filter: blur(0);
}

.l-nav__bg::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url("../img/common/menu/filter_visual.png") repeat left top;
  background-size: 2px auto;
  width: 100%;
  height: 100%;
  content: "";
}

.l-nav__bg-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.1);
  opacity: 0;
  z-index: 0;
  transition: transform 0s linear 1.8s, opacity 0s linear 1.8s;
  width: 100%;
  height: 100%;
}

.l-nav__bg-img.is-current {
  transform: scale(1);
  opacity: 1;
  z-index: 1;
  transition: transform 20s linear, opacity 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.l-nav__bg-img.-bg1 {
  background: url("../img/common/menu/img_visual-1.jpg") no-repeat 50% 10%;
  background-size: cover;
}

.l-nav__bg-img.-bg2 {
  background: url("../img/common/menu/img_visual-2.jpg") no-repeat 50% 10%;
  background-size: cover;
}

.l-nav__bg-img.-bg3 {
  background: url("../img/common/menu/img_visual-3.jpg") no-repeat 50% 10%;
  background-size: cover;
}

.l-nav__deco {
  display: block;
  position: fixed;
  top: 32px;
  left: 30px;
}

.l-nav__deco-text {
  display: block;
  position: relative;
}

.l-nav__deco-text img {
  width: auto;
  height: 12px;
}

.l-nav__container {
  position: relative;
  margin-left: calc(50% - 110px);
  width: calc(50% + 110px);
  height: 100%;
}

.l-nav__header {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 100%;
}

.l-nav__inner {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 8vh 0 5.4vh;
  width: 76.344%;
  height: 100%;
}

.l-nav__brand {
  position: relative;
  opacity: 0;
  filter: blur(20px);
  transition: filter 1.25s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 1.25s cubic-bezier(0.25, 1, 0.5, 1);
  width: 480px;
}

.is-menu-open .l-nav__brand {
  opacity: 1;
  filter: blur(0);
}

.l-nav__list-item {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.l-nav__list-item + .l-nav__list-item {
  margin-top: 15px;
}

.l-nav__link {
  display: block;
  position: relative;
  overflow: hidden;
  font-family: "Cormorant", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
}

.l-nav__link-text {
  display: inline-block;
  position: relative;
  padding: 9px 0;
}

.l-nav__link-text::before {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  background: #ff6243;
  width: 0;
  height: 2px;
  content: "";
}

[data-ua=pc] .l-nav__link:hover .l-nav__link-text::before {
  left: 0;
  width: 100%;
}

.l-nav__share {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1.25s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.is-menu-open .l-nav__share {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}

.l-side_nav {
  position: fixed;
  top: 50%;
  right: 38px;
  transform: translate(0, -50%);
  z-index: 5;
  width: 36px;
  height: 36px;
}

.l-side_nav__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.l-side_nav__list {
  font-size: 0;
  letter-spacing: -0.4em;
  white-space: nowrap;
}

.l-side_nav__list-item {
  display: inline-block;
  position: relative;
  vertical-align: top;
  transform: translateX(-10px);
  opacity: 0;
  filter: blur(5px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: normal;
}

.l-side_nav__list-item + .l-side_nav__list-item {
  margin-left: 18px;
}

.l-side_nav__list-item:nth-child(1) {
  transition-delay: 0s;
}

.l-side_nav__list-item:nth-child(2) {
  transition-delay: 0.05s;
}

.l-side_nav__list-item:nth-child(3) {
  transition-delay: 0.1s;
}

.l-side_nav__list-item:nth-child(4) {
  transition-delay: 0.15s;
}

.l-side_nav__list-item:nth-child(5) {
  transition-delay: 0.2s;
}

.l-side_nav__list-item:nth-child(6) {
  transition-delay: 0.25s;
}

.l-side_nav__list-item:nth-child(7) {
  transition-delay: 0.3s;
}

.l-side_nav__list-item:nth-child(8) {
  transition-delay: 0.35s;
}

.l-side_nav__list-item:nth-child(9) {
  transition-delay: 0.4s;
}

.l-side_nav__list-item:nth-child(10) {
  transition-delay: 0.45s;
}

.is-scroll-top .l-side_nav__list-item {
  transform: translateX(0);
  opacity: 1;
  filter: blur(0px);
  pointer-events: auto;
}

.l-side_nav__link {
  display: block;
  position: relative;
  padding: 9px 0;
  color: #fff;
  font-family: "Cormorant", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 1;
}

.-top .l-side_nav__link {
  color: #fff;
}

.l-side_nav__link::before {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  background: #ff6243;
  width: 0;
  height: 2px;
  content: "";
}

[data-ua=pc] .l-side_nav__link:hover::before {
  left: 0;
  width: 100%;
}

.l-main {
  position: relative;
  opacity: 0;
  margin: 0 auto;
  width: 100%;
}

.is-load .l-main {
  opacity: 1;
  transition: opacity 2s cubic-bezier(0.25, 1, 0.5, 1);
}

.l-footer {
  position: relative;
  margin: 172px auto 0;
  padding-bottom: 200px;
  width: 100%;
}

.l-footer__container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.l-footer__banner {
  position: relative;
  margin: 0 auto 106px;
  width: 80%;
  max-width: 1180px;
}

.l-footer__visual {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 285px;
}

.l-footer__visual-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  animation: visual-loop 100s linear infinite;
  width: 100%;
  height: 100%;
}
@keyframes visual-loop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -3156.923px 0;
  }
}
@keyframes visual-loop-sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -947.077px 0;
  }
}
.l-footer__logo {
  position: relative;
  margin: -60px auto 0;
  width: 30.037%;
}

.l-footer__nav {
  position: relative;
  margin: 60px auto 0;
  width: 70%;
  max-width: 1380px;
}

.l-footer__share {
  position: relative;
  margin: 186px auto 0;
  width: 70%;
  max-width: 1180px;
}

.l-footer__userdata {
  display: block;
  text-align: center;
  margin-top: 45px;
  font-size: 12px;
}

.l-footer__userdata-link {
  color: #fff;
  opacity: 1;
}

.l-footer__userdata-link:hover {
  opacity: 0.5;
}

.l-footer__copy {
  position: relative;
  margin: 20px auto 0;
  width: 70%;
  max-width: 1180px;
  font-size: 12px;
  text-align: center;
}

/* ====================
Project
 ==================== */
.p-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(10px);
  opacity: 0;
  z-index: 15;
  cursor: pointer;
  padding: 50px 32px;
  width: 110px;
  height: 110px;
}

.is-load .p-menu {
  transform: translateX(0);
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-menu__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-menu__bar {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1.5px;
}

.p-menu__bar.-open.-bar1 {
  top: 0;
}

.p-menu__bar.-open.-bar2 {
  top: 100%;
}

.p-menu__bar.-close.-bar1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 133%;
}

.p-menu__bar.-close.-bar2 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 133%;
}

.p-menu__bar::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: left center;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  background: #ff6243;
  width: 100%;
  height: 100%;
  content: "";
}

.p-menu__bar.-open::before {
  left: 0;
  opacity: 0;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s, opacity 0s linear 1s;
  width: 100%;
}

.is-menu-open .p-menu__bar.-open::before {
  right: 0;
  left: auto;
  opacity: 1;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s, opacity 0s linear 0s;
  width: 0;
}

.p-menu__bar.-close::before {
  right: 0;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s, opacity 0s linear 0s;
  width: 0;
}

.is-menu-open .p-menu__bar.-close::before {
  left: 0;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s, opacity 0s linear 1s;
  width: 100%;
}

.p-menu__bar::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: left center;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  background: white;
  width: 100%;
  height: 100%;
  content: "";
}

.is-light:not(.is-menu-open) .p-menu__bar::after {
  background: black;
}

.p-menu__bar.-open::after {
  left: 0;
  transition-delay: 0.3s;
  width: 100%;
}

.is-menu-open .p-menu__bar.-open::after {
  right: 0;
  left: auto;
  opacity: 1;
  transition-delay: 0.1s;
  width: 0;
}

.p-menu__bar.-close::after {
  right: 0;
  transition-delay: 0.1s;
  width: 0;
}

.is-menu-open .p-menu__bar.-close::after {
  left: 0;
  transition-delay: 0.3s;
  width: 100%;
}

.p-nav_share {
  display: block;
  position: relative;
}

.p-nav_share__cap {
  display: block;
  font-family: "Cormorant", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-size: 13px;
  line-height: 1;
}

.p-nav_share__list {
  display: flex;
  justify-content: center;
}

.p-nav_share__list-item {
  display: block;
  position: relative;
  width: 20px;
}

.p-f-banner {
  position: relative;
  width: 100%;
}

.p-f-banner__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-f-banner__list-item {
  display: block;
  position: relative;
  width: 30%;
}

.p-f-banner__link {
  display: block;
  position: relative;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-ua=pc] .p-f-banner__link:hover {
  opacity: 0.6;
}

.p-f-nav {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-f-nav__list {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.p-f-nav__list-item {
  display: block;
  position: relative;
  margin-bottom: 10px;
}

.p-f-nav__text {
  display: block;
  position: relative;
  font-family: "Cormorant", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}

.p-f-nav__text::before {
  display: block;
  position: absolute;
  right: 0;
  bottom: -5px;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  background: #ff6243;
  width: 0;
  height: 1px;
  content: "";
}

[data-ua=pc] .p-f-nav__text:hover::before {
  left: 0;
  width: 100%;
}

.p-f-share {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-f-share__list {
  display: flex;
  justify-content: center;
}

.p-f-share__list-item {
  display: block;
  position: relative;
  width: 24px;
}

.p-f-share__list-item + .p-f-share__list-item {
  margin-left: 20px;
}

.p-f-share__link {
  display: block;
  position: relative;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-ua=pc] .p-f-share__link:hover {
  opacity: 0.6;
}

.p-anchor__bnr {
  position: fixed;
  bottom: 28px;
  left: 34px;
  transform: translateX(-10px);
  opacity: 0;
  z-index: 5;
}

.is-load .p-anchor__bnr {
  transform: translateX(0);
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-anchor__share {
  position: fixed;
  right: 40px;
  bottom: 28px;
  transform: translateX(10px);
  opacity: 0;
  z-index: 5;
}

.is-load .p-anchor__share {
  transform: translateX(0);
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-bnr {
  position: relative;
  width: 225px;
}

.p-bnr__list {
  position: relative;
  width: 100%;
  font-size: 0;
  letter-spacing: -0.4em;
  white-space: nowrap;
}

.p-bnr__list-item {
  display: inline-block;
  vertical-align: top;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: normal;
}

.p-bnr__list-item.is-pc-hide {
  display: none;
}

.-top .p-bnr__list-item.is-pc-hide {
  display: inline-block;
}

.p-bnr__link {
  display: block;
  position: relative;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-ua=pc] .p-bnr__link:hover {
  opacity: 0.6;
}

.p-bnr__pagination {
  display: flex;
  display: none !important;
  position: relative;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
}

.p-bnr__pagination-item {
  border-radius: 50%;
  background: #fff;
  width: 7px;
  height: 7px;
}

.p-bnr__pagination-item.is-current {
  background: #ff6243;
}

.p-bnr__pagination-item + .p-bnr__pagination-item {
  margin-left: 12px;
}

.p-anchor_share {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
}

.p-anchor_share__cap {
  display: block;
  position: relative;
  transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  margin-right: 20px;
  font-family: "Cormorant", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-size: 13px;
}

.is-scroll-top .-top .p-anchor_share__cap {
  color: #000;
}

.p-anchor_share__list {
  display: flex;
  justify-content: center;
}

.p-anchor_share__list-item {
  display: block;
  position: relative;
  width: 20px;
}

.p-anchor_share__list-item + .p-anchor_share__list-item {
  margin-left: 25px;
}

.p-anchor_share__link {
  display: block;
  position: relative;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-ua=pc] .p-anchor_share__link:hover {
  opacity: 0.6;
}

.p-anchor_share img.is-bk {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.is-scroll-top .-top .p-anchor_share img.is-bk {
  opacity: 1;
}

/* ====================
COMPONENT
 ==================== */
.topic_pager {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.topic_pager .page-numbers {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
.topic_pager .page-numbers a {
  display: block;
  position: relative;
  transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 30px;
  color: #ff6243;
  font-family: "Inter", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  text-align: center;
}
.topic_pager .page-numbers a:hover {
  color: #fff;
}

.is-current a {
  color: #fff !important;
}

.l-top {
  position: relative;
  margin: 0 auto;
  background: #000;
  width: 100%;
}

.p-hero {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
}

.p-hero__bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-hero__bg-kv {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/top/main/img_main.jpg") no-repeat 50% 4%;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.p-hero__container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: calc(100vh - 110px);
  min-height: 600px;
}

.p-hero__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80.586%;
  height: 100%;
}

.p-hero__logo {
  position: relative;
  width: 60%;
  max-width: 580px;
}

.p-hero__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80.586%;
  height: calc(100vh - 110px);
  min-height: 600px;
}

@supports (mix-blend-mode: difference) {
  .p-hero__catch {
    mix-blend-mode: difference;
  }
}
.p-hero__catch-logo {
  display: block;
  position: absolute;
  top: -26px;
  right: 12px;
  width: 42px;
}

.p-hero__catch-svg {
  display: block;
  position: relative;
  width: 42px;
}

.p-hero__catch-path {
  fill: #000;
  fill-rule: nonzero;
}

@supports (mix-blend-mode: difference) {
  .p-hero__catch-path {
    fill: #fff;
  }
}
.p-hero__bnr {
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 259px;
  z-index: 5;
}

.p-hero__bnr-item {
  display: block;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  margin-left: 20px;
  width: 225px;
}

[data-ua=pc] .p-hero__bnr-item:hover {
  opacity: 0.6;
}

.p-t-bnr {
  position: relative;
  margin: 70px auto 0;
  width: 100%;
}

.p-t-bnr__container {
  position: relative;
  margin: 0 auto;
  width: 80%;
  max-width: 950px;
}

.p-t-bnr__list {
  position: relative;
  margin: 0 auto -10px;
  width: 100%;
}

.p-t-bnr__list-item {
  display: block;
  position: relative;
}

.p-t-bnr__link {
  display: block;
  position: relative;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-ua=pc] .p-t-bnr__link:hover {
  opacity: 0.6;
}

.p-headline {
  position: relative;
  margin: 92px auto 0;
  width: 100%;
}

.p-headline__container {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}

.p-headline__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-headline__list-item {
  position: relative;
}

.p-headline__footer {
  position: relative;
  margin: 50px auto 0;
  width: 100%;
  text-align: right;
}

.p-headline__btn {
  display: inline-block;
  position: relative;
}

.p-headline__btn-text {
  display: block;
  position: relative;
  transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  padding-left: 100px;
  font-family: "Cormorant", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-size: 18px;
}

[data-ua=pc] .p-headline__btn:hover .p-headline__btn-text {
  color: #ff6243;
}

.p-headline__btn-text::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1), left 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  background: #ff6243;
  width: 85px;
  height: 1px;
  content: "";
}

[data-ua=pc] .p-headline__btn:hover .p-headline__btn-text::before {
  left: 35px;
  width: 50px;
}

.p-headline_data {
  display: block;
  position: relative;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0 24px 10px;
  width: 100%;
}

[data-ua=pc] .p-headline_data:hover {
  opacity: 0.6;
}

.p-headline_data::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #ff6243;
  width: 2px;
  height: 100%;
  content: "";
}

.p-headline_data__date {
  position: relative;
  margin: 0 auto 12px;
  width: 100%;
  color: #ff6243;
  font-family: "Inter", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1.2px;
  line-height: 1;
}

.p-headline_data__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 1.7;
}

.p-story {
  position: relative;
  margin: 222px auto 0;
  width: 100%;
}

.p-story__container {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1360px;
}

.p-story__header {
  position: relative;
  margin: 0 auto 32px;
  width: 100%;
}

.p-story__lead {
  position: relative;
  margin: 0 auto;
  width: 48.088%;
}

.p-story__deco {
  position: relative;
  margin: 45px auto 0;
  width: 6.618%;
}

.p-story__inner {
  position: relative;
  width: 92.941%;
}

.p-story__catch {
  position: relative;
  z-index: 1;
  width: 92.405%;
}

.p-story__visual {
  position: relative;
  width: 100%;
}

.p-story__visual-in {
  position: relative;
  opacity: 0;
  filter: blur(20px);
  transition: filter 1.25s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 1.25s cubic-bezier(0.25, 1, 0.5, 1);
  width: 74.8vw;
  overflow: hidden;
}

.is-active .p-story__visual-in {
  opacity: 1;
  filter: blur(0);
}

.p-story__visual-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.05);
  width: 100%;
  height: 100%;
}

.is-active .p-story__visual-img {
  transform: scale(1);
  transition: transform 10s linear;
}

.p-story__in {
  width: 100%;
}

.p-story__footer {
  position: relative;
  width: 100%;
}

.p-story__ss {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-story__ss-img {
  display: block;
  position: relative;
  opacity: 0;
  filter: blur(20px);
  overflow: hidden;
}

.p-story__ss-img.is-active {
  opacity: 1;
  filter: blur(0);
  transition: filter 1.25s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 1.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-story__ss-img.-ss1 {
  width: 42.279%;
}

.p-story__ss-img.-ss2 {
  width: 26.838%;
}

.p-story__ss-img.-ss2 img {
  transform: scale(1.05);
}

.is-active .p-story__ss-img.-ss2 img {
  transform: scale(1);
  transition: transform 10s linear;
}

.p-story_in {
  position: relative;
  width: 100%;
}

.p-story_in__header {
  position: relative;
  margin: 0 auto 70px;
  width: 100%;
}

.p-story_in__title {
  position: relative;
  width: 31.646%;
}

.p-story_in__inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-story_in__text {
  display: block;
  position: relative;
  font-size: 14px;
  letter-spacing: 1.2px;
  line-height: 1.9;
}

.p-story_in__catch {
  display: block;
  position: relative;
  width: 71.835%;
}

.p-movie {
  position: relative;
  margin: 110px auto 0;
  width: 100%;
}

.p-movie__container {
  position: relative;
  opacity: 0;
  filter: blur(20px);
  transition: filter 1.25s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 1.25s cubic-bezier(0.25, 1, 0.5, 1);
  margin: 0 auto;
  width: 70%;
  max-width: 1000px;
}

.is-active .p-movie__container {
  opacity: 1;
  filter: blur(0);
}

.p-movie__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
  font-size: 0;
  letter-spacing: -0.4em;
  white-space: nowrap;
}

.p-movie__list-item {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: normal;
}

.p-movie__nav {
  position: absolute;
  top: 50%;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  width: 65px;
}

.p-movie__nav.is-disable {
  display: none;
}

[data-ua=pc] .p-movie__nav:hover {
  opacity: 0.6;
}

.p-movie__nav.-prev {
  left: -130px;
  transform: translate(-50%, -50%);
}

.p-movie__nav.-next {
  right: -130px;
  transform: translate(50%, -50%);
}

.p-movie_data {
  display: block;
  position: relative;
  width: 100%;
}

.p-movie_data__thumb {
  display: block;
  position: relative;
  padding-top: 56.4%;
  width: 100%;
  overflow: hidden;
}

.p-movie_data__thumb::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: url("../img/top/movie/icon_play.svg") no-repeat center;
  background-size: contain;
  width: 124px;
  height: 124px;
  content: "";
}

.p-movie_data__thumb::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  background: url("../img/top/movie/icon_play-circle.svg") no-repeat center;
  background-size: contain;
  width: 124px;
  height: 124px;
  content: "";
}

[data-ua=pc] .p-movie_data:hover .p-movie_data__thumb::after {
  transform: translate(-50%, -50%) scale(1.2);
}

.p-movie_data__thumb-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.p-movie_data__thumb-img::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/top/movie/filter_movie.png") repeat left top;
  background-size: 4px auto;
  width: 100%;
  height: 100%;
  content: "";
}

.p-chara {
  position: relative;
  z-index: 0;
  margin: 250px auto 0;
  background: #e6e6e6;
  width: 100%;
  color: #000;
}

.p-chara__container {
  position: relative;
  margin: 0 auto;
  padding-bottom: 110px;
  width: 90%;
  max-width: 1310px;
}

.p-chara__header {
  position: relative;
  margin: 0 auto 64px;
  width: 100%;
}

.p-chara__title {
  position: relative;
  top: -88px;
  margin: 0 auto -88px;
  width: 100%;
  text-align: right;
}

.p-chara__title-img {
  display: inline-block;
  width: 51.527%;
}

.p-chara__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-chara__list-item {
  display: block;
  position: relative;
  opacity: 0;
  filter: blur(20px);
  width: 46.5%;
}

.is-active .p-chara__list-item {
  opacity: 1;
  filter: blur(0);
  transition: filter 1.25s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 1.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.is-active .p-chara__list-item:nth-child(1) {
  transition-delay: 0.2s, 0s;
}

.is-active .p-chara__list-item:nth-child(2) {
  transition-delay: 0.25s, 0.05s;
}

.is-active .p-chara__list-item:nth-child(3) {
  transition-delay: 0.3s, 0.1s;
}

.is-active .p-chara__list-item:nth-child(4) {
  transition-delay: 0.35s, 0.15s;
}

.is-active .p-chara__list-item:nth-child(5) {
  transition-delay: 0.4s, 0.2s;
}

.is-active .p-chara__list-item:nth-child(6) {
  transition-delay: 0.45s, 0.25s;
}

.is-active .p-chara__list-item:nth-child(7) {
  transition-delay: 0.5s, 0.3s;
}

.is-active .p-chara__list-item:nth-child(8) {
  transition-delay: 0.55s, 0.35s;
}

.is-active .p-chara__list-item:nth-child(9) {
  transition-delay: 0.6s, 0.4s;
}

.is-active .p-chara__list-item:nth-child(10) {
  transition-delay: 0.65s, 0.45s;
}

.p-chara__inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-chara_data {
  display: block;
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-chara_data__header {
  position: absolute;
  top: 0;
  right: 0;
  width: 36.601%;
  height: 100%;
}

.p-chara_data__visual {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-40%, -4%);
  width: 135%;
  max-width: 300px;
}

.p-chara_data__inner {
  position: relative;
  width: 100%;
}

.p-chara_data__name {
  display: block;
  position: relative;
}

.p-chara_data__name-img {
  display: block;
  position: relative;
}

.p-chara_data__name-img img {
  display: block;
  position: relative;
}

.p-chara_data__description {
  display: block;
  position: relative;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 1.5px;
  line-height: 1.8;
}

.p-chara_data__ss {
  position: relative;
  margin-top: 22px;
  width: 68.528%;
}

.p-chara_data__cast {
  position: relative;
  z-index: 1;
  margin: 28px auto 0;
  width: 100%;
}

.p-chara_data_cast {
  display: flex;
  position: relative;
  justify-content: center;
  border-top: 1px dashed #000;
  border-bottom: 1px dashed #000;
  padding: 17px 0;
  width: 100%;
}

.p-chara_data_cast__header {
  position: relative;
  margin-right: 7.614%;
  width: 32.995%;
}

.p-chara_data_cast__thumb {
  position: relative;
  border-radius: 50%;
  padding-top: 100%;
  width: 100%;
  overflow: hidden;
}

.p-chara_data_cast__thumb-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-chara_data_cast__inner {
  display: block;
  position: relative;
  width: 57.107%;
}

.p-chara_data_cast__name {
  display: block;
  position: relative;
  width: 82.667%;
}

.p-chara_data_cast__btn {
  display: block;
  position: relative;
  margin-top: 18px;
  width: 100.444%;
}

.p-chara_data_cast__btn-text {
  display: block;
  position: relative;
  max-width: 220px;
  transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  border-radius: 5px;
  padding: 20px;
  color: #ff6243;
  font-family: "Inter", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
  line-height: 1;
}

[data-ua=pc] .p-chara_data_cast__btn-text:hover {
  background: #ff6243;
  color: #fff;
}

.p-chara_data_cast__btn-text::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #ff6243;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  content: "";
}

.p-cast_modal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 20;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  background: #e6e6e6;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  pointer-events: none;
}

.is-cast-modal-open .p-cast_modal {
  opacity: 1;
  pointer-events: auto;
}

.p-cast_modal__in {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.p-cast_modal__container {
  position: relative;
  margin: 0 auto;
  padding: 11% 0;
  width: 90%;
  max-width: 1000px;
}

.p-cast_modal__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-cast_modal__list-item {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-cast_modal__list-item + .p-cast_modal__list-item {
  margin-top: 86px;
}

.p-cast_modal__close {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  opacity: 0;
  transition: opacity 0s linear 1s;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.is-cast-modal-open .p-cast_modal__close {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
}

.p-cast_modal__close-in {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-cast_modal__close-in::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: 1px solid #000;
  width: 133%;
  height: 1px;
  content: "";
}

.p-cast_modal__close-in::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-bottom: 1px solid #000;
  width: 133%;
  height: 1px;
  content: "";
}

.p-cast_modal_data {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-cast_modal_data__container {
  position: relative;
  width: 100%;
}

.p-cast_modal_data__header {
  position: relative;
  width: 43%;
}

.p-cast_modal_data__inner {
  position: relative;
  width: 50%;
}

.p-cast_modal_data__cap {
  position: relative;
  margin-bottom: 24px;
  width: 37%;
}

.p-cast_modal_data__name {
  display: block;
  position: relative;
}

.p-cast_modal_data__name img {
  width: auto;
  height: 62px;
}

.p-cast_modal_data__text {
  position: relative;
  margin-top: 42px;
  width: 100%;
  color: #000;
  font-size: 14px;
  line-height: 1.8;
}

.p-staff {
  position: relative;
  margin: 162px auto 0;
  width: 100%;
}

.p-staff__container {
  position: relative;
  margin: 0 auto;
  width: 70%;
  max-width: 1180px;
}

.p-staff__header {
  position: relative;
  margin: 0 auto 22px;
  width: 100%;
}

.p-staff__visual {
  position: relative;
  width: 100%;
}

.p-staff__visual-in {
  opacity: 0;
  filter: blur(20px);
}

.is-active .p-staff__visual-in {
  opacity: 1;
  filter: blur(0);
  transition: filter 1.25s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 1.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-staff__visual-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.05);
  width: 100%;
  height: 100%;
}

.is-active .p-staff__visual-img {
  transform: scale(1);
  transition: transform 10s linear;
}

.p-staff__title {
  display: block;
  position: relative;
  left: -1%;
  margin-top: -54px;
}

.p-staff__title-img {
  display: inline-block;
  position: relative;
  width: 28.814%;
}

.p-staff__inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-staff__text {
  position: relative;
  width: 90%;
}

.p-staff__about {
  position: relative;
  margin: 120px auto 0;
  width: 100%;
}

.p-staff_about {
  position: relative;
  cursor: pointer;
  width: 100%;
}

.p-staff_about__visual {
  display: block;
  position: relative;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 142.712%;
}

[data-ua=pc] .p-staff_about:hover .p-staff_about__visual {
  opacity: 0.6;
}

.p-staff_about__cap {
  position: absolute;
  top: 45%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 226px;
}

.p-staff_about__more {
  position: absolute;
}

.p-staff_about__more-text {
  display: inline-block;
  position: relative;
  padding-left: 100px;
  font-family: "Cormorant", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-size: 18px;
}

.p-staff_about__more-text::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: #ff6243;
  width: 85px;
  height: 1px;
  content: "";
}

.p-about_modal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 20;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  background: #000;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.is-about-modal-open .p-about_modal {
  opacity: 1;
  pointer-events: auto;
}

.p-about_modal::before {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: url("../img/top/staff/bg_staff-about.jpg") no-repeat right top;
  background-size: 58% auto;
  width: 100%;
  height: 100%;
  content: "";
}

.p-about_modal__in {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.p-about_modal__container {
  position: relative;
  margin: 0 auto;
  padding: 8% 0;
  width: 90%;
  max-width: 1000px;
}

.p-about_modal__header {
  position: relative;
  margin: 0 auto 100px;
  width: 100%;
}

.p-about_modal__cap {
  position: relative;
  width: 35.4%;
}

.p-about_modal__inner {
  position: relative;
  width: 100%;
}

.p-about_modal__official-item {
  display: block;
  position: relative;
  width: 26px;
}

.p-about_modal__official-link {
  display: block;
  position: relative;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-ua=pc] .p-about_modal__official-link:hover {
  opacity: 0.6;
}

.p-about_modal__data {
  position: relative;
  margin: 0 auto;
  width: 100%;
  font-size: 14px;
  letter-spacing: 1.5px;
  line-height: 2.2;
}

.p-about_modal__data-text {
  position: relative;
  width: 100%;
}

.p-about_modal__comment {
  position: relative;
  margin-top: 66px;
  width: 100%;
}

.p-about_modal__comment-cap {
  position: relative;
  margin-bottom: 18px;
  width: 180px;
}

.p-about_modal__comment-text {
  position: relative;
  margin: 0 auto;
  width: 100%;
  font-size: 14px;
  letter-spacing: 1.5px;
  line-height: 2.2;
}

.p-about_modal__close {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  opacity: 0;
  transition: opacity 0s linear 1s;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.is-about-modal-open .p-about_modal__close {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
}

.p-about_modal__close-in {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-about_modal__close-in::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: 1px solid #fff;
  width: 133%;
  height: 1px;
  content: "";
}

.p-about_modal__close-in::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-bottom: 1px solid #fff;
  width: 133%;
  height: 1px;
  content: "";
}

.l-in {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.l-in__container {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}

.l-in__header {
  position: relative;
  margin: 0 auto 50px;
  width: 100%;
}

.l-in__title {
  position: relative;
  margin: 0 auto;
  width: 42%;
}

.-ticket .l-in__title {
  width: 85%;
}

.l-in__inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.l-in__inner::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
  background: #e6e6e6;
  width: 100vw;
  height: calc(100% + 120px);
}

.-comment .l-in__inner::before {
  content: "";
}

.p-news {
  position: relative;
  margin-top: 132px;
  width: 100%;
}
.p-news__header {
  position: relative;
  margin: 0 auto 120px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .p-news__header {
    margin-bottom: 50px;
  }
}
.p-news__category {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .p-news__category {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.p-news__category-item {
  display: block;
  position: relative;
  transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  color: #ff6243;
  font-family: "Inter", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .p-news__category-item {
    margin-top: 20px;
  }
}
.p-news__category-item:hover {
  color: #fff;
}
.p-news__category-item.is-current {
  color: #fff !important;
  cursor: auto;
}
.p-news__category-item.is-current::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.p-news__contact-top {
  max-width: 800px;
  margin: 0 auto 50px;
}
.p-news__contact-top .desc {
  line-height: 1.5em;
  font-size: 1.1em;
}
@media screen and (max-width: 960px) {
  .p-news__contact-top .desc {
    font-size: 0.9em;
  }
}
.p-news__contact-btm {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-news__contact-btm {
    width: auto;
  }
}
.p-news__contact-btm .tbl_base {
  width: 100%;
}
.p-news__contact-btm tr {
  display: flex;
  margin-bottom: 2em;
}
@media screen and (max-width: 960px) {
  .p-news__contact-btm tr {
    flex-direction: column;
  }
}
.p-news__contact-btm tr th {
  width: 25%;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .p-news__contact-btm tr th {
    width: auto;
    margin-bottom: 10px;
    font-size: 0.9em;
  }
}
.p-news__contact-btm tr th .clrred {
  color: #ff6243;
  margin-left: 5px;
}
.p-news__contact-btm tr td {
  width: 75%;
}
@media screen and (max-width: 960px) {
  .p-news__contact-btm tr td {
    width: auto;
  }
}
.p-news__contact-btm tr td input {
  width: 100%;
  padding: 2%;
  border: solid 1px #fff;
  border-radius: 3px;
  color: #fff;
}
.p-news__contact-btm tr td textarea {
  width: 100%;
  padding: 2%;
  border: solid 1px #fff;
  border-radius: 3px;
  color: #fff;
}
.p-news__contact-btm .contact_btn {
  text-align: center;
}

.p-news__container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-news__inner {
  position: relative;
  width: 100%;
}

.p-news__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-news__list-item {
  position: relative;
  width: 100%;
}

.p-news__list-item + .p-news__list-item {
  margin-top: 45px;
}

.p-news__footer {
  position: relative;
  margin: 120px auto 0;
  width: 100%;
}

.p-news_data {
  display: block;
  position: relative;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0 24px 28px;
  width: 100%;
}

[data-ua=pc] .p-news_data:hover {
  opacity: 0.6;
}

.p-news_data::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #ff6243;
  width: 2px;
  height: 100%;
  content: "";
}

.p-news_data__date {
  position: relative;
  margin: 0 auto 12px;
  width: 100%;
  color: #ff6243;
  font-family: "Inter", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1.2px;
  line-height: 1;
}

.p-news_data__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  font-size: 20px;
  letter-spacing: 1.8px;
  line-height: 1.7;
}

.p-news_in {
  position: relative;
  margin-top: 132px;
  width: 100%;
}

.p-news_in__header {
  position: relative;
  margin: 0 auto 108px;
  width: 100%;
}

.p-news_in__date {
  position: relative;
  margin: 0 auto 12px;
  width: 100%;
  color: #ff6243;
  font-family: "Inter", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1.2px;
  line-height: 1;
}

.p-news_in__title {
  position: relative;
  margin: 0 auto;
  width: 100%;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1.7;
}

.p-news_in__inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-news_in__text {
  position: relative;
  margin: 0 auto;
  width: 100%;
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: 1.8;
}

.p-news_in__text img {
  width: auto;
  max-width: 100% !important;
  height: auto !important;
}

.p-news_in__text a {
  transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border-bottom: 1px solid #ff6243;
  color: #fff;
}

[data-ua=pc] .p-news_in__text a:hover {
  color: #ff6243;
}

.p-news_in__text u {
  border: none !important;
  text-decoration: none !important;
}

.p-news_in__text iframe {
  width: auto;
  max-width: 100% !important;
  height: auto;
}

.p-news_in__footer {
  position: relative;
  margin: 160px auto 0;
  width: 100%;
}

.p-news_in__back {
  position: relative;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.p-news_in__back-text {
  display: inline-block;
  position: relative;
  transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0 40px;
  color: #ff6243;
  font-size: 16px;
}

[data-ua=pc] .p-news_in__back-text:hover {
  color: #fff;
}

.p-ticket {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-ticket__container {
  position: relative;
  width: 100%;
}

.p-ticket__header {
  position: relative;
  margin: 0 auto 64px;
  width: 100%;
}

.p-ticket__novelty {
  position: relative;
  margin: 0 auto 128px;
  width: 100%;
  max-width: 900px;
}

.p-ticket__lead {
  position: relative;
  margin: 0 auto 28px;
  width: 288px;
}

.p-ticket__price {
  position: relative;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.p-ticket__price-main {
  display: block;
  position: relative;
  font-size: 26px;
}

.p-ticket__price-sub {
  margin-top: 6px;
  font-size: 15px;
}

.p-ticket__note {
  margin-top: 18px;
  font-size: 14px;
  text-align: center;
}

.p-ticket__inner {
  position: relative;
  margin: 0 auto;
  padding: 45px 42px 65px;
  width: 100%;
}

.p-ticket__inner::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  content: "";
}

.p-ticket__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-ticket__list::before {
  display: block;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 1px;
  height: 100%;
}

.p-ticket__list-item {
  display: block;
  position: relative;
  width: 45%;
}

.p-ticket_novelty {
  display: flex;
  position: relative;
  align-items: center;
  margin: 0 auto;
  padding: 40px;
  width: 100%;
}

.p-ticket_novelty::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  content: "";
}

.p-ticket_novelty__img {
  display: block;
  position: relative;
  margin-right: 25px;
  width: 48.78%;
}

.p-ticket_novelty__inner {
  display: block;
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

.p-ticket_novelty__cap {
  position: relative;
  margin: 0 auto 20px;
  background: #fff;
  padding: 12px 10px;
  width: 100%;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
}

.p-ticket_novelty__text {
  display: block;
  position: relative;
  font-size: 13px;
  letter-spacing: 1.5px;
  line-height: 1.8;
  text-align: left;
}

.p-ticket_data {
  display: block;
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-ticket_data__header {
  position: relative;
  margin: 0 auto 40px;
  width: 100%;
}

.p-ticket_data__cap {
  position: relative;
  margin: 0 auto 28px;
  background: #fff;
  padding: 12px 10px;
  width: 100%;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
}

.p-ticket_data__description {
  position: relative;
  margin: 0 auto;
  width: 100%;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-align: center;
}

.p-ticket_data__img {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.-ticket1 .p-ticket_data__img {
  width: 58.353%;
}

.-ticket2 .p-ticket_data__img {
  width: 44.706%;
}

.p-ticket_data__img-cap {
  position: absolute;
  top: 23%;
  right: 0;
  transform: translate(50%, -50%);
  width: 65.789%;
}

.p-ticket_data__link {
  position: relative;
  margin: 54px auto 0;
  width: 100%;
}

.p-ticket_data__link-item {
  position: relative;
  width: 100%;
}

.p-ticket_data__link-item + .p-ticket_data__link-item {
  margin-top: 18px;
}

.p-ticket_data__btn {
  display: block;
  position: relative;
  width: 100%;
}

.p-ticket_data__btn-text {
  display: block;
  position: relative;
  transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 5px;
  padding: 18px 10px;
  color: #ff6243;
  font-family: "Inter", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
  text-align: center;
}

[data-ua=pc] .p-ticket_data__btn-text:hover {
  background: #ff6243;
  color: #fff;
}

.p-ticket_data__btn-text::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #ff6243;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  content: "";
}

.p-comment {
  position: relative;
  z-index: 0;
  margin: 0 auto;
  width: 100%;
}

.p-comment__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-comment__list-item {
  display: block;
  position: relative;
  opacity: 0;
  filter: blur(20px);
  width: 46.5%;
}

.is-load .p-comment__list-item {
  opacity: 1;
  filter: blur(0);
  transition: filter 1.25s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 1.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.is-load .p-comment__list-item:nth-child(1) {
  transition-delay: 0.2s, 0s;
}

.is-load .p-comment__list-item:nth-child(2) {
  transition-delay: 0.25s, 0.05s;
}

.is-load .p-comment__list-item:nth-child(3) {
  transition-delay: 0.3s, 0.1s;
}

.is-load .p-comment__list-item:nth-child(4) {
  transition-delay: 0.35s, 0.15s;
}

.is-load .p-comment__list-item:nth-child(5) {
  transition-delay: 0.4s, 0.2s;
}

.is-load .p-comment__list-item:nth-child(6) {
  transition-delay: 0.45s, 0.25s;
}

.is-load .p-comment__list-item:nth-child(7) {
  transition-delay: 0.5s, 0.3s;
}

.is-load .p-comment__list-item:nth-child(8) {
  transition-delay: 0.55s, 0.35s;
}

.is-load .p-comment__list-item:nth-child(9) {
  transition-delay: 0.6s, 0.4s;
}

.is-load .p-comment__list-item:nth-child(10) {
  transition-delay: 0.65s, 0.45s;
}

.p-comment_data {
  display: block;
  position: relative;
  margin: 0 auto;
  padding-left: 40px;
  width: 100%;
}

.p-comment_data::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #ff6243;
  width: 1px;
  height: 100%;
  content: "";
}

.p-comment_data__inner {
  position: relative;
  width: 100%;
}

.p-comment_data__name {
  display: block;
  position: relative;
}

.p-comment_data__name-img {
  display: block;
  position: relative;
}

.p-comment_data__name-img img {
  display: block;
  position: relative;
}

.p-comment_data__text {
  display: block;
  position: relative;
  margin-top: 20px;
  color: #000;
  font-size: 13px;
  letter-spacing: 1.5px;
  line-height: 1.8;
}

.p-bddvd {
  position: relative;
  margin: 0 auto;
  letter-spacing: 0.8px;
  text-align: left;
}

.p-bddvd__in {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-bddvd__header {
  position: relative;
  margin: 0 auto 42px;
  width: 100%;
}

.p-bddvd__title {
  display: block;
  position: relative;
  transform: scale(0.8, 1);
  transform-origin: center bottom;
  color: #fff;
  font-family: "Cormorant", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.3;
  text-align: center;
}

.p-bddvd__description {
  position: relative;
  margin: 12px auto 0;
  width: 100%;
  font-size: 14px;
  line-height: 2;
}

.p-bddvd__inner {
  position: relative;
  width: 100%;
}

.p-bddvd__footer {
  position: relative;
  margin-top: 67px;
  width: 100%;
}

.p-bddvd_in {
  position: relative;
  margin: 0 auto;
  border: 1px solid #fff;
  padding: 40px;
  width: 100%;
}

.p-bddvd_in + .p-bddvd_in {
  margin-top: 20px;
}

.p-bddvd_in__type {
  display: block;
  position: relative;
  margin-bottom: 40px;
  background: #fff;
  padding: 11px 12px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.p-bddvd_in__container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-bddvd_in__header {
  position: relative;
  margin-right: 38px;
  width: 330px;
}

.p-bddvd_in__img {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-bddvd_in__img img {
  width: 100%;
}

.p-bddvd_in__btn {
  position: relative;
  margin: 24px auto 0;
  width: 100%;
}

.p-bddvd_in__btn + .p-bddvd_in__btn {
  margin-top: 10px;
}

.p-bddvd_in__btn-text {
  display: block;
  position: relative;
  cursor: pointer;
  border: 2px solid #ff6243;
  border-radius: 5px;
  padding: 15px;
  color: #ff6243;
  font-size: 12px;
  text-align: center;
}

.p-bddvd_in__inner {
  position: relative;
  flex: 1 1 0;
  text-align: left;
}

.p-bddvd_in__title {
  display: block;
  position: relative;
  transform: scale(1, 1.2);
  transform-origin: left bottom;
  padding-top: 8px;
  color: #fff;
  font-family: "Cormorant", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.3;
}

.p-bddvd_in__info {
  position: relative;
  margin: 18px auto 0;
  width: 100%;
  font-size: 13px;
  line-height: 1.3;
}

.p-bddvd_in__info + .p-bddvd_in__info {
  margin-top: 12px;
}

.p-bddvd_in__text {
  position: relative;
  margin: 30px auto 0;
  width: 100%;
  font-size: 15px;
  line-height: 1.8;
}

.p-bddvd_in__text a {
  color: #ff6243;
  text-decoration: underline;
}

.p-bddvd_in__text a:hover {
  text-decoration: none;
}

.p-bddvd_in__text img {
  max-width: 80%;
  height: auto !important;
}

.p-bddvd_in__text iframe {
  max-width: 80%;
}

.p-bddvd_disc {
  position: relative;
  margin: 38px auto 0;
  border-top: 1px dashed #fff;
  border-bottom: 1px dashed #fff;
  padding: 38px 0;
  width: 100%;
}

.p-bddvd_disc + .p-bddvd_disc {
  margin-top: 0;
  border-top: none;
}

.p-bddvd_disc__title {
  display: block;
  position: relative;
  margin: 0 auto 18px;
  color: #ff6243;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.p-bddvd_disc__title:first-child {
  margin-top: 0;
}

.p-bddvd_disc__intro {
  position: relative;
  margin: 0 auto 10px;
  width: 100%;
  font-size: 15px;
  line-height: 1.8;
}

.p-bddvd_disc__text {
  position: relative;
  width: 100%;
  font-size: 15px;
  line-height: 1.8;
}

.p-bddvd_disc__text a {
  color: #ff6243;
  text-decoration: underline;
}

.p-bddvd_disc__text a:hover {
  text-decoration: none;
}

.p-bddvd_disc__text img {
  margin-top: 10px;
  max-width: 80%;
  height: auto !important;
}

.p-bddvd_disc__text iframe {
  max-width: 80%;
}

.p-bddvd_disc__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-bddvd_disc__list-item {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-bddvd_disc__list-item + .p-bddvd_disc__list-item {
  margin-top: 12px;
}

.p-bddvd_disc_data {
  display: block;
  position: relative;
  border-left: 2px solid #ff6243;
  padding: 20px 0 20px 20px;
}

.p-bddvd_disc_data__name {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  font-size: 14px;
  line-height: 1.6;
}

.p-bddvd_disc_data__name-sub {
  display: block;
  margin-right: 8px;
}

.p-bddvd_disc_data__name-main {
  display: block;
  flex: 1 1 0;
  min-width: 0;
}

.p-bddvd_disc_data__btn {
  display: flex;
  position: relative;
  justify-content: flex-end;
  margin-left: 16px;
}

.p-bddvd_disc_data__player {
  display: flex;
  position: relative;
  align-items: center;
  z-index: 0;
  transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  border: 2px solid #ff6243;
  border-radius: 5px;
  padding-left: 30px;
  width: 100px;
  height: 34px;
  color: #ff6243;
}

[data-ua=pc] .p-bddvd_disc_data__player:hover {
  background: #ff6243;
  color: #000;
}

.p-bddvd_disc_data__player-icon {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  border: none !important;
  background-position: 6px 50% !important;
  background-repeat: no-repeat !important;
  background-size: 18px 18px !important;
  width: 100px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.p-bddvd_disc_data__player-text {
  position: relative;
  font-size: 12px;
  line-height: 1;
}

.p-bddvd_disc_data__youtube {
  display: flex;
  position: relative;
  align-items: center;
  z-index: 0;
  transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  margin-left: 10px;
  border: 2px solid #ff6243;
  border-radius: 5px;
  padding-left: 30px;
  width: 100px;
  height: 34px;
  color: #ff6243;
}

[data-ua=pc] .p-bddvd_disc_data__youtube:hover {
  background: #ff6243;
  color: #000;
}

.p-bddvd_disc_data__youtube::before {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  border: none !important;
  background: url("../img/package/icon_play.png");
  background-position: 6px 50% !important;
  background-repeat: no-repeat !important;
  background-size: 18px 18px !important;
  width: 100px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
  content: "";
}

.p-bddvd_disc_data__youtube-text {
  position: relative;
  font-size: 12px;
  line-height: 1;
}

.p-bddvd_sp {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-bddvd_sp::before {
  opacity: 0.6;
  background-color: #e6e6e6;
  content: "";
}

.p-bddvd_sp__header {
  position: relative;
  margin: 0 auto 28px;
  width: 100%;
}

.p-bddvd_sp__title {
  display: block;
  position: relative;
  transform: scale(0.8, 1);
  transform-origin: center bottom;
  color: #fff;
  font-family: "Cormorant", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.3;
  text-align: center;
}

.p-bddvd_sp__inner {
  position: relative;
  width: 100%;
  font-size: 15px;
  letter-spacing: 0.8px;
  line-height: 2;
}

.p-bddvd_sp__inner a {
  text-decoration: underline;
}

.p-bddvd_sp__inner a:hover {
  text-decoration: none;
}

.p-bddvd_sp__inner img {
  max-width: 80%;
  height: auto !important;
}

.p-bddvd_sp__inner iframe {
  max-width: 80%;
}

.p-bddvd_modal {
  position: relative;
  margin: 0 auto;
  border-radius: 40px;
  padding: 56px;
  padding: 60px;
  width: 100%;
}

.p-bddvd_modal::before {
  opacity: 0.6;
  background-color: #e6e6e6;
  content: "";
}

.p-bddvd_modal__name {
  display: block;
  position: relative;
  margin-bottom: 28px;
  color: #ff6243;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.3;
}

.p-bddvd_modal__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.9;
  text-align: left;
}

.p-bddvd_modal__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  font-size: 0;
  letter-spacing: -0.4em;
  text-align: center;
}

.p-bddvd_modal__item {
  display: inline-block;
  vertical-align: top;
  width: 24%;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: normal;
}

.p-bddvd_modal__item img {
  width: 100%;
}

.p-bddvd_modal__download {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-bddvd_modal__download-title {
  display: none !important;
}

.p-bddvd_modal__download-qr {
  display: none !important;
}

.m-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 50px;
}

.p-t150 {
  padding-top: 150px;
}

@media screen and (max-width: 960px) {
  .m-modal__content {
    width: 100%;
  }
  .is-modal-overflow-prep .m-modal__content {
    margin-top: 16%;
  }
  .m-modal__content-btn {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px auto 0;
    width: 84%;
    height: auto;
  }
  .m-modal__close {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
  .m-modal__close-in::before {
    width: 300%;
  }
  .m-modal__close-in::after {
    width: 300%;
  }
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .is-sp {
    display: block;
  }
  .is-pc {
    display: none !important;
  }
  .is-sp-inline {
    display: inline-block;
  }
  .is-pc-inline {
    display: none !important;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none !important;
  }
  .sp-inline {
    display: inline-block;
  }
  .pc-inline {
    display: none !important;
  }
  .l-wrap__loader {
    width: 100px;
    height: 1px;
  }
  .l-header__deco {
    padding-top: 28px;
    padding-left: 22px;
  }
  .l-header__deco-text + .l-header__deco-text {
    margin-top: 8px;
  }
  .l-header__deco-text img {
    height: 8px;
  }
  .l-header__brand {
    margin-top: 18px;
    margin-left: 10px;
    width: 240px;
  }
  .l-nav__bg {
    width: 50%;
  }
  .l-nav__bg::after {
    background: url("../img/common/menu/filter_visual.png") repeat left top;
    background-size: 2px auto;
  }
  .l-nav__bg-img.-bg1 {
    background: url("../img/common/menu/img_visual-1_sp.jpg") no-repeat 50% 10%;
    background-size: cover;
  }
  .l-nav__bg-img.-bg2 {
    background: url("../img/common/menu/img_visual-2_sp.jpg") no-repeat 50% 10%;
    background-size: cover;
  }
  .l-nav__bg-img.-bg3 {
    background: url("../img/common/menu/img_visual-3_sp.jpg") no-repeat 50% 10%;
    background-size: cover;
  }
  .l-nav__deco {
    top: 28px;
    left: 22px;
  }
  .l-nav__deco-text + .l-nav__deco-text {
    margin-top: 8px;
  }
  .l-nav__deco-text img {
    height: 8px;
  }
  .l-nav__container {
    margin-left: 0;
    width: 100%;
    min-height: 165.333vw;
  }
  .l-nav__inner {
    justify-content: center;
    padding: 0 0 10vh;
    width: 26.667%;
    max-width: 160px;
  }
  .l-nav__brand {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 85vw;
    max-width: 480px;
  }
  .l-nav__list {
    position: relative;
    width: 100%;
  }
  .l-nav__list-item + .l-nav__list-item {
    margin-top: 12px;
  }
  .l-nav__link {
    overflow: visible;
    font-size: 18px;
    font-size: 4.8vw;
    text-align: left;
    white-space: nowrap;
  }
  .l-nav__link-text {
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 1.25s cubic-bezier(0.25, 1, 0.5, 1), transform 1.25s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-menu-open .l-nav__link-text {
    transform: translateY(0);
    opacity: 1;
  }
  .is-menu-open .l-nav__list-item:nth-child(1) .l-nav__link-text {
    transition-delay: 0s;
  }
  .is-menu-open .l-nav__list-item:nth-child(2) .l-nav__link-text {
    transition-delay: 0.05s;
  }
  .is-menu-open .l-nav__list-item:nth-child(3) .l-nav__link-text {
    transition-delay: 0.1s;
  }
  .is-menu-open .l-nav__list-item:nth-child(4) .l-nav__link-text {
    transition-delay: 0.15s;
  }
  .is-menu-open .l-nav__list-item:nth-child(5) .l-nav__link-text {
    transition-delay: 0.2s;
  }
  .is-menu-open .l-nav__list-item:nth-child(6) .l-nav__link-text {
    transition-delay: 0.25s;
  }
  .is-menu-open .l-nav__list-item:nth-child(7) .l-nav__link-text {
    transition-delay: 0.3s;
  }
  .is-menu-open .l-nav__list-item:nth-child(8) .l-nav__link-text {
    transition-delay: 0.35s;
  }
  .is-menu-open .l-nav__list-item:nth-child(9) .l-nav__link-text {
    transition-delay: 0.4s;
  }
  .is-menu-open .l-nav__list-item:nth-child(10) .l-nav__link-text {
    transition-delay: 0.45s;
  }
  .l-nav__share {
    position: relative;
    margin-top: 38px;
    width: 100%;
  }
  .l-side_nav {
    display: none;
  }
  .l-footer {
    margin-top: 78px;
    padding-bottom: 160px;
  }
  .l-footer__banner {
    margin-bottom: 75px;
    width: 86.667%;
    max-width: 460px;
  }
  .l-footer__visual {
    height: 85.5px;
  }
  .l-footer__visual-img {
    animation: visual-loop-sp 80s linear infinite;
  }
  .l-footer__logo {
    margin-top: -32px;
    width: 70.4%;
  }
  .l-footer__nav {
    margin-top: 48px;
    width: 95%;
  }
  .l-footer__share {
    margin-top: 104px;
  }
  .l-footer__copy {
    margin-top: 22px;
    font-size: 10px;
  }
  .p-menu {
    padding: 30px 0 9px;
    width: 65px;
    height: 50px;
  }
  .p-nav_share__cap {
    position: relative;
    margin-bottom: 8px;
    width: 100%;
  }
  .p-nav_share__list {
    justify-content: space-between;
    width: 100%;
  }
  .p-f-banner__list-item {
    position: relative;
    width: 100%;
  }
  .p-f-banner__list-item + .p-f-banner__list-item {
    margin-top: 14px;
  }
  .p-f-nav__text {
    padding: 8px 12px;
    font-size: 15px;
    font-size: 4vw;
  }
  .p-anchor__bnr {
    bottom: 18px;
    left: 0;
    width: 100%;
  }
  .p-anchor__share {
    display: none;
  }
  .p-bnr {
    margin: 0 auto;
    width: 56%;
    max-width: 220px;
  }
  .topic_pager a {
    width: 20px;
    font-size: 12px;
  }
  .p-hero {
    height: 70vh;
  }
  .p-hero__bg-kv {
    background: url("../img/top/main/img_main.jpg") no-repeat 50% 25%;
    background-size: cover;
  }
  .p-hero__container {
    height: calc(100vh - 50px);
    min-height: 500px;
  }
  .p-hero__inner {
    width: 92%;
  }
  .p-hero__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
  }
  .p-hero__catch {
    width: 92%;
    height: calc(100vh - 50px);
    min-height: 500px;
  }
  .p-hero__catch-logo {
    top: 25px;
    right: 0;
    width: 25px;
  }
  .p-hero__catch-svg {
    width: 25px;
  }
  .p-hero__bnr {
    display: none;
  }
  .p-t-bnr {
    margin-top: 32px;
  }
  .p-t-bnr__container {
    width: 56%;
  }
  .p-t-bnr__list {
    margin: 0 auto;
    font-size: 0;
    letter-spacing: -0.4em;
    white-space: nowrap;
  }
  .p-t-bnr__list-item {
    display: inline-block;
    vertical-align: top;
    font-size: 1rem;
    letter-spacing: normal;
  }
  .p-headline {
    margin-top: 44px;
  }
  .p-headline__container {
    width: 86.667%;
    max-width: 560px;
  }
  .p-headline__list-item {
    width: 100%;
  }
  .p-headline__list-item + .p-headline__list-item {
    margin-top: 20px;
  }
  .p-headline__btn-text {
    padding-left: 90px;
  }
  .p-headline__btn-text::before {
    width: 80px;
  }
  .p-headline_data {
    padding: 0 0 0 24px;
  }
  .p-headline_data::before {
    width: 1px;
  }
  .p-headline_data__date {
    margin-bottom: 8px;
    font-size: 10px;
  }
  .p-headline_data__title {
    font-size: 12px;
  }
  .p-story {
    margin-top: 74px;
  }
  .p-story__container {
    width: 100%;
    max-width: 600px;
  }
  .p-story__header {
    margin-bottom: 16px;
  }
  .p-story__lead {
    width: 86.667%;
  }
  .p-story__deco {
    margin-top: 16px;
    width: 14.133%;
  }
  .p-story__inner {
    width: 100%;
  }
  .p-story__catch {
    margin-bottom: -10px;
    width: 100%;
  }
  .p-story__visual {
    width: 100%;
  }
  .p-story__visual-in {
    width: 100%;
  }
  .p-story__in {
    position: relative;
    z-index: 1;
    margin-top: -26px;
  }
  .p-story__footer {
    position: absolute;
    bottom: 1.6%;
    left: 0;
  }
  .p-story__ss-img.-ss1 {
    margin-bottom: 8%;
    width: 70%;
  }
  .p-story__ss-img.-ss2 {
    margin-left: 48.667%;
    width: 44.667%;
  }
  .p-story_in__header {
    margin-bottom: 20px;
  }
  .p-story_in__title {
    margin: 0 auto;
    width: 50%;
  }
  .p-story_in__inner {
    display: flex;
    width: 86.667%;
  }
  .p-story_in__text {
    position: relative;
    width: 76.923%;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.8;
  }
  .p-story_in__catch {
    left: 6%;
    margin-left: 5%;
    width: 16.267%;
  }
  .p-movie {
    margin-top: 48px;
  }
  .p-movie__container {
    width: 68.667%;
  }
  .p-movie_data__thumb::before {
    width: 52px;
    height: 52px;
  }
  .p-movie_data__thumb::after {
    width: 52px;
    height: 52px;
  }
  .p-chara {
    margin-top: 134px;
  }
  .p-chara__container {
    padding-bottom: 40px;
    width: 86.667%;
    max-width: 560px;
  }
  .p-chara__header {
    margin-bottom: 24px;
  }
  .p-chara__title {
    top: -40px;
    margin-bottom: -40px;
    text-align: center;
  }
  .p-chara__title-img {
    width: 88%;
  }
  .p-chara__list-item {
    width: 100%;
  }
  .p-chara__list-item + .p-chara__list-item {
    margin-top: 40px;
  }
  .p-chara__list-item:nth-child(1) {
    z-index: 9;
  }
  .p-chara__list-item:nth-child(2) {
    z-index: 8;
  }
  .p-chara__list-item:nth-child(3) {
    z-index: 7;
  }
  .p-chara__list-item:nth-child(4) {
    z-index: 6;
  }
  .p-chara__list-item:nth-child(5) {
    z-index: 5;
  }
  .p-chara__list-item:nth-child(6) {
    z-index: 4;
  }
  .p-chara__list-item:nth-child(7) {
    z-index: 3;
  }
  .p-chara__list-item:nth-child(8) {
    z-index: 2;
  }
  .p-chara__list-item:nth-child(9) {
    z-index: 1;
  }
  .p-chara__list-item:nth-child(10) {
    z-index: 0;
  }
  .p-chara_data {
    margin-top: -80px;
    padding-top: 80px;
    overflow: hidden;
  }
  .p-chara_data__header {
    position: relative;
    padding-top: 55.385%;
    width: 100%;
  }
  .p-chara_data__visual {
    transform: translate(-50%, -2%);
    width: 120%;
  }
  .p-chara_data__inner {
    background: linear-gradient(to bottom, rgba(230, 230, 230, 0.6) 0%, #e6e6e6 100%);
    padding: 24px 0 0;
  }
  .p-chara_data__name {
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
  }
  .p-chara_data__description {
    margin-top: 16px;
    font-size: 13px;
    font-size: 3.467vw;
    line-height: 1.6;
  }
  .p-chara_data__ss {
    margin-top: 18px;
    width: 100%;
  }
  .p-chara_data__cast {
    margin-top: 20px;
  }
  .p-chara_data_cast__header {
    margin-right: 6.154%;
    width: 24.615%;
  }
  .p-chara_data_cast__inner {
    width: 68.462%;
  }
  .p-chara_data_cast__name {
    margin-left: -55.056%;
    width: 161.798%;
  }
  .p-chara_data_cast__btn {
    margin-top: 14px;
    width: 100%;
  }
  .p-chara_data_cast__btn-text {
    padding: 18px;
    font-size: 11px;
    text-align: center;
  }
  .p-cast_modal__container {
    padding: 24% 0;
    width: 100%;
    max-width: 750px;
  }
  .p-cast_modal__list-item + .p-cast_modal__list-item {
    margin-top: 44px;
  }
  .p-cast_modal__close {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
  .p-cast_modal__close-in::before {
    width: 300%;
  }
  .p-cast_modal__close-in::after {
    width: 300%;
  }
  .p-cast_modal_data__header {
    width: 62.667%;
  }
  .p-cast_modal_data__inner {
    position: static;
    margin: 0 auto;
    width: 86.667%;
  }
  .p-cast_modal_data__info {
    position: absolute;
    top: 34px;
    right: 6.667%;
    width: 26.667%;
    text-align: right;
  }
  .p-cast_modal_data__cap {
    margin-bottom: 20px;
    width: 100%;
  }
  .p-cast_modal_data__name {
    display: flex;
    justify-content: flex-end;
  }
  .p-cast_modal_data__name img {
    height: 9.867vw;
    max-height: 76px;
  }
  .p-cast_modal_data__text {
    margin-top: 26px;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.8;
  }
  .p-staff {
    margin-top: 62px;
  }
  .p-staff__container {
    width: 100%;
  }
  .p-staff__header {
    margin-bottom: 42px;
  }
  .p-staff__visual {
    width: 100%;
  }
  .p-staff__visual-in {
    position: relative;
    width: 100%;
  }
  .p-staff__title {
    left: -1.2%;
  }
  .p-staff__title {
    margin-top: -14px;
    text-align: center;
  }
  .p-staff__title-img {
    width: 40%;
  }
  .p-staff__inner {
    max-width: 600px;
  }
  .p-staff__text {
    width: 100%;
  }
  .p-staff__about {
    margin-top: 54px;
  }
  .p-staff_about {
    margin-left: 21.333%;
    width: 78.667%;
  }
  .p-staff_about__visual {
    width: 100%;
  }
  .p-staff_about__cap {
    top: 65%;
    transform: translate(-30%, -50%);
    width: 61.017%;
  }
  .p-staff_about__more {
    position: relative;
    margin: 12px auto 0;
    width: 81.333%;
    text-align: right;
  }
  .p-staff_about__more-text {
    font-size: 15px;
  }
  .p-about_modal::before {
    background: url("../img/top/staff/bg_staff-about_sp.jpg") no-repeat right top;
    background-size: 100% auto;
  }
  .p-about_modal__container {
    padding: 17% 0;
    width: 86.667%;
    max-width: 560px;
  }
  .p-about_modal__header {
    margin-bottom: 32px;
  }
  .p-about_modal__cap {
    width: 53.846%;
  }
  .p-about_modal__official {
    position: relative;
    margin-bottom: 46px;
    width: 100%;
  }
  .p-about_modal__official-item {
    width: 22px;
  }
  .p-about_modal__data {
    font-size: 12px;
    line-height: 1.8;
  }
  .p-about_modal__comment {
    margin-top: 46px;
  }
  .p-about_modal__comment-cap {
    width: 100px;
  }
  .p-about_modal__comment-text {
    font-size: 12px;
    line-height: 1.8;
  }
  .p-about_modal__close {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
  .p-about_modal__close-in::before {
    width: 300%;
  }
  .p-about_modal__close-in::after {
    width: 300%;
  }
  .l-in__container {
    padding-top: 100px;
    width: 86.667%;
    max-width: 560px;
  }
  .l-in__header {
    margin-bottom: 30px;
  }
  .l-in__title {
    width: 56%;
  }
  .-ticket .l-in__title {
    left: -3.077%;
    width: 106.154%;
  }
  .-comment .l-in__title {
    left: -7.692%;
    width: 115.385%;
  }
  .l-in__inner::before {
    height: calc(100% + 90px);
  }
  .p-news {
    margin-top: 62px;
  }
  .p-news__list-item + .p-news__list-item {
    margin-top: 20px;
  }
  .p-news__footer {
    margin-top: 78px;
  }
  .p-news_data {
    padding: 0 0 0 24px;
  }
  .p-news_data::before {
    width: 1px;
  }
  .p-news_data__date {
    margin-bottom: 8px;
    font-size: 10px;
  }
  .p-news_data__title {
    font-size: 12px;
  }
  .p-news_in {
    margin-top: 58px;
  }
  .p-news_in__header {
    margin-bottom: 42px;
  }
  .p-news_in__date {
    margin-bottom: 8px;
    font-size: 10px;
  }
  .p-news_in__title {
    font-size: 16px;
  }
  .p-news_in__text {
    font-size: 12px;
  }
  .p-news_in__text iframe {
    width: 80vw;
    height: 45vw;
  }
  .p-news_in__footer {
    margin-top: 80px;
  }
  .p-news_in__back-text {
    padding: 0 20px;
    font-size: 13px;
  }
  .p-ticket__header {
    margin-bottom: 52px;
  }
  .p-ticket__novelty {
    margin-bottom: 56px;
  }
  .p-ticket__lead {
    margin-bottom: 22px;
    width: 50.769%;
  }
  .p-ticket__price-main {
    font-size: 22px;
  }
  .p-ticket__price-sub {
    font-size: 13px;
  }
  .p-ticket__note {
    font-size: 10px;
  }
  .p-ticket__inner {
    padding: 20px 20px 35px;
  }
  .p-ticket__list-item {
    width: 100%;
  }
  .p-ticket__list-item + .p-ticket__list-item {
    margin-top: 52px;
  }
  .p-ticket__list-item + .p-ticket__list-item::before {
    display: block;
    position: absolute;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #fff;
    width: 100%;
    height: 1px;
    content: "";
  }
  .p-ticket_novelty {
    padding: 20px 15px;
  }
  .p-ticket_novelty__img {
    margin: 0 auto;
    width: 84%;
  }
  .p-ticket_novelty__cap {
    margin-bottom: 28px;
    padding: 5px 10px;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.5;
  }
  .p-ticket_novelty__text {
    margin-top: 18px;
    font-size: 10px;
  }
  .p-ticket_data__header {
    margin-bottom: 26px;
  }
  .p-ticket_data__cap {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .p-ticket_data__description {
    font-size: 12px;
  }
  .-ticket1 .p-ticket_data__img {
    width: 78%;
  }
  .-ticket2 .p-ticket_data__img {
    width: 60%;
  }
  .p-ticket_data__img-cap {
    transform: translate(45%, -50%);
    width: 48%;
  }
  .p-ticket_data__link {
    margin-top: 28px;
  }
  .p-ticket_data__link-item + .p-ticket_data__link-item {
    margin-top: 16px;
  }
  .p-ticket_data__btn-text {
    padding: 18px;
    font-size: 11px;
  }
  .p-comment {
    padding: 20px 0 110px;
  }
  .p-comment__list-item {
    width: 100%;
  }
  .p-comment__list-item + .p-comment__list-item {
    margin-top: 40px;
  }
  .p-comment_data {
    padding-left: 20px;
  }
  .p-comment_data__text {
    margin-top: 16px;
    font-size: 13px;
    font-size: 3.467vw;
    line-height: 1.6;
  }
  .p-bddvd__header {
    margin-bottom: 35px;
  }
  .p-bddvd__title {
    font-size: 28px;
    letter-spacing: 1.2px;
  }
  .p-bddvd__description {
    margin-top: 18px;
    font-size: 11px;
  }
  .p-bddvd__footer {
    margin-top: 50px;
  }
  .p-bddvd_in {
    padding: 20px;
  }
  .p-bddvd_in__type {
    margin-bottom: 20px;
    padding: 12px 8px;
    font-size: 15px;
  }
  .p-bddvd_in__header {
    position: relative;
    margin: 0 auto 50px;
    width: 100%;
  }
  .p-bddvd_in__btn {
    margin-top: 18px;
    width: 100%;
  }
  .p-bddvd_in__title {
    font-size: 20px;
    letter-spacing: 1.2px;
    text-align: center;
  }
  .p-bddvd_in__info {
    margin-top: 12px;
    font-size: 12px;
    text-align: center;
  }
  .p-bddvd_in__info + .p-bddvd_in__info {
    margin-top: 4px;
  }
  .p-bddvd_in__text {
    font-size: 12px;
  }
  .p-bddvd_in__text img {
    max-width: 100%;
  }
  .p-bddvd_in__text iframe {
    max-width: 100%;
  }
  .p-bddvd_disc__title {
    margin-bottom: 8px;
    padding: 4px 8px 2px;
    font-size: 10px;
  }
  .p-bddvd_disc__intro {
    font-size: 12px;
  }
  .p-bddvd_disc__text {
    font-size: 12px;
  }
  .p-bddvd_disc__text img {
    max-width: 100%;
  }
  .p-bddvd_disc__text iframe {
    max-width: 100%;
  }
  .p-bddvd_disc_data {
    padding: 8px 0 8px 18px;
  }
  .p-bddvd_disc_data__name {
    font-size: 12px;
  }
  .p-bddvd_disc_data__btn {
    justify-content: flex-start;
    margin: 10px auto 0;
    width: 100%;
  }
  .p-bddvd_sp__header {
    margin-bottom: 12px;
  }
  .p-bddvd_sp__title {
    font-size: 25px;
    letter-spacing: 1.2px;
  }
  .p-bddvd_sp__inner {
    font-size: 12px;
  }
  .p-bddvd_sp__inner img {
    max-width: 100%;
  }
  .p-bddvd_sp__inner iframe {
    max-width: 100%;
  }
  .p-bddvd_modal {
    border-radius: 20px;
    padding: 26px;
  }
  .p-bddvd_modal {
    padding: 28px 24px;
  }
  .p-bddvd_modal__name {
    margin-bottom: 12px;
    font-size: 20px;
    letter-spacing: 1.2px;
  }
  .p-bddvd_modal__text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .p-bddvd_modal__item {
    margin: 0 1.5% 6px 0;
    width: 31%;
  }
  .p-bddvd_modal__item:nth-child(3n),
  .p-bddvd_modal__item:last-child {
    margin-right: 0;
  }
  .m-modal__content {
    top: 45%;
    left: 50%;
    margin-left: 0;
  }
}
@media screen and (max-width: 960px) and (min-width: 561px) {
  html {
    font-size: 78.125%;
  }
  .l-footer__visual {
    height: 171px;
  }
}
@media screen and (min-width: 961px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none !important;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none !important;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
  .pc-inline {
    display: inline-block;
  }
  .sp-inline {
    display: none !important;
  }
  .l-header__deco {
    display: flex;
    align-items: center;
  }
  .l-header__deco-text + .l-header__deco-text {
    margin-left: 185px;
  }
  .l-nav__deco {
    display: flex;
    align-items: center;
  }
  .l-nav__deco-text + .l-nav__deco-text {
    margin-left: 185px;
  }
  .l-nav__container {
    min-height: 750px;
  }
  .l-nav__inner {
    justify-content: space-between;
  }
  .l-nav__list {
    position: absolute;
    top: 53.5%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .l-nav__link-text {
    transform: translateY(100%);
    transition: transform 1.25s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-menu-open .l-nav__link-text {
    transform: translateY(0);
  }
  .is-menu-open .l-nav__list-item:nth-child(1) .l-nav__link-text {
    transition-delay: 0s;
  }
  .is-menu-open .l-nav__list-item:nth-child(2) .l-nav__link-text {
    transition-delay: 0.05s;
  }
  .is-menu-open .l-nav__list-item:nth-child(3) .l-nav__link-text {
    transition-delay: 0.1s;
  }
  .is-menu-open .l-nav__list-item:nth-child(4) .l-nav__link-text {
    transition-delay: 0.15s;
  }
  .is-menu-open .l-nav__list-item:nth-child(5) .l-nav__link-text {
    transition-delay: 0.2s;
  }
  .is-menu-open .l-nav__list-item:nth-child(6) .l-nav__link-text {
    transition-delay: 0.25s;
  }
  .is-menu-open .l-nav__list-item:nth-child(7) .l-nav__link-text {
    transition-delay: 0.3s;
  }
  .is-menu-open .l-nav__list-item:nth-child(8) .l-nav__link-text {
    transition-delay: 0.35s;
  }
  .is-menu-open .l-nav__list-item:nth-child(9) .l-nav__link-text {
    transition-delay: 0.4s;
  }
  .is-menu-open .l-nav__list-item:nth-child(10) .l-nav__link-text {
    transition-delay: 0.45s;
  }
  .l-main {
    min-height: calc(100vh - 110px);
  }
  .p-nav_share__cap {
    position: absolute;
    top: 50%;
    left: -38px;
    transform: translate(-100%, -50%);
  }
  .p-nav_share__list-item + .p-nav_share__list-item {
    margin-left: 25px;
  }
  .p-f-banner__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: -45px;
  }
  .p-f-banner__list-item {
    margin: 0 5% 45px 0;
  }
  .p-f-banner__list-item:nth-child(3n),
  .p-f-banner__list-item:last-child {
    margin-right: 0;
  }
  .p-f-nav__list-item + .p-f-nav__list-item {
    margin-left: 20px;
  }
  .p-bnr {
    overflow: hidden;
  }
  .p-hero__logo {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .p-t-bnr__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-t-bnr__list-item {
    margin: 0 1.25% 10px 0;
    width: 24%;
  }
  .p-t-bnr__list-item:nth-child(4n) {
    margin-right: 0;
  }
  .p-headline__list {
    display: flex;
  }
  .p-headline__list-item {
    flex: 1;
  }
  .p-story__inner {
    margin-left: 7.059%;
    padding-bottom: 44px;
  }
  .p-story__visual {
    margin: -20px auto 0;
    padding-left: 16.772%;
  }
  .p-story__visual-in {
    height: 670px;
  }
  .p-story__in {
    position: absolute;
    bottom: 0;
    left: -0.5%;
  }
  .p-story__footer {
    margin: 75px auto 0;
  }
  .p-story__ss-img.-ss2 {
    margin-top: -136px;
    margin-left: 66.544%;
  }
  .p-story_in__header {
    left: -1%;
  }
  .p-story_in__catch {
    margin-top: 48px;
  }
  .p-chara__title {
    left: 1.7%;
  }
  .p-chara__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -86px;
  }
  .p-chara__list-item {
    margin: 0 7% 86px 0;
  }
  .p-chara__list-item:nth-child(2n) {
    margin-right: 0;
  }
  .p-chara_data {
    padding-right: 36.601%;
  }
  .p-chara_data__name-img img {
    width: auto;
    height: 64px;
  }
  .p-chara_data__description {
    min-height: 7.3vw;
  }
  .p-cast_modal_data__container {
    display: flex;
  }
  .p-cast_modal_data__header {
    margin-right: 7%;
  }
  .p-cast_modal_data__info {
    position: relative;
    margin: 0 auto;
    width: 100%;
  }
  .p-staff__visual {
    padding-right: 150px;
    width: 100%;
    height: 300px;
  }
  .p-staff__visual-in {
    display: block;
    position: absolute;
    top: 0;
    right: 150px;
    width: calc(85vw - 150px);
    height: 300px;
    overflow: hidden;
  }
  .p-staff__inner {
    padding-left: 50%;
  }
  .p-staff_about__more {
    top: 65%;
    left: -20px;
    transform: translate(0, -50%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
  [data-ua=pc] .p-staff_about:hover .p-staff_about__more {
    transform: translate(-20%, -50%);
  }
  .p-about_modal__inner {
    padding-left: 22%;
  }
  .p-about_modal__official {
    position: absolute;
    top: 15px;
    left: 0;
  }
  .p-news_in__text iframe {
    width: 50vw;
    height: 28.125vw;
  }
  .p-ticket__list {
    display: flex;
  }
  .p-ticket__list::before {
    content: "";
  }
  .p-ticket__list-item + .p-ticket__list-item {
    margin-left: 10%;
  }
  .p-ticket_data__description {
    min-height: 42px;
  }
  .-ticket2 .p-ticket_data__img {
    padding: 5px 0;
  }
  .p-comment {
    padding-top: 50px;
  }
  .p-comment__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -86px;
  }
  .p-comment__list-item {
    margin: 0 7% 86px 0;
  }
  .p-comment__list-item:nth-child(2n) {
    margin-right: 0;
  }
  .p-comment_data__name-img img {
    width: auto;
    height: 64px;
  }
  .p-bddvd {
    width: 92%;
  }
  .p-bddvd_in__container {
    display: flex;
  }
  .p-bddvd_in__btn-text {
    transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  [data-ua=pc] .p-bddvd_in__btn-text:hover {
    background: #ff6243;
    color: #000;
  }
  .p-bddvd_disc_data__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .p-bddvd_disc_data__name {
    flex: 1 1 0;
  }
  .p-bddvd_modal__item {
    margin: 0 1% 10px 0;
  }
  .p-bddvd_modal__item:nth-child(4n),
  .p-bddvd_modal__item:last-child {
    margin-right: 0;
  }
  .p-bddvd_modal__item {
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-bddvd_modal__item:hover {
    opacity: 0.6;
  }
}
@media screen and (orientation: landscape) {
  .is-land {
    display: block;
  }
  .is-port {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .is-land {
    display: none !important;
  }
  .is-port {
    display: block;
  }
}
@media screen and (min-width: 751px) {
  .is-wide {
    display: block;
  }
  .is-tab {
    display: none !important;
  }
}
@media screen and (min-width: 561px) {
  .is-wide {
    display: none !important;
  }
  .is-tab {
    display: block;
  }
}
@media screen and (max-width: 374px) {
  .is-narrow {
    display: block !important;
  }
  .is-narrow-inline {
    display: inline-block !important;
  }
  .is-non-narrow {
    display: none !important;
  }
  .is-non-narrow-inline {
    display: none !important;
  }
}
@media screen and (max-width: 960px) and (min-width: 468.75px) {
  .l-nav__link {
    font-size: 22.5px;
  }
  .p-f-nav__text {
    font-size: 18.75px;
  }
  .p-story_in__text {
    font-size: 15px;
  }
  .p-chara_data__description {
    font-size: 16.25px;
  }
  .p-cast_modal_data__text {
    font-size: 15px;
  }
  .p-comment_data__text {
    font-size: 16.25px;
  }
}
@media screen and (min-width: 961px) and (max-height: 750px) {
  .l-side_nav {
    display: none;
  }
}
@media screen and (min-width: 1201px) {
  .p-bnr__list-item.is-pc-hide {
    display: none !important;
  }
}
@media screen and (max-width: 1240px) {
  .p-anchor_share {
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-scroll-top .-top .p-anchor_share {
    opacity: 0;
    pointer-events: none;
  }
}
@media screen and (min-width: 961px) and (max-height: 800px) {
  .p-hero__bg-kv {
    background-position: 50% 12%;
  }
}
@media (-ms-high-contrast: none) {
  .p-hero__catch-svg {
    width: 42px;
    height: 500px;
  }
  .p-bddvd_disc_data__player-icon {
    width: 20px;
  }
  .p-bddvd_disc_data__youtube::before {
    width: 20px;
  }
}
@media screen and (min-width: 961px) and (min-width: 1638px) {
  .p-chara_data__description {
    min-height: 120px;
  }
}
/*Contact Form 7*/
.wpcf7-mail-sent-ok {
  display: none !important;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-spinner {
  position: absolute !important;
  top: 50%;
}

.contact_btn {
  position: relative;
}

.wpcf7-form input[type=checkbox] {
  width: 1em !important;
  margin-left: 0.1em !important;
  margin-right: 0.1em !important;
}

.wpcf7-form input[type=radio] {
  width: 1em !important;
  margin: 0 0.1em !important;
}

.wpcf7-list-item {
  display: inline-block !important;
  margin-left: 0em !important;
  margin-right: 0em !important;
}

.wpcf7-list-item-label {
  margin-left: 10px;
}

.wpcf7-list-item-label::after {
  content: "";
  margin-left: 1em;
}

.wpcf7-not-valid {
  margin-bottom: 1em;
}

.wpcf7-not-valid-tip {
  position: absolute;
  text-align: left;
  line-height: 1;
  width: 100%;
  left: 0;
  top: 120%;
}

.wpcf7-form.invalid .wpcf7-text + .wpcf7-not-valid-tip {
  top: 250%;
}

.wpcf7-form.invalid .wpcf7-textarea + .wpcf7-not-valid-tip {
  top: 50%;
}

.wpcf7-form.invalid .wpcf7-acceptance + .wpcf7-not-valid-tip {
  top: 90%;
  width: 370px;
}

.wpcf7-form.invalid .wpcf7-validates-as-email + .wpcf7-not-valid-tip {
  width: 350px;
}

.CheckboxInput {
  padding-left: 0 !important;
}

.post-none {
  text-align: center;
}/*# sourceMappingURL=style.css.map */