@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,700;0,900;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --color-text: #3f3f3f;
  --color-primary: #c9151e;
}

body {
  color: var(--color-text);
  font-size: min(13px, 26vw / (750 / 100));
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-weight: 500;
  line-height: 2;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

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

a {
  text-decoration: none;
}

ol li,
ul li {
  list-style: none;
}

@media (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

@media (min-width: 769px) {
  .is-sp {
    display: none;
  }
}

.m-wrapper {
  padding-inline: min(15px, 30vw / (750 / 100));
}

.m-borderbox {
  background-color: #fff;
  border: 1px solid #3f3f3f;
  padding: 4px;
  margin-top: 5px;
  position: relative;
}
.m-borderbox::before, .m-borderbox::after {
  content: "";
  display: block;
  transition: height 1s;
}
.m-borderbox::before {
  width: 50%;
  height: 50%;
  background-color: #cbc5ad;
  border-left: 1px solid #3f3f3f;
  border-bottom: 1px solid #3f3f3f;
  position: absolute;
  top: 0;
  right: 0;
}
.m-borderbox::after {
  width: 50%;
  height: 50%;
  background-color: #c6ece6;
  border-right: 1px solid #3f3f3f;
  border-top: 1px solid #3f3f3f;
  position: absolute;
  bottom: 0;
  left: 0;
}
.m-borderbox-inner {
  background-color: #fff;
  border: 1px solid #3f3f3f;
  position: relative;
  z-index: 1;
}

.m-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}

.m-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100vw;
  padding: 8px 20px;
  transition: background-color 0.2s;
}
.m-button--black {
  width: min(150px, 300vw / (750 / 100));
  background-color: #3f3f3f;
  background-image: url(../img/arrow_w.svg);
  background-position: calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  background-size: 11px auto;
}
.m-button--black:hover {
  background-color: var(--color-primary);
}
.m-button--red {
  width: min(225px, 450vw / (750 / 100));
  background-color: #c9151e;
  background-image: url(../img/arrow_w.svg);
  background-position: calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  background-size: 12px auto;
}
.m-button--red:hover {
  background-color: var(--color-text);
}
.m-button--big {
  padding-block: 14px;
  width: min(260px, 520vw / (750 / 100));
  background-size: 17px auto;
}

.m-pagehead {
  text-align: center;
  background-image: url(../img/categories/title_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 61px;
}
.m-pagehead .m-borderbox-inner {
  padding-block: 27px;
}
.m-pagehead__label {
  font-size: 13px;
  font-weight: 600;
  font-family: "Lexend", sans-serif;
}
.m-pagehead__title {
  font-size: 1.75em;
}

/***********************************
Animation
***********************************/
.js-animation {
  opacity: 0;
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.m-animation-fadeDown.is-scroll {
  animation: fadeDown 1s ease-in forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.m-animation-fadeUp.is-scroll {
  animation: fadeUp 1s ease-in forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.m-animation-fadeIn.is-scroll {
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes bottomup {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.m-animation-bottomup.is-scroll {
  animation: bottomup 0.6s ease-out forwards;
}

.m-animation-mask {
  opacity: 1;
  overflow: hidden;
  position: relative;
}
.m-animation-mask::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  transition: transform 2s;
}
.m-animation-mask--horizon::before {
  left: 0;
}

.m-animation-mask.is-scroll::before {
  animation: mask 1.2s ease-out forwards;
}

.m-animation-mask--horizon.is-scroll::before {
  animation: mask-horizon 1.2s ease-out forwards;
}

@keyframes mask {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%);
  }
}
@keyframes mask-horizon {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}
@keyframes zoomUp {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
.m-animation-zoomUp {
  opacity: 1;
}

.m-animation-zoomUp.is-scroll {
  animation: zoomUp 0.5s linear forwards;
}

/************************************
Layout
*************************************/
.l-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}
.l-wrapper::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/wrapper_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-left {
  position: fixed;
  top: 50px;
  left: 50px;
}
@media (max-width: 1350px) {
  .l-left {
    display: none;
  }
}
.l-left__logo {
  width: min(280px, 20.4978038067vw);
  margin-top: 50px;
}
.l-left-nav {
  padding-top: 50px;
}
.l-left-nav-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.l-left-nav-list__item {
  line-height: 19px;
  padding-left: 30px;
  padding-bottom: 2px;
  background-image: url(../img/arrow_b.png);
  background-position: left 2px;
  background-repeat: no-repeat;
  background-size: 18px auto;
}
.l-left-nav-list__item a {
  transition: opacity 0.2s;
}
.l-left-nav-list__item a:hover {
  opacity: 0.7;
}

.l-right {
  position: fixed;
  right: 0;
  bottom: 0;
}
@media (max-width: 1350px) {
  .l-right {
    display: none;
  }
}
.l-right__button {
  width: min(193px, 14.1288433382vw);
  position: absolute;
  right: 75px;
  bottom: 140px;
  transition: scale 0.2s;
}
.l-right__nozoe {
  width: min(176px, 12.8843338214vw);
  z-index: 1;
  position: relative;
}
.l-right:hover .l-right__button {
  scale: 1.05;
}

.l-main {
  width: 375px;
  overflow: hidden;
  background-color: #fff;
  scale: 1.8;
  transform-origin: top center;
}
@media (max-width: 675px) {
  .l-main {
    width: min(375px, 100%);
    scale: 1;
  }
}

.l-spbutton {
  display: none;
  width: 45px;
  aspect-ratio: 1;
  border-radius: 0 0 0 100vw;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: calc(50% + 142px);
  border: none;
  outline: none;
  z-index: 3;
  transition: 0.2s;
}
@media (max-width: 675px) {
  .l-spbutton {
    display: block;
  }
}
.l-spbutton span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text);
  position: absolute;
  right: 8px;
}
.l-spbutton span:first-of-type {
  top: 10px;
}
.l-spbutton span:last-of-type {
  top: 15px;
}
.l-spbutton__label {
  font-family: "Lexend", sans-serif;
  font-size: 10px;
  line-height: 1;
  position: absolute;
  right: 4px;
  bottom: 14px;
  scale: 0.8;
}
.l-spbutton__label::before {
  content: "MENU";
}
.l-spbutton.is-open {
  background-color: transparent;
}
.l-spbutton.is-open .l-spbutton__label {
  color: #fff;
}
.l-spbutton.is-open .l-spbutton__label::before {
  content: "CLOSE";
}
.l-spbutton.is-open span {
  background-color: #fff;
}
.l-spbutton.is-open span:first-of-type {
  rotate: 30deg;
  transform: translateY(2px);
}
.l-spbutton.is-open span:last-of-type {
  rotate: -30deg;
  transform: translateY(-3px);
}

.l-header-nav {
  display: none;
  width: min(375px, 100%);
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  z-index: 2;
  flex-direction: column;
  padding-top: 50px;
  scale: 1.8;
  transform-origin: top center;
}
@media (max-width: 675px) {
  .l-header-nav {
    width: min(375px, 100%);
    scale: 1;
  }
}
.l-header-nav__item a {
  display: block;
  padding: 20px 25px;
  border-bottom: 1px solid #fff;
}

.l-footer {
  position: relative;
  padding-top: 26px;
  background-image: url(../img/footer_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.l-footer:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(63, 63, 63, 0.7);
  content: "";
}
.l-footer > * {
  position: relative;
}
.l-footer-logo {
  text-align: center;
  transition: opacity 0.2s;
  margin-inline: auto;
}
.l-footer-logo:hover {
  opacity: 0.7;
}
.l-footer-sitemap {
  margin-top: 25px;
  border-bottom: 1px solid #818181;
}
.l-footer-sitemap__item a {
  display: block;
  color: #fff;
  font-size: min(15px, 30vw / (750 / 100));
  letter-spacing: 0.04em;
  border-top: 1px solid #818181;
  padding: 10px 34px;
  background-image: url(../img/arrow_w2.svg);
  background-repeat: no-repeat;
  background-size: 7px auto;
  background-position: calc(100% - 20px) 50%;
  transition: background-position 0.2s;
  transition: opacity 0.2s;
}
.l-footer-sitemap__item a:hover {
  opacity: 0.7;
}
.l-footer-sitemap__item a:hover {
  background-position: calc(100% - 20px) 50%;
}
.l-footer-youtube {
  text-align: center;
  padding-top: 48px;
}
.l-footer-youtube a {
  transition: opacity 0.2s;
}
.l-footer-youtube a:hover {
  opacity: 0.7;
}
.l-footer-youtube__operation {
  color: #fff;
  font-size: min(12px, 24vw / (750 / 100));
  letter-spacing: 0.04em;
  padding-top: 14px;
}
.l-footer-youtube__operation img {
  margin-right: 1em;
}
.l-footer-copy {
  text-align: center;
  background-color: #333;
  margin-top: 50px;
}
.l-footer-copy small {
  color: #b3b3b3;
  font-size: min(11.5px, 23vw / (750 / 100));
  letter-spacing: 0.04em;
}

/************************************
Modal
*************************************/
.m-modal {
  display: flex;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.m-modal-iframe {
  width: min(640px, 100%);
  aspect-ratio: 16/9;
}
.m-modal-iframe iframe {
  width: 100%;
  height: 100%;
}

/************************************
Movie List
*************************************/
.m-movie-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 33px;
  padding-top: 16px;
}

.m-movie__thumnail {
  aspect-ratio: 690/388;
  position: relative;
  transition: opacity 0.2s;
  cursor: pointer;
}
.m-movie__thumnail:hover {
  opacity: 0.7;
}
.m-movie__thumnail img {
  position: relative;
  z-index: 1;
}
.m-movie__thumnail::before, .m-movie__thumnail::after {
  content: "";
  display: block;
  width: 65px;
  height: 45px;
  background-image: url(../img/border.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}
.m-movie__thumnail::before {
  top: -5px;
  right: -5px;
}
.m-movie__thumnail::after {
  bottom: -5px;
  left: -5px;
}
.m-movie__title {
  font-size: min(18px, 36vw / (750 / 100));
  letter-spacing: 0.04em;
  line-height: 1.4444444444;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding-top: 15px;
}
.m-movie-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  padding-top: 8px;
}
.m-movie-labels__item {
  min-width: 80px;
  font-size: min(12px, 24vw / (750 / 100));
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1;
  border: 1px solid #3f3f3f;
  background-color: #fff;
  border-radius: 2px;
  padding: 5px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.pagination > * {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
@media (min-width: 769px) {
  .pagination > * {
    width: 30px;
    height: 30px;
  }
}
.pagination > a {
  color: var(--color-text) !important;
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.pagination > a:hover, .pagination > a:focus {
  opacity: 0.5;
}
.pagination > span {
  color: #fff !important;
  background-color: var(--color-text) !important;
}

@media (max-width: 768px) {
  .request-form {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.request-form__complete {
  text-align: center;
  background-image: url(../img/404/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 65px 0;
  overflow: hidden;
}
.request-form__complete .m-borderbox-inner {
  padding-block: 30px 80px;
}
.request-form__complete .nozoe-img {
  position: relative;
  display: flex;
  justify-content: center;
  transition: 0.7s;
  margin-top: -20%;
  z-index: 2;
}
.request-form__complete .nozoe-img > img {
  width: 65%;
}
.request-form__complete .nozoe-img:not(.on) {
  opacity: 0;
  transform: translateX(100%);
}
.request-form__sub-label {
  text-align: center;
}
.request-form__sub-label > strong {
  position: relative;
  display: inline-block;
  color: #3f3f3f;
  font-size: 0.65rem;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
}
.request-form__sub-label > strong:before, .request-form__sub-label > strong:after {
  position: absolute;
  top: 50%;
  display: block;
  width: 1.5rem;
  height: 1px;
  background-color: #3f3f3f;
  content: "";
}
.request-form__sub-label > strong:before {
  left: 0;
  transform: translate(-100%, -50%);
}
.request-form__sub-label > strong:after {
  right: 0;
  transform: translate(100%, -50%);
}
.request-form > strong, .request-form h2 {
  text-align: center;
}
.request-form > strong {
  display: block;
}
.request-form > h2 {
  font-size: 2rem;
}
.request-form > .note {
  font-size: 0.65rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .request-form > .note {
    font-size: 0.875rem;
  }
}
.request-form > .note.off {
  display: none !important;
}
.request-form .form-group {
  margin-top: 1rem;
}
.request-form .form-group > p > label + br {
  display: none;
}
.request-form .form-return {
  text-align: center;
}
.request-form .form-return > a, .request-form .form-return button {
  position: relative;
  display: inline-block;
  color: #3f3f3f;
  font-size: 0.65rem;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .request-form .form-return > a, .request-form .form-return button {
    font-size: 0.75rem;
  }
}
.request-form .form-return > a:before, .request-form .form-return > a:after, .request-form .form-return button:before, .request-form .form-return button:after {
  position: absolute;
  top: 50%;
  display: block;
  width: 1.5rem;
  height: 1px;
  background-color: #3f3f3f;
  content: "";
}
.request-form .form-return > a:before, .request-form .form-return button:before {
  left: 0;
  transform: translate(-100%, -50%);
}
.request-form .form-return > a:after, .request-form .form-return button:after {
  right: 0;
  transform: translate(100%, -50%);
}
.request-form .form-return > a:hover, .request-form .form-return > a:focus, .request-form .form-return button:hover, .request-form .form-return button:focus {
  opacity: 0.5;
}
.request-form .label {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
}
.request-form .label > span {
  color: #fff;
  font-size: 0.675rem;
  line-height: 1em;
  padding: 0.25rem 0.5rem 0.4rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  background-color: #3f3f3f;
}
@media (max-width: 768px) {
  .request-form .label > span {
    font-size: 0.875rem;
  }
}
.request-form .label > span.need {
  font-size: 0.5rem;
  padding: 0.25rem 0.5rem 0.27rem;
  border-radius: 12rem;
  background-color: #c9151e;
}
@media (max-width: 768px) {
  .request-form .label > span.need {
    font-size: 0.75rem;
  }
}
.request-form label {
  display: block;
}
.request-form input[type=text], .request-form input[type=email], .request-form textarea, .request-form select, .request-form .combo-box, .request-form .form-group > p > label {
  font-size: 0.65rem;
  width: 100%;
  border: solid 1px #3f3f3f;
  border-radius: 0.25rem;
  border-top-left-radius: 0;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .request-form input[type=text], .request-form input[type=email], .request-form textarea, .request-form select, .request-form .combo-box, .request-form .form-group > p > label {
    font-size: 0.875rem;
  }
}
.request-form input[type=number] {
  width: 6rem;
  font-size: 0.65rem;
  border: solid 0.5px #ccc;
  border-radius: 0.15rem;
  padding: 0.25rem 0.25rem 0.25rem 0.5rem;
  margin-right: 0.15rem;
}
@media (max-width: 768px) {
  .request-form input[type=number] {
    font-size: 0.875rem;
  }
}
.request-form input[type=radio], .request-form input[type=checkbox] {
  margin-right: 0.25rem;
  vertical-align: middle;
}
.request-form textarea {
  height: 8rem;
}
.request-form button.submit-button {
  color: #fff;
  font-size: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
}
.request-form button.submit-button:disabled {
  background-color: #ccc !important;
  cursor: default;
}
.request-form .flex {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.request-form .flex > .mwform-radio-field {
  display: flex;
  align-items: center;
  margin-top: 0;
}
.request-form * + .attention {
  margin-top: 0.3125rem;
}
.request-form .attention {
  font-size: 0.65rem;
}
@media (max-width: 768px) {
  .request-form .attention {
    font-size: 0.875rem;
  }
}
.request-form .attention + .attention {
  margin-top: 0.5rem;
}
.request-form .input-consent {
  text-align: center;
}
.request-form .input-consent + .error {
  text-align: center;
}
.request-form .complete-note {
  text-align: center;
  margin-top: 1rem;
}
@media (min-width: 769px) {
  .request-form {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .request-form .complete-note br {
    display: none;
  }
}
@media (max-width: 768px) {
  .request-form .mwform-checkbox-field-text {
    font-size: 0.875rem;
  }
}

.grecaptcha-badge {
  display: none;
}

.to-request-form {
  display: block;
  transition: 0.3s;
}
.to-request-form:hover, .to-request-form:focus {
  opacity: 0.5;
}/*# sourceMappingURL=common.css.map */