@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
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, u, 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, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

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

blockquote, q {
  quotes: none;
}

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

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

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

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

input[type=submit], input[type=reset] {
  cursor: pointer;
}

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

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

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

.swiper-container {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.swiper-container.swiper-container-autoheight {
  height: auto;
}

.swiper-wrapper {
  position: relative;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.swiper-slide.swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-lazy-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  overflow: hidden;
}
.swiper-lazy-preloader::before {
  position: absolute;
  pointer-events: none;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0, rgba(255, 255, 255, 0.35) 50%, rgba(217, 217, 217, 0) 100%);
  background-size: 100% 100%;
  animation: loading_skeleton 1s linear infinite;
}

.swiper-pagination {
  margin-top: 6px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .swiper-pagination {
    margin-top: 8px;
  }
}

body.is-modal-open {
  overflow: hidden;
}
body .m-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow: auto;
  touch-action: none;
  pointer-events: none;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
}
body .m-modal.is-open {
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  opacity: 1;
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}
body .m-modal .m-modal__content {
  position: relative;
  width: 100%;
  max-width: none;
  min-width: 0;
  pointer-events: none;
  text-align: left;
  overflow: hidden;
}
body .m-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
body .m-modal__close-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  width: 60px;
  height: 60px;
  overflow: hidden;
}
@media not all and (max-width: 900px) {
  body .m-modal__close-btn {
    transform-origin: top right;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  body .m-modal__close-btn:hover {
    transform: scale(1.1);
  }
}
body .m-modal__close-btn::before, body .m-modal__close-btn::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -9px;
  width: 70px;
  height: 4px;
  background: #C30D23;
}
@media screen and (max-width: 900px) {
  body .m-modal__close-btn::before, body .m-modal__close-btn::after {
    top: 15px;
    right: -6px;
    width: 48px;
    height: 3px;
  }
}
body .m-modal__close-btn::before {
  transform: rotate(45deg);
}
body .m-modal__close-btn::after {
  transform: rotate(-45deg);
}

@media not all and (max-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
html {
  touch-action: manipulation;
}

body,
button,
input,
select,
textarea,
datalist {
  font-family: "Shippori Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: normal;
}
@media not all and (max-width: 900px) {
  body,
  button,
  input,
  select,
  textarea,
  datalist {
    font-size: 16px;
  }
}

body {
  position: relative;
  color: #000;
  background: url(../img/bg_ptn.jpg) center center repeat;
  background-size: 460px auto;
}
@media screen and (max-width: 900px) {
  body {
    background-size: 230px auto;
  }
}

h2 {
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}

* {
  -webkit-tap-highlight-color: transparent;
}

main {
  display: block;
}

a {
  color: currentColor;
  text-decoration: none;
}

svg {
  fill-rule: evenodd;
  width: 100%;
  height: 100%;
}

[data-modal] {
  cursor: pointer;
}

[tabindex] {
  cursor: pointer;
}
[tabindex].focus-visible {
  outline: 1px solid;
}

.js-focus-visible :focus:not(:focus-visible) {
  outline: 0;
}

.visually-hidden {
  font-size: 0;
  opacity: 0;
}

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

.l-header {
  position: fixed;
  top: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  width: 290px;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .l-header {
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 227px;
  }
}
.l-header__btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background: #000;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (max-width: 900px) {
  .l-header__btn {
    width: 45px;
    height: 45px;
  }
}
@media not all and (max-width: 900px) {
  .l-header__btn:hover span::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.l-header__btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .l-header__btn span {
    height: 1px;
    width: 14px;
  }
}
.l-header__btn span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #C30D23;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-header__btn span:first-child {
  transform: translate(-50%, calc(-50% - 6px));
}
@media screen and (max-width: 900px) {
  .l-header__btn span:first-child {
    transform: translate(-50%, calc(-50% - 5px));
  }
}
.is-menu-open .l-header__btn span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header__btn span:nth-child(2) {
  transform: translate(-50%, -50%);
}
.is-menu-open .l-header__btn span:nth-child(2) {
  transform: translate(0%, -50%);
  opacity: 0;
}
.l-header__btn span:nth-child(2)::after {
  transition-delay: 0.1s;
}
.l-header__btn span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}
@media screen and (max-width: 900px) {
  .l-header__btn span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 5px));
  }
}
.is-menu-open .l-header__btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header__btn span:nth-child(3)::after {
  transition-delay: 0.2s;
}

.l-main {
  position: relative;
}

@media not all and (max-width: 900px) {
  .l-contents {
    display: flex;
    border-top: 4px solid #000;
  }
}
@media not all and (max-width: 900px) {
  .l-contents__header {
    flex-grow: 1;
  }
}
@media not all and (max-width: 900px) {
  .l-contents__inner {
    width: 62.8571428571%;
    flex-shrink: 0;
  }
}

.l-footer {
  position: relative;
  padding: 53px 0 51px;
  background: #000;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .l-footer {
    padding: 44px 0 29px;
  }
}
.l-footer__container {
  width: 92.8571428571%;
  margin: 0 auto;
  display: flex;
}
@media not all and (max-width: 900px) {
  .l-footer__container {
    justify-content: space-between;
  }
}
@media screen and (max-width: 900px) {
  .l-footer__container {
    flex-direction: column-reverse;
    width: 95%;
  }
}
.l-footer__foot {
  margin-bottom: 34px;
}
.l-footer__official {
  width: 178px;
  margin: 0 auto;
}
@media not all and (max-width: 900px) {
  .l-footer__official {
    padding-top: 31px;
  }
}
@media screen and (max-width: 900px) {
  .l-footer__official {
    width: 144px;
    margin: 0 auto;
  }
}
.l-footer__official-inner {
  display: block;
}
@media (hover: hover) {
  .l-footer__official-inner {
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .l-footer__official-inner:hover {
    opacity: 0.7;
  }
}
.l-footer__share {
  display: flex;
  align-items: center;
  margin-bottom: 38px;
}
@media screen and (max-width: 900px) {
  .l-footer__share {
    justify-content: center;
    margin-bottom: 33px;
  }
}
.l-footer__share-ttl {
  margin-right: 26px;
  font-weight: 700;
  line-height: 1;
  font-size: 12px;
  font-family: aviano, "Shippori Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 900px) {
  .l-footer__share-ttl {
    margin-right: 21px;
    font-size: 10px;
  }
}
.l-footer__share-list {
  display: flex;
}
@media not all and (max-width: 900px) {
  .l-footer__share-list {
    justify-content: flex-end;
  }
}
.l-footer__share-item + .l-footer__share-item {
  margin-left: 22px;
}
@media screen and (max-width: 900px) {
  .l-footer__share-item + .l-footer__share-item {
    margin-left: 18px;
  }
}
.l-footer__share-link {
  display: block;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .l-footer__share-link {
    width: 17px;
  }
}
.is-fb .l-footer__share-link {
  width: 23px;
}
@media screen and (max-width: 900px) {
  .is-fb .l-footer__share-link {
    width: 19px;
  }
}
.is-line .l-footer__share-link {
  width: 23px;
}
@media screen and (max-width: 900px) {
  .is-line .l-footer__share-link {
    width: 19px;
  }
}
.l-footer__share-link svg {
  fill: #fff;
}
@media (hover: hover) {
  .l-footer__share-link {
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .l-footer__share-link:hover {
    opacity: 0.7;
  }
}
.l-footer__links {
  margin-bottom: 23px;
}
@media screen and (max-width: 900px) {
  .l-footer__links {
    margin-bottom: 18px;
  }
}
.l-footer__links-list {
  display: flex;
}
@media screen and (max-width: 900px) {
  .l-footer__links-list {
    justify-content: center;
  }
}
.l-footer__links-item {
  position: relative;
}
@media not all and (max-width: 900px) {
  .l-footer__links-item {
    padding: 0 13px;
  }
}
@media screen and (max-width: 900px) {
  .l-footer__links-item {
    padding: 0 10px;
  }
}
@media screen and (max-width: 900px) and (max-width: 374px) {
  .l-footer__links-item {
    padding: 0 8px;
  }
}
@media not all and (max-width: 900px) {
  .l-footer__links-item:first-child {
    padding-left: 0;
  }
}
@media not all and (max-width: 900px) {
  .l-footer__links-item:last-child {
    padding-right: 0;
  }
}
.l-footer__links-item:last-child::before {
  content: none;
}
.l-footer__links-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: 3px;
  background: #C30D23;
  border-radius: 50%;
  transform: translateY(-50%);
}
.l-footer__links-txt {
  display: block;
  font-size: 13px;
}
@media (hover: hover) {
  .l-footer__links-txt {
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .l-footer__links-txt:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 900px) {
  .l-footer__links-txt {
    font-size: 10px;
  }
}
.l-footer__note {
  color: #999999;
}
@media screen and (max-width: 900px) {
  .l-footer__note {
    text-align: center;
    line-height: 1.5;
  }
}
.l-footer__note-caution {
  margin-bottom: 5px;
  font-size: 11px;
}
@media screen and (max-width: 900px) {
  .l-footer__note-caution {
    margin-bottom: 7px;
    font-size: 10px;
  }
}
.l-footer__note-copy {
  font-size: 11px;
}
@media screen and (max-width: 900px) {
  .l-footer__note-copy {
    font-size: 10px;
    transform: scale(0.9);
    white-space: nowrap;
    transform-origin: center center;
  }
}

.u-a11y-txt {
  font-size: 0;
}

.p-hero {
  position: relative;
  padding: 7.4% 0 9.2%;
  background: url(../img/bg_head.png) top center no-repeat;
  background-size: 100% auto;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .p-hero {
    padding: 17% 0 17.5%;
    background-size: cover;
  }
}
.p-hero__ttl {
  width: 37.5%;
  margin: 0 auto 4.6%;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-hero__ttl {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .p-hero__ttl {
    width: 70%;
    margin-bottom: 9.2%;
  }
}

.p-nav {
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}
.is-load .p-nav {
  transform: translateY(0);
  opacity: 1;
}
.p-nav__list {
  display: flex;
}
.p-nav__list-item {
  flex-shrink: 0;
  width: 100%;
}
.p-nav_data__header {
  position: relative;
}
.p-nav_data__img {
  position: relative;
  overflow: hidden;
}
@media (hover: hover) {
  .p-nav_data__img img {
    transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-nav__link:hover .p-nav_data__img img {
    transform: scale(1.05);
  }
}
.p-nav_data__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/frame.png) center center no-repeat;
  background-size: cover;
}
.p-nav_data__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 35px;
  background: #000;
}
@media screen and (max-width: 900px) {
  .p-nav_data__arrow {
    width: 25px;
    height: 25px;
  }
}
.p-nav_data__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -65%) rotate(45deg);
}
@media screen and (max-width: 900px) {
  .p-nav_data__arrow::after {
    width: 5px;
    height: 5px;
  }
}
.p-nav_data__cap {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3px 15px;
  background: #000;
  color: #fff;
  font-size: 12px;
  transform: translateY(37%);
}
@media screen and (max-width: 900px) {
  .p-nav_data__cap {
    padding: 2px 11px;
    font-size: 10px;
  }
}
.p-nav_data__inner {
  margin-top: 15px;
}
@media screen and (max-width: 900px) {
  .p-nav_data__inner {
    margin-top: 10px;
  }
}
.p-nav_data__date {
  margin-top: 2px;
  font-size: 13px;
}
@media screen and (max-width: 900px) {
  .p-nav_data__date {
    margin-top: 0;
    font-size: 11px;
  }
}
.p-nav_data__logo {
  width: 70%;
  margin: 0 auto;
}
.p-nav_data__logo img {
  margin: 0 auto;
}

.p-fix {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-fix::before, .p-fix::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_kv_bk.jpg) center center no-repeat;
  background-size: cover;
}
.p-fix::after {
  background-image: url(../img/bg_kv_red.jpg);
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-change-bg .p-fix::after {
  opacity: 1;
}
.p-fix__list {
  position: relative;
  z-index: 1;
}
.p-fix__list-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.p-fix__list-item.is-current {
  opacity: 1;
  pointer-events: auto;
}
.p-fix__list-item:first-child {
  position: relative;
}

.p-series {
  position: relative;
}
@media not all and (max-width: 900px) {
  .p-series {
    padding: 96px 0 100px;
  }
}
@media not all and (max-width: 900px) {
  .p-series + .p-series {
    border-top: 4px solid #000;
  }
}
.p-series.is-new {
  border-color: #420008;
}
@media not all and (max-width: 900px) {
  .p-series__container {
    display: flex;
  }
}
@media screen and (max-width: 900px) {
  .p-series__container {
    flex-grow: 1;
  }
}
@media not all and (max-width: 900px) {
  .p-series__header {
    flex-grow: 1;
  }
}
@media screen and (max-width: 900px) {
  .p-series__header {
    background: url(../img/bg_kv_bk.jpg) center center no-repeat;
    background-size: cover;
  }
  .is-new .p-series__header {
    background-image: url(../img/bg_kv_red.jpg);
  }
}
@media screen and (max-width: 900px) {
  .p-series__header-wrap {
    padding: 50px 0 45px;
  }
}
.p-series__catch {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.5;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-series__inner.is-active .p-series__catch {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .p-series__catch {
    font-size: 14px;   /* PC:20px → SP:16px（少し小さく） */
    line-height: 1.4; /* 改行があるので少し詰める */
  }
}
.p-series__cap {
  display: flex;
  width: 160px;
  margin: 0 auto 16px;
  padding: 2px;
  border: 1px solid #fff;
}
@media screen and (max-width: 900px) {
  .p-series__cap {
    width: 120px;
    margin-bottom: 11px;
  }
}
.p-series__cap-item {
  width: 50%;
  color: #fff;
  text-align: center;
}
.p-series__cap-item:first-child {
  background: #fff;
  color: #000;
}
.p-series__img {
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .p-series__img {
    width: 76%;
  }
}
@media not all and (max-width: 900px) {
  .p-series__img {
    width: 73%;
  }
}
.p-series__img img {
  transform: scale(1.1);
  transition: transform 3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media not all and (max-width: 900px) {
  .p-series__img img {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    -o-object-fit: contain;
    object-fit: contain;
    opacity: 0;
    transition: transform 3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-current .p-series__img img {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 900px) {
  .p-series.is-active .p-series__img img {
    transform: scale(1);
  }
}
.p-series__official {
  margin-top: 9px;
  text-align: center;
}
@media not all and (max-width: 900px) {
  .p-series__official {
    margin-top: 12px;
  }
}
.p-series__official a {
  display: inline-block;
  padding: 3px 0;
  font-family: aviano, "Shippori Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  color: #fff;
  font-size: 11px;
  text-decoration: underline;
  letter-spacing: 0.02rem;
}
@media not all and (max-width: 900px) {
  .p-series__official a {
    font-size: 14px;
    letter-spacing: 0.04rem;
  }
  .p-series__official a:hover {
    text-decoration: none;
  }
}
.p-series__copy {
  margin-top: 10px;
  color: #fff;
  text-align: center;
  font-size: 10px;
}
@media screen and (max-width: 900px) {
  .p-series__copy {
    transform: scale(0.9);
  }
}
.p-series__inner {
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-series__inner {
    padding-left: 30px;
  }
}
@media not all and (max-width: 900px) {
  .p-series__inner-wrap {
    width: 83%;
    margin-left: 8%;
    margin-right: 9%;
  }
}
@media screen and (max-width: 900px) {
  .p-series__inner-wrap {
    width: 85.5072463768%;
    margin: 0 auto;
    padding: 50px 0 58px;
  }
}
@media screen and (max-width: 900px) {
  .p-series__bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    writing-mode: vertical-rl;
    text-orientation: upright;
    background: #000;
    color: #fff;
    flex-shrink: 0;
  }
  .is-new .p-series__bar {
    background: #420008;
  }
}
.p-series__bar-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.is-underH .p-series__bar-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .p-series__bar-ttl {
    letter-spacing: 0.08rem;
    font-size: 14px;
  }
}
.p-series__bar-ttl .norotate {
  display: inline-block;
  transform: rotate(90deg);
  vertical-align: baseline;
}
.p-series__bar-txt {
  position: relative;
  margin-top: 14px;
  padding-top: 14px;
  font-size: 12px;
}
.p-series__bar-txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  transform: translateX(-50%);
}
.p-series__block {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}
.p-series__inner.is-active .p-series__block {
  transform: translateY(0);
  opacity: 1;
}
.p-series__block.--streaming {
  transition-delay: 0.4s;
}
@media not all and (max-width: 900px) {
  .p-series__block {
    display: flex;
  }
  .p-series__block + .p-series__block {
    margin-top: 68px;
  }
}
@media screen and (max-width: 900px) {
  .p-series__block + .p-series__block {
    margin-top: 42px;
  }
}
.p-series__block-header {
  position: relative;
}
@media not all and (max-width: 900px) {
  .p-series__block-header {
    writing-mode: vertical-rl;
    flex-shrink: 0;
    width: 80px;
  }
}
@media screen and (max-width: 900px) {
  .p-series__block-header {
    margin-bottom: 13px;
  }
}
@media not all and (max-width: 900px) {
  .p-series__block-ttl {
    position: absolute;
    top: 0;
    left: 0;
  }
  .--about .p-series__block-ttl {
    top: 6px;
    width: 41px;
  }
  .--streaming .p-series__block-ttl {
    width: 51px;
    top: 4px;
    left: -10px;
  }
}
@media screen and (max-width: 900px) {
  .--about .p-series__block-ttl {
    width: 67px;
  }
  .--streaming .p-series__block-ttl {
    width: 121px;
  }
}
@media not all and (max-width: 900px) {
  .p-series__block-inner {
    flex-grow: 1;
  }
}

.p-desc {
  line-height: 1.9;
}
@media screen and (max-width: 900px) {
  .p-desc {
    line-height: 1.77;
  }
}

.p-about__more {
  position: relative;
  margin-top: 21px;
  padding: 22px 0;
  background: rgba(195, 188, 157, 0.32);
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-about__more {
    margin-top: 16px;
    padding: 16px 0;
    letter-spacing: -0.04rem;
  }
}
@media not all and (max-width: 900px) {
  .p-about__more {
    transition: background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-about__more:hover {
    background: rgba(195, 188, 157, 0.5);
  }
}
.p-about__more::before, .p-about__more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 14px;
  height: 2px;
  background: #C30D23;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .p-about__more::before, .p-about__more::after {
    right: 14px;
    width: 9px;
    height: 1px;
  }
}
.p-about__more::after {
  transform: translateY(-50%) rotate(90deg);
}
.p-st__block + .p-st__block {
  margin-top: 37px;
}
@media screen and (max-width: 900px) {
  .p-st__block + .p-st__block {
    margin-top: 18px;
  }
}
.p-st__block-header {
  position: relative;
  margin-bottom: 17px;
  padding-bottom: 8px;
}
@media screen and (max-width: 900px) {
  .p-st__block-header {
    margin-bottom: 14px;
  }
}
.p-st__block-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: url(../img/line.jpg) left center repeat-x;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .p-st__block-header::after {
    height: 2px;
  }
}
.p-st__block-ttl {
  position: relative;
  padding-left: 12px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 900px) {
  .p-st__block-ttl {
    padding-left: 9px;
    font-size: 15px;
    letter-spacing: 0;
  }
}
.p-st__block-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: #C30D23;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .p-st__block-ttl::before {
    width: 5px;
    height: 5px;
  }
}
.p-st__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 900px) {
  .p-st__list {
    gap: 5px;
  }
}
.p-btn__inner {
  position: relative;
  display: block;
  padding: 19px 10px;
  text-align: center;
  color: #fff;
  background: #C30D23;
}
@media not all and (max-width: 900px) {
  .p-btn__inner {
    transition: background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-btn__inner:hover {
    background: #a10c1d;
  }
}
@media screen and (max-width: 900px) {
  .p-btn__inner {
    min-height: 45px;
    padding: 0 7px;
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.p-btn__inner span {
  display: block;
}
.p-btn__inner::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  background: url(../img/link_arrow.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .p-btn__inner::after {
    top: 3px;
    right: 3px;
    width: 5px;
    height: 5px;
  }
}

.p-scene {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.p-scene__inner {
  position: relative;
  width: 1837px;
  animation: scene_loop 20s linear infinite;
}
@media screen and (max-width: 900px) {
  .p-scene__inner {
    width: 918.5px;
  }
}
.p-scene__inner::before, .p-scene__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/img_scene01.jpg) center center no-repeat;
  background-size: contain;
  transform: translateX(100%);
}
.p-scene__inner::after {
  transform: translateX(200%);
}
.p-scene__inner:nth-child(2) {
  animation-direction: reverse;
}
.p-scene__inner:nth-child(2)::before, .p-scene__inner:nth-child(2)::after {
  background-image: url(../img/img_scene02.jpg);
}
@keyframes scene_loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.m-about {
  position: relative;
  width: 77.1428571429%;
  margin-left: auto;
  background: url(../img/bg_ptn.jpg) center center repeat;
  background-size: 460px;
  pointer-events: auto;
}
@media screen and (max-width: 900px) {
  .m-about {
    width: 92%;
    background-size: 230px auto;
  }
}
.m-about__container {
  position: relative;
  width: 85.1851851852%;
  margin: 0 auto;
  padding: 32px 0;
}
@media screen and (max-width: 900px) {
  .m-about__container {
    padding: 25px 0;
  }
}
.m-about__block {
  position: relative;
  padding-top: 65px;
  padding-bottom: 45px;
}
@media screen and (max-width: 900px) {
  .m-about__block {
    padding-top: 37px;
    padding-bottom: 35px;
  }
}
.m-about__block + .m-about__block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url(../img/line.jpg) left center repeat-x;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .m-about__block + .m-about__block::after {
    height: 1.5px;
  }
}
@media not all and (max-width: 900px) {
  .m-about__block {
    display: flex;
  }
}
.m-about__block-header {
  position: relative;
}
@media not all and (max-width: 900px) {
  .m-about__block-header {
    width: 70px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 900px) {
  .m-about__block-header {
    margin-bottom: 13px;
  }
}
@media not all and (max-width: 900px) {
  .--intro .m-about__block-ttl {
    width: 41px;
    transform: translate(-10px, 8px);
  }
}
@media screen and (max-width: 900px) {
  .--intro .m-about__block-ttl {
    width: 218px;
  }
}
@media not all and (max-width: 900px) {
  .--staffcast .m-about__block-ttl {
    width: 49px;
    transform: translate(-21px, 5px);
  }
}
@media screen and (max-width: 900px) {
  .--staffcast .m-about__block-ttl {
    width: 208px;
  }
}
@media not all and (max-width: 900px) {
  .p-sc__block + .p-sc__block {
    margin-top: 18px;
  }
}
.p-sc__ttl {
  margin-bottom: 24px;
  color: #C30D23;
  font-family: aviano, "Shippori Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 0.1rem;
}
.p-sc__role {
  margin-bottom: 5px;
  font-size: 13px;
}
@media screen and (max-width: 900px) {
  .p-sc__role {
    font-size: 10px;
  }
}
.p-sc__name {
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  .p-sc__name {
    font-size: 15px;
    line-height: 1.5;
  }
}
.is-etc .p-sc__name {
  font-size: 16px;
  text-align: right;
}
@media screen and (max-width: 900px) {
  .is-etc .p-sc__name {
    font-size: 13px;
  }
}
.p-sc__name .p-in-small {
  font-size: 13px;
  vertical-align: baseline;
}
@media screen and (max-width: 900px) {
  .p-sc__name .p-in-small {
    display: block;
    font-size: 10px;
  }
}
.p-sc__list {
  display: flex;
  flex-wrap: wrap;
}
.p-sc__list-item {
  width: 33.3%;
  margin-bottom: 26px;
}
@media screen and (max-width: 900px) {
  .p-sc__list-item {
    width: 50%;
    margin-bottom: 16px;
  }
}
.p-sc__list-item.is-wide {
  width: 100%;
}
.p-sc__list-item.is-semi-wide {
  width: 66.6%;
}
@media screen and (max-width: 900px) {
  .p-sc__list-item.is-semi-wide {
    width: 100%;
  }
}
.--cast .p-sc__list-item {
  width: 25%;
}
@media screen and (max-width: 900px) {
  .--cast .p-sc__list-item {
    width: 50%;
  }
}
@media screen and (max-width: 900px) {
  .p-sc__list-item.is-sp-wide {
    width: 100%;
  }
}
.p-sc__list-item.is-etc {
  width: 100%;
}

.p-menu {
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-menu-open .p-menu {
  opacity: 1;
  pointer-events: auto;
}
.p-menu.is-overH {
  overflow-y: auto;
}
.p-menu__wrap {
  width: 86%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 900px) {
  .p-menu__wrap {
    width: 82%;
  }
}
.is-overH .p-menu__wrap {
  display: block;
  height: auto;
}
@media not all and (max-width: 900px) {
  .p-menu__inner {
    height: 683px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 900px) {
  .p-menu__inner {
    height: 522px;
    padding-top: 20px;
  }
}
.p-menu__ttl {
  position: relative;
  padding-bottom: 5px;
  color: #fff;
  font-family: aviano, "Shippori Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  border-bottom: 2px solid #fff;
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  .p-menu__ttl {
    padding-bottom: 2px;
    font-size: 11px;
  }
}
.p-menu__list {
  padding-bottom: 11px;
}
.p-menu__list-item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: #000;
}
.p-menu__list-item:nth-child(6), .p-menu__list-item:nth-child(7) {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.24);
}
.p-menu__list-item:last-child {
  border: none;
}
.p-menu__link {
  position: relative;
  display: block;
  padding: 11px 0;
}
@media screen and (max-width: 900px) {
  .p-menu__link {
    padding: 8.5px 0;
  }
}
@media (hover: hover) {
  .p-menu__link {
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-menu__link:hover {
    opacity: 0.8;
  }
}
.p-menu__logo {
  width: 60%;
  margin: 0 auto;
}

/* ステータスバー透過防止 */
.for-status-bars {
  position: fixed;
  top: 0;
  pointer-events: none;
  height: 5px;
  width: 100%;
  background: #000;
  mix-blend-mode: lighten;
}

/* タブバー透過防止 */
.for-tab-bars {
  position: fixed;
  bottom: 0;
  pointer-events: none;
  height: 4px;
  width: 100%;
  background: #000;
  mix-blend-mode: lighten;
}