@charset "UTF-8";
/* Scss Document */
* {
  margin: 0;
  padding: 0;
}
*:focus {
  outline: none;
}

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

html {
  font-size: 62.5%; /*16px x 0.625 = 10px(=1rem) */
}

body {
  -webkit-text-size-adjust: 100%;
}

a {
  word-break: break-all;
  border-bottom: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a img {
  border-bottom: none;
}
a:hover {
  text-decoration: none;
}
a:hover img {
  border-bottom: none;
}

ul, li {
  list-style: none;
}

/* FORM */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  overflow-y: scroll;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

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

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

img, abbr, acronym, fieldset {
  border: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

li.noList {
  list-style-type: none;
  margin-left: -20px;
}

:root {
  --f-TitleL: 12rem;
  --f-Title: 8rem;
  --f-2XL: 5.5rem;
  --f-XL: 4.5rem;
  --f-4L: 3rem;
  --f-3L: 2.5rem;
  --f-2L: 2rem;
  --f-L: 1.8rem;
  --f-M: 1.6rem;
  --f-S: 1.4rem;
  --f-SS: 1.2rem;
  --f-3S: 1rem;
}
@media screen and (max-width: 1100px) {
  :root {
    --f-TitleL: 11.4rem;
    --f-Title: 7.6rem;
    --f-2XL: 5.225rem;
    --f-XL: 4.275rem;
    --f-4L: 2.85rem;
    --f-3L: 2.375rem;
    --f-2L: 1.9rem;
    --f-L: 1.71rem;
    --f-M: 1.52rem;
    --f-S: 1.33rem;
    --f-SS: 1.14rem;
    --f-3S: 0.95rem;
  }
}
@media screen and (max-width: 800px) {
  :root {
    --f-TitleL: 9.9rem;
    --f-Title: 7.2rem;
    --f-2XL: 4.95rem;
    --f-XL: 4.05rem;
    --f-4L: 2.7rem;
    --f-3L: 2.25rem;
    --f-2L: 1.8rem;
    --f-L: 1.62rem;
    --f-M: 1.44rem;
    --f-S: 1.26rem;
    --f-SS: 1.08rem;
    --f-3S: 0.9rem;
  }
}
@media screen and (max-width: 500px) {
  :root {
    --f-TitleL: 8rem;
    --f-Title: 6.4rem;
    --f-2XL: 4.4rem;
    --f-XL: 3.6rem;
    --f-4L: 2.4rem;
    --f-3L: 2rem;
    --f-2L: 1.6rem;
    --f-L: 1.44rem;
    --f-M: 1.28rem;
    --f-S: 1.12rem;
    --f-SS: 0.96rem;
    --f-3S: 0.8rem;
  }
}

.fadein {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px);
}
.fadein.active {
  opacity: 1;
  transition: all 1.5s ease-out;
  -webkit-transition: all 1.5s ease-out;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  filter: blur(0);
}
@media screen and (max-width: 1100px) {
  .fadein.active {
    transition: all 0.75s ease-out;
    -webkit-transition: all 0.75s ease-out;
  }
}

.no-webp body::before {
  background-image: url(../img/mainbg.png);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: normal;
  letter-spacing: 0.05em;
  position: relative;
  font-size: var(--f-M);
  color: #000;
}
body::before {
  position: fixed;
  content: "";
  background-image: url(../img/mainbg.webp);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  width: 100%;
  height: 100lvh;
  top: 0;
  left: 0;
}
#wrapper {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.section {
  padding: 12rem 0;
}
.section__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1480px) {
  .section {
    padding: 10rem 0;
  }
  .section__inner {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1100px) {
  .section {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 500px) {
  .section {
    padding: 4rem 0;
  }
  .section__inner {
    width: 85%;
  }
}

.page {
  position: relative;
  z-index: 1;
  padding: 10rem 0 0;
}
.page__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .page {
    padding: 7.5rem 0 0;
  }
}

#loading {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  background: #000;
  z-index: 9999;
}
#loading .loader {
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 85px;
  z-index: 9999;
}
#loading .loader div {
  position: absolute;
  width: 6px;
  height: 29px;
  background: #FFF;
  top: 20.3px;
  animation: loader_scale 2.18s infinite, loader_fade 2.18s infinite;
  animation-timing-function: ease-in-out;
}
#loading .loader div:nth-child(1) {
  animation-delay: 0s;
  left: 1px;
}
#loading .loader div:nth-child(2) {
  animation-delay: 0.12s;
  left: 12px;
}
#loading .loader div:nth-child(3) {
  animation-delay: 0.23s;
  left: 23px;
}
#loading .loader div:nth-child(4) {
  animation-delay: 0.35s;
  left: 34px;
}
#loading .loader div:nth-child(5) {
  animation-delay: 0.47s;
  left: 45px;
}
#loading .loader div:nth-child(6) {
  animation-delay: 0.58s;
  left: 56px;
}
#loading .loader div:nth-child(7) {
  animation-delay: 0.7s;
  left: 67px;
}
#loading .loader div:nth-child(8) {
  animation-delay: 0.81s;
  left: 78px;
}
@keyframes loader_scale {
  0%, 42.6605504587156%, 100% {
    transform: scaleY(1);
  }
  21.3302752293578% {
    transform: scaleY(2.4);
  }
}
@keyframes loader_fade {
  0%, 42.6605504587156%, 100% {
    opacity: 0.16;
  }
  21.3302752293578% {
    opacity: 1;
  }
}
#loading .video-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
#loading .logoVideo {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 100%;
}
#loading .logoVideo::-webkit-media-controls {
  display: none !important;
}
#loading #openingjk-outer {
  height: 100%;
  width: 100%;
  min-height: 100svh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}
#loading #openingjk-outer .openingjk-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  min-height: 100svh;
  background: url(../img/bg_openingjk.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
#loading #openingjk-outer .openingjk-wrap--close {
  display: none;
  position: absolute;
  top: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  #loading #openingjk-outer .openingjk-wrap--close {
    top: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
  }
}
#loading #openingjk-outer .openingjk-wrap--jk {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 80%;
  max-width: 840px;
}
@media screen and (max-width: 500px) {
  #loading #openingjk-outer .openingjk-wrap--jk {
    width: 95%;
  }
}
#loading #openingjk-outer .openingjk-wrap--jk a {
  filter: brightness(1);
  transition: all 0.3s;
}
#loading #openingjk-outer .openingjk-wrap--jk a:hover {
  filter: brightness(1.5);
}
#loading #openingjk-outer .openingjk-wrap--jk .mesimg {
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.9)) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.6));
}
#loading #openingjk-outer .openingjk-wrap--jk.video {
  width: 50%;
  max-width: 720px;
}
@media screen and (max-width: 500px) {
  #loading #openingjk-outer .openingjk-wrap--jk.video {
    width: 90%;
  }
}
#loading #openingjk-outer .openingjk-wrap--jk #topvideo_wrapper {
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.9)) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.6));
}
@media screen and (max-width: 1100px) {
  #loading .logoVideo {
    width: 200%;
  }
}

.sns-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sns-list__item {
  position: relative;
  border-radius: 50vh;
  padding: 1rem;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.2));
}
.sns-list__item img {
  width: 25px;
}
.sns-list__item .x {
  width: 20px;
}
.sns-list__item .insta {
  width: 22px;
}
.sns-list__item::after {
  position: absolute;
  content: "";
  background-color: #FFF;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50vh;
  z-index: -1;
}
@media screen and (max-width: 500px) {
  .sns-list {
    justify-content: center;
  }
  .sns-list__item {
    width: 42.75px;
    height: 42.75px;
  }
  .sns-list__item img {
    width: 23.75px;
  }
  .sns-list__item .x {
    width: 19px;
  }
  .sns-list__item .insta {
    width: 20.9px;
  }
}

.site-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin: 0 auto;
  width: 100%;
}
.site-list__item {
  flex: 1;
  width: 100%;
  max-width: 185px;
}
.site-list__item a {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  font-size: var(--f-L);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 1rem;
  background-color: #000;
  color: #FFF;
  border-radius: 1px;
  filter: drop-shadow(30px 30px 30px rgba(0, 0, 0, 0.2));
}
.site-list__item a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/btn--texture.webp);
  background-size: contain;
  top: 0;
  bottom: 0;
}
.site-list__item:nth-child(0) {
  transition-delay: 0s;
}
.site-list__item:nth-child(0) a::before {
  background-position: 0%;
}
.site-list__item:nth-child(1) {
  transition-delay: 0.1s;
}
.site-list__item:nth-child(1) a::before {
  background-position: 25%;
}
.site-list__item:nth-child(2) {
  transition-delay: 0.2s;
}
.site-list__item:nth-child(2) a::before {
  background-position: 50%;
}
.site-list__item:nth-child(3) {
  transition-delay: 0.3s;
}
.site-list__item:nth-child(3) a::before {
  background-position: 75%;
}
.site-list__item:nth-child(4) {
  transition-delay: 0.4s;
}
.site-list__item:nth-child(4) a::before {
  background-position: 100%;
}
@media screen and (max-width: 500px) {
  .site-list {
    justify-content: center;
  }
}

.streaming-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.streaming-list__item {
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.05));
}
.streaming-list__item a {
  padding: 0.75rem 1.75rem;
  background-color: #FFF;
  border-radius: 50vh;
  display: block;
  border: 1px solid #d4d4d4;
  color: #a80000;
}
.streaming-list__item img {
  width: 90px;
  height: auto;
}
@media screen and (max-width: 800px) {
  .streaming-list {
    gap: 0.5rem;
  }
  .streaming-list__item a {
    padding: 0.5rem 1rem;
  }
  .streaming-list__item img {
    width: 75px;
    height: auto;
  }
}

*[lang=jp], *[lang=en] {
  opacity: 0;
  transform: translate(-5px);
  content-visibility: hidden;
  visibility: hidden;
  transition: 0.5s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  pointer-events: none;
  position: absolute;
}
*[lang=jp].fadeIn, *[lang=en].fadeIn {
  transition: 0.5s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  opacity: 1;
  transform: translate(0px);
  content-visibility: visible;
  visibility: visible;
  pointer-events: all;
  position: relative;
}
@keyframes langFade {
  0% {
    opacity: 0;
    position: absolute;
    visibility: hidden;
  }
  99% {
    position: relative;
    opacity: 0;
    visibility: hidden;
  }
  100% {
    position: relative;
    opacity: 1;
    visibility: visible;
  }
}

.safafi *[lang=jp].fadeIn, .safafi *[lang=en].fadeIn {
  animation: langFade 0.5s forwards;
}

.header {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  position: relative;
  opacity: 0;
  pointer-events: none;
}
.header__logo {
  position: fixed;
  width: 110px;
  top: 2rem;
  left: 2rem;
}
.header__lang {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: fixed;
  top: 4rem;
  right: 11rem;
  width: 100px;
  height: 40px;
  overflow: hidden;
  border-radius: 50vh;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.header__lang .checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
  display: block !important;
}
.header__lang .checkbox:checked + .knobs:before {
  content: "EN";
  left: 50px;
}
.header__lang .checkbox:checked + .knobs:after {
  left: 50px;
}
.header__lang .knobs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 50%;
  height: 100%;
  transition: 0.3s ease all;
}
.header__lang .knobs:before {
  content: "JP";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  color: #FFF;
  font-size: var(--f-S);
  font-weight: bold;
  text-align: center;
  vertical-align: center;
  line-height: 1;
  z-index: 5;
  transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__lang .knobs:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7d7d7d;
  border-radius: 50vh;
  transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  z-index: 4;
}
.header__lang .layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  transition: 0.3s ease all;
  border-radius: 50vh;
  z-index: 1;
  font-size: var(--f-S);
  color: #FFF;
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .header__lang {
    width: 80px;
    height: 32px;
  }
  .header__lang .checkbox:checked + .knobs:before, .header__lang .checkbox:checked + .knobs:after {
    left: 40px;
  }
}
.header__hum {
  position: fixed;
  right: 2rem;
  top: 2rem;
  width: 8rem;
  height: 8rem;
  cursor: pointer;
  transition: all 0.5s;
  z-index: 9999;
  filter: drop-shadow(0 0 5px white);
}
.header__hum span {
  position: absolute;
  left: 0;
  right: 0;
  width: 6rem;
  height: 1px;
  margin: auto;
  background-color: #000;
  border-radius: 4px;
  transition: all 0.5s;
}
.header__hum span:nth-of-type(1) {
  top: 2.5rem;
}
.header__hum span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.header__hum span:nth-of-type(3) {
  bottom: 2.5rem;
}
.header__hum span {
  filter: drop-shadow(0px -1px 0px rgba(255, 255, 255, 0.3));
}
.header__hum::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.75s;
}
.header__hum.active span {
  background-color: #FFF;
  left: 7px;
}
.header__hum.active span:nth-of-type(1) {
  transform-origin: left;
  transform: rotate(30deg);
}
.header__hum.active span:nth-of-type(2) {
  width: 1px;
  left: 100%;
  opacity: 0;
  animation: active-btn-bar 0.8s forwards;
}
.header__hum.active span:nth-of-type(3) {
  transform-origin: left;
  transform: rotate(-30deg);
}
@keyframes active-btn-bar {
  100% {
    background-color: #FFF;
    height: 0;
  }
}
.header__hum.active::after {
  animation: active-btn 0.7s 0.25s forwards;
}
@keyframes active-btn {
  0% {
    border-color: transparent;
    transform: rotate(0);
  }
  25% {
    border-color: transparent #FFF transparent transparent;
  }
  50% {
    border-color: transparent #FFF #FFF transparent;
  }
  75% {
    border-color: transparent #FFF #FFF #FFF;
  }
  100% {
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(-680deg);
  }
}
.header__nav {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  position: fixed;
  width: 100vw;
  height: 100dvh;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
}
.header__nav .nav__list, .header__nav .nav__logo {
  position: relative;
  z-index: 1;
  opacity: 0;
  filter: blur(30px);
  transform: translateY(15px);
}
.header__nav .nav__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.042svw;
  flex: 1;
}
.header__nav .nav__inner {
  width: min(1800px, 85vw);
  height: 24dvw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2.605vw;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.header__nav .nav__item {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.125vw;
  color: #FFF;
}
.header__nav .nav__item a {
  transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  position: relative;
  color: #FFF;
  overflow: hidden;
  background: linear-gradient(to right, red, red 50%, #FFF 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
}
.header__nav .nav__item a:hover {
  transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  background-position: 0 100%;
  transform-origin: left;
}
.header__nav .nav__item .member-list {
  font-size: 1.5625vw;
  margin-top: 1.0416vw;
}
.header__nav .nav__item .member-list__item {
  display: flex;
  align-items: center;
  gap: 0.78125vw;
  margin-left: 1.0417vw;
  margin-bottom: 0.28vw;
}
.header__nav .nav__item .member-list__item::before {
  content: "";
  width: 2.083vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  display: block;
}
.header__nav .nav__logo {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 20.84vw;
  text-align: center;
}
.header__nav::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/news--texture.png);
  mix-blend-mode: overlay;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.header__nav.active {
  pointer-events: all;
  opacity: 1;
  z-index: 9998;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.3s;
}
.header__nav.active .nav__list, .header__nav.active .nav__logo {
  transition: 1.2s;
  transition-delay: 0.3s;
  transform: translateY(0);
  filter: blur(0px);
  opacity: 1;
}
.header.show {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  opacity: 1;
  pointer-events: all;
  z-index: 5;
}
@media screen and (max-width: 900px) {
  .header__logo {
    width: max(60px, 10vw);
  }
  .header__lang {
    top: 2rem;
    right: 6.5rem;
  }
  .header__hum {
    width: 6.4rem;
    height: 6.4rem;
  }
  .header__hum span {
    width: 4.8rem;
  }
  .header__hum span:nth-of-type(1) {
    top: 2rem;
  }
  .header__hum span:nth-of-type(3) {
    bottom: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .header__logo {
    top: 1rem;
    left: 1rem;
  }
  .header__hum {
    right: 1rem;
    top: 1rem;
    width: 4.8rem;
    height: 4.8rem;
  }
  .header__hum span {
    width: 3.6rem;
  }
  .header__hum span:nth-of-type(1) {
    top: 1.5rem;
  }
  .header__hum span:nth-of-type(3) {
    bottom: 1.5rem;
  }
  .header__hum.active span {
    left: 6px;
  }
  .header::after {
    position: fixed;
    content: "";
    width: 100%;
    height: 80px;
    z-index: -1;
    top: 0;
    background-color: #FFF;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 60%, white 100%);
  }
}
@media screen and (max-width: 500px) {
  .header__nav .nav__inner {
    width: 90%;
    height: 90%;
    gap: 1rem;
    flex-direction: column;
    justify-content: flex-start;
    overflow: auto;
  }
  .header__nav .nav__item {
    font-size: 4.2vh;
  }
  .header__nav .nav__item .member-list {
    font-size: 2.1vh;
    margin-top: 1vh;
  }
  .header__nav .nav__item .member-list__item {
    display: flex;
    align-items: center;
    gap: 3vw;
    margin-left: 5vw;
    margin-bottom: 1vh;
  }
  .header__nav .nav__item .member-list__item::before {
    width: 8vw;
  }
  .header__nav .nav__logo {
    width: 25vw;
    margin-left: auto;
  }
  .header__nav .nav__list {
    gap: 1svh;
  }
}

.nolink {
  pointer-events: none;
  opacity: 0.5;
}

.footer {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.footer__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footer .contact {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-M);
}
.footer .contact a {
  color: #000;
}
.footer .contact {
  display: flex;
  align-items: center;
}
.footer .contact img {
  padding-bottom: 0.2rem;
}
.footer .copy {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-SS);
}
@media screen and (max-width: 800px) {
  .footer {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 500px) {
  .footer {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.no-webp .footer__item a::before {
  background-image: url(../img/btn--texture.png);
}

#contact .footer {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
#contact .footer__inner {
  max-width: 1000px;
  justify-content: center;
}
#contact .footer .contact {
  display: none;
}

.topmain {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0rem;
  min-height: 100dvh;
  padding-top: 26vh;
  z-index: 1;
  background: #000;
}
.topmain__top {
  text-align: center;
  width: min(15.625vw, 210px);
  height: auto;
}
.topmain__logo, .topmain__logo2 {
  text-align: center;
  width: min(29vw, 620px);
  height: auto;
  margin-top: 3rem;
}
.topmain_bana {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .topmain_bana {
    flex-direction: column;
  }
}
.topmain_bana.show .topmain_bana__allogo, .topmain_bana.show .topmain_bana__tourlogo {
  transition: 0.25s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transform: scale(1);
  opacity: 1;
}
.topmain_bana a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.topmain_bana a:hover img {
  transition: all 0.5s ease-in;
  transform: scale(0.98);
}
.topmain_bana a:hover .btn--circle::after {
  transition: all 0.5s ease-in;
  transform: translateX(5px) rotate(45deg);
}
.topmain_bana__allogo {
  opacity: 0;
  text-align: center;
  width: 40%;
  transition: 0.25s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transform: scale(1.1);
}
@media screen and (max-width: 500px) {
  .topmain_bana__allogo {
    width: 100%;
  }
}
.topmain_bana__tourlogo {
  opacity: 0;
  width: 40%;
  transition: 0.25s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transform: scale(1.1);
}
@media screen and (max-width: 500px) {
  .topmain_bana__tourlogo {
    width: 100%;
  }
}
.topmain_bana__tourlogo img {
  transition: all 0.5s ease;
  width: min(720px, 67vh);
}
.topmain_bana__tourlogo .btn--circle {
  margin: 1rem 0 2rem;
}
.topmain_bana__tourlogo .btn--circle::after {
  transition: all 0.5s ease;
}
.topmain__bottom {
  text-align: center;
  width: min(50vw, 480px);
  height: auto;
  margin-bottom: 2rem;
  background: rgba(29, 26, 22, 0.9);
  padding: 10px;
}
.topmain .scrolldown {
  position: relative;
  bottom: 0;
  --sizeX: 25px;
  --sizeY: 40px;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX/2);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50vh;
  filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.3));
  border-radius: 50vh;
  cursor: pointer;
  margin-bottom: 1rem;
}
.topmain .scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 100vh;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px rgba(42, 84, 112, 0.4);
}
@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }
  40% {
    opacity: 1;
    height: 10px;
  }
  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }
  100% {
    height: 3px;
    opacity: 0;
  }
}
.topmain::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/ap_dvdbluray.webp"), url("../img/ap_dvdbluray.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .topmain {
    width: 100%;
    min-height: calc(100dvh - 0rem);
    margin: 0rem auto;
    background-size: contain;
  }
  .topmain__top {
    margin-top: auto;
    width: 32.088vw;
  }
  .topmain__logo, .topmain__logo2 {
    width: 44vw;
    margin-top: 0;
  }
  .topmain__bottom {
    background: none;
  }
  .topmain .scrolldown {
    border: 1px solid #000;
    background-color: rgba(0, 0, 0, 0.8);
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.5));
    margin-top: 3rem;
  }
  .topmain .scrolldown::before {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px -5px 3px 1px #000;
  }
  .topmain::before {
    background-size: contain;
    background-position: center top;
  }
}
@media screen and (max-width: 800px) {
  .topmain {
    min-height: inherit;
    display: block;
    padding-top: 63vw;
  }
}
@media screen and (max-width: 500px) {
  .topmain {
    padding-top: 68vw;
  }
  .topmain__top {
    margin-top: 2.5rem;
    width: 35%;
    width: max(140px, 19.665vh);
    width: max(140px, 18.68175vh);
  }
  .topmain__logo, .topmain__logo2 {
    width: max(180px, 23.94vh);
    width: max(180px, 22.743vh);
  }
  .topmain__tourlogo {
    opacity: 1;
    transform: scale(1);
  }
  .topmain__bottom {
    width: 65%;
    margin-bottom: 0;
  }
  .topmain .scrolldown {
    margin-top: 0;
  }
  .topmain::before {
    background-size: 113%;
  }
}

.topbana {
  position: relative;
  z-index: 3;
}
.topbana a.bright {
  filter: brightness(1);
  transition: all 0.3s;
}
.topbana a.bright:hover {
  filter: brightness(1.2);
}

.message {
  position: relative;
}
.message #message-photo {
  width: 100%;
  max-width: 740px;
  margin: 0 auto 3rem auto;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
.message__content {
  display: flex !important;
}
.message__img {
  width: 350px;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.1));
}
.message__text {
  background: url(../img/message_bg.png);
  border-top: solid 1px #D2B894;
  border-bottom: solid 1px #D2B894;
  border-right: solid 1px #D2B894;
  border-radius: 3px;
  padding: 30px;
  position: relative;
  width: 100%;
  font-weight: bold;
  line-height: 2;
  width: 33.3333333333%;
  line-height: 1.5;
  font-size: var(--f-S);
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.1));
  text-shadow: #FFF 1px 1px 1px;
}
.message__text_name {
  margin-bottom: 1.5rem;
  text-align: right;
}
.message__text_name span {
  display: inline-block;
  position: relative;
  padding-left: 15px;
}
.message__text_name span:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #000;
  top: 50%;
  left: -30px;
}
.message__text p + p {
  margin-top: 15px;
}
.message__text:first-child, .message__text:nth-child(4) {
  border-left: solid 1px #D2B894;
}
.message__text:nth-child(n+4) {
  border-top: none;
}
@media screen and (max-width: 900px) {
  .message__content {
    flex-direction: column;
    gap: 2.5rem;
  }
  .message__img {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
  .message__text {
    width: 100%;
    padding: 15px;
    border: solid 1px #D2B894;
  }
  .message__text.tak {
    order: 1;
  }
  .message__text.jack {
    order: 2;
  }
  .message__text.eric {
    order: 3;
  }
  .message__text.matt {
    order: 4;
  }
  .message__text.yt {
    order: 5;
  }
}

.messageblock {
  width: 100%;
  margin: 0 auto 3rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .messageblock {
    padding: 0 10px;
  }
  .messageblock > div {
    margin-left: 0px;
    margin-top: -1px;
  }
}

.about {
  position: relative;
}
.about .video-area {
  position: relative;
  padding: 10rem;
  background-image: url(../img/texture--gold.webp);
  background-size: cover;
  border-radius: 1px;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.1));
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .about .video-area {
    padding: 5rem;
  }
}
@media screen and (max-width: 900px) {
  .about .video-area {
    padding: 2rem;
  }
}

.no-webp .about .video-area {
  background-image: url(../img/disco--kazari01.png);
}

.member {
  position: relative;
}
.member__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 85%;
  margin: 0 auto;
}
.member__item {
  position: relative;
  width: 33.3%;
  margin-bottom: 5rem;
  cursor: pointer;
  filter: drop-shadow(30px 30px 30px rgba(0, 0, 0, 0.1));
  z-index: 1;
}
.member__item .img {
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  filter: blur(5px);
  mask-transition: 5s;
  -webkit-mask-image: url(../img/texture--cloud.webp);
          mask-image: url(../img/texture--cloud.webp);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 0%;
          mask-size: 0%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.member__item .img img, .member__item .img source {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  aspect-ratio: 1/1.15;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.member__item .name {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.34375vw;
  color: #000;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.38));
  text-shadow: #333 -1px -1px 1px, #FFF 1px 1px 1px;
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
}
.member__item .prof {
  margin-top: 1rem;
  font-size: var(--f-S);
  font-weight: bold;
  color: #24242e;
  line-height: 1;
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.member__item:nth-child(3n+2) {
  margin: 0 -5%;
}
.member__item:nth-child(4) {
  margin-left: -12%;
}
.member__item.yt .name {
  flex-direction: column;
  gap: 0 !important;
}
.member__item.yt img {
  -o-object-position: left;
     object-position: left;
}
.member__item.matt img {
  -o-object-position: left;
     object-position: left;
}
.member__item:hover .img img {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  transform: scale(1.1);
}
.member__item.active .img {
  transition: 5s;
  -webkit-mask-size: 250%;
          mask-size: 250%;
  filter: blur(0);
}
.member__item:nth-child(0) .img {
  -webkit-mask-image: url(../img/texture--cloud00.webp);
          mask-image: url(../img/texture--cloud00.webp);
}
.member__item:nth-child(0).active .img {
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}
.member__item:nth-child(1) .img {
  -webkit-mask-image: url(../img/texture--cloud01.webp);
          mask-image: url(../img/texture--cloud01.webp);
}
.member__item:nth-child(1).active .img {
  transition-delay: 0.25s;
  -webkit-transition-delay: 0.25s;
}
.member__item:nth-child(2) .img {
  -webkit-mask-image: url(../img/texture--cloud02.webp);
          mask-image: url(../img/texture--cloud02.webp);
}
.member__item:nth-child(2).active .img {
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.member__item:nth-child(3) .img {
  -webkit-mask-image: url(../img/texture--cloud03.webp);
          mask-image: url(../img/texture--cloud03.webp);
}
.member__item:nth-child(3).active .img {
  transition-delay: 0.75s;
  -webkit-transition-delay: 0.75s;
}
.member .profile {
  display: flex;
  gap: 3rem;
  margin-top: 10rem;
  margin-bottom: 15rem;
}
.member .profile__img {
  width: 45%;
  max-width: 400px;
}
.member .profile__text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 55%;
}
.member .profile__text .name {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-Title);
  line-height: 1;
}
.member .profile__text .part {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-4L);
}
.member .profile__text .intro {
  line-height: 1.5;
}
.member .page .member__list {
  margin-bottom: 15rem;
}
.member .page .member__item .name {
  font-size: var(--f-3L);
  gap: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .member .page .member__item .name {
    font-size: min(2.7vw, 20px);
    gap: 1vw;
  }
}
@media screen and (max-width: 900px) {
  .member__list {
    width: 100%;
    margin-bottom: 0;
  }
  .member__item {
    width: 34%;
  }
  .member__item .name {
    font-size: 3vw;
  }
  .member .profile {
    margin-top: 5rem;
    margin-bottom: 7.5rem;
  }
  .member .profile__img {
    width: 40%;
    max-width: initial;
  }
  .member .profile__text {
    gap: 1.5rem;
    width: 60%;
  }
  .member .profile__text .name {
    font-size: var(--f-2XL);
  }
  .member .profile__text .part {
    font-size: var(--f-4L);
  }
  .member .profile__text .intro {
    line-height: 1.5;
  }
}
@media screen and (min-width: 501px) and (max-width: 800px) {
  .member.page .member__item .name {
    font-size: var(--f-M);
  }
}
@media screen and (max-width: 500px) {
  .member__list {
    flex-direction: column;
  }
  .member__item {
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    width: 100%;
    margin: 0 auto 1rem;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  }
  .member__item:not(:last-child), .member__item:not(:first-child) {
    margin: 0 auto 1rem;
  }
  .member__item:not(:last-child) .name, .member__item:not(:first-child) .name {
    margin-right: 8%;
  }
  .member__item a {
    display: flex;
    align-items: flex-end;
    text-align: right;
    justify-content: space-between;
  }
  .member__item .img {
    width: 40%;
  }
  .member__item .img img {
    aspect-ratio: 1/0.9;
    -o-object-position: center top;
       object-position: center top;
  }
  .member__item .name {
    font-size: 7.18vw !important;
    margin-right: 0;
    margin-left: -20vw;
    padding-bottom: 1.5vw;
    padding-right: 1.5vw;
    flex-direction: column;
    gap: 0;
  }
  .member__item .prof {
    position: absolute;
    top: 0;
    right: 2.5vw;
  }
  .member__item.tak {
    order: 1;
  }
  .member__item.eric {
    order: 3;
  }
  .member__item.jack {
    order: 2;
  }
  .member__item.matt {
    order: 4;
  }
  .member__item.yt {
    order: 5;
    margin-bottom: 0;
  }
  .member.page .member__list {
    margin-bottom: 7.5rem;
  }
  .member .profile {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .member .profile__text {
    width: 100%;
  }
  .member .profile__img {
    width: 100%;
  }
  .member .profile__img img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (max-width: 500px) {
  #top .member__list {
    width: 90%;
    margin: 0 auto;
  }
}
#top .member .title--section {
  margin-left: -13px;
}

.no-webp .member__item .img {
  -webkit-mask-image: url(../img/texture--cloud.png);
          mask-image: url(../img/texture--cloud.png);
}
.no-webp .member__item:nth-child(0) .img {
  -webkit-mask-image: url(../img/texture--cloud00.png);
          mask-image: url(../img/texture--cloud00.png);
}
.no-webp .member__item:nth-child(1) .img {
  -webkit-mask-image: url(../img/texture--cloud01.png);
          mask-image: url(../img/texture--cloud01.png);
}
.no-webp .member__item:nth-child(2) .img {
  -webkit-mask-image: url(../img/texture--cloud02.png);
          mask-image: url(../img/texture--cloud02.png);
}
.no-webp .member__item:nth-child(3) .img {
  -webkit-mask-image: url(../img/texture--cloud03.png);
          mask-image: url(../img/texture--cloud03.png);
}

.archive {
  position: relative;
  background-image: url(../img/archive--texture.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
.archive .section__inner > p {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.archive .list-year {
  position: relative;
  z-index: 1;
}
.archive .list-year .year {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  margin: 0;
  padding: 0.6em 0;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
.archive .list-year .year__content {
  padding: 20px 0;
}
.archive .list-month {
  position: relative;
}
.archive .list-month .month {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-size: var(--f-3L);
  font-weight: bold;
  line-height: 50px;
  padding-bottom: 0.08em;
  text-align: center;
  z-index: 2;
}
.archive .list-month .month::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #FFF;
  border-radius: 50%;
  z-index: -1;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.archive .list-month .month__content {
  position: relative;
  padding: 2rem;
}
.archive .list-month .month__content::before {
  position: absolute;
  content: "";
  width: 1px;
  left: 0;
  right: 0;
  background: #818181;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 3px, rgba(0, 0, 0, 0.12) 0px 1px 2px;
  margin: auto;
  height: 100%;
  top: 0;
}
.archive .list-month .month + .month {
  margin-top: 3rem;
}
.archive .list-month .month + .month::before {
  position: absolute;
  content: "";
  width: 1px;
  left: 0;
  right: 0;
  background: #818181;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 3px, rgba(0, 0, 0, 0.12) 0px 1px 2px;
  margin: auto;
  height: 3rem;
  bottom: 100%;
}
.archive .list-month > *:last-child::before {
  height: 100px;
  mask-image: linear-gradient(-90deg, black 0%, black 50%, transparent);
  -webkit-mask-image: -webkit-linear-gradient(-90deg, black 0%, black 50%, transparent);
}
.archive .list-day .left .day__content span.headline {
  padding-left: 20px;
  display: inline-block;
  position: relative;
}
.archive .list-day__item {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-bottom: 1rem;
  margin-right: -3rem;
  width: 50%;
}
.archive .list-day__item:last-child {
  margin-bottom: 0;
}
.archive .list-day .day {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-size: var(--f-M);
  line-height: 1;
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.archive .list-day .day::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #FFF;
  z-index: -1;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
.archive .list-day .day__content {
  font-weight: bold;
}
.archive .list-day .day.release::after {
  background-color: gold;
}
.archive .list-day .day.live {
  color: #FFF;
}
.archive .list-day .day.live::after {
  background-color: #000;
}
.archive .list-day .day.fes {
  color: #FFF;
}
.archive .list-day .day.fes::after {
  background-color: #787878;
}
.archive .list-day .day.media {
  color: #FFF;
  filter: drop-shadow(0 0 1px #000);
}
.archive .list-day .day.info {
  color: #FFF;
}
.archive .list-day .day.info::after {
  content: "i";
  text-align: center;
  font-size: 1.2rem;
  line-height: 18px;
  border-radius: 100%;
  width: 18px;
  height: 18px;
  background-color: #a80000;
}
.archive .list-day .day.hidden {
  visibility: hidden;
}
.archive .list-day .day a {
  color: inherit;
  position: relative;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  height: 100%;
  line-height: 4rem;
  outline: none;
  margin-bottom: -2px;
}
@media screen and (max-width: 500px) {
  .archive .list-day .day a {
    line-height: calc(4rem - 1rem);
  }
}
.archive .list-day .day a span {
  transition: ease 0.1s;
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
}
.archive .list-day .day a:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  /*色や形状*/
  background: rgba(168, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.2s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.archive .list-day .day a:after {
  font-size: 1.2rem;
  position: absolute;
  content: "i";
  bottom: 0%;
  left: -23px;
  right: inherit;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #a80000;
  color: #FFF;
  line-height: 1.6rem;
  text-align: center;
  transform: translate(0, -50%);
}
@media screen and (max-width: 800px) {
  .archive .list-day .day a:after {
    right: inherit;
    left: -20px;
  }
}
.archive .list-day .day a.noicon:after {
  display: none;
}
.archive .list-day .day a:hover span {
  color: #FFF;
}
.archive .list-day .day a:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.archive .list-day .left {
  margin-left: -3rem;
  margin-right: auto;
  flex-direction: row-reverse;
  text-align: right;
}
.archive .list-day .left .day {
  margin-left: 1rem;
  margin-right: 0;
}
.archive .list-day .left .day a:after {
  right: -23px;
  left: inherit;
}
@media screen and (max-width: 800px) {
  .archive .list-day .left .day a:after {
    right: inherit;
    left: -20px;
  }
}
.archive .category {
  position: relative;
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  z-index: 1;
  gap: 1rem;
  padding: 1rem;
  border-radius: 3px;
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.archive .category li {
  display: flex;
  align-items: center;
  font-size: var(--f-S);
  line-height: 1.2;
}
.archive .category .day {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 1100px) {
  .archive .list-year .year {
    font-size: 3rem;
  }
}
@media screen and (max-width: 800px) {
  .archive {
    background-repeat: repeat;
  }
  .archive .list-year .year__content {
    padding: 0;
  }
  .archive .list-month .month {
    width: 50px;
    line-height: 50px;
  }
  .archive .list-month .month::after {
    margin-right: auto;
    margin-left: initial;
  }
  .archive .list-month .month__content::before {
    left: 2.5rem;
    right: auto;
  }
  .archive .list-day__item {
    width: calc(100% - 4rem);
    margin-left: 4rem;
    margin-right: 0;
  }
  .archive .list-day .left {
    margin-left: 4rem;
    margin-right: 0;
    flex-direction: row;
    text-align: left;
  }
  .archive .list-day .left .day {
    margin-left: 0;
    margin-right: 1rem;
  }
  .archive .category {
    flex-direction: column;
    justify-content: start;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .archive .list-month .month {
    width: 40px;
    line-height: 40px;
  }
  .archive .list-month .month::after {
    position: absolute;
    width: 40px;
    height: 40px;
  }
  .archive .list-month .month__content {
    padding: 1rem 0;
  }
  .archive .list-month .month__content::before {
    left: 20px;
    right: auto;
  }
  .archive .list-day .day {
    width: 3rem;
    height: 3rem;
  }
  .archive .category .day {
    width: 2rem;
    height: 2rem;
  }
}

.no-webp .archive {
  background-image: url(../img/archive--texture.png);
}

.modal {
  display: none;
}

.dummytest {
  position: fixed;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.archi {
  width: 100%;
  background: url(../img/mainbg.webp);
  background-position: center center;
  background-size: cover;
  padding: 5rem;
  border-radius: 3px;
}
@media screen and (max-width: 800px) {
  .archi {
    padding: 3rem 2rem;
  }
}
.archi--title {
  font-size: var(--f-2L);
  margin-bottom: 3rem;
  line-height: 1.2;
  font-weight: 700;
  border-bottom: solid 2px;
  padding-bottom: 2rem;
}
.archi--title span.day {
  display: inline-block;
  padding: 8px 15px;
  background: #a80000;
  color: #FFF;
}
.archi--tag {
  display: inline-block;
  padding: 8px 15px;
  background: #000;
  color: #FFF;
}
.archi--txt {
  padding: 1rem 0 0 0rem;
  font-weight: bold;
  overflow-y: auto;
  max-height: 50vh;
}
.archi--txt > p + p {
  margin-top: 2rem;
}
@media screen and (max-width: 800px) {
  .archi--txt {
    padding: 1rem 0 0 0;
  }
}
@media screen and (max-width: 500px) {
  .archi--txt {
    max-height: 60vh;
  }
}
.archi--txt .songlist li:not(:last-child) {
  margin-bottom: 2rem;
}
.archi--txt .songlist li {
  text-indent: -2.5rem;
  padding-left: 2.5rem;
  font-size: var(--f-L);
  line-height: 1.2;
}
.archi--txt .songlist li p {
  padding-left: 0rem;
  text-indent: 0;
  font-size: var(--f-M);
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: solid 1px;
  line-height: 1.5;
}
.archi--txt .person {
  display: inline-block;
  line-height: 1;
  padding: 3px 4px;
  background: #999;
  border-radius: 2px;
  margin-bottom: 3px;
}
.archi--day {
  display: inline-block;
  padding: 8px 15px;
  background: #a80000;
  color: #FFF;
  margin-bottom: 1rem;
  font-size: var(--f-4L);
}

.modaal-content-container {
  padding: 0;
}

.bewith .bnthumb {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 5%;
}
.bewith .bnthumb--item {
  width: 50%;
  max-width: 260px;
  color: inherit;
}
.bewith .bnthumb--item__jk {
  padding: 1rem;
  background: #FFF;
}
.bewith .bnthumb--item__name {
  text-align: center;
  position: relative;
}
.bewith .bnthumb--item__name .title {
  font-size: var(--f-2L);
}
.bewith .bnthumb--item__name:before {
  content: "";
  color: #FFF;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  width: 2rem;
  height: 2rem;
  background-color: #000;
  border-radius: 50%;
  line-height: 2rem;
}
.bewith .bnthumb--item__name:after {
  position: absolute;
  content: "+";
  color: #FFF;
  top: 50%;
  transform: translate(0, -55%);
  right: 0;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
}
.bewith .title {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  width: 100%;
  padding: 2rem 0;
  border-bottom: 2px solid #000;
}
.bewith #gallery {
  max-width: 640px;
  padding: 0 2rem;
  margin: 0 auto 8rem auto;
}
.bewith .gallery {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}
@media screen and (max-width: 800px) {
  .bewith .gallery {
    flex-direction: column;
  }
}
.bewith .gallery--info {
  width: calc(50% - 1rem);
  text-align: center;
}
.bewith .gallery--info .vol {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-XL);
  font-weight: bold;
  margin-bottom: 2rem;
}
.bewith .gallery--info .vol span {
  display: inline-block;
  border-bottom: solid 2px;
}
.bewith .gallery--info .tag {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-2L);
  font-weight: bold;
}
.bewith .gallery--thumimg {
  width: calc(50% - 1rem);
  position: relative;
}
.bewith .gallery--thumimg img {
  max-width: 100%;
}
@media screen and (max-width: 800px) {
  .bewith .gallery--thumimg {
    width: calc(100% - 1rem);
    max-width: 300px;
    margin-top: 2rem;
  }
}
.bewith .gallery--thumimg a {
  display: block;
  position: relative;
}
.bewith .gallery--thumimg a:after {
  position: absolute;
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  content: "OPEN";
  color: #FFF;
  background: #000;
  width: 90px;
  height: 45px;
  text-align: center;
  line-height: 40px;
  border-radius: 0 0 90px 90px;
  top: 50%;
  right: -68px;
  transform: rotate(-90deg) translate(25%, 0%);
  font-size: 1.5rem;
}
@media screen and (max-width: 800px) {
  .bewith .gallery--thumimg a:after {
    width: 60px;
    height: 30px;
    line-height: 25px;
    border-radius: 0 0 60px 60px;
    font-size: 1.2rem;
    right: -46px;
  }
}

.disco.section {
  padding: 17rem 0;
}
.disco__list {
  display: flex;
  justify-content: center;
  gap: 5%;
  margin-bottom: 10rem;
  flex-wrap: wrap;
}
.disco__item {
  width: 20%;
  margin-bottom: 3rem;
}
.disco__item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #000;
  width: 100%;
  height: 100%;
}
.disco__item .jacket {
  width: 100%;
  margin-bottom: 1.5rem;
}
.disco__item .jacket img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}
.disco__item .discoinfo {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}
.disco__item .discoinfo .title {
  font-size: var(--f-L);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.disco__item .discoinfo .release {
  font-size: var(--f-S);
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
}
.disco__item .discoinfo .detailbtn {
  width: 100%;
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-S);
  text-align: right;
  justify-content: flex-end;
  font-weight: 600;
  padding-right: 3rem;
  position: relative;
}
.disco__item .discoinfo .detailbtn:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  width: 2rem;
  height: 2rem;
  background-color: #000;
  border-radius: 50%;
}
.disco__item .discoinfo .detailbtn:after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0.3rem;
  width: 0px;
  height: 0px;
  border: 0.3rem solid transparent;
  border-left: 0.7rem solid #FFF;
  margin: auto;
}
.disco__item .discoinfo .detailbtn.noIcon {
  padding-right: 0;
}
.disco__item .discoinfo .detailbtn.noIcon:before, .disco__item .discoinfo .detailbtn.noIcon:after {
  display: none;
}
.disco__item:nth-child(0) {
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}
.disco__item:nth-child(1) {
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.disco__item:nth-child(2) {
  transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
}
.disco__item:nth-child(3) {
  transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
}
.disco .works {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-2L);
  display: flex;
  gap: 5rem;
  margin-bottom: 10rem;
}
.disco .works__img {
  width: 325px;
}
.disco .works__img .jacket {
  margin-bottom: 1rem;
}
.disco .works__img .release {
  font-size: var(--f-L);
}
.disco .works__text {
  width: calc(100% - 325px);
}
.disco .works__text .title {
  font-size: var(--f-XL);
  margin-bottom: 2rem;
  line-height: 1.2;
}
.disco .works .song-list {
  counter-reset: songs-number 0;
  margin-top: 2rem;
}
.disco .works .song-list__item {
  margin-bottom: 1rem;
}
.disco .works .song-list .song-title {
  position: relative;
}
.disco .works .song-list .song-title p {
  font-size: var(--f-2L);
  margin-right: 4rem;
}
.disco .works .song-list .song-title p::before {
  counter-increment: songs-number 1;
  content: counter(songs-number, decimal-leading-zero) ".";
  margin-right: 0.5rem;
}
.disco .works .song-list .song-title .play {
  position: absolute;
  display: inline-block;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 3rem;
  height: 3rem;
}
.disco .works .song-list .song-title .play .cp-play, .disco .works .song-list .song-title .play .cp-pause {
  width: 3rem;
  height: 3rem;
  background-color: #000;
  border-radius: 50%;
}
.disco .works .song-list .song-title .play .cp-play::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 6px;
  right: 0;
  width: 0px;
  height: 0px;
  border: 0.3rem solid transparent;
  border-left: 0.7rem solid #FFF;
  margin: auto;
}
.disco .works .song-list .song-title .play .cp-pause::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: 0;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #FFF;
  border: none;
}
.disco .works .song-list .credit {
  margin-left: 3rem;
}
.disco .works .accordion__title {
  font-size: var(--f-SS);
}
.disco .works .musician-list {
  font-size: var(--f-M);
}
.disco .works .musician-list__item {
  display: flex;
}
.disco .works .musician-list .part {
  min-width: 60px;
  width: auto;
  padding-right: 1rem;
  position: relative;
}
.disco .works .musician-list .part:after {
  content: ":";
  padding: 0 0.2em;
  position: absolute;
  right: 0;
}
.disco .works .musician-list .name {
  padding-left: 0.5rem;
}
.disco .works .content {
  font-size: var(--f-4L);
}
.disco .title {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  width: 100%;
  padding: 2rem 0;
  border-bottom: 2px solid #000;
}
.disco .release {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
}
.disco .category {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-S);
  background-color: #000;
  text-align: center;
  color: #FFF;
  padding: 0.5rem 1.5rem;
  align-self: start;
  border-radius: 1px;
  display: inline-block;
}
@media screen and (max-width: 1480px) {
  .disco.section {
    padding: 8.5rem 0;
  }
  .disco .title {
    padding: 1rem 0;
  }
  .disco .category {
    padding: 0.25rem 0.75rem;
  }
}
@media screen and (max-width: 900px) {
  .disco .works {
    gap: 2rem;
  }
  .disco .works__img {
    width: 27.77vw;
  }
  .disco .works__text {
    width: calc(100% - 27.77vw);
  }
  .disco .works__text .title {
    font-size: var(--f-4L);
  }
}
@media screen and (max-width: 800px) {
  .disco__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .disco__item {
    width: 47.5%;
    margin-bottom: 3rem;
  }
  .disco__item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .disco.section {
    padding: 4.5rem 0;
  }
  .disco .works {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 5rem;
  }
  .disco .works__img {
    width: 100%;
  }
  .disco .works__text {
    width: 100%;
  }
  .disco .works__text .title {
    font-size: var(--f-3L);
    margin-bottom: 2rem;
  }
  .disco .works .song-list .song-title {
    position: relative;
  }
  .disco .works .song-list .song-title p {
    font-size: var(--f-2L);
    margin-bottom: 0.5rem;
    margin-right: 4rem;
  }
  .disco .works .song-list .song-title p::before {
    margin-right: 0.5rem;
  }
  .disco .works .song-list .song-title .play {
    width: 2.5rem;
    height: 2.5rem;
  }
  .disco .works .song-list .song-title .play .cp-play, .disco .works .song-list .song-title .play .cp-pause {
    width: 2.5rem;
    height: 2.5rem;
  }
  .disco .works .song-list .song-title .play .cp-play::before {
    left: 6px;
    border: 0.3rem solid transparent;
    border-left: 0.7rem solid #FFF;
  }
  .disco .works .song-list .song-title .play .cp-pause::before {
    width: 0.6rem;
    height: 0.6rem;
    background-color: #FFF;
  }
  .disco .works .song-list .credit {
    margin-left: 0rem;
  }
  .disco .works .musician-list__item {
    margin-bottom: 0;
    font-size: var(--f-L);
  }
}

#top .disco .title--section {
  position: relative;
}
#top .disco .title--section::before {
  content: "";
  position: absolute;
  display: block;
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  width: 175px;
  height: 78px;
  bottom: calc(100% + 20px);
  left: 0;
  right: 0;
  background-image: url(../img/disco--kazari01.webp);
  background-size: contain;
  margin: auto;
}
#top .disco__list {
  margin-bottom: 0;
}
@media screen and (max-width: 1480px) {
  #top .disco .title--section::before {
    width: 100px;
    height: 45px;
    bottom: calc(100% + 15px);
  }
}

.no-webp #top .disco .title--section::before {
  background-image: url(../img/disco--kazari01.png);
}

.creditother {
  font-size: var(--f-M);
}

.news {
  min-height: 320px;
}
.news__list {
  position: relative;
  z-index: 3;
}
.news__list a {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  color: #000;
}
.news__list a:hover .title {
  color: #a80000;
}
.news__list .title, .news__list time {
  line-height: 1.5;
}
.news__list time {
  position: relative;
}
.news__item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.news__item a:hover .title {
  color: #a80000;
}
.news__more {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 800px) {
  .news__list a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .news__item {
    padding: 1rem 0;
  }
}

#top .news {
  overflow: hidden;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.2));
  background-image: url(../img/news--texture.webp);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
#top .news::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 0;
}
#top .news::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: multiply;
  z-index: 0;
  transform: translate3d(0, 0, 0);
  background-image: url(../img/texture--gold.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
#top .news .title--section {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  color: #FFF;
  text-shadow: #505050 -1px -1px 1px, #000 1px 1px 1px;
  z-index: 1;
  margin-right: -26px;
}
#top .news__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#top .news__item .title, #top .news__item time {
  color: #FFF;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.9));
}
@media screen and (max-width: 1000px) {
  #top .news {
    background-attachment: initial;
  }
  #top .news .title--section {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    margin-right: 0;
    color: #FFF;
  }
}

.no-webp #top .news {
  background-image: url(../img/news--texture.png);
}

.article a {
  color: #a80000;
  transition: all 0.3s 0s ease;
}
.article a::before {
  background-color: #a80000 !important;
}
.article a:hover {
  filter: brightness(1.5);
  text-decoration: underline;
  text-shadow: 0px 0px 3px rgb(54, 54, 54);
}
.article a:hover::before {
  background-color: #a80000;
}
@media screen and (max-width: 500px) {
  .article .news_table {
    white-space: nowrap;
    overflow: scroll;
  }
}

.bg_b_alp5 {
  background: rgba(153, 153, 153, 0.5);
  padding: 1.5rem;
}
.bg_b_alp5.radi {
  border-radius: 1.5rem;
}

.bg_w_alp2 {
  background: rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
}
.bg_w_alp2.radi {
  border-radius: 1.5rem;
}

.top_tour {
  width: 100%;
  max-width: 840px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .top_tour {
    width: 100%;
  }
}

.livetable--row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 1px;
}
@media screen and (min-width: 500px) {
  .livetable--row {
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .livetable--row {
    border-bottom: solid 1px rgba(0, 0, 0, 0.4);
  }
}
.livetable--row .day {
  width: 15%;
}
@media screen and (max-width: 500px) {
  .livetable--row .day {
    width: 30%;
  }
}
@media screen and (max-width: 500px) {
  .livetable--row .time {
    margin-top: 5px;
    padding-top: 5px;
    border-top: dotted 1px rgba(0, 0, 0, 0.2);
  }
}
.livetable--row .liveinfo {
  font-size: var(--f-M);
  letter-spacing: 0;
}
.livetable--row .liveinfo span {
  white-space: nowrap;
}
@media screen and (max-width: 500px) {
  .livetable--row .liveinfo {
    margin-top: 5px;
    padding-top: 5px;
    border-top: dotted 1px rgba(0, 0, 0, 0.2);
    width: 100%;
  }
}
.livetable.p-top .livetable--row {
  padding: 8px 25px;
}
.livetable.p-top .livetable--row:nth-child(even) {
  background: rgba(255, 255, 255, 0.2) !important;
}
.livetable.p-top .livetable--row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.3) !important;
}
.livetable.p-top .livetable--row .day {
  width: 18%;
  font-size: var(--f-4L);
}
.livetable.p-top .livetable--row .place {
  font-size: var(--f-3L);
}
@media screen and (max-width: 800px) {
  .livetable.p-top .livetable--row {
    padding: 5px 10px;
  }
  .livetable.p-top .livetable--row .day {
    letter-spacing: 0;
    width: 30%;
    font-size: var(--f-3L);
  }
  .livetable.p-top .livetable--row .place {
    font-size: var(--f-2L);
  }
}
.livetable.p-tour a {
  color: #a80000;
}
.livetable.p-tour .livetable--row.head {
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
}
.livetable.p-tour .livetable--row.head > div {
  font-size: var(--f-M) !important;
  font-weight: 400 !important;
}
.livetable.p-tour .livetable--row {
  padding: 10px 20px;
}
.livetable.p-tour .livetable--row:nth-child(even) {
  background: rgba(255, 255, 255, 0.2);
}
.livetable.p-tour .livetable--row:nth-child(odd):not(:first-child) {
  background: rgba(255, 255, 255, 0.4);
}
.livetable.p-tour .livetable--row .day {
  width: 15%;
  font-size: var(--f-4L);
  letter-spacing: 0;
}
.livetable.p-tour .livetable--row .place {
  width: 28%;
  font-size: var(--f-2L);
}
.livetable.p-tour .livetable--row .time {
  width: 17%;
  text-align: center;
  font-size: var(--f-M);
}
.livetable.p-tour .livetable--row .liveinfo {
  width: 40%;
}
@media screen and (max-width: 800px) {
  .livetable.p-tour .livetable--row {
    padding: 5px 10px;
  }
  .livetable.p-tour .livetable--row .day {
    letter-spacing: 0;
    width: 30%;
    font-size: var(--f-3L);
  }
  .livetable.p-tour .livetable--row .place {
    width: 70%;
    padding-left: 8px;
  }
  .livetable.p-tour .livetable--row .time {
    width: 30%;
    text-align: left;
    font-size: var(--f-M);
    line-height: 1.2;
    padding-bottom: 5px;
  }
  .livetable.p-tour .livetable--row .liveinfo {
    width: 70%;
    font-size: var(--f-M);
    line-height: 1.2;
    padding-bottom: 5px;
    padding-left: 8px;
  }
}

.matching {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 15px;
}

.seatimage a {
  color: #000;
  display: inline;
  width: auto;
}
.seatimage .seat {
  display: flex;
  flex-wrap: wrap;
  background: #FFF;
  justify-content: center;
}
.seatimage .seat-name {
  width: 55%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seatimage .seat-img {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  position: relative;
}
.seatimage .seat-img img {
  width: 70%;
}
.seatimage .seat-img .glass {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  background: #000;
  color: #FFF;
  font-size: 10px;
  padding: 3px 5px;
}
@media screen and (max-width: 800px) {
  .seatimage .seat-name {
    width: 65%;
  }
  .seatimage .seat-img {
    width: 35%;
  }
}

.modaal-container {
  border-radius: 15px;
}

.modal_cont {
  padding: 30px;
}

.goodslist {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
}
@media screen and (max-width: 500px) {
  .goodslist {
    gap: 5px 15px;
  }
}
.goodslist a {
  width: calc(25% - 15px);
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  padding: 5px;
  color: #E4AE00;
  border: solid 1px #000;
  transition: all 0.2s 0s ease;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .goodslist a {
    width: calc(33.33% - 15px);
  }
}
.goodslist a .listname {
  padding: 5px 10px;
  font-weight: 600;
  text-align: center;
}
.goodslist a .listthumb {
  padding: 15px;
  background: #FFF;
  transition: all 0.2s 0s ease;
}
.goodslist a .listprice {
  padding: 5px 10px;
  color: #FFF;
  text-align: right;
}
.goodslist a .listprice > span {
  font-size: 1.5rem;
}
.goodslist a:hover {
  filter: drop-shadow(0 0 5px #000) brightness(1.25);
}
.goodslist a:hover .listthumb {
  padding: 5px;
}
.goodslist a .kisho {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 500px) {
  .goodslist a .kisho {
    bottom: inherit;
    left: -15px;
    top: -25px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 500px) {
  .goodslist a {
    width: 100%;
    display: grid;
    gap: 0px 15px;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr 1fr;
    align-content: start;
    grid-template-areas: "b a" "b c";
  }
  .goodslist a .listname {
    grid-area: a;
    text-align: left;
    border-bottom: solid 1px #999;
    padding: 5px 0;
    line-height: 1.3;
    display: grid;
    align-content: end;
  }
  .goodslist a .listthumb {
    grid-area: b;
  }
  .goodslist a .listprice {
    grid-area: c;
  }
  .goodslist a .listprice > span {
    font-size: 1.2rem;
  }
}

.goodsdetail {
  max-width: 960px;
  margin: auto;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1.5fr 1fr;
  align-content: start;
  grid-template-areas: "b a" "b c";
  gap: 0px 30px;
}
@media screen and (max-width: 1000px) {
  .goodsdetail {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c";
  }
}
.goodsdetail_title {
  grid-area: a;
}
@media screen and (max-width: 1000px) {
  .goodsdetail_title.titlelong {
    height: auto;
  }
}
.goodsdetail_img {
  grid-area: b;
}
.goodsdetail_img_main {
  padding: 10px;
  background: white;
  border-radius: 3px;
}
@media screen and (min-width: 1000px) {
  .goodsdetail_img_main {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 1000px) {
  .goodsdetail_img_main {
    text-align: center;
  }
  .goodsdetail_img_main img {
    width: 80%;
  }
}
.goodsdetail_img_thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-top: 1rem;
}
.goodsdetail_img_thumbs li {
  width: calc(20% - 1px);
  padding: 5px;
  background: white;
}
.goodsdetail_intro {
  grid-area: c;
}
.goodsdetail_intro_price {
  text-align: right;
  border-bottom: dotted 1px #999;
  margin-bottom: 1.5rem;
}
.goodsdetail_intro_price span {
  font-size: larger;
}
@media screen and (max-width: 500px) {
  .goodsdetail_intro_price {
    padding: 15px 0;
  }
}

.detailControl {
  margin: 2rem auto;
  display: flex;
  width: 100%;
  max-width: 500px;
  justify-content: center;
}
.detailControl > div {
  padding: 10px 30px;
  border: solid 1px rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  position: relative;
}
.detailControl > div a {
  position: relative;
  color: white;
  transition: all 0.2s 0s ease;
}
.detailControl #backbtn {
  font-size: 1.2rem;
  margin: 0 -1px;
}
@media screen and (max-width: 500px) {
  .detailControl #backbtn {
    font-size: 1.2rem;
  }
}
.detailControl .prev {
  border-radius: 20px 0 0 20px;
}
.detailControl .prev::before {
  font-family: "FontAwesome";
  content: "\f053";
  padding-left: 0px;
  position: absolute;
  left: 10px;
  color: #FFF;
  font-size: 1.2rem;
}
.detailControl .next {
  border-radius: 0px 20px 20px 0;
}
.detailControl .next::after {
  font-family: "FontAwesome";
  content: "\f054";
  padding-left: 0px;
  position: absolute;
  right: 10px;
  color: #FFF;
  font-size: 1.2rem;
}

.gachaprice {
  font-size: 2rem;
}
.gachaprice strong {
  font-size: 2.4rem;
}

.goodsdetailgacha {
  padding: 15px;
}
.goodsdetailgacha .detailname {
  padding: 15px 0;
  text-align: center;
}

#subnavi {
  margin: 0 auto 4rem auto;
  position: fixed;
  top: 4rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  #subnavi {
    top: inherit;
    bottom: 0px;
    margin: 0 auto 0 auto;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 10px;
  }
}
#subnavi .subnavilist {
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  width: 620px;
  margin: auto;
  border-radius: 50px;
  line-height: 1;
  padding: 8px 10px;
}
@media screen and (max-width: 1000px) {
  #subnavi .subnavilist {
    overflow: scroll;
    width: 100%;
    white-space: nowrap;
    background: none;
  }
}
@media screen and (max-width: 800px) {
  #subnavi .subnavilist {
    justify-content: flex-start;
  }
}
#subnavi .subnavilist li a {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-M);
  display: block;
  padding: 5px 15px;
  color: #FFF;
  font-weight: 600;
  position: relative;
}
#subnavi .subnavilist li a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transition: all 0.2s 0s ease;
}
#subnavi .subnavilist li a:hover:before {
  transform: scale(1, 1);
}

#p_gacha .modaal-container {
  width: 90% !important;
  max-width: 640px !important;
  background: #FFF !important;
}

.article P + P {
  margin-top: 2rem;
}
.article {
  margin: 0 auto;
  max-width: 800px;
}
.article__date {
  display: block;
  text-align: right;
}
.article__content {
  margin-top: 3rem;
}
.article__content > *:not(:last-child) {
  margin-bottom: 1.6rem;
}
.article__box {
  margin: 0 1rem;
}
.article__box > *:not(:last-child) {
  margin-bottom: 1rem;
}
.article .btn--back {
  margin-top: 15rem;
}
.article .tokutenbox {
  background: rgba(255, 255, 255, 0.5);
  padding: 1.5rem;
  border-radius: 10px;
}
.article .tokutenbox.bgblk {
  background: rgba(0, 0, 0, 0.5);
  color: #FFF;
}

.form {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.form__item {
  margin-bottom: 1.6rem;
}
.form__title {
  display: block;
  margin-bottom: 5px;
  font-size: var(--f-M);
}
.form__content {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid hsl(0, 0%, 82%);
  border-radius: 3px;
  background: #f7f7f7;
  font-size: var(--f-M);
  line-height: 1.5;
}
.form__content.textarea {
  height: 9em;
}
.form__content:focus {
  outline: 1px solid #f2bc00;
}
.form__content::-moz-placeholder {
  color: #999;
}
.form__content::placeholder {
  color: #999;
}
.form .g-recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}
.form .select {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.form .select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  max-width: 230px;
  height: 2.8em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #f7f7f7;
  font-size: 1em;
  cursor: pointer;
}
.form .select::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}

[class^=kazari] {
  content: "";
  position: absolute;
  display: block;
  mix-blend-mode: multiply;
  z-index: 0;
}
.kazari--common01 {
  position: fixed !important;
  bottom: -30%;
  left: 0;
  max-width: 1100px;
  width: 100%;
}
.cont .kazari--common01 {
  opacity: 0.5;
}
.kazari--common02 {
  position: fixed !important;
  bottom: 20%;
  right: 0;
}
.kazari--message01 {
  width: 280px;
  top: 0;
  left: 0;
}
.kazari--message01-c {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: lighten;
  transition: all 1s 0s ease-in; /*transitionの記述を追加*/
}
.kazari--message01-c.clrin {
  opacity: 1;
}
.kazari--message02 {
  width: 288px;
  bottom: -3rem;
  right: 0;
}
.kazari--message02-c {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: lighten;
  transition: all 1s 0s ease-in; /*transitionの記述を追加*/
}
.kazari--message02-c.clrin {
  opacity: 1;
}
.kazari--about01 {
  width: 244px;
  top: 0;
  left: 0;
}
.kazari--about02 {
  width: 279px;
  bottom: 50%;
  right: 0;
}
.kazari--member01 {
  width: 86%;
  bottom: 30%;
  right: 0;
  z-index: 0;
}
.kazari--member02 {
  top: 62vh;
  left: 0;
  z-index: 0;
}
.kazari--member03 {
  top: 35vh;
  right: 0;
  z-index: 0;
}
.kazari--archive01 {
  width: 444px;
  top: 5rem;
  left: 0;
  z-index: 1;
}
.kazari--archive02 {
  width: 375px;
  top: 200px;
  right: 80px;
  z-index: 1;
}
.kazari--archive03 {
  position: sticky !important;
  width: 100%;
  bottom: 0;
  right: 0;
  mix-blend-mode: color-dodge;
  z-index: 0;
}
.kazari--archive03 img {
  position: absolute;
  bottom: -100px;
}
@media screen and (max-width: 1100px) {
  .kazari--common01 {
    max-width: initial;
    bottom: -10%;
  }
  .kazari--common02 {
    width: 40%;
    bottom: auto;
    top: 0;
    right: 8%;
  }
  .kazari--message01 {
    top: -10%;
  }
  .kazari--message02 {
    bottom: 0%;
  }
  .kazari--message01, .kazari--message02, .kazari--about01, .kazari--about02 {
    width: 28%;
  }
  .kazari--about02 {
    bottom: auto;
    top: 85%;
  }
  .kazari--member01 {
    width: 75%;
    bottom: 0;
  }
  .kazari--member02 {
    top: 55%;
  }
  .kazari--member03 {
    top: 512px;
    width: 50%;
  }
  .kazari--archive01, .kazari--archive02 {
    width: 25%;
  }
  .kazari--archive02 {
    width: 25%;
    top: 150px;
    right: 0;
  }
  .kazari--archive03 {
    margin-bottom: 5rem;
  }
  .kazari--archive03 img {
    bottom: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .kazari--message01 {
    top: -15%;
  }
  .kazari--message02 {
    bottom: -3rem;
  }
}
@media screen and (max-width: 800px) {
  .kazari--message01 {
    top: 30px;
  }
  .kazari--message02 {
    bottom: 2rem;
  }
}

.member .kazari--common02 {
  bottom: 0;
}

.m-0 {
  margin: 0rem !important;
}

.my-0 {
  margin: 0rem 0 !important;
}

.mx-0 {
  margin: 0 0rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.p-0 {
  padding: 0rem !important;
}

.py-0 {
  padding: 0rem 0 !important;
}

.px-0 {
  padding: 0 0rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.m-5 {
  margin: 0.5rem !important;
}

.my-5 {
  margin: 0.5rem 0 !important;
}

.mx-5 {
  margin: 0 0.5rem !important;
}

.mt-5 {
  margin-top: 0.5rem !important;
}

.mb-5 {
  margin-bottom: 0.5rem !important;
}

.ml-5 {
  margin-left: 0.5rem !important;
}

.mr-5 {
  margin-right: 0.5rem !important;
}

.p-5 {
  padding: 0.5rem !important;
}

.py-5 {
  padding: 0.5rem 0 !important;
}

.px-5 {
  padding: 0 0.5rem !important;
}

.pt-5 {
  padding-top: 0.5rem !important;
}

.pb-5 {
  padding-bottom: 0.5rem !important;
}

.pl-5 {
  padding-left: 0.5rem !important;
}

.pr-5 {
  padding-right: 0.5rem !important;
}

.m-10 {
  margin: 1rem !important;
}

.my-10 {
  margin: 1rem 0 !important;
}

.mx-10 {
  margin: 0 1rem !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.ml-10 {
  margin-left: 1rem !important;
}

.mr-10 {
  margin-right: 1rem !important;
}

.p-10 {
  padding: 1rem !important;
}

.py-10 {
  padding: 1rem 0 !important;
}

.px-10 {
  padding: 0 1rem !important;
}

.pt-10 {
  padding-top: 1rem !important;
}

.pb-10 {
  padding-bottom: 1rem !important;
}

.pl-10 {
  padding-left: 1rem !important;
}

.pr-10 {
  padding-right: 1rem !important;
}

.m-15 {
  margin: 1.5rem !important;
}

.my-15 {
  margin: 1.5rem 0 !important;
}

.mx-15 {
  margin: 0 1.5rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.ml-15 {
  margin-left: 1.5rem !important;
}

.mr-15 {
  margin-right: 1.5rem !important;
}

.p-15 {
  padding: 1.5rem !important;
}

.py-15 {
  padding: 1.5rem 0 !important;
}

.px-15 {
  padding: 0 1.5rem !important;
}

.pt-15 {
  padding-top: 1.5rem !important;
}

.pb-15 {
  padding-bottom: 1.5rem !important;
}

.pl-15 {
  padding-left: 1.5rem !important;
}

.pr-15 {
  padding-right: 1.5rem !important;
}

.m-20 {
  margin: 2rem !important;
}

.my-20 {
  margin: 2rem 0 !important;
}

.mx-20 {
  margin: 0 2rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.ml-20 {
  margin-left: 2rem !important;
}

.mr-20 {
  margin-right: 2rem !important;
}

.p-20 {
  padding: 2rem !important;
}

.py-20 {
  padding: 2rem 0 !important;
}

.px-20 {
  padding: 0 2rem !important;
}

.pt-20 {
  padding-top: 2rem !important;
}

.pb-20 {
  padding-bottom: 2rem !important;
}

.pl-20 {
  padding-left: 2rem !important;
}

.pr-20 {
  padding-right: 2rem !important;
}

.m-25 {
  margin: 2.5rem !important;
}

.my-25 {
  margin: 2.5rem 0 !important;
}

.mx-25 {
  margin: 0 2.5rem !important;
}

.mt-25 {
  margin-top: 2.5rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.ml-25 {
  margin-left: 2.5rem !important;
}

.mr-25 {
  margin-right: 2.5rem !important;
}

.p-25 {
  padding: 2.5rem !important;
}

.py-25 {
  padding: 2.5rem 0 !important;
}

.px-25 {
  padding: 0 2.5rem !important;
}

.pt-25 {
  padding-top: 2.5rem !important;
}

.pb-25 {
  padding-bottom: 2.5rem !important;
}

.pl-25 {
  padding-left: 2.5rem !important;
}

.pr-25 {
  padding-right: 2.5rem !important;
}

.m-30 {
  margin: 3rem !important;
}

.my-30 {
  margin: 3rem 0 !important;
}

.mx-30 {
  margin: 0 3rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.ml-30 {
  margin-left: 3rem !important;
}

.mr-30 {
  margin-right: 3rem !important;
}

.p-30 {
  padding: 3rem !important;
}

.py-30 {
  padding: 3rem 0 !important;
}

.px-30 {
  padding: 0 3rem !important;
}

.pt-30 {
  padding-top: 3rem !important;
}

.pb-30 {
  padding-bottom: 3rem !important;
}

.pl-30 {
  padding-left: 3rem !important;
}

.pr-30 {
  padding-right: 3rem !important;
}

.m-35 {
  margin: 3.5rem !important;
}

.my-35 {
  margin: 3.5rem 0 !important;
}

.mx-35 {
  margin: 0 3.5rem !important;
}

.mt-35 {
  margin-top: 3.5rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.ml-35 {
  margin-left: 3.5rem !important;
}

.mr-35 {
  margin-right: 3.5rem !important;
}

.p-35 {
  padding: 3.5rem !important;
}

.py-35 {
  padding: 3.5rem 0 !important;
}

.px-35 {
  padding: 0 3.5rem !important;
}

.pt-35 {
  padding-top: 3.5rem !important;
}

.pb-35 {
  padding-bottom: 3.5rem !important;
}

.pl-35 {
  padding-left: 3.5rem !important;
}

.pr-35 {
  padding-right: 3.5rem !important;
}

.m-40 {
  margin: 4rem !important;
}

.my-40 {
  margin: 4rem 0 !important;
}

.mx-40 {
  margin: 0 4rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.ml-40 {
  margin-left: 4rem !important;
}

.mr-40 {
  margin-right: 4rem !important;
}

.p-40 {
  padding: 4rem !important;
}

.py-40 {
  padding: 4rem 0 !important;
}

.px-40 {
  padding: 0 4rem !important;
}

.pt-40 {
  padding-top: 4rem !important;
}

.pb-40 {
  padding-bottom: 4rem !important;
}

.pl-40 {
  padding-left: 4rem !important;
}

.pr-40 {
  padding-right: 4rem !important;
}

.m-45 {
  margin: 4.5rem !important;
}

.my-45 {
  margin: 4.5rem 0 !important;
}

.mx-45 {
  margin: 0 4.5rem !important;
}

.mt-45 {
  margin-top: 4.5rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.ml-45 {
  margin-left: 4.5rem !important;
}

.mr-45 {
  margin-right: 4.5rem !important;
}

.p-45 {
  padding: 4.5rem !important;
}

.py-45 {
  padding: 4.5rem 0 !important;
}

.px-45 {
  padding: 0 4.5rem !important;
}

.pt-45 {
  padding-top: 4.5rem !important;
}

.pb-45 {
  padding-bottom: 4.5rem !important;
}

.pl-45 {
  padding-left: 4.5rem !important;
}

.pr-45 {
  padding-right: 4.5rem !important;
}

.m-50 {
  margin: 5rem !important;
}

.my-50 {
  margin: 5rem 0 !important;
}

.mx-50 {
  margin: 0 5rem !important;
}

.mt-50 {
  margin-top: 5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.ml-50 {
  margin-left: 5rem !important;
}

.mr-50 {
  margin-right: 5rem !important;
}

.p-50 {
  padding: 5rem !important;
}

.py-50 {
  padding: 5rem 0 !important;
}

.px-50 {
  padding: 0 5rem !important;
}

.pt-50 {
  padding-top: 5rem !important;
}

.pb-50 {
  padding-bottom: 5rem !important;
}

.pl-50 {
  padding-left: 5rem !important;
}

.pr-50 {
  padding-right: 5rem !important;
}

.m-55 {
  margin: 5.5rem !important;
}

.my-55 {
  margin: 5.5rem 0 !important;
}

.mx-55 {
  margin: 0 5.5rem !important;
}

.mt-55 {
  margin-top: 5.5rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.ml-55 {
  margin-left: 5.5rem !important;
}

.mr-55 {
  margin-right: 5.5rem !important;
}

.p-55 {
  padding: 5.5rem !important;
}

.py-55 {
  padding: 5.5rem 0 !important;
}

.px-55 {
  padding: 0 5.5rem !important;
}

.pt-55 {
  padding-top: 5.5rem !important;
}

.pb-55 {
  padding-bottom: 5.5rem !important;
}

.pl-55 {
  padding-left: 5.5rem !important;
}

.pr-55 {
  padding-right: 5.5rem !important;
}

.m-60 {
  margin: 6rem !important;
}

.my-60 {
  margin: 6rem 0 !important;
}

.mx-60 {
  margin: 0 6rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.ml-60 {
  margin-left: 6rem !important;
}

.mr-60 {
  margin-right: 6rem !important;
}

.p-60 {
  padding: 6rem !important;
}

.py-60 {
  padding: 6rem 0 !important;
}

.px-60 {
  padding: 0 6rem !important;
}

.pt-60 {
  padding-top: 6rem !important;
}

.pb-60 {
  padding-bottom: 6rem !important;
}

.pl-60 {
  padding-left: 6rem !important;
}

.pr-60 {
  padding-right: 6rem !important;
}

.m-65 {
  margin: 6.5rem !important;
}

.my-65 {
  margin: 6.5rem 0 !important;
}

.mx-65 {
  margin: 0 6.5rem !important;
}

.mt-65 {
  margin-top: 6.5rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.ml-65 {
  margin-left: 6.5rem !important;
}

.mr-65 {
  margin-right: 6.5rem !important;
}

.p-65 {
  padding: 6.5rem !important;
}

.py-65 {
  padding: 6.5rem 0 !important;
}

.px-65 {
  padding: 0 6.5rem !important;
}

.pt-65 {
  padding-top: 6.5rem !important;
}

.pb-65 {
  padding-bottom: 6.5rem !important;
}

.pl-65 {
  padding-left: 6.5rem !important;
}

.pr-65 {
  padding-right: 6.5rem !important;
}

.m-70 {
  margin: 7rem !important;
}

.my-70 {
  margin: 7rem 0 !important;
}

.mx-70 {
  margin: 0 7rem !important;
}

.mt-70 {
  margin-top: 7rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.ml-70 {
  margin-left: 7rem !important;
}

.mr-70 {
  margin-right: 7rem !important;
}

.p-70 {
  padding: 7rem !important;
}

.py-70 {
  padding: 7rem 0 !important;
}

.px-70 {
  padding: 0 7rem !important;
}

.pt-70 {
  padding-top: 7rem !important;
}

.pb-70 {
  padding-bottom: 7rem !important;
}

.pl-70 {
  padding-left: 7rem !important;
}

.pr-70 {
  padding-right: 7rem !important;
}

.m-75 {
  margin: 7.5rem !important;
}

.my-75 {
  margin: 7.5rem 0 !important;
}

.mx-75 {
  margin: 0 7.5rem !important;
}

.mt-75 {
  margin-top: 7.5rem !important;
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

.ml-75 {
  margin-left: 7.5rem !important;
}

.mr-75 {
  margin-right: 7.5rem !important;
}

.p-75 {
  padding: 7.5rem !important;
}

.py-75 {
  padding: 7.5rem 0 !important;
}

.px-75 {
  padding: 0 7.5rem !important;
}

.pt-75 {
  padding-top: 7.5rem !important;
}

.pb-75 {
  padding-bottom: 7.5rem !important;
}

.pl-75 {
  padding-left: 7.5rem !important;
}

.pr-75 {
  padding-right: 7.5rem !important;
}

.m-80 {
  margin: 8rem !important;
}

.my-80 {
  margin: 8rem 0 !important;
}

.mx-80 {
  margin: 0 8rem !important;
}

.mt-80 {
  margin-top: 8rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.ml-80 {
  margin-left: 8rem !important;
}

.mr-80 {
  margin-right: 8rem !important;
}

.p-80 {
  padding: 8rem !important;
}

.py-80 {
  padding: 8rem 0 !important;
}

.px-80 {
  padding: 0 8rem !important;
}

.pt-80 {
  padding-top: 8rem !important;
}

.pb-80 {
  padding-bottom: 8rem !important;
}

.pl-80 {
  padding-left: 8rem !important;
}

.pr-80 {
  padding-right: 8rem !important;
}

.m-85 {
  margin: 8.5rem !important;
}

.my-85 {
  margin: 8.5rem 0 !important;
}

.mx-85 {
  margin: 0 8.5rem !important;
}

.mt-85 {
  margin-top: 8.5rem !important;
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

.ml-85 {
  margin-left: 8.5rem !important;
}

.mr-85 {
  margin-right: 8.5rem !important;
}

.p-85 {
  padding: 8.5rem !important;
}

.py-85 {
  padding: 8.5rem 0 !important;
}

.px-85 {
  padding: 0 8.5rem !important;
}

.pt-85 {
  padding-top: 8.5rem !important;
}

.pb-85 {
  padding-bottom: 8.5rem !important;
}

.pl-85 {
  padding-left: 8.5rem !important;
}

.pr-85 {
  padding-right: 8.5rem !important;
}

.m-90 {
  margin: 9rem !important;
}

.my-90 {
  margin: 9rem 0 !important;
}

.mx-90 {
  margin: 0 9rem !important;
}

.mt-90 {
  margin-top: 9rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.ml-90 {
  margin-left: 9rem !important;
}

.mr-90 {
  margin-right: 9rem !important;
}

.p-90 {
  padding: 9rem !important;
}

.py-90 {
  padding: 9rem 0 !important;
}

.px-90 {
  padding: 0 9rem !important;
}

.pt-90 {
  padding-top: 9rem !important;
}

.pb-90 {
  padding-bottom: 9rem !important;
}

.pl-90 {
  padding-left: 9rem !important;
}

.pr-90 {
  padding-right: 9rem !important;
}

.m-95 {
  margin: 9.5rem !important;
}

.my-95 {
  margin: 9.5rem 0 !important;
}

.mx-95 {
  margin: 0 9.5rem !important;
}

.mt-95 {
  margin-top: 9.5rem !important;
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

.ml-95 {
  margin-left: 9.5rem !important;
}

.mr-95 {
  margin-right: 9.5rem !important;
}

.p-95 {
  padding: 9.5rem !important;
}

.py-95 {
  padding: 9.5rem 0 !important;
}

.px-95 {
  padding: 0 9.5rem !important;
}

.pt-95 {
  padding-top: 9.5rem !important;
}

.pb-95 {
  padding-bottom: 9.5rem !important;
}

.pl-95 {
  padding-left: 9.5rem !important;
}

.pr-95 {
  padding-right: 9.5rem !important;
}

.m-100 {
  margin: 10rem !important;
}

.my-100 {
  margin: 10rem 0 !important;
}

.mx-100 {
  margin: 0 10rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

.ml-100 {
  margin-left: 10rem !important;
}

.mr-100 {
  margin-right: 10rem !important;
}

.p-100 {
  padding: 10rem !important;
}

.py-100 {
  padding: 10rem 0 !important;
}

.px-100 {
  padding: 0 10rem !important;
}

.pt-100 {
  padding-top: 10rem !important;
}

.pb-100 {
  padding-bottom: 10rem !important;
}

.pl-100 {
  padding-left: 10rem !important;
}

.pr-100 {
  padding-right: 10rem !important;
}

@media screen and (max-width: 800px) {
  .m-tab-0 {
    margin: 0rem !important;
  }
  .my-tab-0 {
    margin: 0rem 0 !important;
  }
  .mx-tab-0 {
    margin: 0 0rem !important;
  }
  .mt-tab-0 {
    margin-top: 0rem !important;
  }
  .mb-tab-0 {
    margin-bottom: 0rem !important;
  }
  .ml-tab-0 {
    margin-left: 0rem !important;
  }
  .mr-tab-0 {
    margin-right: 0rem !important;
  }
  .p-tab-0 {
    padding: 0rem !important;
  }
  .py-tab-0 {
    padding: 0rem 0 !important;
  }
  .px-tab-0 {
    padding: 0 0rem !important;
  }
  .pt-tab-0 {
    padding-top: 0rem !important;
  }
  .pb-tab-0 {
    padding-bottom: 0rem !important;
  }
  .pl-tab-0 {
    padding-left: 0rem !important;
  }
  .pr-tab-0 {
    padding-right: 0rem !important;
  }
  .m-tab-5 {
    margin: 0.5rem !important;
  }
  .my-tab-5 {
    margin: 0.5rem 0 !important;
  }
  .mx-tab-5 {
    margin: 0 0.5rem !important;
  }
  .mt-tab-5 {
    margin-top: 0.5rem !important;
  }
  .mb-tab-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-tab-5 {
    margin-left: 0.5rem !important;
  }
  .mr-tab-5 {
    margin-right: 0.5rem !important;
  }
  .p-tab-5 {
    padding: 0.5rem !important;
  }
  .py-tab-5 {
    padding: 0.5rem 0 !important;
  }
  .px-tab-5 {
    padding: 0 0.5rem !important;
  }
  .pt-tab-5 {
    padding-top: 0.5rem !important;
  }
  .pb-tab-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-tab-5 {
    padding-left: 0.5rem !important;
  }
  .pr-tab-5 {
    padding-right: 0.5rem !important;
  }
  .m-tab-10 {
    margin: 1rem !important;
  }
  .my-tab-10 {
    margin: 1rem 0 !important;
  }
  .mx-tab-10 {
    margin: 0 1rem !important;
  }
  .mt-tab-10 {
    margin-top: 1rem !important;
  }
  .mb-tab-10 {
    margin-bottom: 1rem !important;
  }
  .ml-tab-10 {
    margin-left: 1rem !important;
  }
  .mr-tab-10 {
    margin-right: 1rem !important;
  }
  .p-tab-10 {
    padding: 1rem !important;
  }
  .py-tab-10 {
    padding: 1rem 0 !important;
  }
  .px-tab-10 {
    padding: 0 1rem !important;
  }
  .pt-tab-10 {
    padding-top: 1rem !important;
  }
  .pb-tab-10 {
    padding-bottom: 1rem !important;
  }
  .pl-tab-10 {
    padding-left: 1rem !important;
  }
  .pr-tab-10 {
    padding-right: 1rem !important;
  }
  .m-tab-15 {
    margin: 1.5rem !important;
  }
  .my-tab-15 {
    margin: 1.5rem 0 !important;
  }
  .mx-tab-15 {
    margin: 0 1.5rem !important;
  }
  .mt-tab-15 {
    margin-top: 1.5rem !important;
  }
  .mb-tab-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-tab-15 {
    margin-left: 1.5rem !important;
  }
  .mr-tab-15 {
    margin-right: 1.5rem !important;
  }
  .p-tab-15 {
    padding: 1.5rem !important;
  }
  .py-tab-15 {
    padding: 1.5rem 0 !important;
  }
  .px-tab-15 {
    padding: 0 1.5rem !important;
  }
  .pt-tab-15 {
    padding-top: 1.5rem !important;
  }
  .pb-tab-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-tab-15 {
    padding-left: 1.5rem !important;
  }
  .pr-tab-15 {
    padding-right: 1.5rem !important;
  }
  .m-tab-20 {
    margin: 2rem !important;
  }
  .my-tab-20 {
    margin: 2rem 0 !important;
  }
  .mx-tab-20 {
    margin: 0 2rem !important;
  }
  .mt-tab-20 {
    margin-top: 2rem !important;
  }
  .mb-tab-20 {
    margin-bottom: 2rem !important;
  }
  .ml-tab-20 {
    margin-left: 2rem !important;
  }
  .mr-tab-20 {
    margin-right: 2rem !important;
  }
  .p-tab-20 {
    padding: 2rem !important;
  }
  .py-tab-20 {
    padding: 2rem 0 !important;
  }
  .px-tab-20 {
    padding: 0 2rem !important;
  }
  .pt-tab-20 {
    padding-top: 2rem !important;
  }
  .pb-tab-20 {
    padding-bottom: 2rem !important;
  }
  .pl-tab-20 {
    padding-left: 2rem !important;
  }
  .pr-tab-20 {
    padding-right: 2rem !important;
  }
  .m-tab-25 {
    margin: 2.5rem !important;
  }
  .my-tab-25 {
    margin: 2.5rem 0 !important;
  }
  .mx-tab-25 {
    margin: 0 2.5rem !important;
  }
  .mt-tab-25 {
    margin-top: 2.5rem !important;
  }
  .mb-tab-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-tab-25 {
    margin-left: 2.5rem !important;
  }
  .mr-tab-25 {
    margin-right: 2.5rem !important;
  }
  .p-tab-25 {
    padding: 2.5rem !important;
  }
  .py-tab-25 {
    padding: 2.5rem 0 !important;
  }
  .px-tab-25 {
    padding: 0 2.5rem !important;
  }
  .pt-tab-25 {
    padding-top: 2.5rem !important;
  }
  .pb-tab-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-tab-25 {
    padding-left: 2.5rem !important;
  }
  .pr-tab-25 {
    padding-right: 2.5rem !important;
  }
  .m-tab-30 {
    margin: 3rem !important;
  }
  .my-tab-30 {
    margin: 3rem 0 !important;
  }
  .mx-tab-30 {
    margin: 0 3rem !important;
  }
  .mt-tab-30 {
    margin-top: 3rem !important;
  }
  .mb-tab-30 {
    margin-bottom: 3rem !important;
  }
  .ml-tab-30 {
    margin-left: 3rem !important;
  }
  .mr-tab-30 {
    margin-right: 3rem !important;
  }
  .p-tab-30 {
    padding: 3rem !important;
  }
  .py-tab-30 {
    padding: 3rem 0 !important;
  }
  .px-tab-30 {
    padding: 0 3rem !important;
  }
  .pt-tab-30 {
    padding-top: 3rem !important;
  }
  .pb-tab-30 {
    padding-bottom: 3rem !important;
  }
  .pl-tab-30 {
    padding-left: 3rem !important;
  }
  .pr-tab-30 {
    padding-right: 3rem !important;
  }
  .m-tab-35 {
    margin: 3.5rem !important;
  }
  .my-tab-35 {
    margin: 3.5rem 0 !important;
  }
  .mx-tab-35 {
    margin: 0 3.5rem !important;
  }
  .mt-tab-35 {
    margin-top: 3.5rem !important;
  }
  .mb-tab-35 {
    margin-bottom: 3.5rem !important;
  }
  .ml-tab-35 {
    margin-left: 3.5rem !important;
  }
  .mr-tab-35 {
    margin-right: 3.5rem !important;
  }
  .p-tab-35 {
    padding: 3.5rem !important;
  }
  .py-tab-35 {
    padding: 3.5rem 0 !important;
  }
  .px-tab-35 {
    padding: 0 3.5rem !important;
  }
  .pt-tab-35 {
    padding-top: 3.5rem !important;
  }
  .pb-tab-35 {
    padding-bottom: 3.5rem !important;
  }
  .pl-tab-35 {
    padding-left: 3.5rem !important;
  }
  .pr-tab-35 {
    padding-right: 3.5rem !important;
  }
  .m-tab-40 {
    margin: 4rem !important;
  }
  .my-tab-40 {
    margin: 4rem 0 !important;
  }
  .mx-tab-40 {
    margin: 0 4rem !important;
  }
  .mt-tab-40 {
    margin-top: 4rem !important;
  }
  .mb-tab-40 {
    margin-bottom: 4rem !important;
  }
  .ml-tab-40 {
    margin-left: 4rem !important;
  }
  .mr-tab-40 {
    margin-right: 4rem !important;
  }
  .p-tab-40 {
    padding: 4rem !important;
  }
  .py-tab-40 {
    padding: 4rem 0 !important;
  }
  .px-tab-40 {
    padding: 0 4rem !important;
  }
  .pt-tab-40 {
    padding-top: 4rem !important;
  }
  .pb-tab-40 {
    padding-bottom: 4rem !important;
  }
  .pl-tab-40 {
    padding-left: 4rem !important;
  }
  .pr-tab-40 {
    padding-right: 4rem !important;
  }
  .m-tab-45 {
    margin: 4.5rem !important;
  }
  .my-tab-45 {
    margin: 4.5rem 0 !important;
  }
  .mx-tab-45 {
    margin: 0 4.5rem !important;
  }
  .mt-tab-45 {
    margin-top: 4.5rem !important;
  }
  .mb-tab-45 {
    margin-bottom: 4.5rem !important;
  }
  .ml-tab-45 {
    margin-left: 4.5rem !important;
  }
  .mr-tab-45 {
    margin-right: 4.5rem !important;
  }
  .p-tab-45 {
    padding: 4.5rem !important;
  }
  .py-tab-45 {
    padding: 4.5rem 0 !important;
  }
  .px-tab-45 {
    padding: 0 4.5rem !important;
  }
  .pt-tab-45 {
    padding-top: 4.5rem !important;
  }
  .pb-tab-45 {
    padding-bottom: 4.5rem !important;
  }
  .pl-tab-45 {
    padding-left: 4.5rem !important;
  }
  .pr-tab-45 {
    padding-right: 4.5rem !important;
  }
  .m-tab-50 {
    margin: 5rem !important;
  }
  .my-tab-50 {
    margin: 5rem 0 !important;
  }
  .mx-tab-50 {
    margin: 0 5rem !important;
  }
  .mt-tab-50 {
    margin-top: 5rem !important;
  }
  .mb-tab-50 {
    margin-bottom: 5rem !important;
  }
  .ml-tab-50 {
    margin-left: 5rem !important;
  }
  .mr-tab-50 {
    margin-right: 5rem !important;
  }
  .p-tab-50 {
    padding: 5rem !important;
  }
  .py-tab-50 {
    padding: 5rem 0 !important;
  }
  .px-tab-50 {
    padding: 0 5rem !important;
  }
  .pt-tab-50 {
    padding-top: 5rem !important;
  }
  .pb-tab-50 {
    padding-bottom: 5rem !important;
  }
  .pl-tab-50 {
    padding-left: 5rem !important;
  }
  .pr-tab-50 {
    padding-right: 5rem !important;
  }
  .m-tab-55 {
    margin: 5.5rem !important;
  }
  .my-tab-55 {
    margin: 5.5rem 0 !important;
  }
  .mx-tab-55 {
    margin: 0 5.5rem !important;
  }
  .mt-tab-55 {
    margin-top: 5.5rem !important;
  }
  .mb-tab-55 {
    margin-bottom: 5.5rem !important;
  }
  .ml-tab-55 {
    margin-left: 5.5rem !important;
  }
  .mr-tab-55 {
    margin-right: 5.5rem !important;
  }
  .p-tab-55 {
    padding: 5.5rem !important;
  }
  .py-tab-55 {
    padding: 5.5rem 0 !important;
  }
  .px-tab-55 {
    padding: 0 5.5rem !important;
  }
  .pt-tab-55 {
    padding-top: 5.5rem !important;
  }
  .pb-tab-55 {
    padding-bottom: 5.5rem !important;
  }
  .pl-tab-55 {
    padding-left: 5.5rem !important;
  }
  .pr-tab-55 {
    padding-right: 5.5rem !important;
  }
  .m-tab-60 {
    margin: 6rem !important;
  }
  .my-tab-60 {
    margin: 6rem 0 !important;
  }
  .mx-tab-60 {
    margin: 0 6rem !important;
  }
  .mt-tab-60 {
    margin-top: 6rem !important;
  }
  .mb-tab-60 {
    margin-bottom: 6rem !important;
  }
  .ml-tab-60 {
    margin-left: 6rem !important;
  }
  .mr-tab-60 {
    margin-right: 6rem !important;
  }
  .p-tab-60 {
    padding: 6rem !important;
  }
  .py-tab-60 {
    padding: 6rem 0 !important;
  }
  .px-tab-60 {
    padding: 0 6rem !important;
  }
  .pt-tab-60 {
    padding-top: 6rem !important;
  }
  .pb-tab-60 {
    padding-bottom: 6rem !important;
  }
  .pl-tab-60 {
    padding-left: 6rem !important;
  }
  .pr-tab-60 {
    padding-right: 6rem !important;
  }
  .m-tab-65 {
    margin: 6.5rem !important;
  }
  .my-tab-65 {
    margin: 6.5rem 0 !important;
  }
  .mx-tab-65 {
    margin: 0 6.5rem !important;
  }
  .mt-tab-65 {
    margin-top: 6.5rem !important;
  }
  .mb-tab-65 {
    margin-bottom: 6.5rem !important;
  }
  .ml-tab-65 {
    margin-left: 6.5rem !important;
  }
  .mr-tab-65 {
    margin-right: 6.5rem !important;
  }
  .p-tab-65 {
    padding: 6.5rem !important;
  }
  .py-tab-65 {
    padding: 6.5rem 0 !important;
  }
  .px-tab-65 {
    padding: 0 6.5rem !important;
  }
  .pt-tab-65 {
    padding-top: 6.5rem !important;
  }
  .pb-tab-65 {
    padding-bottom: 6.5rem !important;
  }
  .pl-tab-65 {
    padding-left: 6.5rem !important;
  }
  .pr-tab-65 {
    padding-right: 6.5rem !important;
  }
  .m-tab-70 {
    margin: 7rem !important;
  }
  .my-tab-70 {
    margin: 7rem 0 !important;
  }
  .mx-tab-70 {
    margin: 0 7rem !important;
  }
  .mt-tab-70 {
    margin-top: 7rem !important;
  }
  .mb-tab-70 {
    margin-bottom: 7rem !important;
  }
  .ml-tab-70 {
    margin-left: 7rem !important;
  }
  .mr-tab-70 {
    margin-right: 7rem !important;
  }
  .p-tab-70 {
    padding: 7rem !important;
  }
  .py-tab-70 {
    padding: 7rem 0 !important;
  }
  .px-tab-70 {
    padding: 0 7rem !important;
  }
  .pt-tab-70 {
    padding-top: 7rem !important;
  }
  .pb-tab-70 {
    padding-bottom: 7rem !important;
  }
  .pl-tab-70 {
    padding-left: 7rem !important;
  }
  .pr-tab-70 {
    padding-right: 7rem !important;
  }
  .m-tab-75 {
    margin: 7.5rem !important;
  }
  .my-tab-75 {
    margin: 7.5rem 0 !important;
  }
  .mx-tab-75 {
    margin: 0 7.5rem !important;
  }
  .mt-tab-75 {
    margin-top: 7.5rem !important;
  }
  .mb-tab-75 {
    margin-bottom: 7.5rem !important;
  }
  .ml-tab-75 {
    margin-left: 7.5rem !important;
  }
  .mr-tab-75 {
    margin-right: 7.5rem !important;
  }
  .p-tab-75 {
    padding: 7.5rem !important;
  }
  .py-tab-75 {
    padding: 7.5rem 0 !important;
  }
  .px-tab-75 {
    padding: 0 7.5rem !important;
  }
  .pt-tab-75 {
    padding-top: 7.5rem !important;
  }
  .pb-tab-75 {
    padding-bottom: 7.5rem !important;
  }
  .pl-tab-75 {
    padding-left: 7.5rem !important;
  }
  .pr-tab-75 {
    padding-right: 7.5rem !important;
  }
  .m-tab-80 {
    margin: 8rem !important;
  }
  .my-tab-80 {
    margin: 8rem 0 !important;
  }
  .mx-tab-80 {
    margin: 0 8rem !important;
  }
  .mt-tab-80 {
    margin-top: 8rem !important;
  }
  .mb-tab-80 {
    margin-bottom: 8rem !important;
  }
  .ml-tab-80 {
    margin-left: 8rem !important;
  }
  .mr-tab-80 {
    margin-right: 8rem !important;
  }
  .p-tab-80 {
    padding: 8rem !important;
  }
  .py-tab-80 {
    padding: 8rem 0 !important;
  }
  .px-tab-80 {
    padding: 0 8rem !important;
  }
  .pt-tab-80 {
    padding-top: 8rem !important;
  }
  .pb-tab-80 {
    padding-bottom: 8rem !important;
  }
  .pl-tab-80 {
    padding-left: 8rem !important;
  }
  .pr-tab-80 {
    padding-right: 8rem !important;
  }
  .m-tab-85 {
    margin: 8.5rem !important;
  }
  .my-tab-85 {
    margin: 8.5rem 0 !important;
  }
  .mx-tab-85 {
    margin: 0 8.5rem !important;
  }
  .mt-tab-85 {
    margin-top: 8.5rem !important;
  }
  .mb-tab-85 {
    margin-bottom: 8.5rem !important;
  }
  .ml-tab-85 {
    margin-left: 8.5rem !important;
  }
  .mr-tab-85 {
    margin-right: 8.5rem !important;
  }
  .p-tab-85 {
    padding: 8.5rem !important;
  }
  .py-tab-85 {
    padding: 8.5rem 0 !important;
  }
  .px-tab-85 {
    padding: 0 8.5rem !important;
  }
  .pt-tab-85 {
    padding-top: 8.5rem !important;
  }
  .pb-tab-85 {
    padding-bottom: 8.5rem !important;
  }
  .pl-tab-85 {
    padding-left: 8.5rem !important;
  }
  .pr-tab-85 {
    padding-right: 8.5rem !important;
  }
  .m-tab-90 {
    margin: 9rem !important;
  }
  .my-tab-90 {
    margin: 9rem 0 !important;
  }
  .mx-tab-90 {
    margin: 0 9rem !important;
  }
  .mt-tab-90 {
    margin-top: 9rem !important;
  }
  .mb-tab-90 {
    margin-bottom: 9rem !important;
  }
  .ml-tab-90 {
    margin-left: 9rem !important;
  }
  .mr-tab-90 {
    margin-right: 9rem !important;
  }
  .p-tab-90 {
    padding: 9rem !important;
  }
  .py-tab-90 {
    padding: 9rem 0 !important;
  }
  .px-tab-90 {
    padding: 0 9rem !important;
  }
  .pt-tab-90 {
    padding-top: 9rem !important;
  }
  .pb-tab-90 {
    padding-bottom: 9rem !important;
  }
  .pl-tab-90 {
    padding-left: 9rem !important;
  }
  .pr-tab-90 {
    padding-right: 9rem !important;
  }
  .m-tab-95 {
    margin: 9.5rem !important;
  }
  .my-tab-95 {
    margin: 9.5rem 0 !important;
  }
  .mx-tab-95 {
    margin: 0 9.5rem !important;
  }
  .mt-tab-95 {
    margin-top: 9.5rem !important;
  }
  .mb-tab-95 {
    margin-bottom: 9.5rem !important;
  }
  .ml-tab-95 {
    margin-left: 9.5rem !important;
  }
  .mr-tab-95 {
    margin-right: 9.5rem !important;
  }
  .p-tab-95 {
    padding: 9.5rem !important;
  }
  .py-tab-95 {
    padding: 9.5rem 0 !important;
  }
  .px-tab-95 {
    padding: 0 9.5rem !important;
  }
  .pt-tab-95 {
    padding-top: 9.5rem !important;
  }
  .pb-tab-95 {
    padding-bottom: 9.5rem !important;
  }
  .pl-tab-95 {
    padding-left: 9.5rem !important;
  }
  .pr-tab-95 {
    padding-right: 9.5rem !important;
  }
  .m-tab-100 {
    margin: 10rem !important;
  }
  .my-tab-100 {
    margin: 10rem 0 !important;
  }
  .mx-tab-100 {
    margin: 0 10rem !important;
  }
  .mt-tab-100 {
    margin-top: 10rem !important;
  }
  .mb-tab-100 {
    margin-bottom: 10rem !important;
  }
  .ml-tab-100 {
    margin-left: 10rem !important;
  }
  .mr-tab-100 {
    margin-right: 10rem !important;
  }
  .p-tab-100 {
    padding: 10rem !important;
  }
  .py-tab-100 {
    padding: 10rem 0 !important;
  }
  .px-tab-100 {
    padding: 0 10rem !important;
  }
  .pt-tab-100 {
    padding-top: 10rem !important;
  }
  .pb-tab-100 {
    padding-bottom: 10rem !important;
  }
  .pl-tab-100 {
    padding-left: 10rem !important;
  }
  .pr-tab-100 {
    padding-right: 10rem !important;
  }
}
@media screen and (max-width: 500px) {
  .m-sp-0 {
    margin: 0rem !important;
  }
  .my-sp-0 {
    margin: 0rem 0 !important;
  }
  .mx-sp-0 {
    margin: 0 0rem !important;
  }
  .mt-sp-0 {
    margin-top: 0rem !important;
  }
  .mb-sp-0 {
    margin-bottom: 0rem !important;
  }
  .ml-sp-0 {
    margin-left: 0rem !important;
  }
  .mr-sp-0 {
    margin-right: 0rem !important;
  }
  .p-sp-0 {
    padding: 0rem !important;
  }
  .py-sp-0 {
    padding: 0rem 0 !important;
  }
  .px-sp-0 {
    padding: 0 0rem !important;
  }
  .pt-sp-0 {
    padding-top: 0rem !important;
  }
  .pb-sp-0 {
    padding-bottom: 0rem !important;
  }
  .pl-sp-0 {
    padding-left: 0rem !important;
  }
  .pr-sp-0 {
    padding-right: 0rem !important;
  }
  .m-sp-5 {
    margin: 0.5rem !important;
  }
  .my-sp-5 {
    margin: 0.5rem 0 !important;
  }
  .mx-sp-5 {
    margin: 0 0.5rem !important;
  }
  .mt-sp-5 {
    margin-top: 0.5rem !important;
  }
  .mb-sp-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sp-5 {
    margin-left: 0.5rem !important;
  }
  .mr-sp-5 {
    margin-right: 0.5rem !important;
  }
  .p-sp-5 {
    padding: 0.5rem !important;
  }
  .py-sp-5 {
    padding: 0.5rem 0 !important;
  }
  .px-sp-5 {
    padding: 0 0.5rem !important;
  }
  .pt-sp-5 {
    padding-top: 0.5rem !important;
  }
  .pb-sp-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sp-5 {
    padding-left: 0.5rem !important;
  }
  .pr-sp-5 {
    padding-right: 0.5rem !important;
  }
  .m-sp-10 {
    margin: 1rem !important;
  }
  .my-sp-10 {
    margin: 1rem 0 !important;
  }
  .mx-sp-10 {
    margin: 0 1rem !important;
  }
  .mt-sp-10 {
    margin-top: 1rem !important;
  }
  .mb-sp-10 {
    margin-bottom: 1rem !important;
  }
  .ml-sp-10 {
    margin-left: 1rem !important;
  }
  .mr-sp-10 {
    margin-right: 1rem !important;
  }
  .p-sp-10 {
    padding: 1rem !important;
  }
  .py-sp-10 {
    padding: 1rem 0 !important;
  }
  .px-sp-10 {
    padding: 0 1rem !important;
  }
  .pt-sp-10 {
    padding-top: 1rem !important;
  }
  .pb-sp-10 {
    padding-bottom: 1rem !important;
  }
  .pl-sp-10 {
    padding-left: 1rem !important;
  }
  .pr-sp-10 {
    padding-right: 1rem !important;
  }
  .m-sp-15 {
    margin: 1.5rem !important;
  }
  .my-sp-15 {
    margin: 1.5rem 0 !important;
  }
  .mx-sp-15 {
    margin: 0 1.5rem !important;
  }
  .mt-sp-15 {
    margin-top: 1.5rem !important;
  }
  .mb-sp-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sp-15 {
    margin-left: 1.5rem !important;
  }
  .mr-sp-15 {
    margin-right: 1.5rem !important;
  }
  .p-sp-15 {
    padding: 1.5rem !important;
  }
  .py-sp-15 {
    padding: 1.5rem 0 !important;
  }
  .px-sp-15 {
    padding: 0 1.5rem !important;
  }
  .pt-sp-15 {
    padding-top: 1.5rem !important;
  }
  .pb-sp-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sp-15 {
    padding-left: 1.5rem !important;
  }
  .pr-sp-15 {
    padding-right: 1.5rem !important;
  }
  .m-sp-20 {
    margin: 2rem !important;
  }
  .my-sp-20 {
    margin: 2rem 0 !important;
  }
  .mx-sp-20 {
    margin: 0 2rem !important;
  }
  .mt-sp-20 {
    margin-top: 2rem !important;
  }
  .mb-sp-20 {
    margin-bottom: 2rem !important;
  }
  .ml-sp-20 {
    margin-left: 2rem !important;
  }
  .mr-sp-20 {
    margin-right: 2rem !important;
  }
  .p-sp-20 {
    padding: 2rem !important;
  }
  .py-sp-20 {
    padding: 2rem 0 !important;
  }
  .px-sp-20 {
    padding: 0 2rem !important;
  }
  .pt-sp-20 {
    padding-top: 2rem !important;
  }
  .pb-sp-20 {
    padding-bottom: 2rem !important;
  }
  .pl-sp-20 {
    padding-left: 2rem !important;
  }
  .pr-sp-20 {
    padding-right: 2rem !important;
  }
  .m-sp-25 {
    margin: 2.5rem !important;
  }
  .my-sp-25 {
    margin: 2.5rem 0 !important;
  }
  .mx-sp-25 {
    margin: 0 2.5rem !important;
  }
  .mt-sp-25 {
    margin-top: 2.5rem !important;
  }
  .mb-sp-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-sp-25 {
    margin-left: 2.5rem !important;
  }
  .mr-sp-25 {
    margin-right: 2.5rem !important;
  }
  .p-sp-25 {
    padding: 2.5rem !important;
  }
  .py-sp-25 {
    padding: 2.5rem 0 !important;
  }
  .px-sp-25 {
    padding: 0 2.5rem !important;
  }
  .pt-sp-25 {
    padding-top: 2.5rem !important;
  }
  .pb-sp-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-sp-25 {
    padding-left: 2.5rem !important;
  }
  .pr-sp-25 {
    padding-right: 2.5rem !important;
  }
  .m-sp-30 {
    margin: 3rem !important;
  }
  .my-sp-30 {
    margin: 3rem 0 !important;
  }
  .mx-sp-30 {
    margin: 0 3rem !important;
  }
  .mt-sp-30 {
    margin-top: 3rem !important;
  }
  .mb-sp-30 {
    margin-bottom: 3rem !important;
  }
  .ml-sp-30 {
    margin-left: 3rem !important;
  }
  .mr-sp-30 {
    margin-right: 3rem !important;
  }
  .p-sp-30 {
    padding: 3rem !important;
  }
  .py-sp-30 {
    padding: 3rem 0 !important;
  }
  .px-sp-30 {
    padding: 0 3rem !important;
  }
  .pt-sp-30 {
    padding-top: 3rem !important;
  }
  .pb-sp-30 {
    padding-bottom: 3rem !important;
  }
  .pl-sp-30 {
    padding-left: 3rem !important;
  }
  .pr-sp-30 {
    padding-right: 3rem !important;
  }
  .m-sp-35 {
    margin: 3.5rem !important;
  }
  .my-sp-35 {
    margin: 3.5rem 0 !important;
  }
  .mx-sp-35 {
    margin: 0 3.5rem !important;
  }
  .mt-sp-35 {
    margin-top: 3.5rem !important;
  }
  .mb-sp-35 {
    margin-bottom: 3.5rem !important;
  }
  .ml-sp-35 {
    margin-left: 3.5rem !important;
  }
  .mr-sp-35 {
    margin-right: 3.5rem !important;
  }
  .p-sp-35 {
    padding: 3.5rem !important;
  }
  .py-sp-35 {
    padding: 3.5rem 0 !important;
  }
  .px-sp-35 {
    padding: 0 3.5rem !important;
  }
  .pt-sp-35 {
    padding-top: 3.5rem !important;
  }
  .pb-sp-35 {
    padding-bottom: 3.5rem !important;
  }
  .pl-sp-35 {
    padding-left: 3.5rem !important;
  }
  .pr-sp-35 {
    padding-right: 3.5rem !important;
  }
  .m-sp-40 {
    margin: 4rem !important;
  }
  .my-sp-40 {
    margin: 4rem 0 !important;
  }
  .mx-sp-40 {
    margin: 0 4rem !important;
  }
  .mt-sp-40 {
    margin-top: 4rem !important;
  }
  .mb-sp-40 {
    margin-bottom: 4rem !important;
  }
  .ml-sp-40 {
    margin-left: 4rem !important;
  }
  .mr-sp-40 {
    margin-right: 4rem !important;
  }
  .p-sp-40 {
    padding: 4rem !important;
  }
  .py-sp-40 {
    padding: 4rem 0 !important;
  }
  .px-sp-40 {
    padding: 0 4rem !important;
  }
  .pt-sp-40 {
    padding-top: 4rem !important;
  }
  .pb-sp-40 {
    padding-bottom: 4rem !important;
  }
  .pl-sp-40 {
    padding-left: 4rem !important;
  }
  .pr-sp-40 {
    padding-right: 4rem !important;
  }
  .m-sp-45 {
    margin: 4.5rem !important;
  }
  .my-sp-45 {
    margin: 4.5rem 0 !important;
  }
  .mx-sp-45 {
    margin: 0 4.5rem !important;
  }
  .mt-sp-45 {
    margin-top: 4.5rem !important;
  }
  .mb-sp-45 {
    margin-bottom: 4.5rem !important;
  }
  .ml-sp-45 {
    margin-left: 4.5rem !important;
  }
  .mr-sp-45 {
    margin-right: 4.5rem !important;
  }
  .p-sp-45 {
    padding: 4.5rem !important;
  }
  .py-sp-45 {
    padding: 4.5rem 0 !important;
  }
  .px-sp-45 {
    padding: 0 4.5rem !important;
  }
  .pt-sp-45 {
    padding-top: 4.5rem !important;
  }
  .pb-sp-45 {
    padding-bottom: 4.5rem !important;
  }
  .pl-sp-45 {
    padding-left: 4.5rem !important;
  }
  .pr-sp-45 {
    padding-right: 4.5rem !important;
  }
  .m-sp-50 {
    margin: 5rem !important;
  }
  .my-sp-50 {
    margin: 5rem 0 !important;
  }
  .mx-sp-50 {
    margin: 0 5rem !important;
  }
  .mt-sp-50 {
    margin-top: 5rem !important;
  }
  .mb-sp-50 {
    margin-bottom: 5rem !important;
  }
  .ml-sp-50 {
    margin-left: 5rem !important;
  }
  .mr-sp-50 {
    margin-right: 5rem !important;
  }
  .p-sp-50 {
    padding: 5rem !important;
  }
  .py-sp-50 {
    padding: 5rem 0 !important;
  }
  .px-sp-50 {
    padding: 0 5rem !important;
  }
  .pt-sp-50 {
    padding-top: 5rem !important;
  }
  .pb-sp-50 {
    padding-bottom: 5rem !important;
  }
  .pl-sp-50 {
    padding-left: 5rem !important;
  }
  .pr-sp-50 {
    padding-right: 5rem !important;
  }
  .m-sp-55 {
    margin: 5.5rem !important;
  }
  .my-sp-55 {
    margin: 5.5rem 0 !important;
  }
  .mx-sp-55 {
    margin: 0 5.5rem !important;
  }
  .mt-sp-55 {
    margin-top: 5.5rem !important;
  }
  .mb-sp-55 {
    margin-bottom: 5.5rem !important;
  }
  .ml-sp-55 {
    margin-left: 5.5rem !important;
  }
  .mr-sp-55 {
    margin-right: 5.5rem !important;
  }
  .p-sp-55 {
    padding: 5.5rem !important;
  }
  .py-sp-55 {
    padding: 5.5rem 0 !important;
  }
  .px-sp-55 {
    padding: 0 5.5rem !important;
  }
  .pt-sp-55 {
    padding-top: 5.5rem !important;
  }
  .pb-sp-55 {
    padding-bottom: 5.5rem !important;
  }
  .pl-sp-55 {
    padding-left: 5.5rem !important;
  }
  .pr-sp-55 {
    padding-right: 5.5rem !important;
  }
  .m-sp-60 {
    margin: 6rem !important;
  }
  .my-sp-60 {
    margin: 6rem 0 !important;
  }
  .mx-sp-60 {
    margin: 0 6rem !important;
  }
  .mt-sp-60 {
    margin-top: 6rem !important;
  }
  .mb-sp-60 {
    margin-bottom: 6rem !important;
  }
  .ml-sp-60 {
    margin-left: 6rem !important;
  }
  .mr-sp-60 {
    margin-right: 6rem !important;
  }
  .p-sp-60 {
    padding: 6rem !important;
  }
  .py-sp-60 {
    padding: 6rem 0 !important;
  }
  .px-sp-60 {
    padding: 0 6rem !important;
  }
  .pt-sp-60 {
    padding-top: 6rem !important;
  }
  .pb-sp-60 {
    padding-bottom: 6rem !important;
  }
  .pl-sp-60 {
    padding-left: 6rem !important;
  }
  .pr-sp-60 {
    padding-right: 6rem !important;
  }
  .m-sp-65 {
    margin: 6.5rem !important;
  }
  .my-sp-65 {
    margin: 6.5rem 0 !important;
  }
  .mx-sp-65 {
    margin: 0 6.5rem !important;
  }
  .mt-sp-65 {
    margin-top: 6.5rem !important;
  }
  .mb-sp-65 {
    margin-bottom: 6.5rem !important;
  }
  .ml-sp-65 {
    margin-left: 6.5rem !important;
  }
  .mr-sp-65 {
    margin-right: 6.5rem !important;
  }
  .p-sp-65 {
    padding: 6.5rem !important;
  }
  .py-sp-65 {
    padding: 6.5rem 0 !important;
  }
  .px-sp-65 {
    padding: 0 6.5rem !important;
  }
  .pt-sp-65 {
    padding-top: 6.5rem !important;
  }
  .pb-sp-65 {
    padding-bottom: 6.5rem !important;
  }
  .pl-sp-65 {
    padding-left: 6.5rem !important;
  }
  .pr-sp-65 {
    padding-right: 6.5rem !important;
  }
  .m-sp-70 {
    margin: 7rem !important;
  }
  .my-sp-70 {
    margin: 7rem 0 !important;
  }
  .mx-sp-70 {
    margin: 0 7rem !important;
  }
  .mt-sp-70 {
    margin-top: 7rem !important;
  }
  .mb-sp-70 {
    margin-bottom: 7rem !important;
  }
  .ml-sp-70 {
    margin-left: 7rem !important;
  }
  .mr-sp-70 {
    margin-right: 7rem !important;
  }
  .p-sp-70 {
    padding: 7rem !important;
  }
  .py-sp-70 {
    padding: 7rem 0 !important;
  }
  .px-sp-70 {
    padding: 0 7rem !important;
  }
  .pt-sp-70 {
    padding-top: 7rem !important;
  }
  .pb-sp-70 {
    padding-bottom: 7rem !important;
  }
  .pl-sp-70 {
    padding-left: 7rem !important;
  }
  .pr-sp-70 {
    padding-right: 7rem !important;
  }
  .m-sp-75 {
    margin: 7.5rem !important;
  }
  .my-sp-75 {
    margin: 7.5rem 0 !important;
  }
  .mx-sp-75 {
    margin: 0 7.5rem !important;
  }
  .mt-sp-75 {
    margin-top: 7.5rem !important;
  }
  .mb-sp-75 {
    margin-bottom: 7.5rem !important;
  }
  .ml-sp-75 {
    margin-left: 7.5rem !important;
  }
  .mr-sp-75 {
    margin-right: 7.5rem !important;
  }
  .p-sp-75 {
    padding: 7.5rem !important;
  }
  .py-sp-75 {
    padding: 7.5rem 0 !important;
  }
  .px-sp-75 {
    padding: 0 7.5rem !important;
  }
  .pt-sp-75 {
    padding-top: 7.5rem !important;
  }
  .pb-sp-75 {
    padding-bottom: 7.5rem !important;
  }
  .pl-sp-75 {
    padding-left: 7.5rem !important;
  }
  .pr-sp-75 {
    padding-right: 7.5rem !important;
  }
  .m-sp-80 {
    margin: 8rem !important;
  }
  .my-sp-80 {
    margin: 8rem 0 !important;
  }
  .mx-sp-80 {
    margin: 0 8rem !important;
  }
  .mt-sp-80 {
    margin-top: 8rem !important;
  }
  .mb-sp-80 {
    margin-bottom: 8rem !important;
  }
  .ml-sp-80 {
    margin-left: 8rem !important;
  }
  .mr-sp-80 {
    margin-right: 8rem !important;
  }
  .p-sp-80 {
    padding: 8rem !important;
  }
  .py-sp-80 {
    padding: 8rem 0 !important;
  }
  .px-sp-80 {
    padding: 0 8rem !important;
  }
  .pt-sp-80 {
    padding-top: 8rem !important;
  }
  .pb-sp-80 {
    padding-bottom: 8rem !important;
  }
  .pl-sp-80 {
    padding-left: 8rem !important;
  }
  .pr-sp-80 {
    padding-right: 8rem !important;
  }
  .m-sp-85 {
    margin: 8.5rem !important;
  }
  .my-sp-85 {
    margin: 8.5rem 0 !important;
  }
  .mx-sp-85 {
    margin: 0 8.5rem !important;
  }
  .mt-sp-85 {
    margin-top: 8.5rem !important;
  }
  .mb-sp-85 {
    margin-bottom: 8.5rem !important;
  }
  .ml-sp-85 {
    margin-left: 8.5rem !important;
  }
  .mr-sp-85 {
    margin-right: 8.5rem !important;
  }
  .p-sp-85 {
    padding: 8.5rem !important;
  }
  .py-sp-85 {
    padding: 8.5rem 0 !important;
  }
  .px-sp-85 {
    padding: 0 8.5rem !important;
  }
  .pt-sp-85 {
    padding-top: 8.5rem !important;
  }
  .pb-sp-85 {
    padding-bottom: 8.5rem !important;
  }
  .pl-sp-85 {
    padding-left: 8.5rem !important;
  }
  .pr-sp-85 {
    padding-right: 8.5rem !important;
  }
  .m-sp-90 {
    margin: 9rem !important;
  }
  .my-sp-90 {
    margin: 9rem 0 !important;
  }
  .mx-sp-90 {
    margin: 0 9rem !important;
  }
  .mt-sp-90 {
    margin-top: 9rem !important;
  }
  .mb-sp-90 {
    margin-bottom: 9rem !important;
  }
  .ml-sp-90 {
    margin-left: 9rem !important;
  }
  .mr-sp-90 {
    margin-right: 9rem !important;
  }
  .p-sp-90 {
    padding: 9rem !important;
  }
  .py-sp-90 {
    padding: 9rem 0 !important;
  }
  .px-sp-90 {
    padding: 0 9rem !important;
  }
  .pt-sp-90 {
    padding-top: 9rem !important;
  }
  .pb-sp-90 {
    padding-bottom: 9rem !important;
  }
  .pl-sp-90 {
    padding-left: 9rem !important;
  }
  .pr-sp-90 {
    padding-right: 9rem !important;
  }
  .m-sp-95 {
    margin: 9.5rem !important;
  }
  .my-sp-95 {
    margin: 9.5rem 0 !important;
  }
  .mx-sp-95 {
    margin: 0 9.5rem !important;
  }
  .mt-sp-95 {
    margin-top: 9.5rem !important;
  }
  .mb-sp-95 {
    margin-bottom: 9.5rem !important;
  }
  .ml-sp-95 {
    margin-left: 9.5rem !important;
  }
  .mr-sp-95 {
    margin-right: 9.5rem !important;
  }
  .p-sp-95 {
    padding: 9.5rem !important;
  }
  .py-sp-95 {
    padding: 9.5rem 0 !important;
  }
  .px-sp-95 {
    padding: 0 9.5rem !important;
  }
  .pt-sp-95 {
    padding-top: 9.5rem !important;
  }
  .pb-sp-95 {
    padding-bottom: 9.5rem !important;
  }
  .pl-sp-95 {
    padding-left: 9.5rem !important;
  }
  .pr-sp-95 {
    padding-right: 9.5rem !important;
  }
  .m-sp-100 {
    margin: 10rem !important;
  }
  .my-sp-100 {
    margin: 10rem 0 !important;
  }
  .mx-sp-100 {
    margin: 0 10rem !important;
  }
  .mt-sp-100 {
    margin-top: 10rem !important;
  }
  .mb-sp-100 {
    margin-bottom: 10rem !important;
  }
  .ml-sp-100 {
    margin-left: 10rem !important;
  }
  .mr-sp-100 {
    margin-right: 10rem !important;
  }
  .p-sp-100 {
    padding: 10rem !important;
  }
  .py-sp-100 {
    padding: 10rem 0 !important;
  }
  .px-sp-100 {
    padding: 0 10rem !important;
  }
  .pt-sp-100 {
    padding-top: 10rem !important;
  }
  .pb-sp-100 {
    padding-bottom: 10rem !important;
  }
  .pl-sp-100 {
    padding-left: 10rem !important;
  }
  .pr-sp-100 {
    padding-right: 10rem !important;
  }
}
.wid-0 {
  width: 0% !important;
}

.wid-2 {
  width: 2% !important;
}

.wid-4 {
  width: 4% !important;
}

.wid-6 {
  width: 6% !important;
}

.wid-8 {
  width: 8% !important;
}

.wid-10 {
  width: 10% !important;
}

.wid-12 {
  width: 12% !important;
}

.wid-14 {
  width: 14% !important;
}

.wid-16 {
  width: 16% !important;
}

.wid-18 {
  width: 18% !important;
}

.wid-20 {
  width: 20% !important;
}

.wid-22 {
  width: 22% !important;
}

.wid-24 {
  width: 24% !important;
}

.wid-26 {
  width: 26% !important;
}

.wid-28 {
  width: 28% !important;
}

.wid-30 {
  width: 30% !important;
}

.wid-32 {
  width: 32% !important;
}

.wid-34 {
  width: 34% !important;
}

.wid-36 {
  width: 36% !important;
}

.wid-38 {
  width: 38% !important;
}

.wid-40 {
  width: 40% !important;
}

.wid-42 {
  width: 42% !important;
}

.wid-44 {
  width: 44% !important;
}

.wid-46 {
  width: 46% !important;
}

.wid-48 {
  width: 48% !important;
}

.wid-50 {
  width: 50% !important;
}

.wid-52 {
  width: 52% !important;
}

.wid-54 {
  width: 54% !important;
}

.wid-56 {
  width: 56% !important;
}

.wid-58 {
  width: 58% !important;
}

.wid-60 {
  width: 60% !important;
}

.wid-62 {
  width: 62% !important;
}

.wid-64 {
  width: 64% !important;
}

.wid-66 {
  width: 66% !important;
}

.wid-68 {
  width: 68% !important;
}

.wid-70 {
  width: 70% !important;
}

.wid-72 {
  width: 72% !important;
}

.wid-74 {
  width: 74% !important;
}

.wid-76 {
  width: 76% !important;
}

.wid-78 {
  width: 78% !important;
}

.wid-80 {
  width: 80% !important;
}

.wid-82 {
  width: 82% !important;
}

.wid-84 {
  width: 84% !important;
}

.wid-86 {
  width: 86% !important;
}

.wid-88 {
  width: 88% !important;
}

.wid-90 {
  width: 90% !important;
}

.wid-92 {
  width: 92% !important;
}

.wid-94 {
  width: 94% !important;
}

.wid-96 {
  width: 96% !important;
}

.wid-98 {
  width: 98% !important;
}

.wid-100 {
  width: 100% !important;
}

@media screen and (max-width: 800px) {
  .wid-tab-0 {
    width: 0% !important;
  }
  .wid-tab-2 {
    width: 2% !important;
  }
  .wid-tab-4 {
    width: 4% !important;
  }
  .wid-tab-6 {
    width: 6% !important;
  }
  .wid-tab-8 {
    width: 8% !important;
  }
  .wid-tab-10 {
    width: 10% !important;
  }
  .wid-tab-12 {
    width: 12% !important;
  }
  .wid-tab-14 {
    width: 14% !important;
  }
  .wid-tab-16 {
    width: 16% !important;
  }
  .wid-tab-18 {
    width: 18% !important;
  }
  .wid-tab-20 {
    width: 20% !important;
  }
  .wid-tab-22 {
    width: 22% !important;
  }
  .wid-tab-24 {
    width: 24% !important;
  }
  .wid-tab-26 {
    width: 26% !important;
  }
  .wid-tab-28 {
    width: 28% !important;
  }
  .wid-tab-30 {
    width: 30% !important;
  }
  .wid-tab-32 {
    width: 32% !important;
  }
  .wid-tab-34 {
    width: 34% !important;
  }
  .wid-tab-36 {
    width: 36% !important;
  }
  .wid-tab-38 {
    width: 38% !important;
  }
  .wid-tab-40 {
    width: 40% !important;
  }
  .wid-tab-42 {
    width: 42% !important;
  }
  .wid-tab-44 {
    width: 44% !important;
  }
  .wid-tab-46 {
    width: 46% !important;
  }
  .wid-tab-48 {
    width: 48% !important;
  }
  .wid-tab-50 {
    width: 50% !important;
  }
  .wid-tab-52 {
    width: 52% !important;
  }
  .wid-tab-54 {
    width: 54% !important;
  }
  .wid-tab-56 {
    width: 56% !important;
  }
  .wid-tab-58 {
    width: 58% !important;
  }
  .wid-tab-60 {
    width: 60% !important;
  }
  .wid-tab-62 {
    width: 62% !important;
  }
  .wid-tab-64 {
    width: 64% !important;
  }
  .wid-tab-66 {
    width: 66% !important;
  }
  .wid-tab-68 {
    width: 68% !important;
  }
  .wid-tab-70 {
    width: 70% !important;
  }
  .wid-tab-72 {
    width: 72% !important;
  }
  .wid-tab-74 {
    width: 74% !important;
  }
  .wid-tab-76 {
    width: 76% !important;
  }
  .wid-tab-78 {
    width: 78% !important;
  }
  .wid-tab-80 {
    width: 80% !important;
  }
  .wid-tab-82 {
    width: 82% !important;
  }
  .wid-tab-84 {
    width: 84% !important;
  }
  .wid-tab-86 {
    width: 86% !important;
  }
  .wid-tab-88 {
    width: 88% !important;
  }
  .wid-tab-90 {
    width: 90% !important;
  }
  .wid-tab-92 {
    width: 92% !important;
  }
  .wid-tab-94 {
    width: 94% !important;
  }
  .wid-tab-96 {
    width: 96% !important;
  }
  .wid-tab-98 {
    width: 98% !important;
  }
  .wid-tab-100 {
    width: 100% !important;
  }
}
@media screen and (max-width: 500px) {
  .wid-sp-0 {
    width: 0% !important;
  }
  .wid-sp-2 {
    width: 2% !important;
  }
  .wid-sp-4 {
    width: 4% !important;
  }
  .wid-sp-6 {
    width: 6% !important;
  }
  .wid-sp-8 {
    width: 8% !important;
  }
  .wid-sp-10 {
    width: 10% !important;
  }
  .wid-sp-12 {
    width: 12% !important;
  }
  .wid-sp-14 {
    width: 14% !important;
  }
  .wid-sp-16 {
    width: 16% !important;
  }
  .wid-sp-18 {
    width: 18% !important;
  }
  .wid-sp-20 {
    width: 20% !important;
  }
  .wid-sp-22 {
    width: 22% !important;
  }
  .wid-sp-24 {
    width: 24% !important;
  }
  .wid-sp-26 {
    width: 26% !important;
  }
  .wid-sp-28 {
    width: 28% !important;
  }
  .wid-sp-30 {
    width: 30% !important;
  }
  .wid-sp-32 {
    width: 32% !important;
  }
  .wid-sp-34 {
    width: 34% !important;
  }
  .wid-sp-36 {
    width: 36% !important;
  }
  .wid-sp-38 {
    width: 38% !important;
  }
  .wid-sp-40 {
    width: 40% !important;
  }
  .wid-sp-42 {
    width: 42% !important;
  }
  .wid-sp-44 {
    width: 44% !important;
  }
  .wid-sp-46 {
    width: 46% !important;
  }
  .wid-sp-48 {
    width: 48% !important;
  }
  .wid-sp-50 {
    width: 50% !important;
  }
  .wid-sp-52 {
    width: 52% !important;
  }
  .wid-sp-54 {
    width: 54% !important;
  }
  .wid-sp-56 {
    width: 56% !important;
  }
  .wid-sp-58 {
    width: 58% !important;
  }
  .wid-sp-60 {
    width: 60% !important;
  }
  .wid-sp-62 {
    width: 62% !important;
  }
  .wid-sp-64 {
    width: 64% !important;
  }
  .wid-sp-66 {
    width: 66% !important;
  }
  .wid-sp-68 {
    width: 68% !important;
  }
  .wid-sp-70 {
    width: 70% !important;
  }
  .wid-sp-72 {
    width: 72% !important;
  }
  .wid-sp-74 {
    width: 74% !important;
  }
  .wid-sp-76 {
    width: 76% !important;
  }
  .wid-sp-78 {
    width: 78% !important;
  }
  .wid-sp-80 {
    width: 80% !important;
  }
  .wid-sp-82 {
    width: 82% !important;
  }
  .wid-sp-84 {
    width: 84% !important;
  }
  .wid-sp-86 {
    width: 86% !important;
  }
  .wid-sp-88 {
    width: 88% !important;
  }
  .wid-sp-90 {
    width: 90% !important;
  }
  .wid-sp-92 {
    width: 92% !important;
  }
  .wid-sp-94 {
    width: 94% !important;
  }
  .wid-sp-96 {
    width: 96% !important;
  }
  .wid-sp-98 {
    width: 98% !important;
  }
  .wid-sp-100 {
    width: 100% !important;
  }
}
.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.indentleft {
  padding-left: 1.6rem;
  text-indent: -1.6rem;
}
@media screen and (max-width: 500px) {
  .indentleft {
    padding-left: 1rem;
    text-indent: -1rem;
  }
}

.d-flex {
  display: flex;
}
.d-flex.jc-center {
  justify-content: center;
}
.d-flex.jc-start {
  justify-content: flex-start;
}
.d-flex.jc-end {
  justify-content: flex-end;
}
.d-flex.jc-around {
  justify-content: space-around;
}
.d-flex.jc-between {
  justify-content: space-between;
}
.d-flex.ai-center {
  align-items: center;
}
.d-flex.flex-wrap {
  flex-wrap: wrap;
}
.d-flex.gap0 {
  gap: 0px;
}
.d-flex.gap1 {
  gap: 10px;
}
.d-flex.gap2 {
  gap: 20px;
}
.d-flex.gap3 {
  gap: 30px;
}
.d-flex.gap4 {
  gap: 40px;
}
.d-flex.gap5 {
  gap: 50px;
}
.d-flex.gap6 {
  gap: 60px;
}
.d-flex.gap7 {
  gap: 70px;
}
.d-flex.gap8 {
  gap: 80px;
}
.d-flex.gap9 {
  gap: 90px;
}
.d-flex.gap10 {
  gap: 100px;
}
@media screen and (max-width: 800px) {
  .d-flex.gap-sp-0 {
    gap: 0;
  }
  .d-flex.gap-sp0 {
    gap: 0px;
  }
  .d-flex.gap-sp1 {
    gap: 10px;
  }
  .d-flex.gap-sp2 {
    gap: 20px;
  }
  .d-flex.gap-sp3 {
    gap: 30px;
  }
  .d-flex.gap-sp4 {
    gap: 40px;
  }
  .d-flex.gap-sp5 {
    gap: 50px;
  }
  .d-flex.gap-sp6 {
    gap: 60px;
  }
  .d-flex.gap-sp7 {
    gap: 70px;
  }
  .d-flex.gap-sp8 {
    gap: 80px;
  }
  .d-flex.gap-sp9 {
    gap: 90px;
  }
  .d-flex.gap-sp10 {
    gap: 100px;
  }
}

.order0 {
  order: 0;
}

.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

.order3 {
  order: 3;
}

.order4 {
  order: 4;
}

.order5 {
  order: 5;
}

.font-family--title {
  font-family: "abolition", sans-serif;
}

.font-size--small {
  font-size: var(--f-SS);
}
.font-size--large {
  font-size: var(--f-L);
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 800px) {
  .tab-tac {
    text-align: center;
  }
  .tab-tal {
    text-align: left;
  }
  .tab-tar {
    text-align: right;
  }
}
@media screen and (max-width: 500px) {
  .sp-tac {
    text-align: center;
  }
  .sp-tal {
    text-align: left;
  }
  .sp-tar {
    text-align: right;
  }
}
@media screen and (min-width: 800px) {
  .pcnon {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .tabnon {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .spnon {
    display: none !important;
  }
}
.update {
  display: inline-block;
  padding: 5px 10px;
  line-height: 1;
  background: #a80000;
  color: #FFF;
  vertical-align: middle;
  margin-bottom: 3px;
  font-size: 1.2rem;
}

.mask {
  clip-path: url(#svgPath);
}

.red {
  color: #f20000;
}

.red-dark {
  color: #a80000;
}

dl.separate {
  display: flex;
  flex-wrap: wrap;
}
dl.separate dt {
  margin-bottom: 5px;
  padding-bottom: 5px;
  line-height: 1.5;
}
dl.separate dd {
  line-height: 1.5;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
dl.separate.dt5 dt {
  width: 5%;
}
dl.separate.dt5 dd {
  width: 95%;
  padding-left: 15px;
}
dl.separate.dt10 dt {
  width: 10%;
}
dl.separate.dt10 dd {
  width: 90%;
  padding-left: 15px;
}
dl.separate.dt15 dt {
  width: 15%;
}
dl.separate.dt15 dd {
  width: 85%;
  padding-left: 15px;
}
dl.separate.dt20 dt {
  width: 20%;
}
dl.separate.dt20 dd {
  width: 80%;
  padding-left: 15px;
}
dl.separate.dt25 dt {
  width: 25%;
}
dl.separate.dt25 dd {
  width: 75%;
  padding-left: 15px;
}
dl.separate.dt30 dt {
  width: 30%;
}
dl.separate.dt30 dd {
  width: 70%;
  padding-left: 15px;
}
dl.separate.dt35 dt {
  width: 35%;
}
dl.separate.dt35 dd {
  width: 65%;
  padding-left: 15px;
}
dl.separate.dt40 dt {
  width: 40%;
}
dl.separate.dt40 dd {
  width: 60%;
  padding-left: 15px;
}
dl.separate.dt45 dt {
  width: 45%;
}
dl.separate.dt45 dd {
  width: 55%;
  padding-left: 15px;
}
dl.separate.dt50 dt {
  width: 50%;
}
dl.separate.dt50 dd {
  width: 50%;
  padding-left: 15px;
}
@media screen and (max-width: 800px) {
  dl.separate.dt-md5 dt {
    width: 5%;
  }
  dl.separate.dt-md5 dd {
    width: 95%;
    padding-left: 15px;
  }
  dl.separate.dt-md10 dt {
    width: 10%;
  }
  dl.separate.dt-md10 dd {
    width: 90%;
    padding-left: 15px;
  }
  dl.separate.dt-md15 dt {
    width: 15%;
  }
  dl.separate.dt-md15 dd {
    width: 85%;
    padding-left: 15px;
  }
  dl.separate.dt-md20 dt {
    width: 20%;
  }
  dl.separate.dt-md20 dd {
    width: 80%;
    padding-left: 15px;
  }
  dl.separate.dt-md25 dt {
    width: 25%;
  }
  dl.separate.dt-md25 dd {
    width: 75%;
    padding-left: 15px;
  }
  dl.separate.dt-md30 dt {
    width: 30%;
  }
  dl.separate.dt-md30 dd {
    width: 70%;
    padding-left: 15px;
  }
  dl.separate.dt-md35 dt {
    width: 35%;
  }
  dl.separate.dt-md35 dd {
    width: 65%;
    padding-left: 15px;
  }
  dl.separate.dt-md40 dt {
    width: 40%;
  }
  dl.separate.dt-md40 dd {
    width: 60%;
    padding-left: 15px;
  }
  dl.separate.dt-md45 dt {
    width: 45%;
  }
  dl.separate.dt-md45 dd {
    width: 55%;
    padding-left: 15px;
  }
  dl.separate.dt-md50 dt {
    width: 50%;
  }
  dl.separate.dt-md50 dd {
    width: 50%;
    padding-left: 15px;
  }
  dl.separate.dt-md100 dt {
    width: 100% !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  dl.separate.dt-md100 dd {
    width: 100% !important;
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 500px) {
  dl.separate.dt-xs5 dt {
    width: 5%;
  }
  dl.separate.dt-xs5 dd {
    width: 95%;
    padding-left: 15px;
  }
  dl.separate.dt-xs10 dt {
    width: 10%;
  }
  dl.separate.dt-xs10 dd {
    width: 90%;
    padding-left: 15px;
  }
  dl.separate.dt-xs15 dt {
    width: 15%;
  }
  dl.separate.dt-xs15 dd {
    width: 85%;
    padding-left: 15px;
  }
  dl.separate.dt-xs20 dt {
    width: 20%;
  }
  dl.separate.dt-xs20 dd {
    width: 80%;
    padding-left: 15px;
  }
  dl.separate.dt-xs25 dt {
    width: 25%;
  }
  dl.separate.dt-xs25 dd {
    width: 75%;
    padding-left: 15px;
  }
  dl.separate.dt-xs30 dt {
    width: 30%;
  }
  dl.separate.dt-xs30 dd {
    width: 70%;
    padding-left: 15px;
  }
  dl.separate.dt-xs35 dt {
    width: 35%;
  }
  dl.separate.dt-xs35 dd {
    width: 65%;
    padding-left: 15px;
  }
  dl.separate.dt-xs40 dt {
    width: 40%;
  }
  dl.separate.dt-xs40 dd {
    width: 60%;
    padding-left: 15px;
  }
  dl.separate.dt-xs45 dt {
    width: 45%;
  }
  dl.separate.dt-xs45 dd {
    width: 55%;
    padding-left: 15px;
  }
  dl.separate.dt-xs50 dt {
    width: 50%;
  }
  dl.separate.dt-xs50 dd {
    width: 50%;
    padding-left: 15px;
  }
  dl.separate.dt-sp100 dt {
    width: 100% !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  dl.separate.dt-sp100 dd {
    width: 100% !important;
    padding-left: 0 !important;
  }
}
dl.separate.indent dt {
  padding-left: 1.6rem;
  text-indent: -1.6rem;
}
dl.separate.indent dd {
  padding-left: 1.5rem !important;
}
dl.separate.decoten dt {
  position: relative;
}
dl.separate.decoten dt:after {
  position: absolute;
  content: ":";
  top: 0;
  right: 0;
}
@media screen and (max-width: 800px) {
  dl.separate.decoten dt:after {
    display: none;
  }
}
dl.separate.decoten.dotline dt, dl.separate.decoten.dotline dd {
  border-bottom: dotted 1px #999;
}
dl.separate.decoten.dotline dt.nobb, dl.separate.decoten.dotline dd.nobb {
  border-bottom: none !important;
}
@media screen and (max-width: 800px) {
  dl.separate.decoten.dotline dt {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  dl.separate.decoten.dotline dd {
    margin-top: 0;
  }
}
dl.separate.list_dot_line dt, dl.separate.list_dot_line dd {
  border-bottom: dotted 1px #999;
}
dl.separate.list_dot_line dt.nobb, dl.separate.list_dot_line dd.nobb {
  border-bottom: none !important;
}

.solid_line {
  border-bottom: solid 1px #999;
}
.solid_line.blk {
  border-bottom: solid 1px #000;
}

.dot_line {
  border-bottom: dotted 1px #999;
}

.title--section {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  font-size: var(--f-Title);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 8rem;
  line-height: 1;
  text-shadow: #505050 -1px -1px 1px, #FFF 1px 1px 1px;
}
.title--section .sub {
  font-size: var(--f-4L);
}
.title--section.sub {
  font-size: var(--f-4L);
}
.title--section.tourtitle span {
  font-size: calc(var(--f-Title) * 0.7);
}
.title--section.vertical {
  position: absolute;
  top: 0;
  bottom: 0;
  font-size: var(--f-TitleL);
  writing-mode: vertical-rl;
  margin: auto;
}
.title--section.small {
  font-size: var(--f-2XL);
}
@media screen and (max-width: 1100px) {
  .title--section {
    font-size: var(--f-XL);
    margin-bottom: 6rem;
  }
  .title--section.tourtitle span {
    font-size: calc(var(--f-XL) * 0.7);
  }
  .title--section.small {
    font-size: var(--f-4L);
  }
  .title--section .sub {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .title--section.vertical {
    position: relative;
    top: auto;
    bottom: auto;
    font-size: var(--f-2XL);
    writing-mode: initial;
    line-height: initial;
    margin: auto;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .title--section {
    margin-bottom: 4rem;
  }
  .title--section.vertical {
    font-size: var(--f-XL);
  }
  .title--section .sub {
    font-size: 1.3rem;
  }
}
.title--lead {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-XL);
  line-height: 1.3;
  border-left: 1rem solid #FFF;
  padding-left: 1.8rem;
}
@media screen and (max-width: 1000px) {
  .title--lead {
    font-size: var(--f-4L);
    border-left: 0.5rem solid #FFF;
    padding-left: 1.2rem;
  }
}
.title--article {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-4L);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
  line-height: 1.25;
}
.title--article-lead {
  position: relative;
  font-size: var(--f-L);
  padding: 0.5rem 0;
  z-index: 1;
}
.title--article-lead::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100px;
  background-color: rgba(0, 0, 0, 0.8);
  margin: auto;
  bottom: 0;
}
.title--article-lead::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  margin: auto;
  bottom: 0;
  right: 0;
}
.title--release-lead {
  position: relative;
  font-size: var(--f-3L);
  padding: 0.5rem 0;
  text-shadow: #FFF 1px 1px 0px;
  font-weight: bold;
}
.title--release-lead .smaller {
  font-size: smaller;
}
@media screen and (max-width: 500px) {
  .title--release-lead {
    font-size: var(--f-2L);
  }
}
.title--article-sublead {
  font-size: var(--f-L);
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.title--article-sublead.larger {
  font-size: var(--f-3L);
}
.title--article-sublead.red {
  background-color: #a80000;
}
.title--sub {
  font-size: var(--f-L);
  border-bottom: solid 1px;
  font-weight: bold;
  margin-bottom: 1rem;
}
.title--tag {
  position: relative;
  padding: 5px 5px 5px 20px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.3);
}
.title--tag:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: black;
  height: 100%;
  width: 10px;
}
.title--tag--short span, .title--tag--short strong {
  display: inline-block;
  padding: 8px 15px;
  line-height: 1;
  border: solid 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.title--tag--short span.blk, .title--tag--short strong.blk {
  background-color: rgba(0, 0, 0, 0.9);
  color: #FFF;
  border: none;
}
.title--tag--waku {
  display: inline-block;
  border: solid 1px;
  padding: 8px 15px;
  background-color: rgba(255, 255, 255, 0.3);
}

.btn--circle {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  background-color: #000;
  color: #FFF;
  border-radius: 50vh;
  padding: 1rem 2rem;
  font-size: var(--f-L);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn--circle::before {
  position: absolute;
  content: "";
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  right: -3px;
  top: -3px;
  border: 1px solid #000;
  border-radius: 50vh;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}
.btn--circle::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
  display: block;
}
.btn--square.small {
  font-size: var(--f-M);
  color: #000;
}
.btn--square.small::after {
  width: 30px;
  right: -15px;
}
.btn--square.small:hover {
  filter: invert(100%);
}
.btn--square.small:hover::after {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  right: -20px;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.btn--square {
  margin-top: 1rem;
  display: inline-block;
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  background-color: #FFF;
  color: #000;
  padding: 1rem 3rem;
  font-size: var(--f-2L);
  filter: invert(100%);
}
.btn--square::after {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  position: absolute;
  content: "";
  width: 30%;
  height: 5px;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: skew(45deg);
  top: 0;
  bottom: 0;
  right: -15%;
  margin: auto;
  mix-blend-mode: difference;
}
.btn--square:hover::after {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  right: -20%;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.btn--square.txtred {
  background: none;
  color: #a80000;
}
.btn--back {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-size: var(--f-2L);
  color: #FFF;
  background-color: #000;
  padding: 1rem 3rem 1.1rem;
  border-radius: 50vh;
  border-bottom: 2px solid #FFF;
  z-index: 1;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
  opacity: 1;
}
.btn--back:disabled {
  opacity: 0.5;
}
.btn--back::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/back-btn--texture.png);
  background-position: center;
  background-size: cover;
  mix-blend-mode: hard-light;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50vh;
  z-index: -1;
}
.btn--red {
  background-color: #a80000;
  border-radius: 25vh;
  text-align: center;
  color: #FFF !important;
  padding: 1rem 3rem;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .btn--red a {
    padding: 0.5rem 1.5rem;
    font-size: var(--f-S);
  }
}

.js-modal-video, .js-modal-about {
  position: relative;
}
.js-modal-video .play-icon::before, .js-modal-about .play-icon::before {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -4px;
  left: 0;
  border-style: solid;
  border-width: 7px 0 7px 14px;
  border-color: transparent transparent transparent red;
  z-index: 2;
}
.js-modal-video .play-icon::after, .js-modal-about .play-icon::after {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  cursor: pointer;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50vh;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #FFF;
  z-index: 1;
  backdrop-filter: blur(4px);
}
.js-modal-video .thumbg, .js-modal-about .thumbg {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 56.25%;
  cursor: pointer;
}
.js-modal-video .thumbg div, .js-modal-about .thumbg div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .js-modal-video .play-icon::before, .js-modal-about .play-icon::before {
    right: -2px;
    width: 8px;
    height: 8px;
    border-width: 4px 0 4px 8px;
  }
  .js-modal-video .play-icon::after, .js-modal-about .play-icon::after {
    border: 1px solid #FFF;
    width: 40px;
    height: 40px;
  }
}

.firefox .js-modal-video .play-icon::after {
  backdrop-filter: none;
}

.firefox .js-modal-about .play-icon::after {
  backdrop-filter: none;
}

.modaal-container {
  background: #000;
  text-align: center;
}

.list-style--disc li {
  list-style-type: " • ";
}
.list-style--note li {
  list-style-type: "※";
}
.list-style--num li {
  list-style-type: decimal;
}

[class^=list-style] li {
  margin-bottom: 0.25rem;
  margin-left: 1rem;
  padding-left: 0.25rem;
}
@media screen and (max-width: 800px) {
  [class^=list-style] li {
    margin-left: 0.5rem;
    padding-left: 0.5rem;
  }
}

.bbdot li {
  border-bottom: dotted 1px #999;
}

.bbsolid li {
  border-bottom: solid 1px #999;
}

.spcL li {
  padding-top: 5px;
  margin-bottom: 5px;
}

.accordion__title {
  position: relative;
  display: inline-block;
  background-color: #FFF;
  color: #000;
  padding: 0.5rem 2rem 0.5rem 1rem;
  border-radius: 3px;
  cursor: pointer;
}
.accordion__title::before, .accordion__title::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 0.75em;
  background-color: #000;
  transition: all 0.3s;
  margin: auto;
}
.accordion__title::after {
  transform: rotate(90deg);
}
.accordion__title.active::before {
  transform: rotate(45deg) !important;
}
.accordion__title.active::after {
  transform: rotate(135deg) !important;
}
.accordion__content {
  padding: 0.5rem;
}

#slick-message {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: calc(740px + 40vw);
  margin: auto;
}
#slick-message .slick-slide {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  margin: 0;
}
#slick-message .slick-slide:not(.slick-center) {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  transform: scale(0.8);
}
#slick-message .slick-slide:not(.slick-center) .title {
  font-size: var(--f-L);
}
#slick-message .slick-slide:has(+ .slick-current) {
  -webkit-mask-image: -webkit-linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
          mask-image: -webkit-linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
}
#slick-message .slick-current {
  cursor: pointer;
}
#slick-message .slick-current + .slick-slide {
  -webkit-mask-image: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
          mask-image: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
}
#slick-message .title {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-L);
}
#slick-message .slide-arrow {
  top: 50% !important;
  transform: translate(0, -50%);
  z-index: 0 !important;
}
@media screen and (max-width: 800px) {
  #slick-message .slick-list {
    overflow: visible;
  }
  #slick-message .slick-slide:not(.slick-center) {
    -moz-filter: opacity(0.5);
    -o-filter: opacity(0.5);
    -ms-filter: opacity(0.5);
    filter: opacity(0.5);
    transition: 0.2s ease;
  }
  #slick-message .slick-slide:not(.slick-center) .title {
    display: none;
  }
  #slick-message .thumbg {
    transform: scale(0.9);
  }
  #slick-message .slick-current .thumbg {
    transition: 0.5s;
    transform: scale(1);
  }
}

#slick-movie, #slick-about {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  position: relative;
  overflow: hidden;
}
#slick-movie .slick-slide, #slick-about .slick-slide {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  margin: 0;
}
#slick-movie .slick-slide:not(.slick-active), #slick-about .slick-slide:not(.slick-active) {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  transform: scale(0.8);
  opacity: 0.5;
}
#slick-movie .slick-slide:not(.slick-active) .title, #slick-about .slick-slide:not(.slick-active) .title {
  font-size: var(--f-L);
}
#slick-movie .slick-current, #slick-about .slick-current {
  cursor: pointer;
}
#slick-movie .title, #slick-about .title {
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-3L);
  margin-top: 10px;
  padding-left: 15px;
  border-left: solid 5px;
  filter: drop-shadow(0 1px 0 #FFF);
}
#slick-movie .title span, #slick-about .title span {
  font-size: 1rem;
  display: inline-block;
  padding: 5px 10px;
  background: #000;
  color: #FFF;
  width: auto;
  margin-top: 5px;
}
@media screen and (max-width: 800px) {
  #slick-movie .slick-list, #slick-about .slick-list {
    overflow: visible;
  }
  #slick-movie .slick-slide:not(.slick-center), #slick-about .slick-slide:not(.slick-center) {
    -moz-filter: opacity(0.5);
    -o-filter: opacity(0.5);
    -ms-filter: opacity(0.5);
    filter: opacity(0.5);
    transition: 0.2s ease;
  }
  #slick-movie .slick-slide:not(.slick-center) .title, #slick-about .slick-slide:not(.slick-center) .title {
    display: none;
  }
  #slick-movie .thumbg, #slick-about .thumbg {
    transform: scale(0.9);
  }
  #slick-movie .slick-current .thumbg, #slick-about .slick-current .thumbg {
    transition: 0.5s;
    transform: scale(1);
  }
}

/*slick setting*/
.slide-dots {
  text-align: right;
}
.slide-dots li {
  display: inline-block;
  margin: 0 15px;
  color: #FFF;
}
.slide-dots li button {
  position: relative;
  text-indent: -9999px;
}
.slide-dots li button:before {
  position: absolute;
  content: "";
  opacity: 0.3;
  top: -20px;
  left: 10px;
  width: 7px;
  height: 7px;
  background-color: #FFF;
}
.slide-dots li.slick-active button:before {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  opacity: 1;
}

.slide-arrow {
  transition: 1s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 10;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transform: translate(0, -50%);
}
.slide-arrow::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
}
.slide-arrow.next-arrow, .slide-arrow.prev-arrow {
  transform: rotate(45deg);
}
.slide-arrow.prev-arrow {
  left: calc(15vw + 30px);
  border-bottom: 5px solid #000;
  border-left: 5px solid #000;
}
.slide-arrow.next-arrow {
  right: calc(15vw + 30px);
  border-top: 5px solid #000;
  border-right: 5px solid #000;
}

.slide-num {
  font-size: 0.8rem;
}
.slide-num .allcnt, .slide-num .nowcnt {
  font-size: 1.2rem;
}

@media screen and (max-width: 1000px) {
  #slick-movie .title {
    font-size: var(--f-L);
  }
  .slide-arrow {
    top: 20vw;
    width: 20px;
    height: 20px;
  }
  .slide-arrow.next-arrow {
    right: 5%;
    border-top: 2.5px solid #000;
    border-right: 2.5px solid #000;
  }
  .slide-arrow.prev-arrow {
    left: 5%;
    border-bottom: 2.5px solid #000;
    border-left: 2.5px solid #000;
  }
}
.textbox {
  position: relative;
  padding: 3rem 5rem;
  line-height: 2;
}
.textbox__title {
  position: relative;
  font-family: "roma", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", HiraginoCustom, "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--f-4L);
  z-index: 1;
  margin-bottom: 1rem;
  text-shadow: #b8b8b8 -1px -1px 1px, #FFF 1px 1px 1px;
}
.textbox::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
  z-index: 0;
  border: 1px solid #B4862F;
}

.news_table table {
  margin-bottom: 20px;
}

table.border th, table.border td {
  border-bottom: solid 1px #999;
  padding: 10px;
}
table.table {
  border-collapse: collapse !important;
  border: 1px solid #666666;
  color: #000000;
  width: 100%;
}
table.table td {
  line-height: 120%;
  border: 1px solid #999;
  background: #FFFFFF;
  padding: 10px;
}
table.table th {
  background: #2A2A2A !important;
  color: #FFFFFF;
  line-height: 150%;
  padding: 10px;
  text-align: left;
  border: 1px solid #999;
  font-weight: 600;
}
table.decoten td {
  position: relative;
}
table.decoten td::before {
  position: absolute;
  content: "：";
  top: 10px;
  left: -10px;
}/*# sourceMappingURL=style.css.map */