@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;700&display=swap");
html {
  height: 100%;
  scroll-padding-top: 80px;
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
html.noscroll .p-header {
  transform: translateY(0);
}
@media screen and (min-width: 1201px) {
  html {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
    font-size: 1.333vw;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 16px;
    font-size: 2.086vw;
  }
}
@media screen and (max-width: 576px) {
  html {
    font-size: 16px;
    font-size: 3.865vw;
  }
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #050505;
  background: #050505;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 0.8125rem;
  }
}

b, strong, .fw-bold {
  font-weight: 700;
}

ul, ol {
  list-style: none;
}

p, ul, ol, table, dl {
  line-height: 1.8;
}

a {
  text-decoration: none;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

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

.bg-gray {
  background-color: #f0f0f0;
}

.pc-none {
  display: none;
}

@media screen and (max-width: 750px) {
  .sp-none {
    display: none;
  }
  .pc-none {
    display: block;
  }
}
/*------------------------
  button
------------------------*/
.btn_blk a {
  position: relative;
  background: #050505;
  display: inline-block;
  color: #FFF;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  transform-origin: center left;
  transform: scale(0.8, 1);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  padding: 0.625rem 3.25rem 0.625rem 2.125rem;
  transition: 0.1s;
  z-index: 1;
  transform-origin: center center;
  overflow: hidden;
  cursor: pointer;
}
.btn_blk a::before {
  content: "";
  background-image: url(../../images/common/btn_arrow.svg);
  background-size: 0.8125rem 0.75rem;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  position: absolute;
  width: 0.625rem;
  height: 1.25rem;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  cursor: pointer;
}
.btn_blk a::after {
  content: "";
  background: #C1191F;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
  cursor: pointer;
}
.btn_blk a:hover::before {
  transition-delay: 0.1s;
}
.btn_blk a:hover::after {
  transform: scale(1, 1);
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .btn_blk a {
    font-size: 1.5rem;
    padding: 0.5rem 2.5rem 0.5rem 1.25rem;
  }
  .btn_blk a::before {
    background-size: 0.8125rem 0.75rem;
    width: 0.625rem;
    height: 1.25rem;
    right: 0.875rem;
  }
}
.btn_blk.link a {
  padding: 0.375rem 1.125rem 0.375rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.5;
}
.btn_blk.link a img {
  height: 1.25rem;
  width: auto;
  margin-right: 0.25rem;
  margin-top: -0.0625rem;
  cursor: pointer;
  display: inline-block;
}
.btn_blk.link a::before {
  content: none;
}
@media screen and (max-width: 750px) {
  .btn_blk.link a {
    padding: 0.375rem 1.125rem 0.375rem 1.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.5;
  }
  .btn_blk.link a img {
    height: 1.25rem;
    width: auto;
    margin-right: 0.25rem;
    margin-top: -0.0625rem;
    cursor: pointer;
    display: inline-block;
  }
  .btn_blk.link a::before {
    content: none;
  }
}

/*------------------------
  wrapper
------------------------*/
.wrapper::before {
  content: "";
  display: block;
  top: -0.0625rem;
  bottom: -0.0625rem;
  left: -0.0625rem;
  right: -0.0625rem;
  position: fixed;
  border: 0.8125rem solid #050505;
  pointer-events: none;
  z-index: 30;
}

.main_footer_wrap {
  margin-left: 12.5rem;
  padding: 0.6875rem 0.6875rem 0.6875rem 0rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  transition: 0.5s;
}

.home .main_footer_wrap {
  padding-top: 0rem;
}

.on_scroll .main_footer_wrap {
  margin-left: 0rem;
}

@media screen and (max-width: 750px) {
  .wrapper::before {
    border: 0.4375rem solid #050505;
  }
  .main_footer_wrap {
    margin-left: 0rem;
    padding: 0.34375rem;
  }
  .home .main_footer_wrap {
    padding-top: 0rem;
  }
  .wrapper:not(.home) .main_footer_wrap {
    padding-top: 3.125rem;
  }
}
/*------------------------
  header
------------------------*/
.p-header {
  width: 12.5rem;
  background: #050505;
  color: #FFF;
  padding: 3rem 0rem 11.5rem;
  flex-shrink: 0;
  position: fixed;
  height: 100%;
  z-index: 40;
  overflow: scroll;
  transition: 0.5s;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
  /*スクロールバー非表示（Chrome・Safari）*/
}
.p-header::-webkit-scrollbar {
  display: none;
}
.p-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-header .p-header-menu .p-header__logo {
  margin-bottom: 2.125rem;
  transition: 0.2s;
}
.p-header .p-header-menu .p-header__logo:hover {
  opacity: 0.4;
}
.p-header .p-header-menu .p-header__logo a {
  display: block;
  width: 9.0625rem;
  padding: 0.625rem 0;
}
.p-header .p-header-menu .p-header-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-header .p-header-menu .p-header-menu__item {
  width: 8.4375rem;
}
.p-header .p-header-menu .p-header-menu__item:not(:last-child) {
  margin-bottom: 0.875rem;
}
.p-header .p-header-menu .p-header-menu__item a {
  display: block;
  padding: 1rem 0.625rem;
  color: #FFF;
}
.p-header .p-header-menu .p-header-menu__item a .main {
  display: block;
  transform: scale(0.7, 1);
  font-family: "Arial", sans-serif;
  font-weight: bold;
  transform-origin: center left;
  font-size: 1.875rem;
  line-height: 1.875rem;
}
.p-header .p-header-menu .p-header-menu__item a .sub {
  display: block;
  font-size: 0.625rem;
}
.p-header .p-header-menu .p-header-menu__item a:hover {
  color: #C1191F;
}
.p-header .p-header-menu .p-header__ticket {
  display: flex;
  position: fixed;
  top: min(44.375rem, 100% - 10.25rem);
  left: 4.75rem;
  flex-direction: column;
  align-items: center;
  width: 9.375rem;
  height: 9.375rem;
  border-radius: 50%;
  bottom: 2.5rem;
  background: #C1191F;
  padding: 1.25rem;
  color: #050505;
  text-align: center;
  border: 0.25rem solid #050505;
  transition: transform 0.2s, opacity 0.5s, left 0.4s;
  margin-top: 0;
}
.p-header .p-header-menu .p-header__ticket .main {
  display: block;
  transform: scale(0.55, 1);
  font-family: "Arial Black", sans-serif;
  transform-origin: center left;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.125rem;
  transform-origin: center center;
}
.p-header .p-header-menu .p-header__ticket .sub {
  display: block;
  font-size: 0.75rem;
  line-height: 0.75rem;
  margin-bottom: 0.5rem;
}
.p-header .p-header-menu .p-header__ticket img {
  width: 4.8125rem;
}
.p-header .p-header-menu .p-header__ticket:hover {
  transform: scale(1.1) rotate(360deg);
}

.wrapper.home.on_scroll .p-header {
  width: 0rem;
  transition: 0.5s;
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .wrapper.home.on_scroll .p-header {
    width: 3.75rem;
  }
}
.wrapper.home.on_scroll .p-header .p-header__ticket {
  opacity: 0;
  left: -9.375rem;
}

@media screen and (max-width: 750px) {
  .p-header {
    width: 100%;
    height: 3.125rem;
    padding: 0;
  }
  .home .p-header {
    width: 3.75rem;
  }
}
/*------------------------
  burger
------------------------*/
.menu-btn {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  height: 3.125rem;
  width: 3.75rem;
  justify-content: center;
  align-items: center;
  z-index: 50;
  padding: 0.625rem;
}
.menu-btn span {
  position: relative;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  width: 100%;
  display: block;
  height: 0.125rem;
  background-color: #FFF;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  width: 100%;
  position: absolute;
}
.menu-btn span::before {
  top: 0.75rem;
}
.menu-btn span::after {
  bottom: 0.75rem;
}

#menu-btn-check {
  display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: transparent; /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before, #menu-btn-check:checked ~ .menu-btn span::after {
  transform-origin: center;
}
#menu-btn-check:checked ~ .menu-btn span::before {
  top: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
#menu-btn-check:checked ~ .menu-content {
  bottom: 0; /*メニューを画面内へ*/
  overflow: scroll;
}

.menu-content {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  z-index: 40;
  padding: 2.5rem 2.25rem;
  bottom: 100%;
  left: 0; /*leftの値を変更してメニューを画面外へ*/
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  background-color: #050505;
  background-image: url(../../images/common/spmenu_bg.svg);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 60%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .menu-content {
    justify-content: flex-start;
  }
}
.menu-content .burger-logo {
  margin: 0 auto 1.5rem;
  width: 13.125rem;
}
.menu-content .burger-logo a {
  display: block;
}
.menu-content ul {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  width: 100%;
}
.menu-content ul li {
  margin: 0 auto;
  text-align: left;
  width: 8.5rem;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
  padding: 1.25rem 0;
}
.menu-content ul li a .main {
  display: block;
  transform: scale(0.7, 1);
  font-family: "Arial", sans-serif;
  font-weight: bold;
  transform-origin: center left;
  font-size: 2.1875rem;
  line-height: 2.1875rem;
}
.menu-content ul li a .sub {
  display: block;
  font-size: 0.75rem;
}
.menu-content .spnav_ticket {
  display: block;
  padding: 0.5rem 0.625rem;
  background: #C1191F;
  color: #050505;
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
  width: 13.75rem;
  border: 0.125rem solid #050505;
}
.menu-content .spnav_ticket .spnav_ticket_innner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 0.625rem;
}
.menu-content .spnav_ticket .spnav_ticket_innner .main {
  display: block;
  transform: scale(0.55, 1);
  letter-spacing: -0.125rem;
  font-family: "Arial Black", sans-serif;
  transform-origin: center left;
  transform-origin: center left;
  font-size: 2.8125rem;
  line-height: 2.8125rem;
  width: 6.375rem;
}
.menu-content .spnav_ticket .spnav_ticket_innner .sub {
  display: block;
  font-size: 0.75rem;
}
.menu-content .spnav_ticket img {
  width: 4.0625rem;
  display: block;
  flex-shrink: 0;
}

/*------------------------
  layout
------------------------*/
.main-content {
  display: flex;
  flex-direction: column;
  flex-grow: 2;
}

.grid-container {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.ly-container {
  padding: 6.25rem 0 8.75rem;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 750px) {
  .ly-container {
    padding: 3.125rem 0 4.375rem;
  }
}

.home .ly-container {
  padding: 18.75rem 0 12.5rem;
}
@media screen and (max-width: 750px) {
  .home .ly-container {
    padding: 11.25rem 0 6.25rem;
  }
}
@media screen and (max-width: 576px) {
  .home .ly-container {
    padding: 8.125rem 0 3.75rem;
  }
}

.ly-wrapper {
  margin: 0 auto;
  max-width: 81.25rem;
  width: 100%;
  padding: 0 6.25rem;
  transition: 0.5s;
}
.ly-wrapper.small {
  max-width: 58.125rem;
}
.ly-wrapper.medium {
  max-width: 68.75rem;
}
@media screen and (max-width: 750px) {
  .ly-wrapper {
    padding: 0 1.875rem;
  }
}

.wrapper.home.on_scroll .ly-wrapper {
  width: calc(100% - 12.5rem);
}
@media screen and (max-width: 750px) {
  .wrapper.home.on_scroll .ly-wrapper {
    width: 100%;
  }
}

.ly-row {
  display: flex;
}
@media screen and (max-width: 750px) {
  .ly-row {
    flex-wrap: wrap;
  }
}

.col2 {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .col2 {
    width: 100%;
  }
}

.col3 {
  width: 33.333%;
}
@media screen and (max-width: 750px) {
  .col3 {
    width: 100%;
  }
}

.col4 {
  width: 25%;
}
@media screen and (max-width: 750px) {
  .col4 {
    width: 50%;
  }
}

/*------------------------
  heading
------------------------*/
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
}

section {
  position: relative;
  overflow: hidden;
}

.wrapper:not(.home) section {
  background: #C1191F;
  flex-grow: 2;
}

.ball {
  display: block;
  position: fixed;
  background-image: url(../../images/common/ball_wh.svg);
  opacity: 0.3;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 25rem;
  height: 25rem;
  background-position: bottom right;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .ball {
    height: 60vw;
    width: 60vw;
  }
}
.ball.on_footer {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
}
@media screen and (max-width: 750px) {
  .ball.on_footer {
    bottom: 0rem;
    right: -0.375rem;
  }
}

.sec-title {
  position: absolute;
  top: -0.0625rem;
  left: 0px;
  max-width: 100%;
  overflow: hidden;
  z-index: 2;
}
.sec-title .main {
  display: block;
  font-family: "Arial Black", sans-serif;
  transform-origin: center left;
  font-size: 12.125rem;
  line-height: 7.75rem;
  transform: scale(0.6, 1);
  margin-left: -0.625rem;
  margin-bottom: 1.125rem;
  letter-spacing: -0.125rem;
}
.sec-title .sub {
  display: block;
  font-size: 2.25rem;
  transform: scale(0.8, 1);
  transform-origin: center left;
}
.sec-title ~ div, .sec-title ~ p {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  .sec-title .main {
    font-size: 9.375rem;
    line-height: 5.9375rem;
    margin-left: -0.375rem;
  }
  .sec-title .sub {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .sec-title .main {
    font-size: 5.125rem;
    line-height: 3.25rem;
    margin-bottom: 0.75rem;
  }
  .sec-title .sub {
    font-size: 1.25rem;
  }
}

.heading-large {
  font-size: 2.5rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 750px) {
  .heading-large {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
  }
}

.heading-medium {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 750px) {
  .heading-medium {
    font-size: 1.25rem;
    margin-bottom: 1.125rem;
  }
}

.heading-small {
  font-size: 1.125rem;
}
@media screen and (max-width: 750px) {
  .heading-small {
    font-size: 1rem;
  }
}

/*------------------------
  mainvisual2
------------------------*/
.mainvisual2 {
  position: relative;
  height: 11.875rem;
  overflow: hidden;
  background: #FFF;
}
@media screen and (max-width: 576px) {
  .mainvisual2 {
    height: 7rem;
  }
}
.mainvisual2 h1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.875rem 0;
  height: 100%;
}
.mainvisual2 h1::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0%;
  bottom: 0;
  background: #FFF;
  z-index: 1;
  animation-name: anime-mainvisual2;
  animation-duration: 0.8s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.mainvisual2 h1 .main {
  display: flex;
  align-items: center;
  font-size: 9.375rem;
  font-family: "Arial Black", sans-serif;
  transform-origin: center left;
  transform: scale(0.55, 1);
  letter-spacing: -0.375rem;
  margin-left: -0.5rem;
  height: 7.5rem;
  margin-bottom: 0.5rem;
}
.mainvisual2 h1 .main .line {
  -webkit-text-fill-color: #FFF;
  -webkit-text-stroke: 0.125rem #050505;
}
@media screen and (max-width: 576px) {
  .mainvisual2 h1 .main {
    font-size: 5.625rem;
    line-height: 86%;
    margin-bottom: 0rem;
  }
}
.mainvisual2 h1 .sub {
  display: block;
  font-size: 1.875rem;
  line-height: 1.875rem;
  transform: scale(0.8, 1);
  transform-origin: center left;
  margin-left: 0.25rem;
  letter-spacing: 0.125rem;
}
@media screen and (max-width: 576px) {
  .mainvisual2 h1 .sub {
    font-size: 0.9375rem;
    letter-spacing: 0.0625rem;
    margin-left: 0.125rem;
  }
}
.mainvisual2 figure {
  display: block;
  position: absolute;
  left: 0;
  right: -50%;
  top: 0;
  bottom: 0;
  z-index: 2;
  animation-name: img-mainvisual2-1;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.mainvisual2 figure img {
  height: 100%;
  width: auto;
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
}
.mainvisual2 figure img:first-child {
  display: none;
}
@keyframes anime-mainvisual2 {
  from {
    left: 0%;
  }
  to {
    left: 100%;
  }
}
@keyframes img-mainvisual2-1 {
  from {
    right: -50%;
  }
  to {
    right: 0;
  }
}
@keyframes img-mainvisual2-2 {
  from {
    right: 0rem;
  }
  to {
    right: -0.9375rem;
  }
}
/*------------------------
  coming soon
------------------------*/
.coming_soon {
  display: none;
  text-align: center;
  background-color: #FFF;
  flex-grow: 1;
  height: calc(100% - 25rem);
  min-height: 31.25rem;
  padding: 3.75rem 0rem;
}
@media screen and (max-width: 750px) {
  .coming_soon {
    height: calc(100% - 14.5625rem);
  }
}
.coming_soon .ly-wrapper {
  padding: 0;
}
.coming_soon img {
  margin-top: -3.125rem;
  width: 70%;
  max-width: 47.5rem;
}
@media screen and (max-width: 750px) {
  .coming_soon img {
    width: 80%;
  }
}
.coming_soon.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.coming_soon.is-active ~ section {
  display: none;
}

/*------------------------
  footer
------------------------*/
.p-footer {
  position: relative;
  width: 100%;
  text-align: center;
  background-color: #050505;
  padding: 5rem 0 1.25rem;
}
.p-footer .p-footer-menu {
  margin: 0 auto;
}
.p-footer .p-footer-menu__item {
  width: 33.333%;
  margin: 2.8rem auto;
  text-align: center;
}
.p-footer .p-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-footer .p-footer-social .p-footer-social__item {
  margin: 0 1.5625rem;
}
.p-footer .p-footer-social .p-footer-social__item img {
  width: 2.5rem;
  max-width: 2.5rem;
  height: auto;
}
.p-footer .p-footer-social .p-footer-social__item a {
  display: block;
}
.p-footer .p-footer-social .p-footer-social__item a:hover {
  opacity: 0.8;
}
.p-footer .p-footer-nav {
  margin-top: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-footer .p-footer-nav__item {
  margin: 0 0.9375rem;
}
.p-footer .p-footer-nav a {
  color: #FFF;
  text-decoration: underline;
  font-size: 0.875rem;
  padding: 0.625rem;
  letter-spacing: 0.0625rem;
}
.p-footer .p-footer-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 7.1875rem;
}
.p-footer .p-footer-banner__item {
  width: calc(50% - 1.875rem);
}
.p-footer .p-footer-banner__item a {
  display: block;
}
.p-footer .p-footer-banner__item a:hover {
  opacity: 0.8;
}
.p-footer .p-footer-copyright {
  color: #FFF;
  text-align: center;
  font-size: 0.625rem;
  margin-top: 1.875rem;
}

@media screen and (max-width: 750px) {
  .p-footer {
    padding: 2.5rem 0 1rem;
  }
  .p-footer .p-footer-social .p-footer-social__item {
    margin: 0 1.25rem;
  }
  .p-footer .p-footer-social .p-footer-social__item img {
    width: 2.25rem;
  }
  .p-footer .p-footer-nav {
    margin-top: 2.5rem;
  }
  .p-footer .p-footer-nav a {
    font-size: 0.75rem;
  }
  .p-footer .p-footer-banner {
    flex-direction: column;
    margin: 0 0 2.875rem;
  }
  .p-footer .p-footer-banner__item {
    width: 100%;
  }
  .p-footer .p-footer-banner__item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
/*------------------------
  scroll to top
------------------------*/
.page-top {
  position: absolute;
  top: -2.6875rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 2;
  width: 7.5rem;
  height: 2.75rem;
  cursor: pointer;
  background-color: #050505;
  transition: transform 0.15s;
  padding: 0.4375rem;
}
.page-top img {
  transform: rotate(-90deg) scale(0.8, 1);
  width: 0.5625rem;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.25rem;
  transition: 0.3s;
}
.page-top span {
  display: block;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  transform-origin: center left;
  transform: scale(0.8, 1);
  color: #FFF;
  transform-origin: center center;
  font-size: 1.125rem;
  letter-spacing: 0.0625rem;
  transition: 0.3s;
}
.page-top:hover img, .page-top:hover span {
  opacity: 0.4;
}
@media screen and (max-width: 750px) {
  .page-top {
    top: -1.8125rem;
    width: 5.3125rem;
    height: 1.875rem;
    padding: 0.375rem;
  }
  .page-top img {
    transform: rotate(-90deg) scale(0.8, 1);
    width: 0.3125rem;
  }
  .page-top span {
    transform: scale(0.8, 1);
    font-size: 0.75rem;
  }
}

div [data-remodal-id=modal_recipe] {
  background: none;
}

.slider {
  width: 100%;
}

.n_pad {
  padding-left: 0;
  padding-right: 0;
}

.pad_2 {
  padding-left: 2%;
  padding-right: 2%;
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.9);
}

.slick-dots li button:before {
  color: #999999;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: #FFA64D;
}

.remodal-wrapper {
  bottom: 0;
  top: 0;
}

.taxin_text {
  font-size: 0.71875rem;
}

.wwimg {
  display: flex;
}

.features .inner .wwimg img {
  width: 50%;
}

.features .inner .chikawa_f_img {
  width: 12.5rem;
  margin: 0 auto;
}

button.btn.btn-success.btn-block.reject {
  background-color: #525252 !important;
  color: #ffffff !important;
}

/*------------------------
  loading
------------------------*/
.loading {
  width: 100vw;
  height: 100%;
  min-height: -webkit-fill-available;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.loading::before, .loading::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  transition-duration: 0.5s;
}
.loading::before {
  left: 0;
  background-color: #050505;
  transition-delay: 0.1s;
}

.loading-animation {
  width: 40%;
  max-width: 37.5rem;
  height: auto;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
@media screen and (max-width: 750px) {
  .loading-animation {
    width: 70%;
  }
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}

.loading.is-active::before {
  width: 0%;
}
.loading.is-active .loading-animation {
  opacity: 0;
}

.load_logo {
  width: 100%;
  margin-bottom: 3.125rem;
  display: block;
}
@keyframes animate__fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate3d(0, 3.75rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpSmall {
  animation-name: animate__fadeInUpSmall;
}
@keyframes animate__fadeInLeftSmall {
  from {
    opacity: 0;
    transform: translate3d(-3.75rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftSmall {
  animation-name: animate__fadeInLeftSmall;
}
@keyframes slideInLeftUp {
  0% {
    transform: translate3d(-100%, 15%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInLeftUp {
  animation-name: slideInLeftUp;
}
@keyframes lead {
  0% {
    transform: scale(0, 1);
    visibility: visible;
  }
  to {
    transform: scale(1, 1);
  }
}
.animate__lead {
  animation-name: lead;
}

.border_box {
  border: 0.25rem solid #050505;
  background: #FFF;
}
.border_box:not(:last-child) {
  margin-bottom: 3.5rem;
}
.border_box.padding {
  padding: 3.125rem min(4.375rem, 6%);
}
.border_box.padding_l {
  padding: 3.125rem min(5.625rem, 8%);
}
@media screen and (max-width: 750px) {
  .border_box {
    border: 0.125rem solid #050505;
  }
  .border_box:not(:last-child) {
    margin-bottom: 2.25rem;
  }
  .border_box.padding {
    padding: 1.5rem min(4.375rem, 6%);
  }
  .border_box.padding_l {
    padding: 1.5rem min(4.375rem, 6%);
  }
}/*# sourceMappingURL=common.css.map */