@charset "UTF-8";

:root {
  --svh: 100vh;
  --color-text: var(--color-navy);
  --color-bg: var(--color-white);
  --color-black: #000;
  --color-white: #fff;
  --color-navy: #183e6e;
  --color-cream: #fff9e9;
  --color-red-dark: #55282d;
  --color-orange: #ff8232;
  --ease_out: cubic-bezier(0.5, 1, 0.89, 1);
  --ease_inout: cubic-bezier(0.65, 0, 0.35, 1);
  --ease_bounce: cubic-bezier(0.34, 1.56, 0.64, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* 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] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

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

input,
select {
  vertical-align: middle;
}

html {
  width: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: 0.05rem;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: "Kiwi Maru", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,
    Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
}

a {
  color: var(--color-text);
  position: relative;
  text-decoration: none;
}

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

* {
  box-sizing: border-box;
}

@media screen and (max-width: 960px) {
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}

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

*:focus-visible {
  outline: 1px solid var(--color-black) !important;
}

input,
select,
textarea {
  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;
}

button {
  font-size: 1.6rem;
  line-height: 1.3;
  font-family: "Kiwi Maru", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,
    Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ol,
ul {
  list-style: none;
}

@media screen and (min-width: 961px) {
  .is-sp {
    display: none !important;
  }

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

  .sp {
    display: none !important;
  }

  .sp-inline {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .is-pc {
    display: none !important;
  }

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

  .pc {
    display: none !important;
  }

  .pc-inline {
    display: none !important;
  }
}

@media screen and (orientation: landscape) {
  .is-port {
    display: none !important;
  }
}

@media screen and (orientation: portrait) {
  .is-land {
    display: none !important;
  }
}

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

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

img::selection {
  background: none;
}

img[height] {
  height: auto !important;
}

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

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

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

.l-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background: url("../img/common/bg.jpg") repeat center top/100% auto;
  opacity: 0;
}

.is-load .l-wrap::before {
  opacity: 1;
  transition: opacity 1.2s var(--ease_inout);
}

.l-wrap__container {
  width: 100%;
  max-width: 2000px;
  display: block;
  position: relative;
  margin: 0 auto;
  z-index: 1;
  opacity: 0;
}

.is-load .l-wrap__container {
  opacity: 1;
  transition: opacity 1.2s var(--ease_inout);
}

@media screen and (min-width: 2000px) {
  .l-wrap__container::before {
    content: "";
    width: 100%;
    max-width: 2010px;
    height: 100%;
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    transform-origin: left center;
    pointer-events: none;
    background: url("../img/common/content_left.png") repeat-y 0 50%/3.4rem auto,
      url("../img/common/content_right.png") repeat-y 100% 50%/3.8rem auto;
  }
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0 12rem;
  margin: 0 auto;
}

@media screen and (min-width: 961px) {
  .c-pagination {
    box-sizing: content-box;
  }
}

@media screen and (max-width: 960px) {
  .c-pagination {
    width: 100%;
    padding: 0 7rem;
    margin: 0 auto;
  }
}

.c-pagination__nav {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.c-pagination__nav.--prev {
  left: 0;
}

.c-pagination__nav.--next {
  right: 0;
}

.c-pagination__nav-text {
  display: block;
  position: relative;
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-orange);
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 960px) {
  .c-pagination__nav-text {
    font-size: 2rem;
  }
}

@supports (
  (-webkit-text-decoration-color: transparent) or
    (text-decoration-color: transparent)
) {
  @media (hover: hover) and (pointer: fine) {
    .c-pagination__nav-text {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out),
        -webkit-text-decoration-color 0.3s var(--ease_out);
    }

    .c-pagination__nav:hover .c-pagination__nav-text {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}

@supports not (
  (-webkit-text-decoration-color: transparent) or
    (text-decoration-color: transparent)
) {
  @media (hover: hover) and (pointer: fine) {
    .c-pagination__nav:hover .c-pagination__nav-text {
      text-decoration: underline;
    }
  }
}

.c-pagination__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 960px) {
  .c-pagination__list {
    gap: 1rem 1.5rem;
  }
}

.c-pagination__list-item {
  display: block;
  position: relative;
}

.c-pagination__link {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--color-orange);
}

.is-current .c-pagination__link {
  color: var(--color-navy);
}

@media screen and (max-width: 960px) {
  .c-pagination__link {
    width: 2rem;
    height: 2rem;
  }
}

.c-pagination__link-text {
  display: block;
  position: relative;
  font-size: 2.8rem;
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 960px) {
  .c-pagination__link-text {
    font-size: 2rem;
  }
}

@supports (
  (-webkit-text-decoration-color: transparent) or
    (text-decoration-color: transparent)
) {
  @media (hover: hover) and (pointer: fine) {
    .c-pagination__link-text {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out),
        -webkit-text-decoration-color 0.3s var(--ease_out);
    }

    .c-pagination__link:hover .c-pagination__link-text {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}

@supports not (
  (-webkit-text-decoration-color: transparent) or
    (text-decoration-color: transparent)
) {
  @media (hover: hover) and (pointer: fine) {
    .c-pagination__link:hover .c-pagination__link-text {
      text-decoration: underline;
    }
  }
}

.c-back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 2rem 4rem;
  margin: 0 auto;
}

.c-back__text {
  display: block;
  position: relative;
  font-size: 3.2rem;
  color: var(--color-orange);
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 960px) {
  .c-back__text {
    font-size: 2rem;
  }
}

@supports (
  (-webkit-text-decoration-color: transparent) or
    (text-decoration-color: transparent)
) {
  @media (hover: hover) and (pointer: fine) {
    .c-back__text {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out),
        -webkit-text-decoration-color 0.3s var(--ease_out);
    }

    .c-back:hover .c-back__text {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}

@supports not (
  (-webkit-text-decoration-color: transparent) or
    (text-decoration-color: transparent)
) {
  @media (hover: hover) and (pointer: fine) {
    .c-back:hover .c-back__text {
      text-decoration: underline;
    }
  }
}

.p-op {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  background: var(--color-white);
  pointer-events: none;
  opacity: 1;
}

.is-load .p-op {
  opacity: 0;
  transition: opacity 1.2s var(--ease_out);
}

.p-op__content {
  width: 30rem;
  max-width: 70vh;
  height: 30rem;
  max-height: 70vh;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-orange);
  border-radius: 50%;
  animation: op 0.6s var(--ease_bounce) forwards;
}

@media screen and (max-width: 960px) {
  .p-op__content {
    width: 25rem;
    height: 25rem;
  }
}

@media screen and (orientation: portrait) {
  .p-op__content {
    max-width: 70vw;
    max-height: 70vw;
  }
}

@keyframes op {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.p-op__content::before {
  content: "";
  width: 100%;
  height: 20%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-white);
}

.p-op__bg {
  width: auto;
  height: 80%;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  padding-left: 100%;
  animation: loader_bg 3s linear infinite;
}

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

@keyframes loader_bg {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

.p-op__chara {
  width: 50%;
  display: block;
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  transform-origin: right bottom;
}

.p-op__chara img {
  animation: yure 0.3s linear infinite;
}

.p-op__text {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 5%;
  left: 0;
  font-size: 2.5rem;
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: var(--color-orange);
  text-align: center;
}

@media screen and (max-width: 960px) {
  .p-op__text {
    font-size: 2rem;
  }
}

.p-top {
  display: block;
  position: relative;
  z-index: 0;
}

.p-top__header {
  display: block;
  position: relative;
  margin-bottom: calc(var(--svh) * -1);
  z-index: 0;
}

@media screen and (min-width: 961px) {
  .p-top__header {
    min-height: calc(var(--svh) * 2);
  }
}

@media screen and (max-width: 960px) {
  .p-top__header {
    min-height: calc(90vh * 2);
  }
}

.p-top__inner {
  display: block;
  position: relative;
  background: #fff url("../img/common/bg.jpg") repeat center top/100% auto;
  padding-bottom: 23.5rem;
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 960px) {
  .p-top__inner {
    padding-bottom: 16rem;
  }
}

.p-top__deco {
  width: 78%;
  display: block;
  position: absolute;
  bottom: -6%;
  right: -17%;
  z-index: -1;
}

@media screen and (max-width: 960px) {
  .p-top__deco {
    width: 132%;
    bottom: -3%;
    right: -35%;
  }
}

.p-hero {
  display: block;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  background: var(--color-white);
}

.p-hero__container {
  min-height: var(--svh);
  display: block;
  position: relative;
  overflow: hidden;
}

.p-hero__kv {
  display: block;
  position: relative;
  transform: scale(1.05);
  transform-origin: 50% 75%;
}

.is-load .p-hero__kv {
  transform: scale(1);
  transition: transform 4s var(--ease_out);
}

.p-hero__kv-img {
  min-height: var(--svh);
  display: block;
  position: relative;
  transform-origin: 50% 75%;
}

.p-hero__kv-img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 75%;
  object-position: 50% 75%;
}

.Second .p-hero__kv-img img {
  -o-object-fit: contain;
  object-fit: contain;
  background: #fff;
}

.First .p-hero__kv-img img {
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 960px) {
  .p-hero__kv-img img {
    height: auto;
  }
}

@media screen and (min-width: 961px) {
  .p-hero__inner {
    width: 100%;
    max-width: 2000px;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
}

@media screen and (max-width: 960px) {
  .p-hero__inner {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.is-load .p-hero__inner {
  opacity: 1;
  transition: opacity 2s var(--ease_inout) 0.4s;
}

.p-hero__title {
  width: 35%;
  display: block;
  position: absolute;
  top: 3%;
  right: 2%;
}

@media screen and (max-width: 960px) {
  .p-hero__title {
    width: 50%;
    top: 5%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.p-hero__catch {
  width: 17.8%;
  display: block;
  position: absolute;
}

@media screen and (min-width: 961px) {
  .p-hero__catch {
    top: 5%;
    left: 7.5%;
  }
}

@media screen and (max-width: 960px) {
  .p-hero__catch {
    width: 37%;
    top: 52%;
    left: 3.5%;
  }
}

.p-about {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.p-about__container {
  width: 100%;
  max-width: 2000px;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 12.8rem 0 8rem;
}

@media screen and (max-width: 960px) {
  .p-about__container {
    padding: 10.5rem 0 4.5rem;
  }
}

.p-about__deco {
  width: 38.5%;
  display: block;
  position: absolute;
  bottom: -1.5%;
  left: -6%;
}

@media screen and (max-width: 960px) {
  .p-about__deco {
    width: 65%;
    bottom: 1%;
    left: -15%;
  }
}

.p-about__bnr {
  width: 23.6rem;
  display: block;
  position: absolute;
  top: 3%;
  right: 1%;
}

@media screen and (max-width: 960px) {
  .p-about__bnr {
    top: 1rem;
    right: 0.6rem;
    width: 14.5rem;
  }
}

.p-about__bnr-link {
  display: block;
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .p-about__bnr-link:hover {
    animation: lock 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

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

.p-about__intro {
  display: block;
  position: relative;
  text-align: center;
  font-size: 1.8rem;
}

@media screen and (max-width: 960px) {
  .p-about__intro {
    font-size: 1.2rem;
  }
}

.p-about__intro-line {
  display: block;
  position: relative;
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.9;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .p-about__intro-line {
    line-height: 1.5;
  }
}

.p-about__intro-line strong {
  font-weight: 500;
  color: var(--color-orange);
}

.p-about__intro-line strong.--L {
  font-size: 1.5em;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 960px) {
  .p-about__intro-line strong.--L {
    font-size: 1.2em;
  }
}

.p-about__intro-line.--L {
  font-size: 1.5em;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 960px) {
  .p-about__intro-line.--L {
    font-size: 1.3em;
    letter-spacing: 0;
  }
}

.p-about__intro-line + .p-about__intro-line {
  margin-top: 2.5rem;
}

@media screen and (max-width: 960px) {
  .p-about__intro-line + .p-about__intro-line {
    margin-top: 2rem;
  }
}

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

.p-movie__wrapper {
  position: relative;
  z-index: 0;
  overflow: hidden;
  cursor: pointer;
  /* width: 120% !important; */
  padding-top: min(600px, 41%);
}

@media (max-width: 750px) {
  .p-movie__wrapper {
    padding-top: 56.25%;
  }
}

.p-movie__wrapper:hover .p-movie__content-item {
  transform: scale(1.04);
}

.p-movie__wrapper:hover .p-movie__cover {
  opacity: 0;
}

.p-movie__wrapper {
  position: relative;
  z-index: 0;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  padding-top: min(600px, 41%);
}

@media (max-width: 750px) {
  .p-movie__wrapper {
    padding-top: 56.25%;
  }
}

.p-movie__wrapper:hover .p-movie__content-item {
  transform: scale(1.04);
}

.p-movie__wrapper:hover .p-movie__cover {
  opacity: 0;
}

.p-movie__deco {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.p-movie__deco.--top {
  top: -16%;
}

@media (max-width: 750px) {
  .p-movie__deco.--top {
    top: -11%;
  }
}

.p-movie__deco.--bottom {
  bottom: -16%;
}

@media (max-width: 750px) {
  .p-movie__deco.--top {
    top: -11%;
  }
}

.p-movie__thumb {
  width: 120%;
  height: 76%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(7deg);
  overflow: hidden;
}

@media screen and (orientation: portrait) {
  .p-movie__thumb {
    height: 82%;
  }
}

.p-movie__thumb-img {
  width: 100%;
  max-width: 100vw;
  height: 150%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
}

@media screen and (orientation: portrait) {
  .p-movie__thumb-img {
    height: 120%;
  }
}

.p-movie__thumb-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-navy);
  opacity: 0.2;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .p-movie__thumb-img::before {
    transition: opacity 0.5s var(--ease_out);
  }

  .p-movie__thumb:hover .p-movie__thumb-img::before {
    opacity: 0;
  }
}

.p-movie__thumb-img::after {
  content: "";
  width: 10rem;
  height: 10rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/btn_play.png") no-repeat center/contain;
  z-index: 1;
}

.p-movie__thumb-img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1);
  opacity: 1;
}

.is-play .p-movie__thumb-img img {
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .p-movie__thumb-img img {
    transition: transform 0.5s var(--ease_out), opacity 0.5s var(--ease_out);
  }

  .p-movie__thumb:hover .p-movie__thumb-img img {
    transform: scale(1.05);
  }
}

.p-movie__thumb-bg {
  width: 100%;
  max-width: 100vw;
  height: 150%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
}

@media screen and (orientation: portrait) {
  .p-movie__thumb-bg {
    height: 120%;
  }
}

.p-movie__thumb-bg iframe {
  width: 100%;
  height: 200%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (orientation: portrait) {
  .p-movie__thumb-bg iframe {
    width: 150%;
  }
}

.p-staffcast {
  width: 100%;
  display: block;
  position: relative;
  margin: -5rem auto 0;
  padding: 8rem 0;
}

@media screen and (max-width: 960px) {
  .p-staffcast {
    margin: -2.5rem auto 0;
    padding: 4.5rem 0;
  }
}

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

.p-staffcast__inner {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto;
}

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

@media screen and (min-width: 961px) {
  .p-staffcast {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.p-staffcast + .p-staffcast {
  margin-top: 8.8rem;
}

@media screen and (min-width: 961px) {
  .p-staffcast + .p-staffcast {
    padding-left: 4.8rem;
  }
}

@media screen and (max-width: 960px) {
  .p-staffcast + .p-staffcast {
    margin-top: 4.2rem;
  }
}

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

@media screen and (min-width: 961px) {
  .p-staffcast__header {
    margin-right: 6.5rem;
  }
}

@media screen and (max-width: 960px) {
  .p-staffcast__header {
    margin-bottom: 1rem;
  }
}

.p-staffcast__title {
  display: block;
  position: relative;
  font-size: 8rem;
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2rem;
  color: var(--color-orange);
}

@media screen and (max-width: 960px) {
  .p-staffcast__title {
    font-size: 3.8rem;
  }
}

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

@media screen and (max-width: 960px) {
  .p-staffcast__inner {
    width: 90%;
    margin: 0 auto;
  }
}

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

.p-staffcast__data + .p-staffcast__data {
  margin-top: 2rem;
}

@media screen and (max-width: 960px) {
  .p-staffcast__data + .p-staffcast__data {
    margin-top: 0.6rem;
  }
}

.p-staffcast__data-cap {
  flex-shrink: 0;
  display: block;
  position: relative;
  margin-right: 2.4rem;
  font-size: 2.4rem;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--color-orange);
}

@media screen and (max-width: 960px) {
  .p-staffcast__data-cap {
    font-size: 1.4rem;
    margin-right: 1.8rem;
  }
}

.p-staffcast__data-text {
  display: block;
  position: relative;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color-navy);
}

@media screen and (max-width: 960px) {
  .p-staffcast__data-text {
    font-size: 1.4rem;
  }
}

.p-staffcast__data-text small {
  font-size: 0.6em;
  letter-spacing: 0;
}

@media screen and (max-width: 960px) {
  .p-staffcast__data-text small {
    font-size: 0.7em;
  }
}

.p-staffcast__data-badge {
  width: 2.4rem;
  display: inline-block;
  position: relative;
  top: 0.2rem;
  margin-left: 0.8rem;
}

@media screen and (max-width: 960px) {
  .p-staffcast__data-badge {
    width: 1.6rem;
    margin-left: 0.2rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .p-staffcast__data-badge {
    transition: opacity 0.3s var(--ease_out);
  }

  .p-staffcast__data-badge:hover {
    opacity: 0.8;
  }
}

.p-staffcast_comment {
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 6rem 8rem 5rem;
  color: var(--color-navy);
  background: var(--color-cream);
  border-radius: 1rem;
}

@media screen and (max-width: 960px) {
  .p-staffcast_comment {
    padding: 4rem 2.5rem 5rem;
    border-radius: 0.5rem;
  }
}

.p-staffcast_comment::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/news/news_pc_corner01.png") no-repeat 0 0/30rem auto,
    url("../img/news/news_pc_corner02.png") no-repeat 100% 0/30rem auto,
    url("../img/news/news_pc_corner03.png") no-repeat 0 100%/30rem auto,
    url("../img/news/news_pc_corner04.png") no-repeat 100% 100%/30rem auto;
  border: 2px solid var(--color-red-dark);
  border-radius: 1rem;
}

@media screen and (max-width: 960px) {
  .p-staffcast_comment::before {
    border-radius: 0.5rem;
    background: url("../img/news_sp_corner01.png") no-repeat 0 0/100% auto,
      url("../img/news_sp_corner02.png") no-repeat 0 100%/100% auto;
  }
}

.p-staffcast_comment__header {
  display: block;
  position: relative;
  margin-bottom: 2.4rem;
}

.p-staffcast_comment__cap {
  display: block;
  position: relative;
  margin-bottom: 0.2rem;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  font-weight: 400;
  color: var(--color-orange);
}

@media screen and (max-width: 960px) {
  .p-staffcast_comment__cap {
    margin-bottom: 0.1rem;
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
  }
}

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

@media screen and (min-width: 961px) {
  .p-staffcast_comment__title {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
  }
}

.p-staffcast_comment__title-main {
  display: block;
  position: relative;
  font-size: 2.4rem;
  line-height: 1.7;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .p-staffcast_comment__title-main {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.p-staffcast_comment__title-sub {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .p-staffcast_comment__title-sub {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}

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

.p-staffcast_comment__text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 960px) {
  .p-staffcast_comment__text {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.p-staffcast_comment__text a {
  color: var(--color-orange);
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  .p-staffcast_comment__text a:hover {
    text-decoration: none;
  }
}

.p-staffcast_comment__text img {
  max-width: 70%;
  height: auto !important;
  position: relative;
}

@media screen and (max-width: 960px) {
  .p-staffcast_comment__text img {
    max-width: 100%;
  }
}

.p-staffcast_comment__text iframe {
  max-width: 70%;
}

@supports (aspect-ratio: 16/9) {
  .p-staffcast_comment__text iframe {
    width: 100%;
    display: block;
    height: auto !important;
    aspect-ratio: 16/9;
  }
}

@media screen and (max-width: 960px) {
  .p-staffcast_comment__text iframe {
    max-width: 100%;
  }
}

.p-headline {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 10.5rem 0 8.5rem;
}

@media screen and (max-width: 960px) {
  .p-headline {
    padding: 4.7rem 0 5.2rem;
  }
}

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

.p-headline__header {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto 4rem;
}

@media screen and (max-width: 960px) {
  .p-headline__header {
    margin-bottom: 1.4rem;
  }
}

.p-headline__title {
  display: block;
  position: relative;
  font-size: 8rem;
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2rem;
  color: var(--color-orange);
  text-align: right;
}

@media screen and (max-width: 960px) {
  .p-headline__title {
    font-size: 4rem;
  }
}

.p-headline__inner {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto;
}

.p-headline__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
  position: relative;
}

@media screen and (max-width: 960px) {
  .p-headline__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.45rem;
  }
}

.p-headline__list-item {
  min-width: 0;
  display: block;
  position: relative;
}

.p-headline__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-top: 1.5rem;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .p-headline__more {
    margin-top: 0.3rem;
  }
}

.p-headline__more-text {
  display: block;
  position: relative;
  font-size: 3.4rem;
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: var(--color-orange);
}

@media screen and (max-width: 960px) {
  .p-headline__more-text {
    font-size: 2.2rem;
  }
}

@supports (
  (-webkit-text-decoration-color: transparent) or
    (text-decoration-color: transparent)
) {
  @media (hover: hover) and (pointer: fine) {
    .p-headline__more-text {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out),
        -webkit-text-decoration-color 0.3s var(--ease_out);
    }

    .p-headline__more:hover .p-headline__more-text {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}

@supports not (
  (-webkit-text-decoration-color: transparent) or
    (text-decoration-color: transparent)
) {
  @media (hover: hover) and (pointer: fine) {
    .p-headline__more:hover .p-headline__more-text {
      text-decoration: underline;
    }
  }
}

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

@media (hover: hover) and (pointer: fine) {
  .p-headline_article:hover {
    animation: lock 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

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

.p-headline_article__content {
  width: 80%;
  display: block;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 960px) {
  .p-headline_article__content {
    width: 90%;
  }
}

.p-headline_article__date {
  display: block;
  position: relative;
  margin-bottom: 0.8rem;
  font-size: 2.2rem;
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: 400;
  color: var(--color-orange);
}

@media screen and (max-width: 960px) {
  .p-headline_article__date {
    margin-bottom: 0.1rem;
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
  }
}

.p-headline_article__title {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .p-headline_article__title {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

@supports (
  (-webkit-text-decoration-color: transparent) or
    (text-decoration-color: transparent)
) {
  @media (hover: hover) and (pointer: fine) {
    .p-headline_article__title {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out),
        -webkit-text-decoration-color 0.3s var(--ease_out);
    }

    .p-headline_article:hover .p-headline_article__title {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}

@supports not (
  (-webkit-text-decoration-color: transparent) or
    (text-decoration-color: transparent)
) {
  @media (hover: hover) and (pointer: fine) {
    .p-headline_article:hover .p-headline_article__title {
      text-decoration: underline;
    }
  }
}

.p-official {
  width: 53.5rem;
  display: block;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .p-official {
    width: 27rem;
  }
}

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

@media (hover: hover) and (pointer: fine) {
  .p-official__link:hover {
    animation: lock 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

.p-motercycle {
  width: 100%;
  height: 1px;
  display: block;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s var(--ease_out);
}

.is-scroll .p-motercycle {
  opacity: 1;
}

.p-motercycle__container {
  width: 100%;
  height: 12rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.p-motercycle__inner {
  width: calc(100% + 15rem);
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 960px) {
  .p-motercycle__inner {
    width: calc(100% + 9rem);
  }
}

.p-motercycle__chara {
  width: 14.5rem;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(100%, 0);
}

@media screen and (max-width: 960px) {
  .p-motercycle__chara {
    width: 8rem;
  }
}

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

.p-motercycle__chara-img img {
  animation: yure 0.3s linear infinite;
}

@keyframes yure {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(1.5px);
  }

  100% {
    transform: translateY(0);
  }
}

.p-page {
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff url("../img/common/bg.jpg") repeat center top/100% auto;
  z-index: 0;
}

.p-page__header {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  background: url("../img/top/main.jpg") no-repeat center/cover;
}

.p-page__header-in {
  width: 92.5%;
  height: 20rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .p-page__header-in {
    width: 90%;
    height: 10rem;
  }
}

.p-page__title {
  display: block;
  position: relative;
  font-size: 10.3rem;
  font-weight: 400;
  color: var(--color-white);
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 960px) {
  .p-page__title {
    font-size: 4.8rem;
    letter-spacing: 0.2rem;
  }
}

.p-page__brand {
  width: 27.2rem;
  display: block;
  position: relative;
}

@media screen and (max-width: 960px) {
  .p-page__brand {
    width: 14rem;
  }
}

.p-page__inner {
  display: block;
  position: relative;
  padding: 10rem 0 26.4rem;
}

@media screen and (max-width: 960px) {
  .p-page__inner {
    padding: 4.7rem 0 14rem;
  }
}

.p-page__deco {
  width: 78%;
  display: block;
  position: absolute;
  bottom: -14%;
  right: -17%;
  z-index: -1;
}

@media screen and (max-width: 960px) {
  .p-page__deco {
    width: 132%;
    bottom: -5%;
    right: -38%;
  }
}

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

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

.p-news__header {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto 4rem;
}

@media screen and (max-width: 960px) {
  .p-news__header {
    margin-bottom: 1.4rem;
  }
}

.p-news__title {
  display: block;
  position: relative;
  font-size: 8rem;
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2rem;
  color: var(--color-orange);
  text-align: right;
}

@media screen and (max-width: 960px) {
  .p-news__title {
    font-size: 4rem;
  }
}

.p-news__inner {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto;
}

.p-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
  position: relative;
}

@media screen and (max-width: 960px) {
  .p-news__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.45rem;
  }
}

.p-news__list-item {
  min-width: 0;
  display: block;
  position: relative;
}

.p-news__pagination {
  display: block;
  position: relative;
  margin-top: 6.8rem;
}

@media screen and (max-width: 960px) {
  .p-news__pagination {
    margin-top: 4rem;
  }
}

.p-news__back {
  display: block;
  position: relative;
  margin-top: 0.8rem;
}

@media screen and (max-width: 960px) {
  .p-news__back {
    margin-top: 0.4rem;
  }
}

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

@media (hover: hover) and (pointer: fine) {
  .p-news_article:hover {
    animation: lock 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

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

.p-news_article__content {
  width: 80%;
  display: block;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 960px) {
  .p-news_article__content {
    width: 90%;
  }
}

.p-news_article__date {
  display: block;
  position: relative;
  margin-bottom: 0.8rem;
  font-size: 2.2rem;
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: 400;
  color: var(--color-orange);
}

@media screen and (max-width: 960px) {
  .p-news_article__date {
    margin-bottom: 0.1rem;
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
  }
}

.p-news_article__title {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .p-news_article__title {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

@supports (
  (-webkit-text-decoration-color: transparent) or
    (text-decoration-color: transparent)
) {
  @media (hover: hover) and (pointer: fine) {
    .p-news_article__title {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out),
        -webkit-text-decoration-color 0.3s var(--ease_out);
    }

    .p-news_article:hover .p-news_article__title {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}

@supports not (
  (-webkit-text-decoration-color: transparent) or
    (text-decoration-color: transparent)
) {
  @media (hover: hover) and (pointer: fine) {
    .p-news_article:hover .p-news_article__title {
      text-decoration: underline;
    }
  }
}

.p-news_single {
  display: block;
  position: relative;
  padding: 3.4rem 4rem 5rem;
  color: var(--color-navy);
  background: var(--color-cream);
  border-radius: 1rem;
}

@media screen and (max-width: 960px) {
  .p-news_single {
    padding: 2rem 2rem 3rem;
    border-radius: 0.5rem;
  }
}

.p-news_single::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/news_pc_corner01.png") no-repeat 0 0/30rem auto,
    url("../img/news_pc_corner02.png") no-repeat 100% 0/30rem auto,
    url("../img/news_pc_corner03.png") no-repeat 0 100%/30rem auto,
    url("../img/news_pc_corner04.png") no-repeat 100% 100%/30rem auto;
  border: 2px solid var(--color-red-dark);
  border-radius: 1rem;
}

@media screen and (max-width: 960px) {
  .p-news_single::before {
    border-radius: 0.5rem;
    background: url("../img/news_sp_corner01.png") no-repeat 0 0/100% auto,
      url("../img/news_sp_corner02.png") no-repeat 0 100%/100% auto;
  }
}

.p-news_single__header {
  display: block;
  position: relative;
  margin-bottom: 2rem;
}

.p-news_single__date {
  display: block;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 2.2rem;
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: 400;
  color: var(--color-orange);
}

@media screen and (max-width: 960px) {
  .p-news_single__date {
    margin-bottom: 0.1rem;
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
  }
}

.p-news_single__title {
  display: block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .p-news_single__title {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

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

.p-news_single__text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 960px) {
  .p-news_single__text {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.p-news_single__text a {
  color: var(--color-orange);
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  .p-news_single__text a:hover {
    text-decoration: none;
  }
}

.p-news_single__text img {
  max-width: 70%;
  height: auto !important;
  position: relative;
}

@media screen and (max-width: 960px) {
  .p-news_single__text img {
    max-width: 100%;
  }
}

.p-news_single__text iframe {
  max-width: 70%;
}

@supports (aspect-ratio: 16/9) {
  .p-news_single__text iframe {
    width: 100%;
    display: block;
    height: auto !important;
    aspect-ratio: 16/9;
  }
}

@media screen and (max-width: 960px) {
  .p-news_single__text iframe {
    max-width: 100%;
  }
}

.u-text-indent {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}

.u-ta-center {
  text-align: center !important;
}

.u-display-block {
  display: block !important;
}

.u-display-inline-block {
  display: inline-block !important;
}

.u-ta-left {
  text-align: left !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-fw-lighter {
  font-weight: lighter !important;
}

.u-fw-normal {
  font-weight: normal !important;
}

.u-fw-bold {
  font-weight: bold !important;
}

.u-fs-1 {
  font-size: 0.1em;
}

.u-fs-2 {
  font-size: 0.2em;
}

.u-fs-3 {
  font-size: 0.3em;
}

.u-fs-4 {
  font-size: 0.4em;
}

.u-fs-5 {
  font-size: 0.5em;
}

.u-fs-6 {
  font-size: 0.6em;
}

.u-fs-7 {
  font-size: 0.7em;
}

.u-fs-8 {
  font-size: 0.8em;
}

.u-fs-9 {
  font-size: 0.9em;
}

.u-fs-10 {
  font-size: 1em;
}

.u-fs-11 {
  font-size: 1.1em;
}

.u-fs-12 {
  font-size: 1.2em;
}

.u-fs-13 {
  font-size: 1.3em;
}

.u-fs-14 {
  font-size: 1.4em;
}

.u-fs-15 {
  font-size: 1.5em;
}

.u-fs-16 {
  font-size: 1.6em;
}

.u-fs-17 {
  font-size: 1.7em;
}

.u-fs-18 {
  font-size: 1.8em;
}

.u-fs-19 {
  font-size: 1.9em;
}

.u-fs-20 {
  font-size: 2em;
}

.u-color-white {
  color: var(--color-white);
}

.u-color-black {
  color: var(--color-black);
}

.u-lazy {
  min-height: 10rem;
  opacity: 0;
}

.u-lazy.is-lazy-loaded {
  opacity: 1;
  min-height: auto;
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
}

.u-lazy__loader {
  height: 4rem;
  width: 4rem;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 25;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  pointer-events: none;
}

.is-lazy-loading + .u-lazy__loader {
  display: block;
}

.u-lazy__loader::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top: 2px solid var(--color-black);
  pointer-events: none;
}

.is-lazy-loading + .u-lazy__loader::before {
  content: "";
  animation: rotate 0.6s linear infinite;
}

[data-modal] {
  cursor: pointer;
}

template {
  display: none;
}

.m-modal {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  overflow: auto;
  visibility: hidden;
  touch-action: none;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.5s var(--ease_out);
}

.m-modal.is-open {
  opacity: 1;
}

.m-modal.is-open {
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}

.m-modal.is-load-start {
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}

.m-modal.is-close {
  visibility: hidden;
  touch-action: none;
  pointer-events: none;
}

.m-modal__container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 3% 0;
  z-index: 0;
}

@media screen and (orientation: portrait) {
  .m-modal__container {
    padding: 5% 0;
  }
}

.m-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: -1;
}

.m-modal__content {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
}

@media screen and (max-width: 960px) {
  .m-modal__content {
    width: 93%;
  }
}

[data-modal-type="youtube"] .m-modal__content {
  width: 95%;
  padding: 2rem;
  background: var(--color-cream);
  max-width: min(153vh, 1600px);
  border-radius: 1rem;
}

@media screen and (max-width: 960px) {
  [data-modal-type="youtube"] .m-modal__content {
    width: 100%;
    border-radius: 0.5rem;
    max-width: min(153vh, 750px);
  }
}

[data-modal-type="youtube"] .m-modal__content::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/news_pc_corner01.png") no-repeat 0 0/30rem auto,
    url("../img/news_pc_corner02.png") no-repeat 100% 0/30rem auto,
    url("../img/news_pc_corner03.png") no-repeat 0 100%/30rem auto,
    url("../img/news_pc_corner04.png") no-repeat 100% 100%/30rem auto;
  border: 2px solid var(--color-red-dark);
  border-radius: 1rem;
}

@media screen and (max-width: 960px) {
  [data-modal-type="youtube"] .m-modal__content::before {
    border-radius: 0.5rem;
    background: url("../img/news_sp_corner01.png") no-repeat 0 0/100% auto,
      url("../img/news_sp_corner02.png") no-repeat 0 100%/100% auto;
  }
}

.is-modal-show .m-modal__content {
  opacity: 1;
}

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

@media screen and (max-width: 960px) {
  .is-modal-overflow-prep .m-modal__content {
    margin-top: 8rem;
  }
}

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

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

.m-modal__close {
  width: 7rem;
  height: 7rem;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 1;
  background: var(--color-cream);
  border-radius: 50%;
  border: 2px solid var(--color-red-dark);
  transform: translate(30%, -30%);
}

@media screen and (max-width: 960px) {
  .m-modal__close {
    width: 5rem;
    height: 5rem;
    top: 0.8rem;
    right: 0.8rem;
  }
}

.m-modal__close::before {
  content: "";
  width: 60%;
  height: 0.5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--color-red-dark);
  border-radius: 20rem;
}

.m-modal__close::after {
  content: "";
  width: 60%;
  height: 0.5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--color-red-dark);
  border-radius: 20rem;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes arrow {
  0% {
    opacity: 1;
    transform: translate(0, 0);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }

  25% {
    opacity: 0;
    transform: translate(1rem, 0);
  }

  26% {
    opacity: 0;
    transform: translate(-1rem, 0);
  }

  50% {
    opacity: 0;
    transform: translate(-1rem, 0);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }

  75% {
    opacity: 1;
    transform: translate(0, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes arrow_prev {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }

  25% {
    opacity: 0;
    transform: translate(-1rem, 0) scale(-1, 1);
  }

  26% {
    opacity: 0;
    transform: translate(1rem, 0) scale(-1, 1);
  }

  50% {
    opacity: 0;
    transform: translate(1rem, 0) scale(-1, 1);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }

  75% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
  }
}

@keyframes arrow_centerY {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }

  25% {
    opacity: 0;
    transform: translate(1rem, -50%);
  }

  26% {
    opacity: 0;
    transform: translate(-1rem, -50%);
  }

  50% {
    opacity: 0;
    transform: translate(-1rem, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }

  75% {
    opacity: 1;
    transform: translate(0, -50%);
  }

  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes arrow_centerY_prev {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }

  25% {
    opacity: 0;
    transform: translate(-1rem, -50%);
  }

  26% {
    opacity: 0;
    transform: translate(1rem, -50%);
  }

  50% {
    opacity: 0;
    transform: translate(1rem, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }

  75% {
    opacity: 1;
    transform: translate(0, -50%);
  }

  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes skeleton_screen {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}

@keyframes lock {
  10% {
    transform: rotate(1.2deg);
  }

  20% {
    transform: rotate(-2.5deg);
  }

  30% {
    transform: rotate(4deg);
  }

  40% {
    transform: rotate(-1.5deg);
  }

  50% {
    transform: rotate(3deg);
  }

  60% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0);
  }
}

.p-music {
  padding-bottom: 100px;
  padding-top: 60px;
  margin-top: -60px;
}

@media screen and (max-width: 960px) {
  .p-music {
    padding: 5rem 0 5.2rem;
    margin-top: -5rem;
  }
}

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

.p-music__header {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto 4rem;
}

.p-music__title {
  display: block;
  position: relative;
  font-size: 8rem;
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2rem;
  color: var(--color-orange);
}

@media screen and (max-width: 960px) {
  .p-music__title {
    font-size: 4rem;
  }
}

.p-music__inner {
  width: 90%;
  max-width: 100rem;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
}

@media screen and (max-width: 960px) {
  .p-music__inner {
    display: block;
  }
}

.p-music__op,
.p-music__ed {
  width: 48%;
}

@media screen and (max-width: 960px) {
  .p-music__op,
  .p-music__ed {
    width: 100%;
  }
}

@media screen and (min-width: 961px) {
  .p-music__ed {
    margin-left: 4%;
  }
}

@media screen and (max-width: 960px) {
  .p-music__ed {
    margin-top: 40px;
  }
}

.p-music__ed .p-music__img {
  border: 1px #eee solid;
}

.p-music__cap {
  text-align: center;
  font-size: 2rem;
  color: var(--color-orange);
}

@media screen and (max-width: 960px) {
  .p-music__cap {
    font-size: 1.5rem;
  }
}

.p-music__song {
  text-align: center;
  font-size: 2.4rem;
  margin-top: 10px;
}

@media screen and (max-width: 960px) {
  .p-music__song {
    font-size: 2rem;
    margin-top: 5px;
  }
}

.p-music__img {
  margin-top: 25px;
}

@media screen and (max-width: 960px) {
  .p-music__img {
    margin-top: 15px;
  }
}

.p-music__artist {
  text-align: center;
  margin-top: 20px;
  font-size: 2.4rem;
}

@media screen and (max-width: 960px) {
  .p-music__artist {
    font-size: 2rem;
    margin-top: 10px;
  }
}

.p-music__artist p {
  display: inline-block;
}

.p-music__artist .p-staffcast__data-badge {
  top: 0.4rem;
  margin-left: 0.4rem;
}

@media screen and (max-width: 960px) {
  .p-music__artist .p-staffcast__data-badge {
    top: 0.2rem;
  }
}

/***********************************************************************************/
.p-kv__image-pagination {
  position: absolute;
  z-index: 10;
}

@media screen and (min-width: 961px) {
  .p-kv__image-pagination {
    top: 15px;
    left: 15px;
  }
}

@media screen and (max-width: 960px) {
  .p-kv__image-pagination {
    top: 10px;
    right: -1px;
  }
}

.p-kv__image-pagination-list-item {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  margin: 0;
  margin-bottom: 4px;
  background: transparent;
  border-radius: 0;
  opacity: 1;
  overflow: hidden;
  border: solid #fff 2px;
}

@media screen and (max-width: 960px) {
  .p-kv__image-pagination-list-item {
    border: solid #fff 1px;
  }
}

.p-kv__image-pagination-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  opacity: 0.5;
}

@media screen and (max-width: 960px) {
  .p-kv__image-pagination-list-item {
    width: 40px;
    height: 40px;
  }
}

.p-kv__image-pagination-list-item.swiper-pagination-bullet-active::before {
  opacity: 0;
}

.swiper-slide-duplicate-active {
  opacity: 1 !important;
}

.p-hero__container {
  position: absolute;
}

.p-hero__container:first-child .p-hero__kv .p-hero__kv-img {
  min-height: 80vh !important;
}

.p-hero__container:first-child .p-hero__kv .p-hero__kv-img img {
  height: auto !important;
}

.p-hero .swiper {
  height: 100vh;
}

.p-music {
  padding-bottom: 100px;
}

@media screen and (max-width: 960px) {
  .p-music {
    padding: 0 0 5.2rem;
  }
}

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

.p-music__header {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto 4rem;
}

.p-music__title {
  display: block;
  position: relative;
  font-size: 8rem;
  font-family: "Luckiest Guy", "Kiwi Maru", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2rem;
  color: var(--color-orange);
}

@media screen and (max-width: 960px) {
  .p-music__title {
    font-size: 4rem;
  }
}

.p-music__inner {
  width: 90%;
  max-width: 100rem;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
}

@media screen and (max-width: 960px) {
  .p-music__inner {
    display: block;
  }
}

.p-music__op,
.p-music__ed {
  width: 48%;
}

@media screen and (max-width: 960px) {
  .p-music__op,
  .p-music__ed {
    width: 100%;
  }
}

@media screen and (min-width: 961px) {
  .p-music__ed {
    margin-left: 4%;
  }
}

@media screen and (max-width: 960px) {
  .p-music__ed {
    margin-top: 40px;
  }
}

.p-music__ed .p-music__img {
  border: 1px #eee solid;
}

.p-music__cap {
  text-align: center;
  font-size: 2rem;
  color: var(--color-orange);
}

@media screen and (max-width: 960px) {
  .p-music__cap {
    font-size: 1.5rem;
  }
}

.p-music__song {
  text-align: center;
  font-size: 2.4rem;
  margin-top: 10px;
}

@media screen and (max-width: 960px) {
  .p-music__song {
    font-size: 2rem;
    margin-top: 5px;
  }
}

.p-music__img {
  margin-top: 25px;
}

@media screen and (max-width: 960px) {
  .p-music__img {
    margin-top: 15px;
  }
}

.p-music__artist {
  text-align: center;
  margin-top: 20px;
  font-size: 2.4rem;
}

@media screen and (max-width: 960px) {
  .p-music__artist {
    font-size: 2rem;
    margin-top: 10px;
  }
}

.p-music__artist p {
  display: inline-block;
}

.p-music__artist .p-staffcast__data-badge {
  top: 0.4rem;
  margin-left: 0.4rem;
}

@media screen and (max-width: 960px) {
  .p-music__artist .p-staffcast__data-badge {
    top: 0.2rem;
  }
}

/***********************************************************************************/
.p-kv__image-pagination {
  position: absolute;
  z-index: 10;
}

@media screen and (min-width: 961px) {
  .p-kv__image-pagination {
    top: 15px;
    left: 15px;
  }
}

@media screen and (max-width: 960px) {
  .p-kv__image-pagination {
    top: 10px;
    right: -1px;
  }
}

.p-kv__image-pagination-list-item {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  margin: 0;
  margin-bottom: 4px;
  background: transparent;
  border-radius: 0;
  opacity: 1;
  overflow: hidden;
  border: solid #fff 2px;
}

@media screen and (max-width: 960px) {
  .p-kv__image-pagination-list-item {
    border: solid #fff 1px;
  }
}

.p-kv__image-pagination-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  opacity: 0.5;
}

@media screen and (max-width: 960px) {
  .p-kv__image-pagination-list-item {
    width: 40px;
    height: 40px;
  }
}

.p-kv__image-pagination-list-item.swiper-pagination-bullet-active::before {
  opacity: 0;
}

.p-hero .swiper-slide-duplicate-active {
  opacity: 1 !important;
}

.p-hero__container {
  position: absolute;
}

.p-hero__container:first-child .p-hero__kv .p-hero__kv-img {
  min-height: 80vh !important;
}

.p-hero__container:first-child .p-hero__kv .p-hero__kv-img img {
  height: auto !important;
}

/*****************************************/
.Second .p-hero__title {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 70%;
  width: 50%;
}

.Second .p-hero__catch {
  width: 15.8%;
  top: 18px;
  left: 110px;
}

@media (max-width: 750px) {
  .Second .p-hero__catch {
    width: 24%;
    top: 150px;
    left: 10px;
  }
}

.Slide {
  position: relative;
  width: 100%;
}

.Slide li {
  height: 100px;
}

/*****************************************/
.p-movie {
  margin: 80px 0;
}

@media (max-width: 750px) {
  .p-movie {
    margin: 50px 0;
  }
}

.btn_play {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(-7deg);
  transform: translate(-50%, -50%) rotateZ(-7deg);
  z-index: 10;
}

.p-movie__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  padding-top: 56.25%;
}

.p-movie__content-item {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    -webkit-transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.p-movie__content-item iframe {
  width: 100%;
  height: 100%;
}

.p-movie__content-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0 !important;
}

.movie-active .p-movie__content-thumbnail {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0;
  -webkit-transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.p-movie__slide-prev {
  position: absolute;
  top: -30px;
  right: 120px;
  width: 60px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  z-index: 10;
  cursor: pointer;
}

@media (max-width: 750px) {
  .p-movie__slide-prev {
    top: -15%;
    right: 16%;
    width: 10%;
  }
}

.p-movie__slide-next {
  position: absolute;
  top: -30px;
  right: 50px;
  width: 60px;
  z-index: 10;
  cursor: pointer;
}

@media (max-width: 750px) {
  .p-movie__slide-next {
    top: -15%;
    right: 5%;
    width: 10%;
  }
}

.p-movie__area {
  position: relative;
  -webkit-transform: rotateZ(7deg);
  transform: rotateZ(7deg);
  overflow: hidden;
  width: 120%;
  left: -10%;
}

.p-movie__area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-navy);
}

.p-movie__area .swiper-slide {
  width: 100%;
}

.p-movie .swiper {
  overflow: visible;
}

.p-music__release_wrap a {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.p-music__release_wrap a:hover {
  text-decoration: underline;
}
.p-music__release {
  font-size: 2rem;
  line-height: 1em;
}
.p-music__link {
  width: 14px;
  margin: 3px 0 0 8px;
}

@media (max-width: 750px) {
  .p-music__release_wrap a {
    margin: 10px 0 20px;
  }
  .p-music__release {
    font-size: 1.6rem;
  }
  .p-music__link {
    width: 12px;
    margin: 2px 0 0 8px;
  }
}

.p-catch_onair {
  width: 90%;
  margin: 0 auto 30px;
}
