@charset "UTF-8";
/* ======================================================================
 reset
====================================================================== */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  overflow-y: scroll;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul {
  list-style: none;
  padding-left: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, select, textarea {
  box-sizing: border-box;
}

html {
  /* Sets a specific default `font-size` for user with `rem` type scales.*/
  font-size: 62.5%;
  /* Changes the default tap highlight to be completely transparent in iOS.*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: #fff;
  line-height: 1.6;
  background: #000;
  background: url(../img/common/bg.jpg) center top/auto repeat-y;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  word-break: break-all;
  min-width: 1100px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body {
    background: url(../img/common/sp/bg.jpg) center top/100% repeat-y;
    min-width: inherit;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: bold;
}

a {
  transition: opacity 0.2s;
}
a:link {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}
a:active {
  color: #fff;
  text-decoration: none;
}

a[href^=tel] {
  color: #fff;
}

:focus-ring {
  outline: none;
}

.contain {
  width: 1100px;
  min-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* input */
input, textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  -o-border-image: none;
     border-image: none;
  background: transparent;
  font-family: inherit;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input::-ms-expand, textarea::-ms-expand, select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #fff;
}

input:placeholder-shown, textarea:placeholder-shown {
  color: #fff;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #fff;
}
input::placeholder, textarea::placeholder {
  color: #fff;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: #fff;
}
input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #fff;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #fff;
}
input:focus::placeholder, textarea:focus::placeholder {
  color: #fff;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-footer
================================= */
.l-footer__top {
  background: #ffebf0;
  padding-block: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer__top {
    padding-block: calc(20 /750*100vw);
  }
}
.l-footer__bnr {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .l-footer__bnr {
    width: calc(300 /750*100vw);
    margin-inline: auto;
  }
}
.l-footer__bottom {
  background: #333333;
  padding-block: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom {
    padding-block: calc(30 /750*100vw);
  }
}
.l-footer__copy {
  font-size: 1.1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    font-size: calc(20 /750*100vw);
  }
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-content__size
================================= */
.l-content__size-sp-1 {
  padding: 0 4%;
}
@media screen and (min-width: 1025px) {
  .l-content__size-sp-1 {
    max-width: 1100px;
    margin: 0 auto;
  }
}

.l-content__size-pc-1 {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-content__size-pc-1 {
    width: auto;
    padding: 0 calc(30 /750*100vw);
  }
}

/* =================================
 l-header
================================= */
.l-header {
  z-index: 998;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid #ffd800;
  width: 100%;
  min-width: 1100px;
  opacity: 1;
  transition: opacity 1s;
  margin-bottom: -70px;
}
@media screen and (max-width: 768px) {
  .l-header {
    display: none;
  }
}
.l-header__nav {
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
}
.l-header__nav li + li:before {
  content: "　｜　";
}
.l-header__nav a {
  padding-block: 20px;
  display: inline-block;
}

/* =================================
 l-header__sp
================================= */
.l-header__sp {
  z-index: 998;
  position: relative;
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header__sp {
    display: block;
  }
}
.l-header__sp-toggle {
  position: fixed;
  top: calc(20 /750*100vw);
  right: calc(20 /750*100vw);
  border: none;
  padding: 0;
  width: calc(110 /750*100vw);
  opacity: 1;
  z-index: 998;
}

/* =================================
 l-menu
================================= */
.l-menu {
  z-index: -1;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  padding: calc(150 /750*100vw) calc(60 /750*100vw) calc(40 /750*100vw);
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.95);
}
.l-menu__toggle {
  position: fixed;
  top: calc(20 /750*100vw);
  right: calc(20 /750*100vw);
  border: none;
  padding: 0;
  background-color: transparent;
  width: calc(110 /750*100vw);
}
.l-menu__list {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.l-menu__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.l-menu__list li a {
  width: 100%;
  color: #fff;
  font-size: calc(30 /750*100vw);
  font-weight: 700;
  display: block;
  text-align: center;
  padding-block: calc(30 /750*100vw);
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_loader
================================= */
.l_loader {
  z-index: 1000;
}

/* =================================
 l_breadcrumbs
================================= */
/* =================================
 l_main_visual
================================= */
/* =================================
 l_main
================================= */
/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-side
================================= */
.l-side {
  z-index: 996;
}
.l-side__outer {
  background: #fff;
  color: #555555;
  padding-block: 30px;
}
@media screen and (max-width: 768px) {
  .l-side__outer {
    padding-block: calc(40 /750*100vw);
  }
}
.l-side__outer.none {
  display: none;
}
.l-side__btn {
  text-align: center;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-side__btn {
    font-size: calc(20 /750*100vw);
  }
}
.l-side__btn i {
  transition: transform 0.2s;
  margin-left: 4px;
  margin-top: 2px;
}
.l-side__btn.open i {
  transform: rotate(180deg);
  margin-top: 0;
}
.l-side__copy {
  height: 0;
  transition: height 0.3s;
  overflow: hidden;
}
.l-side__copy-text {
  margin-inline: 70px;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .l-side__copy-text {
    margin-inline: 0;
    font-size: calc(20 /750*100vw);
  }
}
.l-side__copy-text-1 {
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .l-side__copy-text-1 {
    margin-top: calc(10 /750*100vw);
  }
}
.l-side__copy-text-1:first-of-type {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .l-side__copy-text-1:first-of-type {
    margin-top: calc(40 /750*100vw);
  }
}
.l-side__copy-text-2 + .l-side__copy-text-2 {
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .l-side__copy-text-2 + .l-side__copy-text-2 {
    margin-top: calc(10 /750*100vw);
  }
}

.c-ttl {
  background: url(../img/common/bg_ttl.png) center center/auto no-repeat;
  height: 198px;
  margin-top: -60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-ttl {
    background: url(../img/common/sp/bg_ttl.png) center top/100% no-repeat;
    height: calc(258 /750*100vw);
    margin-top: calc(-70 /750*100vw);
  }
}
.c-ttl__text {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-ttl__text img {
    height: calc(59 /750*100vw);
  }
}

.c-contents {
  background: url(../img/common/bg_contents.png) center 70px/auto no-repeat;
}
@media screen and (max-width: 768px) {
  .c-contents {
    background: url(../img/common/sp/bg_contents.png) center calc(120 /750*100vw)/100% no-repeat;
  }
}

.p-index__mv {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .p-index__mv {
    margin-top: 0;
  }
}
.p-index__mv-ttl {
  margin-inline: -450px;
  margin-bottom: -514px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-ttl {
    margin-inline: calc(-30 /750*100vw);
    margin-bottom: calc(-402 /750*100vw);
  }
}
.p-index__mv-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-btn {
    width: calc(648 /750*100vw);
    margin-bottom: calc(96 /750*100vw);
    margin-inline: auto;
  }
}
.p-index__mv-about {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-about {
    margin-bottom: calc(70 /750*100vw);
  }
}
.p-index__mv-about-ttl {
  display: flex;
  justify-content: center;
  margin-bottom: -17px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-about-ttl {
    width: calc(648 /750*100vw);
    margin-bottom: calc(-39 /750*100vw);
    margin-inline: auto;
  }
}
.p-index__mv-about-bg {
  background: url(../img/index/bg_mv_about.png) center top/auto no-repeat;
  height: 207px;
  padding-top: 38px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-about-bg {
    background: url(../img/index/sp/bg_mv_about.png) center top/100% no-repeat;
    height: calc(436 /750*100vw);
    padding-top: calc(67 /750*100vw);
    margin-inline: calc(-30 /750*100vw);
  }
}
.p-index__mv-about-text {
  display: flex;
  justify-content: center;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-about-text {
    width: calc(602 /750*100vw);
    margin-bottom: calc(28 /750*100vw);
    margin-inline: auto;
  }
}
.p-index__mv-about-btn {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-index__mv-about-btn {
    width: calc(690 /750*100vw);
    margin-inline: auto;
  }
}
.p-index__model {
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__model {
    padding-bottom: calc(20 /750*100vw);
  }
}
.p-index__model-box {
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #fff;
  border-radius: 15px;
  margin-inline: 40px;
  margin-bottom: 40px;
  overflow: hidden;
  padding-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .p-index__model-box {
    margin-inline: 0;
    margin-bottom: calc(50 /750*100vw);
    padding-bottom: calc(64 /750*100vw);
  }
}
.p-index__model-box-ttl {
  height: 50px;
  background: #ff0000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-index__model-box-ttl {
    height: calc(80 /750*100vw);
  }
}
@media screen and (max-width: 768px) {
  .p-index__model-box-ttl-img.pachi {
    width: calc(47 /750*100vw);
  }
  .p-index__model-box-ttl-img.slot {
    width: calc(60 /750*100vw);
  }
}
.p-index__model-box-ttl-text {
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: 7px;
}
@media screen and (max-width: 768px) {
  .p-index__model-box-ttl-text {
    font-size: calc(36 /750*100vw);
    margin-left: calc(13 /750*100vw);
  }
}
.p-index__model-search {
  margin: 30px 30px 35px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-index__model-search {
    margin: calc(60 /750*100vw) calc(30 /750*100vw) calc(57 /750*100vw);
    display: block;
  }
}
.p-index__model-search-item {
  width: 465px;
}
@media screen and (max-width: 768px) {
  .p-index__model-search-item {
    width: 100%;
  }
  .p-index__model-search-item + .p-index__model-search-item {
    margin-top: calc(30 /750*100vw);
  }
}
.p-index__model-search-name {
  font-size: 1.3rem;
  margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .p-index__model-search-name {
    font-size: calc(24 /750*100vw);
    margin-bottom: calc(19 /750*100vw);
  }
}
.p-index__model-search-word {
  border-radius: 6px;
  border: 2px solid #fff;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-index__model-search-word {
    border-radius: 5px;
  }
}
.p-index__model-search-word input {
  font-size: 2rem;
  font-weight: 700;
  padding: 8px 15px;
  color: #fff;
  width: 410px;
}
@media screen and (max-width: 768px) {
  .p-index__model-search-word input {
    font-size: max((36 /750*100vw), 1.6rem);
    padding: calc(18 /750*100vw) calc(22 /750*100vw);
    width: calc(100% - (100 /750*100vw));
  }
}
.p-index__model-search-word input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.p-index__model-search-word input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.p-index__model-search-word button {
  border: none;
  background: #fff;
  font-size: 2rem;
  color: #ff0000;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-index__model-search-word button {
    font-size: calc(40 /750*100vw);
    width: calc(100 /750*100vw);
  }
}
.p-index__model-search-word button:hover {
  opacity: 0.8;
}
.p-index__model-search-word button:disabled {
  color: #ccc;
  cursor: inherit;
}
.p-index__model-search-word button:disabled:hover {
  opacity: 1;
}
.p-index__model-search-maker {
  border-radius: 6px;
  border: 2px solid #fff;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index__model-search-maker {
    border-radius: 5px;
  }
}
.p-index__model-search-maker select {
  font-size: 2rem;
  font-weight: 700;
  padding: 8px 15px;
  color: #fff;
  background: #100000;
  width: 100%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-index__model-search-maker select {
    font-size: max((36 /750*100vw), 1.6rem);
    padding: calc(18 /750*100vw) calc(22 /750*100vw);
  }
}
.p-index__model-search-maker select.select {
  color: rgba(255, 255, 255, 0.35);
}
.p-index__model-search-maker select option:first-child {
  color: rgba(255, 255, 255, 0.35);
}
.p-index__model-search-maker select:invalid {
  color: rgba(255, 255, 255, 0.35);
}
.p-index__model-search-maker select option {
  color: #fff;
  font-weight: 700;
}
.p-index__model-search-maker:before {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  font-size: 2rem;
  color: #ff0000;
  width: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-index__model-search-maker:before {
    font-size: calc(40 /750*100vw);
    width: calc(100 /750*100vw);
  }
}
.p-index__model-text {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__model-text {
    font-size: calc(30 /750*100vw);
  }
}
.p-index__model-loading {
  display: flex;
  justify-content: center;
}
.p-index__model-list {
  margin-inline: 30px;
  margin-block: 40px -20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-index__model-list {
    margin-inline: calc(30 /750*100vw);
    margin-block: calc(30 /750*100vw) calc(-60 /750*100vw);
  }
}
.p-index__model-item {
  width: 465px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__model-item {
    width: 100%;
    margin-bottom: calc(30 /750*100vw);
  }
}
.p-index__model-item-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.p-index__model-item-group-img {
  width: 110px;
  background: #fff;
  padding: 10px 5px 10px 6px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-index__model-item-group-img {
    width: calc(164 /750*100vw);
    padding: calc(10 /750*100vw) calc(14 /750*100vw);
  }
}
.p-index__model-item-group-info {
  width: calc(100% - 110px);
  padding-inline: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__model-item-group-info {
    width: calc(100% - (164 /750*100vw));
    padding-inline: calc(30 /750*100vw);
  }
}
.p-index__model-item-group-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .p-index__model-item-group-ttl {
    font-size: calc(30 /750*100vw);
    margin-bottom: calc(10 /750*100vw);
  }
}
.p-index__model-item-group-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .p-index__model-item-group-text {
    font-size: calc(24 /750*100vw);
  }
}
.p-index__model-item.selected .p-index__model-item-group {
  background: #ffe6e6;
  border: 2px solid #ff0000;
}
.p-index__model-item.selected .p-index__model-item-group:before {
  content: "\f00c";
  font: var(--fa-font-solid);
  color: #fff;
  position: absolute;
  bottom: 11px;
  right: 58px;
  z-index: 1;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-index__model-item.selected .p-index__model-item-group:before {
    bottom: calc(14 /750*100vw);
    right: calc(94 /750*100vw);
    font-size: calc(24 /750*100vw);
  }
}
.p-index__model-item.selected .p-index__model-item-group:after {
  content: "選択中";
  color: #fff;
  background: #ff0000;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 8px 8px 8px 30px;
  border-radius: 10px 0 0 0;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-index__model-item.selected .p-index__model-item-group:after {
    padding: calc(11 /750*100vw) calc(11 /750*100vw) calc(11 /750*100vw) calc(50 /750*100vw);
    padding: 6px calc(11 /750*100vw) 6px calc(50 /750*100vw);
    font-size: calc(24 /750*100vw);
  }
}
.p-index__model-item.selected .p-index__model-item-group .p-index__model-item-group-ttl {
  color: #000;
}
.p-index__model-item.selected .p-index__model-item-group .p-index__model-item-group-text {
  color: rgba(0, 0, 0, 0.5);
}
.p-index__model-slot .p-index__model-box-ttl {
  background: #0060ff;
}
.p-index__model-slot .p-index__model-search-word button,
.p-index__model-slot .p-index__model-search-maker:before {
  color: #0060ff;
}
.p-index__model-slot .p-index__model-search-word button:disabled {
  color: #ccc;
}
.p-index__model-slot .p-index__model-item.selected .p-index__model-item-group {
  background: #d5e5ff;
  border: 2px solid #0060ff;
}
.p-index__model-slot .p-index__model-item.selected .p-index__model-item-group:after {
  background: #0060ff;
}
.p-index__vote {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 0;
  transition: height 0.3s;
  overflow: hidden;
}
.p-index__vote-inner {
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid #ffd800;
  padding-block: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__vote-inner {
    padding-block: calc(30 /750*100vw);
  }
}
.p-index__vote-list {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.p-index__vote-list li {
  font-size: 1.3rem;
  font-weight: 700;
  width: 160px;
  height: 23px;
  border-radius: 5px;
  background: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-index__vote-list li {
    font-size: calc(26 /750*100vw);
    width: calc(300 /750*100vw);
    height: calc(40 /750*100vw);
  }
}
.p-index__vote-list li:before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -8px;
  border: 6px solid transparent;
  border-top: 10px solid #FFF;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-index__vote-list li:before {
    bottom: -12px;
    margin-left: -6px;
    border: 4px solid transparent;
    border-top: 8px solid #FFF;
  }
}
.p-index__vote-list li:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -10px;
  z-index: 1;
  border: 8px solid transparent;
}
@media screen and (max-width: 768px) {
  .p-index__vote-list li:after {
    bottom: -16px;
    margin-left: -8px;
    border: 6px solid transparent;
  }
}
.p-index__vote-pachi {
  border: 1px solid #ff0000;
  color: #ff0000;
}
.p-index__vote-pachi:after {
  border-top: 12px solid #ff0000;
}
@media screen and (max-width: 768px) {
  .p-index__vote-pachi:after {
    border-top: 10px solid #ff0000;
  }
}
.p-index__vote-pachi.selected {
  background: #ff0000;
  color: #fff;
}
.p-index__vote-pachi.selected:before {
  border-top: 10px solid #ff0000;
}
@media screen and (max-width: 768px) {
  .p-index__vote-pachi.selected:before {
    border-top: 8px solid #ff0000;
  }
}
.p-index__vote-slot {
  margin-left: 6px;
  border: 1px solid #0060ff;
  color: #0060ff;
}
.p-index__vote-slot:after {
  border-top: 12px solid #0060ff;
}
@media screen and (max-width: 768px) {
  .p-index__vote-slot:after {
    border-top: 10px solid #0060ff;
  }
}
.p-index__vote-slot.selected {
  background: #0060ff;
  color: #fff;
}
.p-index__vote-slot.selected:before {
  border-top: 10px solid #0060ff;
}
@media screen and (max-width: 768px) {
  .p-index__vote-slot.selected:before {
    border-top: 8px solid #0060ff;
  }
}
.p-index__vote-btn {
  display: flex;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-index__vote-btn {
    width: calc(650 /750*100vw);
    margin-inline: auto;
  }
}
.p-index__present {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-index__present {
    padding-bottom: calc(70 /750*100vw);
  }
}
.p-index__present-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-inline: 70px;
}
@media screen and (max-width: 768px) {
  .p-index__present-list {
    margin-inline: 0;
  }
}
.p-index__present-list li {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__present-list li {
    margin-bottom: calc(30 /750*100vw);
  }
}
.p-index__present-text {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  display: inline-block;
  padding: 10px 30px;
}
@media screen and (max-width: 768px) {
  .p-index__present-text {
    border-top: none;
    border-bottom: none;
    font-size: calc(20 /750*100vw);
    padding: 0 calc(20 /750*100vw);
    text-align: left;
  }
}
.p-index__present-text-wrap {
  display: flex;
  justify-content: center;
}
.p-index__ambassador {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-index__ambassador {
    padding-bottom: calc(70 /750*100vw);
  }
}
.p-index__ambassador-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 26px;
  margin-inline: 70px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-index__ambassador-list {
    justify-content: space-between;
    gap: 0;
    margin-inline: 0;
    margin-bottom: 0;
  }
}
.p-index__ambassador-list li {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__ambassador-list li {
    width: 48.4057971014%;
    margin-bottom: calc(30 /750*100vw);
  }
}
.p-index__ambassador-btn {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-index__ambassador-btn {
    width: 94.2028985507%;
    margin-inline: auto;
  }
}
.p-index__movie {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-index__movie {
    padding-bottom: calc(102 /750*100vw);
  }
}
.p-index__movie-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-inline: 70px;
}
@media screen and (max-width: 768px) {
  .p-index__movie-list {
    display: block;
    margin-inline: calc(30 /750*100vw);
  }
}
.p-index__company {
  border-top: 1px solid #ffd800;
  background: url(../img/index/bg_company.jpg) center top/auto repeat-y;
  padding-block: 50px 30px;
}
@media screen and (max-width: 768px) {
  .p-index__company {
    background: url(../img/index/sp/bg_company.jpg) center top/100% repeat-y;
    padding-block: calc(50 /750*100vw) 1px;
  }
}
.p-index__company-box {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-index__company-box {
    margin-bottom: calc(50 /750*100vw);
  }
}
.p-index__company-ttl {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-index__company-ttl {
    width: calc(570 /750*100vw);
    margin-bottom: calc(50 /750*100vw);
    margin-inline: auto;
  }
}
.p-index__company-img {
  display: flex;
  justify-content: center;
}

.p-subcon__mv-ttl {
  margin-inline: -450px;
}
@media screen and (max-width: 768px) {
  .p-subcon__mv-ttl {
    margin-inline: calc(-30 /750*100vw);
  }
}

.p-vote__content {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-vote__content {
    padding-bottom: calc(100 /750*100vw);
  }
}
.p-vote__content-form {
  margin-inline: 40px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #fff;
  padding-bottom: 62px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-form {
    margin-inline: 0;
    padding-bottom: calc(84 /750*100vw);
  }
}
.p-vote__content-ttl {
  padding-block: 50px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-vote__content-ttl {
    padding-block: calc(70 /750*100vw);
    margin-inline: calc(30 /750*100vw);
  }
}
.p-vote__content-box {
  width: 700px;
  margin-inline: auto;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-box {
    width: calc(630 /750*100vw);
    margin-bottom: calc(20 /750*100vw);
  }
}
.p-vote__content-box-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-box-ttl {
    font-size: calc(36 /750*100vw);
    height: calc(70 /750*100vw);
  }
}
.p-vote__content-box-group {
  display: flex;
  align-items: center;
}
.p-vote__content-box-group-img {
  width: 98px;
  background: #fff;
  padding: 7px 6px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-box-group-img {
    width: calc(164 /750*100vw);
    padding-inline: calc(10 /750*100vw) calc(8 /750*100vw);
  }
}
.p-vote__content-box-group-info {
  width: calc(100% - 98px);
  padding-inline: 20px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-box-group-info {
    width: calc(100% - (164 /750*100vw));
    padding-inline: calc(30 /750*100vw);
  }
}
.p-vote__content-box-group-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-vote__content-box-group-ttl {
    font-size: calc(30 /750*100vw);
  }
}
.p-vote__content-box-text {
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .p-vote__content-box-text {
    font-size: calc(24 /750*100vw);
  }
}
.p-vote__content-box-pachi {
  background: #ffe6e6;
  border: 3px solid #ff0000;
}
.p-vote__content-box-pachi .p-vote__content-box-ttl {
  background: #ff0000;
}
.p-vote__content-box-slot {
  background: #d5e5ff;
  border: 3px solid #0060ff;
}
.p-vote__content-box-slot .p-vote__content-box-ttl {
  background: #0060ff;
}
.p-vote__content-change {
  display: flex;
  justify-content: flex-end;
}
.p-vote__content-change p {
  margin-inline: 160px;
  text-align: right;
  font-size: 1.6rem;
  margin-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .p-vote__content-change p {
    margin-inline: calc(30 /750*100vw);
    font-size: calc(30 /750*100vw);
    margin-bottom: calc(30 /750*100vw);
  }
}
.p-vote__content-change i {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-change i {
    margin-right: calc(7 /750*100vw);
  }
}
.p-vote__content-label {
  font-size: 1.3rem;
  margin-bottom: 12px;
  margin-inline: 10px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-label {
    font-size: calc(24 /750*100vw);
    margin-bottom: calc(19 /750*100vw);
    margin-inline: calc(12 /750*100vw);
  }
}
.p-vote__content-label .required {
  background: #ff0000;
  font-size: 1.1rem;
  padding: 1px 5px 3px;
  margin-left: 7px;
}
.p-vote__content-label.mail {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-label.mail {
    margin-top: calc(30 /750*100vw);
  }
}
.p-vote__content-error {
  color: #ff0000;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-vote__content-error {
    font-size: calc(30 /750*100vw);
  }
}
.p-vote__content-wrap {
  width: 700px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-vote__content-wrap {
    width: calc(630 /750*100vw);
  }
}
.p-vote__content textarea, .p-vote__content input[type=text] {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  padding: 12px 16px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-vote__content textarea, .p-vote__content input[type=text] {
    padding: calc(30 /750*100vw) calc(23 /750*100vw);
    font-size: max((36 /750*100vw), 1.6rem);
  }
}
.p-vote__content textarea::-moz-placeholder, .p-vote__content input[type=text]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.p-vote__content textarea::placeholder, .p-vote__content input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.p-vote__content textarea {
  height: 100px;
}
@media screen and (max-width: 768px) {
  .p-vote__content textarea {
    height: calc(200 /750*100vw);
  }
}
.p-vote__content-noselect {
  font-size: 1.6rem;
  text-align: center;
  margin-block: 50px 18px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-noselect {
    font-size: calc(30 /750*100vw);
    margin-block: calc(70 /750*100vw) calc(30 /750*100vw);
  }
}
.p-vote__content-link {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-link {
    font-size: calc(30 /750*100vw);
    margin-bottom: calc(70 /750*100vw);
  }
}
.p-vote__content-link a {
  border-bottom: 1px solid #fff;
}
.p-vote__content-attend {
  font-size: 1.1rem;
  margin-top: 14px;
  margin-inline: 10px;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .p-vote__content-attend {
    font-size: calc(20 /750*100vw);
    margin-top: calc(30 /750*100vw);
    margin-inline: calc(12 /750*100vw);
  }
}
.p-vote__content-inner {
  margin-inline: 208px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 768px) {
  .p-vote__content-inner {
    margin-inline: calc(30 /750*100vw);
    padding-bottom: calc(45 /750*100vw);
    margin-bottom: calc(50 /750*100vw);
  }
}
.p-vote__content-select {
  display: flex;
  max-width: 410px;
  align-items: center;
  font-size: 1.8rem;
  margin-inline: -10px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-select {
    max-width: auto;
    font-size: calc(30 /750*100vw);
    margin-inline: calc(-12 /750*100vw);
  }
}
.p-vote__content-select-wrap {
  position: relative;
  margin-inline: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  width: 90px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-vote__content-select-wrap {
    margin-inline: calc(12 /750*100vw);
    width: calc(130 /750*100vw);
  }
}
.p-vote__content-select-wrap.year {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-select-wrap.year {
    width: calc(170 /750*100vw);
  }
}
.p-vote__content-select-wrap:after {
  position: absolute;
  right: 14px;
  top: calc(50% - 12px);
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 1.8rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-vote__content-select-wrap:after {
    right: calc(16 /750*100vw);
    top: calc(50% - (20 /750*100vw));
    font-size: calc(30 /750*100vw);
  }
}
.p-vote__content-select select {
  width: 100%;
  padding: 8px 16px;
  font-size: 2rem;
  color: #fff;
  background: #281a1a;
}
@media screen and (max-width: 768px) {
  .p-vote__content-select select {
    padding: calc(30 /750*100vw) calc(23 /750*100vw);
    font-size: max((36 /750*100vw), 1.6rem);
  }
}
.p-vote__content-radio-wrap {
  display: flex;
  gap: 30px;
}
.p-vote__content-radio-txt {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-vote__content-radio-txt {
    padding-left: calc(47 /750*100vw);
    font-size: calc(30 /750*100vw);
  }
}
.p-vote__content-radio-txt:before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  content: "";
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-vote__content-radio-txt:before {
    top: calc(6 /750*100vw);
    width: calc(34 /750*100vw);
    height: calc(34 /750*100vw);
  }
}
.p-vote__content-radio-txt:after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ff0000;
  content: "";
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-vote__content-radio-txt:after {
    top: calc(9 /750*100vw);
    left: calc(4 /750*100vw);
    width: calc(26 /750*100vw);
    height: calc(26 /750*100vw);
  }
}
.p-vote__content-radio input:checked + .p-vote__content-radio-txt:after {
  opacity: 1;
}
.p-vote__content-note {
  margin-inline: 208px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-note {
    margin-inline: calc(30 /750*100vw);
    margin-bottom: calc(80 /750*100vw);
  }
}
.p-vote__content-note-ttl {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-note-ttl {
    font-size: calc(30 /750*100vw);
    margin-bottom: calc(30 /750*100vw);
  }
}
.p-vote__content-note-outer {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 10px 26px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-note-outer {
    padding: calc(22 /750*100vw) calc(20 /750*100vw) calc(32 /750*100vw);
  }
}
.p-vote__content-note-inner {
  background: rgba(255, 255, 255, 0.1);
  padding: 13px;
  height: 130px;
  overflow: auto;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .p-vote__content-note-inner {
    padding: calc(24 /750*100vw) calc(20 /750*100vw);
    height: calc(200 /750*100vw);
    margin-bottom: calc(34 /750*100vw);
  }
}
.p-vote__content-note-text {
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .p-vote__content-note-text {
    font-size: calc(20 /750*100vw);
  }
}
.p-vote__content-note-text + .p-vote__content-note-text {
  margin-top: 1rem;
}
.p-vote__content-note-agree-parts {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-vote__content-note-agree-parts {
    font-size: calc(36 /750*100vw);
  }
}
.p-vote__content-note-agree-parts:before {
  cursor: pointer;
  content: "";
  display: block;
  margin-right: 12px;
  width: 20px;
  height: 20px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-vote__content-note-agree-parts:before {
    width: calc(34 /750*100vw);
    height: calc(34 /750*100vw);
  }
}
.p-vote__content-note-agree-input:checked + .p-vote__content-note-agree-parts:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: calc(50% - 49px);
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
}
@media screen and (max-width: 768px) {
  .p-vote__content-note-agree-input:checked + .p-vote__content-note-agree-parts:after {
    top: calc(18 /750*100vw);
    left: calc(50% - (88 /750*100vw));
    width: calc(10 /750*100vw);
    height: calc(20 /750*100vw);
  }
}
.p-vote__content-submit {
  display: flex;
  justify-content: center;
}
.p-vote__content-submit button {
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-vote__content-submit button {
    width: calc(630 /750*100vw);
    margin-inline: auto;
  }
}
.p-vote__content-submit button:disabled {
  opacity: 0.4;
  cursor: inherit;
}

.p-thanks__content {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-thanks__content {
    padding-bottom: calc(100 /750*100vw);
  }
}
.p-thanks__content-outer {
  margin-inline: 40px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #fff;
  padding-block: 50px;
}
@media screen and (max-width: 768px) {
  .p-thanks__content-outer {
    margin-inline: 0;
    padding-block: calc(74 /750*100vw);
  }
}
.p-thanks__content-text {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-thanks__content-text {
    font-size: calc(30 /750*100vw);
    text-align: left;
    margin-bottom: calc(60 /750*100vw);
    margin-inline: calc(50 /750*100vw);
  }
}
.p-thanks__content-btn a {
  width: 350px;
  height: 45px;
  background: #333333;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 22.5px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-thanks__content-btn a {
    width: calc(500 /750*100vw);
    height: calc(90 /750*100vw);
    font-size: calc(36 /750*100vw);
  }
}
.p-thanks__content-btn.tw {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-thanks__content-btn.tw {
    margin-bottom: calc(50 /750*100vw);
  }
}
.p-thanks__content-btn.tw a {
  background: #ff0000;
}

.p-past .p-subcon__mv-ttl {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .p-past .p-subcon__mv-ttl {
    margin-top: 0;
  }
}
.p-past__content {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-past__content {
    padding-bottom: calc(100 /750*100vw);
  }
}
.p-past__content-outer {
  margin-inline: 40px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #fff;
  padding-block: 50px 30px;
}
@media screen and (max-width: 768px) {
  .p-past__content-outer {
    margin-inline: 0;
    padding-block: calc(74 /750*100vw) calc(23 /750*100vw);
  }
}
.p-past__content-text {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-past__content-text {
    width: calc(609 /750*100vw);
    margin-bottom: calc(70 /750*100vw);
    margin-inline: auto;
  }
}
.p-past__content-subttl {
  display: flex;
  justify-content: center;
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  .p-past__content-subttl {
    width: calc(573 /750*100vw);
    margin-bottom: calc(6 /750*100vw);
    margin-inline: auto;
  }
}
.p-past__content-subttl.subttl2019 {
  margin-bottom: -13px;
}
@media screen and (max-width: 768px) {
  .p-past__content-subttl.subttl2019 {
    margin-bottom: 0;
  }
}
.p-past__content-subttl.subttl2018 {
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .p-past__content-subttl.subttl2018 {
    margin-bottom: calc(5 /750*100vw);
  }
}
.p-past__content-list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-past__content-list {
    display: block;
    margin-bottom: calc(36 /750*100vw);
  }
}
@media screen and (max-width: 768px) {
  .p-past__content-item {
    margin-left: calc(22 /750*100vw);
    width: calc(617 /750*100vw);
  }
}
.p-past__content-item + .p-past__content-item {
  margin-left: -25px;
}
@media screen and (max-width: 768px) {
  .p-past__content-item + .p-past__content-item {
    margin-left: calc(22 /750*100vw);
    margin-top: calc(17 /750*100vw);
  }
}

@media screen and (min-width: 769px) {
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}