@charset "UTF-8";
@font-face {
  font-family: "maruminya";
  src: url("../font/MaruMinya.woff") format("woff");
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #000;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  * {
    font-size: 1.4rem;
  }
}

html {
  font-size: 62.5%;
}

img {
  height: auto;
}

a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
a:hover {
  opacity: 0.6;
}

p {
  line-height: 160%;
  letter-spacing: 0.1em;
  color: #fff;
}

.indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.bg {
  position: fixed;
  content: "";
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-image: url(../img/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

header {
  padding: 0 24px;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  header {
    height: 48px;
    padding: 0 16px;
  }
}
header:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100vh;
  background-color: rgba(40, 9, 88, 0.6);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
header.--open:before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.logo {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .logo {
    width: 100px;
  }
}
.logo img {
  width: 100%;
}

.hbg-btn {
  width: 60px;
  height: 20px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}
.hbg-btn:hover {
  opacity: 0.6;
}
.hbg-btn span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.hbg-btn span:nth-of-type(1) {
  top: 0;
}
.hbg-btn span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hbg-btn span:nth-of-type(3) {
  bottom: 0;
}
.hbg-btn.--open span:nth-of-type(1) {
  -webkit-transform: translateY(-50%) rotate(195deg);
          transform: translateY(-50%) rotate(195deg);
  top: 50%;
}
.hbg-btn.--open span:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.hbg-btn.--open span:nth-of-type(3) {
  -webkit-transform: translateY(50%) rotate(-195deg);
          transform: translateY(50%) rotate(-195deg);
  bottom: 50%;
}

.header__nav {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  padding: 32px 0;
  height: calc(100vh - 66px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__nav.--open {
  opacity: 1;
  visibility: visible;
}
.header__nav li a {
  color: #fff;
  padding: 16px;
  display: block;
  width: 100%;
  font-size: 3.2rem;
  text-align: center;
  text-transform: uppercase;
  font-family: "maruminya", sans-serif;
}
@media screen and (max-width: 768px) {
  .header__nav li a {
    font-size: 2.6rem;
  }
}
.header__nav li.other {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.header__nav li.other a {
  padding: 0;
  display: block;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .header__nav li.other a {
    width: 32px;
  }
}
.header__nav li.other a img {
  width: 100%;
}

.fv {
  width: 100vw;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .fv {
    display: none;
  }
}
.fv img {
  width: auto;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 2px 4px 24px 8px rgba(255, 255, 255, 0.16);
          box-shadow: 2px 4px 24px 8px rgba(255, 255, 255, 0.16);
}

.sp-fv {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-fv {
    display: block;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  .sp-fv video {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 100;
    opacity: 1;
  }
  .sp-fv video.--ended {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 1.5s 0.5s ease-in;
    transition: all 1.5s 0.5s ease-in;
  }
  .sp-fv .sp-fv__img {
    position: absolute;
    width: 90%;
    height: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
    visibility: visible;
    -webkit-box-shadow: 1px 2px 12px 4px rgba(255, 255, 255, 0.16);
            box-shadow: 1px 2px 12px 4px rgba(255, 255, 255, 0.16);
  }
  .sp-fv .sp-fv__img.--ended {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1.5s 0.5s ease-in;
    transition: all 1.5s 0.5s ease-in;
  }
  .sp-fv .scroll-wrap {
    position: absolute;
    bottom: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 1000;
  }
  .sp-fv .scroll-wrap span {
    color: #fff;
    font-family: "maruminya", sans-serif;
    text-align: center;
    font-size: 1.6rem;
  }
  .sp-fv .scroll-wrap img {
    width: 24px;
    display: block;
    margin: 2px auto 0;
    animation: floating-y 0.9s ease-in-out infinite alternate-reverse;
  }
  @-webkit-keyframes floating-y {
    0% {
      -webkit-transform: translateY(-10%);
              transform: translateY(-10%);
    }
    100% {
      -webkit-transform: translateY(15%);
              transform: translateY(15%);
    }
  }
  @keyframes floating-y {
    0% {
      -webkit-transform: translateY(-10%);
              transform: translateY(-10%);
    }
    100% {
      -webkit-transform: translateY(15%);
              transform: translateY(15%);
    }
  }
}

.online-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background-color: #f5cdf3;
  padding: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 4px 4px 8px 0 rgba(255, 255, 255, 0.24);
          box-shadow: 4px 4px 8px 0 rgba(255, 255, 255, 0.24);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .online-btn {
    bottom: 24px;
    right: 16px;
  }
}
.online-btn.--hide {
  opacity: 0;
  visibility: hidden;
}
.online-btn.--close {
  opacity: 0;
  visibility: hidden;
}
.online-btn.--metaverse-venue {
  bottom: 198px;
  background-color: #c2d9ed;
}
@media screen and (max-width: 768px) {
  .online-btn.--metaverse-venue {
    right: 40px;
    bottom: 125px;
  }
}
.online-btn.--metaverse-venue .online-btn__title {
  background-color: #2e85d4;
}
.online-btn.--metaverse-venue .online-btn__inner {
  background-color: #c2d9ed;
  border-color: #2e85d4;
}
.online-btn.--metaverse-venue .online-btn__contents-title {
  color: #161f66;
}
.online-btn.--metaverse-venue .online-btn__btn-shelf .online-btn__btn-shelf__btn {
  color: #161f66;
}
.online-btn.--metaverse-venue .online-btn__btn-shelf .online-btn__btn-shelf__btn.--enter:before {
  border-color: #161f66;
}

.online-btn__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #864383;
  padding: 8px;
}
@media screen and (max-width: 768px) {
  .online-btn__title {
    padding: 6px 8px;
  }
}
.online-btn__title span {
  color: #fff;
  font-size: 1.8rem;
  font-family: "maruminya", sans-serif;
}
@media screen and (max-width: 768px) {
  .online-btn__title span {
    font-size: 1.4rem;
  }
}

.online-btn__title__close-btn {
  width: 19px;
}
@media screen and (max-width: 768px) {
  .online-btn__title__close-btn {
    width: 16px;
  }
}
.online-btn__title__close-btn img {
  width: 100%;
}

.online-btn__inner {
  padding: 16px;
  border: solid 1px #864383;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .online-btn__inner {
    padding: 8px;
    gap: 16px;
  }
}
.online-btn__inner img {
  width: 72px;
}
@media screen and (max-width: 768px) {
  .online-btn__inner img {
    width: 58px;
  }
}

.online-btn__contents-title {
  text-transform: uppercase;
  font-size: 2.8rem;
  font-family: "maruminya", sans-serif;
  color: #280958;
}
@media screen and (max-width: 768px) {
  .online-btn__contents-title {
    font-size: 2rem;
  }
}

.online-btn__btn-shelf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.online-btn__btn-shelf .online-btn__btn-shelf__btn {
  width: 76px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-family: "maruminya", sans-serif;
  color: #280958;
  background-color: #fff;
  margin-top: 12px;
  -webkit-box-shadow: inset 1px 1px 0 0 #e5e5e5, 1px 1px 0 0 #343434;
          box-shadow: inset 1px 1px 0 0 #e5e5e5, 1px 1px 0 0 #343434;
  position: relative;
}
@media screen and (max-width: 768px) {
  .online-btn__btn-shelf .online-btn__btn-shelf__btn {
    font-size: 1.2rem;
    width: 56px;
    height: 24px;
    margin-top: 8px;
  }
}
.online-btn__btn-shelf .online-btn__btn-shelf__btn.--enter:before {
  position: absolute;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: dashed 1px #280958;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.js_online-close-btn {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: help;
}
.js_online-close-btn:hover {
  opacity: 0.6;
}

.concept {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
@media screen and (max-width: 1220px) {
  .concept {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .concept {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media screen and (max-width: 768px) {
  .concept {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}
.concept:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  background: #12083a;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(18, 8, 58, 0.3)), color-stop(50%, rgba(137, 70, 133, 0.3)), to(rgba(18, 8, 58, 0.3)));
  background: linear-gradient(0deg, rgba(18, 8, 58, 0.3) 0%, rgba(137, 70, 133, 0.3) 50%, rgba(18, 8, 58, 0.3) 100%);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.movie-wrap {
  width: 320px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .movie-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 60%;
  }
}
.movie-wrap img {
  width: 100%;
  -webkit-filter: drop-shadow(8px 8px 40px rgba(255, 255, 255, 0.16));
          filter: drop-shadow(8px 8px 40px rgba(255, 255, 255, 0.16));
}
.movie-wrap video {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.concept__contents {
  width: calc(100% - 400px);
}
@media screen and (max-width: 768px) {
  .concept__contents {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

.main-heading {
  font-size: 8rem;
  color: #fff;
  font-family: "maruminya", sans-serif;
  text-transform: uppercase;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .main-heading {
    font-size: 12vw;
    margin-bottom: 24px;
  }
}
.main-heading.mb-half {
  margin-bottom: 24px;
}
.main-heading.--center {
  text-align: center;
}

.concept__text {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .concept__text {
    font-size: 1.4rem;
  }
}

.artist {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 1220px) {
  .artist {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .artist {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.artist .main-heading {
  text-transform: capitalize;
}

.artist-shelf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .artist-shelf {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
}

.artist-shelf__img {
  width: 50%;
  min-height: 624px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .artist-shelf__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    min-height: unset;
    height: 100vw;
  }
}
.artist-shelf__img img {
  position: absolute;
  -webkit-box-shadow: 2px 4px 24px 8px rgba(255, 255, 255, 0.16);
          box-shadow: 2px 4px 24px 8px rgba(255, 255, 255, 0.16);
}
@media screen and (max-width: 768px) {
  .artist-shelf__img img {
    -webkit-box-shadow: 1px 2px 12px 4px rgba(255, 255, 255, 0.16);
            box-shadow: 1px 2px 12px 4px rgba(255, 255, 255, 0.16);
  }
}
.artist-shelf__img .artist-img_01 {
  width: 300px;
  top: 0;
  left: 0;
  -webkit-box-shadow: 2px 4px 24px 8px rgba(255, 255, 255, 0.08);
          box-shadow: 2px 4px 24px 8px rgba(255, 255, 255, 0.08);
}
@media screen and (max-width: 768px) {
  .artist-shelf__img .artist-img_01 {
    width: 45vw;
    -webkit-box-shadow: 1px 2px 12px 4px rgba(255, 255, 255, 0.16);
            box-shadow: 1px 2px 12px 4px rgba(255, 255, 255, 0.16);
  }
}
.artist-shelf__img .artist-img_02 {
  width: 362px;
  bottom: 0;
  right: 0;
  -webkit-box-shadow: 2px 4px 24px 8px rgba(255, 255, 255, 0.08);
          box-shadow: 2px 4px 24px 8px rgba(255, 255, 255, 0.08);
}
@media screen and (max-width: 768px) {
  .artist-shelf__img .artist-img_02 {
    width: 55vw;
    -webkit-box-shadow: 1px 2px 12px 4px rgba(255, 255, 255, 0.16);
            box-shadow: 1px 2px 12px 4px rgba(255, 255, 255, 0.16);
  }
}

.artist-shelf__text {
  width: calc(100% - (50% + 48px));
}
@media screen and (max-width: 768px) {
  .artist-shelf__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

.artist-text {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .artist-text {
    font-size: 1.4rem;
  }
}

.schedule {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 80px 0;
  background-color: rgba(1, 165, 130, 0.3);
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1220px) {
  .schedule {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .schedule {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.schedule-table__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .schedule-table__tr {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 32px 8px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    gap: 8px;
  }
  .schedule-table__tr:last-of-type {
    border: none;
    padding-bottom: 0;
  }
}
.schedule-table__tr + .schedule-table__tr {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .schedule-table__tr + .schedule-table__tr {
    margin-top: 0;
  }
}

.delimiter {
  width: 1px;
  height: 80px;
  background-color: #a89eb5;
}
@media screen and (max-width: 768px) {
  .delimiter {
    display: none;
  }
}

.delimiter-double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
@media screen and (max-width: 768px) {
  .delimiter-double {
    display: none;
  }
}

.schedule-table__area {
  padding: 2px 0;
  width: 163px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px #fff;
}
.schedule-table__area p {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .schedule-table__area p {
    font-size: 2rem;
  }
}

.schedule-table__place {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .schedule-table__place {
    width: 100%;
    margin-top: 8px;
  }
}

.schedule-table__place__name {
  font-weight: 700;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .schedule-table__place__name {
    font-size: 1.8rem;
  }
}

.schedule-table__place__address {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .schedule-table__place__address {
    font-size: 1.4rem;
  }
}

.schedule-table__date__day,
.schedule-table__date__time {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .schedule-table__date__day,
  .schedule-table__date__time {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .schedule-table__date {
    width: 100%;
  }
}

.schedule-table__metaverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background-color: #864383;
  border-radius: 4px;
  min-width: 204px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .schedule-table__metaverse {
    margin: 8px 0 0;
    padding: 8px 24px;
  }
}
.schedule-table__metaverse span {
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
}
.schedule-table__metaverse img {
  width: 24px;
}
.schedule-table__metaverse.--disable {
  background-color: #afafaf;
  cursor: help;
}
.schedule-table__metaverse.--disable span {
  color: #808080;
}

.merch {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 1220px) {
  .merch {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .merch {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.merch-shelf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px 56px;
}
@media screen and (max-width: 768px) {
  .merch-shelf {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.merch-item {
  width: calc((100% - 56px) / 2);
}
@media screen and (max-width: 768px) {
  .merch-item {
    width: 90%;
  }
}

.merch-item__img {
  padding: 8px;
  background-color: #c4c4c4;
  -webkit-box-shadow: inset 4px 4px 0 0 #e5e5e5, 4px 4px 0 0 #343434;
          box-shadow: inset 4px 4px 0 0 #e5e5e5, 4px 4px 0 0 #343434;
  margin-bottom: 16px;
}
.merch-item__img img {
  width: 100%;
}

.merch-item__name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .merch-item__name {
    font-size: 1.6rem;
  }
}

.merch-item__ditails {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .merch-item__ditails {
    font-size: 1.6rem;
  }
}

.merch-item__price {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .merch-item__price {
    font-size: 1.6rem;
  }
}

.company {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 1220px) {
  .company {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .company {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media screen and (max-width: 768px) {
  .company {
    background: #12083a;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(18, 8, 58, 0.3)), color-stop(50%, rgba(137, 70, 133, 0.3)), to(rgba(18, 8, 58, 0.3)));
    background: linear-gradient(0deg, rgba(18, 8, 58, 0.3) 0%, rgba(137, 70, 133, 0.3) 50%, rgba(18, 8, 58, 0.3) 100%);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
}

.company-table {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .company-table {
    margin-bottom: 40px;
  }
}

.company-table__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .company-table__tr {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px;
  }
}
.company-table__tr + .company-table__tr {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .company-table__tr + .company-table__tr {
    margin-top: 16px;
  }
}

.company-table__th,
.company-table__td {
  width: calc(50% - 24px);
}
@media screen and (max-width: 768px) {
  .company-table__th,
  .company-table__td {
    width: 100%;
  }
}

.company-table__th p {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .company-table__th p {
    text-align: center;
    font-size: 1.6rem;
  }
}

.company-table__td p {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .company-table__td p {
    text-align: center;
    font-size: 1.6rem;
  }
}
.company-table__td ul {
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .company-table__td ul {
    padding: 0;
  }
}
.company-table__td li {
  position: relative;
}
.company-table__td li:before {
  position: absolute;
  content: "・";
  top: 50%;
  left: -1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .company-table__td li:before {
    display: none;
  }
}

.support-shelf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px 48px;
  width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .support-shelf {
    width: 100%;
    gap: 24px;
  }
}
.support-shelf img {
  width: 224px;
}

.footer {
  padding: 64px 80px 40px;
  background-color: #0a0118;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 48px 16px 16px;
  }
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-logo {
  width: 184px;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    width: 160px;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
    padding: 0 32px;
  }
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .footer-nav a {
    font-size: 1.2rem;
  }
}
.footer-nav a img {
  width: 24px;
}

small {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  width: 100%;
  text-align: right;
  display: block;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  small {
    font-size: 1rem;
    text-align: center;
    margin-top: 40px;
  }
}
/*# sourceMappingURL=style.css.map */