@charset "UTF-8";

:root {
  --svh: 100vh;
  --color-text: var(--color-black);
  --color-bg: var(--color-white);
  --color-black: #000;
  --color-white: #fff;
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-red: #f0555a;
  --color-red-dark: #a8272c;
  --color-red-bg: rgba(240, 85, 90, 0.5);
  --color-teal: #00b4aa;
  --color-teal-dark: #017670;
  --color-teal-bg: rgba(0, 180, 170, 0.5);
  --ease_out: cubic-bezier(0.5, 1, 0.89, 1);
  --ease_inout: cubic-bezier(0.65, 0, 0.35, 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: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", 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: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  letter-spacing: 0.05rem;
  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 {
  max-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);
}

[v-cloak] {
  display: none;
}

.l-wrap {
  display: block;
  position: relative;
  background: var(--color-white);
  opacity: 0;
}

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

.l-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg_repeat.png") repeat 0 0/4.5rem auto;
}

.l-wrap__container {
  width: 100%;
  min-height: var(--svh);
  display: block;
  position: relative;
  margin: 0 auto;
}

.l-wrap__bg {
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.l-wrap__bg canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.l-footer {
  display: block;
  position: relative;
  background: var(--color-red);
  margin-top: 6.4rem;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .l-footer {
    margin-top: 3.6rem;
  }
}

.l-footer__visual {
  width: 100%;
  height: 50rem;
  display: block;
  position: relative;
  margin: 0 auto;
  background: url("../img/footer_kv_repeat.jpg") repeat-x 0 50%/175rem auto;
}

@media screen and (max-width: 960px) {
  .l-footer__visual {
    height: 25rem;
    background-size: 87.5rem auto;
  }
}

.is-load .l-footer__visual {
  animation: footer_kv 60s linear infinite;
}

@media screen and (max-width: 960px) {
  .is-load .l-footer__visual {
    animation-duration: 120s;
  }
}

@keyframes footer_kv {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: -175rem;
  }
}

.l-footer__container {
  display: block;
  position: relative;
  padding: 4rem 0;
}

@media screen and (max-width: 960px) {
  .l-footer__container {
    padding: 6rem 0;
  }
}

.l-footer__content {
  width: 93%;
  display: block;
  position: relative;
  margin: 0 auto;
}

@media screen and (min-width: 961px) {
  .l-footer__content {
    padding-left: 50%;
  }
}

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

@media screen and (min-width: 961px) {
  .l-footer__official {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
  }
}

@media screen and (max-width: 960px) {
  .l-footer__official {
    width: 25rem;
    margin: 0 auto;
  }
}

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

@media screen and (min-width: 961px) {
  .l-footer__share {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}

@media screen and (max-width: 960px) {
  .l-footer__share {
    margin: 5rem auto 0;
  }
}

.l-footer__help {
  display: block;
  position: relative;
  margin-top: 2.8rem;
}

@media screen and (min-width: 961px) {
  .l-footer__help {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}

@media screen and (max-width: 960px) {
  .l-footer__help {
    margin-top: 3.5rem;
  }
}

.l-footer__legal {
  display: block;
  position: relative;
  margin-top: 1.8rem;
}

@media screen and (min-width: 961px) {
  .l-footer__legal {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}

@media screen and (max-width: 960px) {
  .l-footer__legal {
    margin-top: 2.4rem;
  }
}

.l-footer__legal-text {
  display: block;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-white);
  text-align: right;
}

@media screen and (max-width: 960px) {
  .l-footer__legal-text {
    font-size: 1rem;
    text-align: center;
    line-height: 2;
  }
}

.l-footer__legal-text+.l-footer__legal-text {
  margin-top: 1rem;
}

@media screen and (max-width: 960px) {
  .l-footer__legal-text+.l-footer__legal-text {
    margin-top: 1.5rem;
  }
}

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

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

@media screen and (min-width: 961px) {
  .l-footer_official__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
  }
}

.l-footer_official__list-item {
  display: block;
  position: relative;
}

@media screen and (max-width: 960px) {
  .l-footer_official__list-item+.l-footer_official__list-item {
    margin-top: 1.5rem;
  }
}

.l-footer_official__link {
  width: 33.5rem;
  display: block;
  position: relative;
  background: var(--color-white);
}

@media screen and (max-width: 960px) {
  .l-footer_official__link {
    width: 100%;
  }
}

.l-footer_official__link::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-red);
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .l-footer_official__link::after {
    transition: opacity 0.4s var(--ease_out);
  }

  .l-footer_official__link:hover::after {
    opacity: 0.4;
  }
}

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

.l-footer_share__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  gap: 3rem;
}

@media screen and (max-width: 960px) {
  .l-footer_share__list {
    justify-content: center;
    gap: 4rem;
  }
}

.l-footer_share__list-item {
  display: block;
  position: relative;
}

.l-footer_share__link {
  width: 3.4rem;
  display: block;
  position: relative;
}

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

  .l-footer_share__link:hover {
    opacity: 0.7;
  }
}

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

@media screen and (max-width: 960px) {
  .l-footer_help {
    width: 30rem;
    margin: 0 auto;
  }
}

.l-footer_help__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  gap: 4.5rem;
}

@media screen and (max-width: 960px) {
  .l-footer_help__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
}

.l-footer_help__list-item {
  display: block;
  position: relative;
}

@media screen and (min-width: 961px) {
  .l-footer_help__list-item+.l-footer_help__list-item::before {
    content: "";
    width: 1px;
    height: 90%;
    display: block;
    position: absolute;
    bottom: 0;
    left: -2.25rem;
    border-left: 1px solid var(--color-white);
  }
}

@media screen and (max-width: 960px) {
  .l-footer_help__list-item {
    width: calc(50% - 0.3rem);
  }

  .l-footer_help__list-item:nth-child(2n)::before {
    content: "";
    width: 1px;
    height: 90%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    border-left: 1px solid var(--color-white);
  }
}

.l-footer_help__link {
  display: block;
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 0;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  color: var(--color-white);
}

@media screen and (max-width: 960px) {
  .l-footer_help__link {
    text-align: center;
  }
}

@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .l-footer_help__link {
      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);
    }

    .l-footer_help__link:hover {
      -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) {
    .l-footer_help__link:hover {
      text-decoration: underline;
    }
  }
}

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

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

.p-hero__bg-line {
  width: 0;
  height: 20rem;
  display: block;
  position: absolute;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .p-hero__bg-line {
    height: 10rem;
  }
}

.is-load .p-hero__bg-line {
  width: 100%;
  transition: width 0.8s var(--ease_inout);
}

.is-load .p-hero__bg-line:nth-child(1) {
  transition-delay: 0.3s;
}

.is-load .p-hero__bg-line:nth-child(2) {
  transition-delay: 0.4s;
}

.is-load .p-hero__bg-line:nth-child(3) {
  transition-delay: 0.5s;
}

.is-load .p-hero__bg-line:nth-child(4) {
  transition-delay: 0.6s;
}

.is-load .p-hero__bg-line:nth-child(5) {
  transition-delay: 0.7s;
}

.is-load .p-hero__bg-line:nth-child(6) {
  transition-delay: 0.8s;
}

.is-load .p-hero__bg-line:nth-child(7) {
  transition-delay: 0.9s;
}

.is-load .p-hero__bg-line:nth-child(8) {
  transition-delay: 1s;
}

.is-load .p-hero__bg-line:nth-child(9) {
  transition-delay: 1.1s;
}

.is-load .p-hero__bg-line:nth-child(10) {
  transition-delay: 1.2s;
}

.p-hero__bg-line.--top {
  top: 0;
  left: 0;
}

.p-hero__bg-line.--bottom {
  bottom: 0;
  right: 0;
}

.p-hero__bg-line::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
}

.is-load .p-hero__bg-line::before {
  animation: hero_kv 60s linear infinite;
}

@media screen and (max-width: 960px) {
  .is-load .p-hero__bg-line::before {
    animation: hero_kv_sp 60s linear infinite;
  }
}

@keyframes hero_kv {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: -175rem;
  }
}

@keyframes hero_kv_sp {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: -105rem;
  }
}

.p-hero__bg-line.--top::before {
  background: url("../img/kv_img_top.jpg") repeat-x 0 0/175rem auto;
  left: 0;
}

@media screen and (max-width: 960px) {
  .p-hero__bg-line.--top::before {
    background-size: 105rem auto;
  }
}

.p-hero__bg-line.--bottom::before {
  background: url("../img/kv_img_down.jpg") repeat-x 100% 100%/175rem auto;
  right: 0;
  animation-direction: reverse;
}

@media screen and (max-width: 960px) {
  .p-hero__bg-line.--bottom::before {
    background-size: 105rem auto;
  }
}

.p-hero__bg-text {
  content: "";
  width: 100%;
  height: 29rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: url("../img/kv_bg_l.png") repeat 0 50%/551.95rem auto;
}

.is-load .p-hero__bg-text {
  animation: hero_text_L 140s linear infinite;
}

@keyframes hero_text_L {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: -551.95rem;
  }
}

.p-hero__bg-text::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/kv_bg_s.png") repeat-x 0 50%/28rem auto;
}

.is-load .p-hero__bg-text::before {
  animation: hero_text_S 20s linear infinite;
}

@keyframes hero_text_S {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 28rem;
  }
}

.p-hero__container {
  display: block;
  position: relative;
  padding: 14rem 0;
}

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

.p-hero__content {
  display: block;
  position: relative;
  padding: 7.2rem 0 8.2rem;
}

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

.p-hero__title {
  width: 65rem;
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: rotateY(360.1deg);
  top: 120px;
}

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

.is-load .p-hero__title {
  opacity: 1;
  top: 0;
  transform: rotateY(0deg);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, top 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s, transform 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;
}

.p-intro {
  display: block;
  position: relative;
  margin-top: 11rem;
  opacity: 0;
}

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

.is-load .p-intro {
  opacity: 1;
  transition: opacity 1.2s var(--ease_inout) 0.3s;
}

.p-intro__text {
  display: block;
  font-size: 2.2rem;
  position: relative;
  font-weight: 600;
  line-height: 2.05;
  text-align: center;
}

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

.p-section {
  display: block;
  position: relative;
  margin-top: 5.1rem;
  padding: 7.4rem 0;
  opacity: 0;
}

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

.p-section+.p-section {
  margin-top: 0;
}

.is-load .p-section {
  opacity: 1;
  transition: opacity 1.2s var(--ease_inout) 0.3s;
}

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

.p-section__header {
  display: block;
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

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

#period .p-section__header::before {
  --bg_size: 121.5rem;
  --bg_ratio: 1;
  background: url("../img/title_date_bg.png") repeat-x 0 50%/var(--bg_size) auto;
}

@media screen and (max-width: 960px) {
  #period .p-section__header::before {
    --bg_size: 72.9rem;
  }
}

#howto .p-section__header::before {
  --bg_size: 66.5rem;
  --bg_ratio: 0.5473251029;
  background: url("../img/title_howto_bg.png") repeat-x 0 50%/var(--bg_size) auto;
}

@media screen and (max-width: 960px) {
  #howto .p-section__header::before {
    --bg_size: 39.9rem;
  }
}

#campaign .p-section__header::before {
  --bg_size: 155rem;
  --bg_ratio: 1.2757201646;
  background: url("../img/title_campaign_bg.png") repeat-x 0 50%/var(--bg_size) auto;
}

@media screen and (max-width: 960px) {
  #campaign .p-section__header::before {
    --bg_size: 93rem;
  }
}

#scene .p-section__header::before {
  --bg_size: 112rem;
  --bg_ratio: 0.9218106996;
  background: url("../img/title_scene_bg.png") repeat-x 0 50%/var(--bg_size) auto;
}

@media screen and (max-width: 960px) {
  #scene .p-section__header::before {
    --bg_size: 67.2rem;
  }
}

#free .p-section__header::before {
  --bg_size: 101rem;
  --bg_ratio: 0.8312757202;
  background: url("../img/title_free_vote_bg.png") repeat-x 0 50%/var(--bg_size) auto;
}

@media screen and (max-width: 960px) {
  #free .p-section__header::before {
    --bg_size: 60.6rem;
  }
}

#attention .p-section__header::before {
  --bg_size: 86.5rem;
  --bg_ratio: 0.7119341564;
  background: url("../img/title_attention_bg.png") repeat-x 0 50%/var(--bg_size) auto;
}

@media screen and (max-width: 960px) {
  #attention .p-section__header::before {
    --bg_size: 51.9rem;
  }
}

.is-load .p-section__header::before {
  animation: title_bg calc(30s * var(--bg_ratio)) linear infinite;
}

@keyframes title_bg {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: calc(var(--bg_size) * -1);
  }
}

.p-section__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
}

#period .p-section__title {
  width: 29.6rem;
}

@media screen and (max-width: 960px) {
  #period .p-section__title {
    width: 17.76rem;
  }
}

#howto .p-section__title {
  width: 29.6rem;
}

@media screen and (max-width: 960px) {
  #howto .p-section__title {
    width: 17.76rem;
  }
}

#campaign .p-section__title {
  width: 60.5rem;
}

@media screen and (max-width: 960px) {
  #campaign .p-section__title {
    width: 30.25rem;
  }
}

#scene .p-section__title {
  width: 33.8rem;
}

@media screen and (max-width: 960px) {
  #scene .p-section__title {
    width: 20.28rem;
  }
}

#free .p-section__title {
  width: 31.6rem;
}

@media screen and (max-width: 960px) {
  #free .p-section__title {
    width: 18.96rem;
  }
}

#attention .p-section__title {
  width: 27.8rem;
}

@media screen and (max-width: 960px) {
  #attention .p-section__title {
    width: 16.68rem;
  }
}

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

.p-period {
  display: block;
  position: relative;
  margin-top: 2.5rem;
}

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

.p-period__text {
  display: block;
  position: relative;
  font-size: 3rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0;
}

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

.p-howto {
  width: 92%;
  max-width: 82rem;
  display: block;
  position: relative;
  margin: 3rem auto 0;
}

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

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

@media screen and (max-width: 960px) {
  .p-howto__data {
    align-items: flex-start;
  }
}

.p-howto__data::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-black);
}

.p-howto__data::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 10rem;
  border-right: 1px solid var(--color-black);
}

@media screen and (max-width: 960px) {
  .p-howto__data::after {
    left: 6rem;
  }
}

.p-howto__data+.p-howto__data {
  margin-top: 3rem;
}

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

.p-howto__data-cap {
  width: 10rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-red);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 960px) {
  .p-howto__data-cap {
    width: 6rem;
    height: 10rem;
  }
}

.p-howto__data-text {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  position: relative;
  padding: 1rem 3rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .p-howto__data-text {
    padding: 1.6rem 2rem;
    font-size: 1.4rem;
    line-height: 2.2;
    letter-spacing: 0;
  }
}

.p-howto__data-text small {
  display: block;
  position: relative;
  font-size: 0.8em;
  line-height: 1.5;
}

@media screen and (max-width: 960px) {
  .p-howto__data-text small {
    font-size: 0.9em;
    line-height: 1.8;
  }
}

.p-campaign {
  width: 92%;
  max-width: 80rem;
  display: block;
  position: relative;
  margin: 1.6rem auto 0;
}

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

.p-campaign__text {
  display: block;
  position: relative;
  margin-bottom: 3.4rem;
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 960px) {
  .p-campaign__text {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
    line-height: 2.35;
  }
}

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

.p-campaign__data::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-black);
}

.p-campaign__data::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 10rem;
  border-right: 1px solid var(--color-black);
}

@media screen and (max-width: 960px) {
  .p-campaign__data::after {
    left: 6rem;
  }
}

.p-campaign__data+.p-campaign__data {
  margin-top: 3rem;
}

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

.p-campaign__data-cap {
  width: 10rem;
  min-height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-red);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 960px) {
  .p-campaign__data-cap {
    width: 6rem;
    height: 10rem;
  }
}

.p-campaign__data-text {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  position: relative;
  padding: 1.8rem 3rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .p-campaign__data-text {
    padding: 1.6rem 2rem;
    font-size: 1.4rem;
    line-height: 2.2;
    letter-spacing: 0;
  }
}

.p-campaign__data-text small {
  display: block;
  position: relative;
  font-size: 0.8em;
  line-height: 1.5;
}

@media screen and (max-width: 960px) {
  .p-campaign__data-text small {
    font-size: 0.9em;
    line-height: 1.8;
  }
}

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

.p-campaign__note {
  display: block;
  position: relative;
  margin-top: 2.8rem;
  font-size: 1.3rem;
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 960px) {
  .p-campaign__note {
    margin-top: 1.4rem;
    letter-spacing: 0.05rem;
  }
}

.p-vote {
  display: block;
  position: relative;
  margin-top: 5.6rem;
}

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

.p-vote__inner {
  display: block;
  position: relative;
  overflow: hidden;
}

.p-vote__footer {
  width: 100%;
  display: block;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  bottom: 0;
  overflow: hidden;
  background-color: var(--color-black);
}

.p-vote_series {
  --color-main: var(--color-red);
  display: block;
  position: relative;
  padding: 9rem 0;
}

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

.p-vote_series[data-series=tv] {
  --color-main: var(--color-red);
  --color-main-dark: var(--color-red-dark);
  background-color: var(--color-red-bg);
}

.p-vote_series[data-series=short] {
  --color-main: var(--color-teal);
  --color-main-dark: var(--color-teal-dark);
  background-color: var(--color-teal-bg);
}

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

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

.p-vote_series__header {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 35rem;
  height: 6.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto 3.8rem;
  color: var(--color-white);
  background-color: var(--color-main);
  border-radius: 20rem;
  box-shadow: 0.4rem 0.4rem 0 0 var(--color-main-dark);
}

@media screen and (max-width: 960px) {
  .p-vote_series__header {
    height: 4.8rem;
    box-shadow: 0.2rem 0.2rem 0 0 var(--color-main-dark);
  }
}

[data-series=tv] .p-vote_series__header {
  min-width: 35rem;
}

@media screen and (max-width: 960px) {
  [data-series=tv] .p-vote_series__header {
    min-width: 24.5rem;
  }
}

[data-series=short] .p-vote_series__header {
  min-width: 45rem;
}

@media screen and (max-width: 960px) {
  [data-series=short] .p-vote_series__header {
    min-width: 31.5rem;
  }
}

.p-vote_series__header::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.3rem solid var(--color-main-dark);
  border-radius: 20rem;
}

@media screen and (max-width: 960px) {
  .p-vote_series__header::before {
    border-width: 0.2rem;
  }
}

.p-vote_series__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  font-size: 3rem;
  letter-spacing: 0;
  margin: 0 auto;
  padding: 0 2.8rem;
  box-sizing: content-box;
}

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

[data-series=tv] .p-vote_series__title {
  padding: 0 2.8rem;
}

@media screen and (max-width: 960px) {
  [data-series=tv] .p-vote_series__title {
    padding: 0 2.24rem;
  }
}

[data-series=short] .p-vote_series__title {
  padding: 0 3.8rem;
}

@media screen and (max-width: 960px) {
  [data-series=short] .p-vote_series__title {
    padding: 0 3.04rem;
  }
}

.p-vote_series__title::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  position: absolute;
  top: 52.5%;
  left: 0;
  transform: translate(-50%, -50%);
  background-color: var(--color-white);
  border-radius: 50%;
}

@media screen and (max-width: 960px) {
  .p-vote_series__title::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.p-vote_series__title::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  position: absolute;
  top: 52.5%;
  right: -0.5rem;
  transform: translate(-50%, -50%);
  background-color: var(--color-white);
  border-radius: 50%;
}

@media screen and (max-width: 960px) {
  .p-vote_series__title::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

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

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

.p-vote_story::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid var(--color-main);
  border-radius: 2rem;
}

.p-vote_story+.p-vote_story {
  margin-top: 4rem;
}

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

.p-vote_story__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 1rem 5rem;
  color: var(--color-white);
  background-color: var(--color-main);
  border-radius: 2rem 2rem 0 0;
}

@media screen and (max-width: 960px) {
  .p-vote_story__header {
    padding: 1.25rem 1.5rem;
  }
}

.p-vote_story__no {
  min-width: 10rem;
  min-height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 2rem;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  color: var(--color-white);
  background-color: var(--color-main-dark);
  border-radius: 20rem;
}

@media screen and (max-width: 960px) {
  .p-vote_story__no {
    margin-right: 1rem;
    min-width: 6.5rem;
    min-height: 2rem;
    font-size: 1.3rem;
  }
}

.p-vote_story__title {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  position: relative;
  font-size: 2.4rem;
}

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

.p-vote_story__inner {
  display: block;
  position: relative;
  padding: 3.5rem 5rem;
}

@media screen and (max-width: 960px) {
  .p-vote_story__inner {
    padding: 3.2rem 1.5rem 4rem;
  }
}

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

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

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

.p-chara_input {
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: -1;
}

.p-vote_scene {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.p-vote_scene.is-scene-disable:not(.is-scene-active) {
  pointer-events: none;
}

.p-vote_scene__header {
  display: block;
  position: relative;
  margin-bottom: 1.8rem;
}

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

.p-vote_scene__visual {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0.5rem;
  background-color: var(--color-white);
  box-shadow: 0.5rem 0.5rem 0 0 var(--color-shadow);
  z-index: 0;
}

@media screen and (max-width: 960px) {
  .p-vote_scene__visual {
    padding: 0.3rem;
    box-shadow: 0.3rem 0.3rem 0 0 var(--color-shadow);
  }
}

@media (hover: hover) and (pointer: fine) {
  .p-vote_scene__visual {
    transition: background-color 0.4s var(--ease_out);
  }

  .p-vote_scene:hover .p-vote_scene__visual {
    background-color: var(--color-main-dark);
  }
}

.p-vote_scene__visual-img {
  display: block;
  position: relative;
  background-color: var(--color-white);
}

.p-vote_scene__visual-img::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/img_choose.png") no-repeat center/cover;
  opacity: 0;
  transition: opacity 0.3s var(--ease_out);
}

@media screen and (max-width: 960px) {
  .p-vote_scene__visual-img::after {
    background-size: 150% auto;
  }
}

.is-scene-active .p-vote_scene__visual-img::after {
  opacity: 1;
}

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

.p-vote_scene__title {
  display: block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

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

.p-vote_scene__serif {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0.5rem 2rem;
  margin-top: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.3;
  background-color: var(--color-white);
  border-radius: 20rem;
}

@media screen and (max-width: 960px) {
  .p-vote_scene__serif {
    margin-top: 0.6rem;
    padding: 0.3rem 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}

.p-vote_scene__label {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.p-vote_scene_visual {
  display: block;
  position: relative;
  overflow: hidden;
}

.p-vote_scene_visual__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.p-vote_scene_visual__list-item {
  width: 100%;
  flex-shrink: 0;
  display: block;
  position: relative;
}

.p-vote_scene_visual__thumb {
  display: block;
  position: relative;
  background-color: var(--color-main-dark);
}

.p-vote_scene_visual__pagination {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  gap: 0.3rem;
  bottom: 0.5rem;
  right: 0.5rem;
}

.p-vote_scene_visual__pagination-item {
  width: 0.4rem;
  height: 0.4rem;
  display: block;
  position: relative;
  background-color: var(--color-white);
}

.p-vote_scene_visual__pagination-item.is-pagination-current {
  background-color: var(--color-main);
}

.p-vote_form {
  width: 100%;
  display: block;
  position: relative;
  background-color: var(--color-red);
}

.p-vote_form.is-open {
  height: auto;
}

.p-vote_form__header {
  display: block;
  position: relative;
  margin: 0 auto;
}

.p-vote_form__inner {
  width: 100%;
  height: 0;
  display: block;
  position: relative;
  margin: 0 auto;
  background: var(--color-red-dark);
  transition: height 0.2s var(--ease_out);
}

.p-vote_form__content {
  width: 90%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 3rem 0;
}

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

.p-vote_form__check {
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}

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

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

.p-vote_form__comment-cap {
  width: 32rem;
  display: block;
  position: relative;
  margin: 0 auto 1.2rem;
}

@media screen and (max-width: 960px) {
  .p-vote_form__comment-cap {
    width: 20rem;
  }
}

.p-vote_form__comment-note {
  display: block;
  position: relative;
  font-size: 1.4rem;
  color: var(--color-white);
  text-align: center;
}

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

.p-vote_form__comment-field {
  width: 100%;
  display: block;
  position: relative;
  margin-top: 2rem;
}

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

.p-vote_form__comment-field textarea {
  width: 100%;
  display: block;
  position: relative;
  padding: 10px 20px;
  margin: 0 auto;
  font-size: 16px;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  line-height: 2;
  background: var(--color-white);
  color: var(--color-text);
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.p-vote_form__btn {
  width: 24rem;
  display: block;
  position: relative;
  margin: 4rem auto 0;
}

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

.p-vote_form__close {
  width: 7rem;
  height: 7rem;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
}

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

.p-vote_form__close-text {
  width: 3rem;
  height: 3rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-vote_form__close-text::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: 1px solid var(--color-white);
}

.p-vote_form__close-text::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-bottom: 1px solid var(--color-white);
}

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

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

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

.p-vote_select__header {
  width: 38.2rem;
  display: block;
  position: relative;
}

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

  .p-vote_select__header::after {
    content: "";
    width: 2rem;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 1.8rem;
    background: url("../img/arrow.png") no-repeat center/contain;
  }
}

@media screen and (max-width: 960px) {
  .p-vote_select__header {
    width: 100%;
    margin: 0 auto 1rem;
  }
}

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

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

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

@media screen and (max-width: 960px) {
  .p-vote_select__inner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.p-vote_select__list {
  display: grid;
  grid-template-columns: repeat(3, 17.2rem);
  gap: 1.8rem;
  position: relative;
}

@media screen and (max-width: 960px) {
  .p-vote_select__list {
    gap: 0.5rem;
    grid-template-columns: repeat(3, 10rem);
  }
}

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

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

@media screen and (min-width: 961px) {
  .p-vote_select__footer {
    flex: 1 1 0;
    min-width: 0;
    margin-left: 2.7rem;
  }
}

@media screen and (max-width: 960px) {
  .p-vote_select__footer {
    width: 100%;
    margin: 1rem auto 0;
  }
}

.p-vote_select__open {
  width: 21rem;
  height: 5rem;
  display: block;
  position: relative;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 20rem;
}

@media screen and (max-width: 960px) {
  .p-vote_select__open {
    width: 19rem;
    height: 4rem;
    margin: 0 auto;
  }
}

.p-vote_select__open[disabled] {
  pointer-events: none;
  color: #ccc;
  background-color: #999;
}

@media (hover: hover) and (pointer: fine) {
  .p-vote_select__open {
    transition: color 0.3s var(--ease_out), background-color 0.3s var(--ease_out);
  }

  .p-vote_select__open:hover {
    color: var(--color-black);
    background-color: var(--color-white);
  }
}

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

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

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

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

.p-vote_select_data__thumb-base {
  display: block;
  position: relative;
}

.p-vote_select_data__thumb-img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  animation: select_img_show 0.3s var(--ease_out);
}

@keyframes select_img_show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.p-vote_select_data__thumb-img::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--color-white);
  z-index: 1;
}

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

.p-vote_btn {
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 20rem;
}

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

.p-vote_btn[disabled] {
  pointer-events: none;
  color: #ccc;
  background-color: #999;
}

@media (hover: hover) and (pointer: fine) {
  .p-vote_btn {
    transition: color 0.3s var(--ease_out), background-color 0.3s var(--ease_out);
  }

  .p-vote_btn:hover {
    color: var(--color-black);
    background-color: var(--color-white);
  }
}

.p-vote_btn__text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}

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

.p-attention {
  width: 92%;
  max-width: 110rem;
  display: block;
  position: relative;
  padding: 5.5rem 10rem;
  margin: 4.8rem auto 0;
}

@media screen and (max-width: 960px) {
  .p-attention {
    width: 90%;
    padding: 4rem 3rem;
    margin-top: 2rem;
  }
}

.p-attention::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-black);
}

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

.p-attention__data+.p-attention__data {
  margin-top: 3.2rem;
}

.p-attention__data-cap {
  display: block;
  position: relative;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  color: var(--color-red);
}

@media screen and (max-width: 960px) {
  .p-attention__data-cap {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }
}

.p-attention__data-text {
  display: block;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0;
}

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

.p-attention__data-text a {
  color: var(--color-teal);
  text-decoration: underline;
}

.p-free {
  width: 92%;
  max-width: 110rem;
  display: block;
  position: relative;
  padding: 4.5rem 0 5.8rem;
  margin: 5rem auto 0;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 2rem;
}

@media screen and (max-width: 960px) {
  .p-free {
    width: 90%;
    padding: 2.5rem 0 2.8rem;
    margin-top: 2.5rem;
  }
}

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

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

.p-free__lead {
  display: block;
  position: relative;
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.15rem;
}

@media screen and (max-width: 960px) {
  .p-free__lead {
    margin-bottom: 1.4rem;
    font-size: 1.5rem;
    letter-spacing: 0;
    text-align: left;
    line-height: 1.6;
  }
}

.p-free__btn {
  width: 31rem;
  display: block;
  position: relative;
  margin: 2rem auto 0;
}

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

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

@media screen and (min-width: 961px) {
  .p-free_field {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 0.5rem;
  }
}

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

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

.p-free_field__cap {
  display: block;
  position: relative;
  padding: 0.8rem 0;
  font-size: 1.8rem;
}

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

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

@media screen and (min-width: 961px) {
  .p-free_field__list {
    display: flex;
    gap: 2rem;
  }
}

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

@media screen and (min-width: 961px) {
  .p-free_field__list-item {
    flex: 1;
    min-width: 0;
  }
}

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

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

.p-free_field__content.--select::before {
  content: "▼";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translate(0, -50%);
  color: var(--color-black);
  z-index: 1;
}

@media screen and (max-width: 960px) {
  .p-free_field__content.--select::before {
    right: 1rem;
    font-size: 1.5rem;
  }
}

.p-free_field__content-select {
  width: 100%;
  min-width: 0;
  height: 4.5rem;
  display: block;
  position: relative;
  padding: 10px 40px 10px 20px;
  font-size: 18px;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--color-white);
  border: none;
  border-radius: 0.5rem;
}

@media screen and (max-width: 960px) {
  .p-free_field__content-select {
    height: 3.5rem;
    font-size: 16px;
    padding: 5px 30px 5px 10px;
    border-radius: 0.25rem;
  }
}

.p-free_field__content-text {
  width: 100%;
  display: block;
  position: relative;
  padding: 10px 30px;
  font-size: 18px;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--color-white);
  border: none;
  border-radius: 0.5rem;
}

@media screen and (max-width: 960px) {
  .p-free_field__content-text {
    font-size: 16px;
    padding: 5px 20px;
    border-radius: 0.25rem;
  }
}

.p-free_btn {
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 20rem;
}

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

.p-free_btn[disabled] {
  pointer-events: none;
  color: #ccc;
  background-color: #999;
}

@media (hover: hover) and (pointer: fine) {
  .p-free_btn {
    transition: color 0.3s var(--ease_out), background-color 0.3s var(--ease_out);
  }

  .p-free_btn:hover {
    color: var(--color-black);
    background-color: var(--color-white);
  }
}

.p-free_btn__text {
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
}

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

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

.p-result__header {
  display: block;
  position: relative;
  padding: 7rem 0;
}

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

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

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

.p-result__footer {
  display: block;
  position: relative;
  margin-top: 7rem;
}

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

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

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

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

.p-result_select__cap {
  display: block;
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;
}

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

.p-result_select__inner {
  display: block;
  position: relative;
  padding: 8rem 0 0;
  background: var(--color-red-bg);
}

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

.p-result_select__list {
  width: 90%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .p-result_select__list {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.p-result_select__list-item {
  width: 32rem;
  display: block;
  position: relative;
}

@media screen and (max-width: 960px) {
  .p-result_select__list-item {
    width: 15rem;
  }
}

.p-result_select__thumb {
  display: block;
  position: relative;
  cursor: pointer;
}

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

.p-result_select__thumb-img::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-white);
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .p-result_select__thumb-img::after {
    transition: opacity 0.4s var(--ease_out);
  }

  .p-result_select__thumb:hover .p-result_select__thumb-img::after {
    opacity: 0.4;
  }
}

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

.p-result_share__inner {
  display: block;
  position: relative;
  padding: 3rem 0 7.4rem;
  background: var(--color-red-bg);
}

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

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

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

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

.p-result_share__retry {
  width: 32.5rem;
  display: block;
  position: relative;
  margin: 3rem auto 0;
}

.p-result_share__btn {
  width: 40rem;
  display: block;
  position: relative;
  margin: 2rem auto 0;
}

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

.p-result_share_retry {
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-black);
  background-color: transparent;
  border-radius: 20rem;
}

@media (hover: hover) and (pointer: fine) {
  .p-result_share_retry {
    transition: color 0.3s var(--ease_out), background-color 0.3s var(--ease_out);
  }

  .p-result_share_retry:hover {
    color: var(--color-black);
    background-color: var(--color-white);
  }
}

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

.p-result_share_retry::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-black);
  border-radius: 20rem;
}

.p-result_share_retry__text {
  display: block;
  position: relative;
  padding-right: 3rem;
  font-size: 1.5rem;
  font-weight: 500;
}

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

.p-result_share_retry__text::after {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background: url("../img/retry.svg") no-repeat center/contain;
}

.p-result_share_btn {
  width: 100%;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background-color: var(--color-red);
  border-radius: 20rem;
}

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

@media (hover: hover) and (pointer: fine) {
  .p-result_share_btn {
    transition: color 0.3s var(--ease_out), background-color 0.3s var(--ease_out);
  }

  .p-result_share_btn:hover {
    color: var(--color-red);
    background-color: var(--color-white);
  }
}

.p-result_share_btn:not([href]) {
  color: #ddd;
  background-color: #999;
}

.p-result_share_btn:not([href])::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--color-red);
  border-radius: 20rem;
  pointer-events: none;
}

.p-result_share_btn__text {
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
}

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

.p-result_btn {
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 20rem;
  cursor: pointer;
}

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

@media (hover: hover) and (pointer: fine) {
  .p-result_btn {
    transition: color 0.3s var(--ease_out), background-color 0.3s var(--ease_out);
  }

  .p-result_btn:hover {
    color: var(--color-white);
    background-color: var(--color-red);
  }
}

.p-result_btn__text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}

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

.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 {
  width: 100%;
  max-width: none;
  opacity: 0;
}

.u-lazy.is-lazy-loaded {
  width: auto;
  max-width: 100%;
  opacity: 1;
}

.u-lazy.is-lazy-loaded:not(.is-lazy-end) {
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.u-lazy__loader {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to left, rgba(240, 85, 90, 0.35) 0%, rgba(240, 85, 90, 0.35) 26%, rgba(240, 85, 90, 0.2) 50%, rgba(240, 85, 90, 0.35) 75%, rgba(240, 85, 90, 0.35) 100%) repeat-x 100% 0/400% 100%;
  z-index: 1;
  animation: skeleton_screen 1s linear infinite;
}

@media screen and (max-width: 960px) {
  .--work_kv+.u-lazy__loader {
    max-width: calc(100% - 4rem);
    left: 0;
  }
}

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

.is-lazy-loaded+.u-lazy__loader {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}

@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;
  }
}


.p-result_select__cap {
  display: block;
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;

  width: 82%;
  max-width: 90rem;
  margin: 0 auto 60px;
}

@media screen and (max-width: 960px) {
  .p-result_select__cap {
    font-size: 1.4rem;
    width: 80%;
    max-width: 65rem;
    margin: 0 auto 40px;
  }
}

.p-intro__text {
  display: block;
  font-size: 2.2rem;
  position: relative;
  font-weight: 600;
  line-height: 2.05;
  text-align: center;
  width: 92%;
  max-width: 100rem;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .p-intro__text {
    font-size: 1.5rem;
    line-height: 2.35;
    width: 90%;
    max-width: 65rem;
  }
}


/***********************************************************/
#cast .p-section__title {
  width: 65.5rem;
}

@media screen and (max-width: 960px) {
  #cast .p-section__title {
    width: 33.28rem;
  }
}

#cast .p-section__header {
  display: block;
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

#cast .p-section__header::before {
  --bg_size: 90rem;
  --bg_ratio: 0.9218106996;
  background: url(../img/title_cast_bg.png) repeat-x 0 50%/var(--bg_size) auto;
}

@media screen and (max-width: 960px) {
  #cast .p-section__header::before {
    --bg_size: 60.2rem;
  }
}

#cast .cast_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2.6rem;
}
@media screen and (max-width: 960px) {
  #cast .cast_tab {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

#cast .cast_tab li {
  width: 30%;
  margin-left: 1%;
}

@media screen and (min-width: 961px) {
  #cast .cast_tab li:first-child {
    margin-left: 0;
  }
}

@media screen and (max-width: 960px) {
  #cast .cast_tab li {
    width: 49%;
    margin-left: 2%;
    margin-top: 2%;
  }

  #cast .cast_tab li:nth-child(2n+1) {
    margin-left: 0;
  }

  #cast .cast_tab li:nth-child(n+1):nth-child(-n+2) {
    margin-top: 0;
  }
}

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

@media screen and (min-width: 961px) {
  #cast .p-cast-scene {
    min-width: 1080px;
  }
}

#cast .p-cast-scene_box {
  background: #fff;
  border: #f0555a solid 2px;
  border-radius: 15px;
  padding: 40px;
}

@media screen and (max-width: 960px) {
  #cast .p-cast-scene_box {
    padding: 7% 5%;
  }
}

.p-cast-scene_box.active {
  opacity: 1;
  position: relative;
  margin-top: 0px;
  pointer-events: auto;
}

.p-cast-scene_box {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  padding-top: 0px;
  pointer-events: none;
  transition: opacity 0.8s 0s, transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.p-cast-scene_box_wrap {
  display: block;
  position: relative;
  margin-top: 20px;
}

.cast_tab_item {
  cursor: pointer;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s;

}

@media screen and (min-width: 961px) {
  .cast_tab_item:hover {
    cursor: pointer;
    opacity: 0.5;
  }
}

#cast .p-cast-scene_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

#cast .p-cast-scene_item {
  width: 32%;
}

@media screen and (min-width: 961px) {
  #cast .p-cast-scene_item {
    margin-left: 2%;
  }

  #cast .p-cast-scene_item:first-child {
    margin-left: 0;
  }
}

@media screen and (max-width: 960px) {
  #cast .p-cast-scene_item {
    width: 100%;
    margin-top: 10%;
  }

  #cast .p-cast-scene_item:first-child {
    margin-top: 0;
  }
}

#cast .p-cast-scene_item .title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (min-width: 961px) {
  #cast .p-cast-scene_item .title {
    height: 2rem;
  }

  #cast .p-cast-scene_item .title p {
    position: absolute;
    bottom: 0;
  }
}

#cast .p-cast-scene_item .img {
  margin-top: 10px;
}

#cast .p-cast-scene_item .img img {
  margin-top: 5px;
  border: solid #fff 5px;
  box-shadow: 0.3rem 0.3rem 0 0 var(--color-shadow);
}

#cast .p-cast-scene_item .img img:first-child {
  margin-top: 0;
}

#cast .p-cast-scene_item .text {
  font-size: 1.4rem;
  margin-top: 10px;
}

@media screen and (max-width: 960px) {
  #cast .p-cast-scene_item .text {
    font-size: 1.3rem;
    margin-top: 5px;
  }
}

#cast .text_all {
  text-align: center;
  color: #fff;
  background: #f0555a;
  padding: 15px 0;
  border-radius: 5px;
  margin-top: 20px;
}

@media screen and (max-width: 960px) {
  #cast .text_all {
    font-size: 1.3rem;
    margin-top: 6%;
    padding: 10px 0;
  }
}