@charset "UTF-8";
/* ====================================
    base
===================================== */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, section, article, figure, ul, ol, li, h1, h2, h3, p, span, a, div {
  margin: 0;
  padding: 0;
}

body {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  color: #2B2B2B;
  background-color: #FBFBFB;
  letter-spacing: 0.05em;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  min-height: 100vh;
}

li {
  list-style: none;
}

a {
  color: #2B2B2B;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

.footer_fixed {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* ====================================
    layout
===================================== */
.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-left: 200px;
  position: relative;
}

.container2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.fullPageScroll {
  width: 100%;
  height: 100vh;
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
  overflow-y: auto;
}

.page-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-left: 200px;
  position: relative;
}

/* ====================================
  header
===================================== */
.header {
  width: 200px;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  left: 0;
  z-index: 100;
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  padding: 56px 8px 24px;
  position: relative;
}
.header__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__logo {
  width: 110px;
  z-index: 3;
  line-height: 0;
  margin-bottom: 54px;
}
.header__logo a {
  font-size: 0;
}

/* ====================================
  gnav
===================================== */
.hamburger {
  z-index: 9999;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}
.hamburger__line {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background-color: #444444;
  width: 30px;
}
.hamburger__line--1 {
  top: 0;
}
.hamburger__line--2 {
  top: 10px;
}
.hamburger__line--3 {
  top: 20px;
}
.hamburger.active .hamburger__line--1 {
  top: 3px;
  -webkit-transform: translateY(6px) rotate(-40deg);
          transform: translateY(6px) rotate(-40deg);
}
.hamburger.active .hamburger__line--2 {
  opacity: 0;
}
.hamburger.active .hamburger__line--3 {
  top: 16px;
  -webkit-transform: translateY(-6px) rotate(40deg);
          transform: translateY(-6px) rotate(40deg);
}
.hamburger__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.hamburger__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px 0;
  margin-bottom: 40px;
}
.hamburger__item a {
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #444444;
}
.hamburger__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px 20px;
  width: 160px;
}
.hamburger__icon a i {
  font-size: 18px;
}

.circle-bg {
  position: fixed;
  right: -100px;
  width: 90px;
  height: 100vh;
  background-color: #EDEDEC;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.circle-bg.circleactive {
  -webkit-transform: scale(70);
          transform: scale(70);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

/* ====================================
    footer
===================================== */
.footer {
  width: 100%;
  background-color: #ffffff;
  padding: 48px 0 24px;
}
.footer__inner {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__copy span {
  font-size: 14px;
  font-family: "academy-engraved-std", sans-serif;
  color: #444444;
}

/* ====================================
  MV
===================================== */
.mv {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.mv__inner {
  width: 100%;
  position: relative;
}
.mv__ttl {
  width: 100px;
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}
.mv__ttl img {
  width: 100%;
}
.mv__img {
  width: 100%;
  height: 100vh;
}
.mv__img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

/* ====================================
  News
===================================== */
.news {
  width: 100%;
  padding: 32px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.news__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1216px;
  padding-left: 16px;
  padding-right: 16px;
}
.news__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: 16px;
  background-color: #EDEDEC;
}
.news__heading {
  width: 90px;
  padding-top: 32px;
}
.news__heading--ttl {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 10px;
  font-family: "academy-engraved-std", sans-serif;
  color: #444444;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.news__body {
  width: calc(100% - 90px);
}
.news__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 16px;
}
.news__item {
  padding: 32px 8px 16px;
  border-bottom: 2px solid #ffffff;
  width: 50%;
}
.news__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.5em;
}
.news__item--img img {
  width: 100%;
  aspect-ratio: 16/11;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.news__item--info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news__item--date {
  font-size: 14px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #444444;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 16px;
}
.news__item--ttl {
  font-size: 14px;
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
}
.news__viewall {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 16px;
}
.news__viewall a {
  font-size: 12px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.news__viewall a .maru {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #444444;
  background-color: #444444;
  margin-left: 4px;
}
.news__viewall a .maru::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.news__viewall a .maru::after {
  content: "";
  width: 1px;
  height: 5px;
  background-color: #FFFFFF;
  position: absolute;
  top: 4px;
  right: 4px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/* ====================================
  Live
===================================== */
.schedule {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 32px 16px 32px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.schedule__container {
  width: 100%;
  max-width: 1240px;
  position: relative;
}
.schedule__img {
  width: 400px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  left: 72px;
  z-index: 3;
}
.schedule__inner {
  width: calc(100% - 380px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 380px;
  margin-top: 120px;
}
.schedule__heading {
  width: 100%;
  padding-left: 140px;
  margin-bottom: 16px;
}
.schedule__heading--ttl {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 10px;
  font-family: "academy-engraved-std", sans-serif;
  color: #444444;
}
.schedule__body {
  width: 100%;
  max-width: 780px;
  padding-top: 18px;
  padding-left: 140px;
  padding-right: 16px;
  background-color: #EDEDEC;
  min-height: 400px;
}
.schedule__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 16px;
}
.schedule__item {
  width: 100%;
  padding: 32px 8px 16px;
  border-bottom: 2px solid #ffffff;
}
.schedule__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.5em;
}
.schedule__item--info {
  width: 100%;
}
.schedule__item--date {
  font-size: 16px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #444444;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 16px;
}
.schedule__item--venue {
  font-size: 16px;
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 2px;
  display: inline-block;
}
.schedule__item--ttl {
  font-size: 16px;
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
}
.schedule__viewall {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 16px;
}
.schedule__viewall a {
  font-size: 12px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.schedule__viewall a .maru {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #444444;
  background-color: #444444;
  margin-left: 4px;
}
.schedule__viewall a .maru::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.schedule__viewall a .maru::after {
  content: "";
  width: 1px;
  height: 5px;
  background-color: #FFFFFF;
  position: absolute;
  top: 4px;
  right: 4px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/* ====================================
  music
===================================== */
.music {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 120px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.music__inner {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.music__heading {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.music__heading--ttl {
  font-size: max(6vw, 2em, 2rem);
  font-weight: 400;
  letter-spacing: 14px;
  font-family: "academy-engraved-std", sans-serif;
  color: #444444;
}
.music__body {
  width: 100%;
  /* スライドの動き等速 */
  /* 画像のサイズ調整 */
}
.music__body .swiper {
  width: 100%;
  margin-bottom: 16px;
}
.music__body .swiper-wrapper {
  width: 100%;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.music__body .swiper-slide img {
  width: 100%;
}
.music__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}
.music__item {
  background-color: #444444;
  width: 32%;
}
.music__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.5em;
}
.music__item--img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.music__item--date {
  font-size: 14px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #444444;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 16px;
}
.music__item--ttl {
  font-size: 14px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
}
.music__viewall {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 16px;
}
.music__viewall a {
  font-size: 12px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.music__viewall a .maru {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #444444;
  background-color: #444444;
  margin-left: 4px;
}
.music__viewall a .maru::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.music__viewall a .maru::after {
  content: "";
  width: 1px;
  height: 5px;
  background-color: #FFFFFF;
  position: absolute;
  top: 4px;
  right: 4px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/* ====================================
  pv
===================================== */
.pv {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
}
.pv video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pv__copy {
  font-size: max(2.75vw, 2em, 2rem);
  letter-spacing: 12px;
  line-height: 2em;
  font-family: "academy-engraved-std", sans-serif;
  color: #dedede;
  text-align: center;
  position: absolute;
  top: 120px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

/* ====================================
  video
===================================== */
.movie {
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 80px 0;
}
.movie__inner {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
.movie__heading {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.movie__heading--ttl {
  font-size: max(4.25vw, 2em, 2rem);
  font-weight: 400;
  letter-spacing: 14px;
  font-family: "academy-engraved-std", sans-serif;
  color: #444444;
}
.movie__body {
  width: 100%;
}
.movie__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  margin-bottom: 16px;
}
.movie__item {
  background-color: #444444;
  width: 33.33%;
}
.movie__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.5em;
}
.movie__item--img img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.movie__item--date {
  font-size: 14px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #444444;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 16px;
}
.movie__item--ttl {
  font-size: 14px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
}
.movie__viewall {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 16px;
}
.movie__viewall a {
  font-size: 12px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.movie__viewall a .maru {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #444444;
  background-color: #444444;
  margin-left: 4px;
}
.movie__viewall a .maru::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.movie__viewall a .maru::after {
  content: "";
  width: 1px;
  height: 5px;
  background-color: #FFFFFF;
  position: absolute;
  top: 4px;
  right: 4px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/* ====================================
  profile
===================================== */
.profile {
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 32px 0 32px;
}
.profile__column {
  width: 100%;
  max-width: 1240px;
  position: relative;
}
.profile__img {
  width: 500px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  left: 16px;
  z-index: 3;
}
.profile__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1216px;
  padding-top: 40px;
  padding-left: 420px;
  padding-right: 16px;
}
.profile__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #EDEDEC;
}
.profile__heading {
  width: 100%;
  margin-bottom: 16px;
}
.profile__heading--ttl {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: "academy-engraved-std", sans-serif;
  color: #444444;
}
.profile__heading--member {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.5em;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  color: #444444;
}
.profile__body {
  width: 100%;
  padding-top: 18px;
  padding-left: 124px;
  padding-right: 32px;
  background-color: #EDEDEC;
  min-height: 400px;
}
.profile__txt--ja {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.5em;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  color: #444444;
  margin-bottom: 40px;
}
.profile__txt--en {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.5em;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  color: #444444;
  margin-bottom: 40px;
}

/* ====================================
  store
===================================== */
.store {
  width: 100%;
  padding: 32px 0;
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
  /* 次への矢印 */
}
.store__inner {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.store__heading {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.store__heading--ttl img {
  width: 100%;
  max-width: 480px;
}
.store__body {
  width: 100%;
  max-width: 1100px;
  position: relative;
  margin-bottom: 8px;
}
.store .swiper {
  width: 100%;
  max-width: 1100px;
}
.store .swiper-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.store .swiper-slide {
  background-color: #444444;
}
.store .swiper-slide a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.5em;
}
.store .swiper-slide a img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.store .swiper-button-prev::after,
.store .swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  width: 0;
}
.store .swiper-button-prev::after {
  border-bottom: 15px solid transparent;
  border-right: 25px solid #444444;
  border-top: 15px solid transparent;
}
.store .swiper-button-next::after {
  border-bottom: 15px solid transparent;
  border-left: 25px solid #444444;
  border-top: 15px solid transparent;
}
.store .swiper-button-prev {
  left: -32px;
}
.store .swiper-button-next {
  right: -32px;
}
.store__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}
.store__item {
  border-bottom: 2px solid #ffffff;
  background-color: #444444;
  width: 32%;
}
.store__item--date {
  font-size: 14px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #444444;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 16px;
}
.store__item--ttl {
  font-size: 14px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
}
.store__viewall {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 16px;
}
.store__viewall a {
  font-size: 12px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.store__viewall a .maru {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #444444;
  background-color: #444444;
  margin-left: 4px;
}
.store__viewall a .maru::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.store__viewall a .maru::after {
  content: "";
  width: 1px;
  height: 5px;
  background-color: #FFFFFF;
  position: absolute;
  top: 4px;
  right: 4px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.fps_last {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media screen and (max-width: 520px) {
  body {
    letter-spacing: 0.07em;
  }
  .hamburger {
    width: 24px;
    height: 14px;
  }
  .hamburger__line {
    width: 24px;
    height: 2px;
  }
  .hamburger__line--2 {
    top: 7px;
  }
  .hamburger__line--3 {
    top: 14px;
  }
  .footer__copy span {
    font-size: 12px;
  }
  .news__inner {
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 400px;
  }
  .news__heading {
    width: 40px;
  }
  .news__heading--ttl {
    font-size: 24px;
    letter-spacing: 7px;
  }
  .news__body {
    width: calc(100% - 40px);
  }
  .news__list {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news__item {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .news__item a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .news__item--img {
    width: 120px;
    padding-right: 6px;
  }
  .news__item--info {
    margin-bottom: 4px;
  }
  .news__item--date {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .schedule {
    height: auto;
    min-height: 100svh;
    padding-left: 16px;
  }
  .schedule__heading {
    padding-left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .schedule__heading--ttl {
    font-size: max(11vw, 2em, 2rem);
  }
  .schedule__body {
    padding: 16px 8px;
  }
  .schedule__item {
    padding-top: 16px;
  }
  .schedule__item--date {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .schedule__item--venue {
    font-size: 12px;
  }
  .schedule__item--ttl {
    font-size: 14px;
  }
  .music__inner {
    padding: 0;
  }
  .music__heading {
    margin-bottom: 16px;
  }
  .music__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 1.6em;
  }
  .music__item--info {
    margin-bottom: 4px;
  }
  .pv__copy {
    font-size: 28px;
  }
  .movie__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 1.6em;
  }
  .movie__item--info {
    margin-bottom: 4px;
  }
  .profile__heading--ttl {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .store .swiper-slide a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 1.6em;
  }
  .store__item {
    padding-left: 0;
    padding-right: 0;
  }
  .store__item--info {
    margin-bottom: 4px;
  }
}

@media screen and (min-width: 1025px) {
  a:hover {
    opacity: 0.4;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    padding-left: 150px;
  }
  .page-container {
    padding-left: 150px;
  }
  .header {
    width: 150px;
  }
  .header__logo {
    width: 80px;
    margin-bottom: 40px;
  }
  .mv {
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .news {
    height: 100vh;
  }
  .schedule__img {
    width: 360px;
    left: 32px;
  }
  .schedule__inner {
    width: calc(100% - 280px);
    margin-left: 280px;
  }
  .profile__img {
    width: 360px;
  }
  .profile__inner {
    padding-left: 240px;
  }
  .profile__body {
    padding-left: 154px;
  }
  .store__heading--ttl img {
    max-width: 420px;
  }
}

@media screen and (max-width: 1024px) and (max-width: 960px) {
  .container {
    padding-left: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-container {
    padding-left: 0;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header {
    width: 100%;
    height: 120px;
  }
  .header__logo {
    display: none;
  }
}

@media screen and (max-width: 1024px) and (max-width: 960px) and (max-width: 520px) {
  .header {
    height: 70px;
  }
}

@media screen and (max-width: 960px) {
  .header__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 120px;
    padding: 0 16px;
  }
  .hamburger__nav {
    display: none;
    gap: 0;
  }
  .hamburger__nav.panelactive {
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 999;
    width: 100%;
    max-width: 1680px;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow: auto;
    padding: 0 16px;
  }
  .hamburger__nav.panelactive .hamburger__list, .hamburger__nav.panelactive .hamburger__sns {
    -webkit-animation-name: gnaviAnime;
            animation-name: gnaviAnime;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    opacity: 0;
  }
  @-webkit-keyframes gnaviAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes gnaviAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .hamburger__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 48px;
    gap: 32px 0;
  }
  .hamburger__item a {
    font-size: 18px;
  }
  .hamburger__sns {
    width: auto;
  }
  .hamburger__icon a i {
    font-size: 20px;
  }
  .mv__ttl {
    width: 120px;
    top: 160px;
    bottom: 0;
  }
  .news__container {
    margin-left: 0;
  }
  .music__heading--ttl {
    font-size: max(8vw, 2em, 2rem);
  }
  .music__list {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .music__item {
    width: 50%;
  }
  .movie__inner {
    padding: 0 0 400px;
  }
  .movie__heading {
    padding-left: 16px;
    padding-right: 16px;
  }
  .movie__heading--ttl {
    font-size: max(8vw, 2em, 2rem);
  }
  .movie__item {
    width: 50%;
  }
  .movie__viewall {
    padding: 0 16px;
  }
}

@media screen and (max-width: 960px) and (max-width: 520px) {
  .header__inner {
    height: 70px;
  }
  .mv__ttl {
    width: 96px;
    top: 130px;
  }
  .news__container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .schedule__container {
    padding-bottom: 400px;
  }
  .music {
    padding: 64px 16px 32px;
    height: auto;
    min-height: 100svh;
  }
  .music__heading--ttl {
    font-size: max(11vw, 2em, 2rem);
    letter-spacing: 10px;
  }
  .music__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .music__item {
    width: 100%;
  }
  .pv {
    height: auto;
    min-height: 100svh;
  }
  .pv video {
    height: auto;
    min-height: 100svh;
  }
  .movie {
    height: auto;
    min-height: 100svh;
    padding: 64px 0 104px;
  }
  .movie__heading {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 16px;
  }
  .movie__heading--ttl {
    font-size: max(11vw, 2em, 2rem);
    letter-spacing: 10px;
  }
  .profile {
    padding: 32px 16px;
    height: auto;
    min-height: 100svh;
  }
  .profile__img img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .fps_last {
    padding: 32px 16px;
    height: auto;
    min-height: 100svh;
  }
}

@media screen and (min-width: 961px) {
  .hamburger {
    display: none;
  }
  .music__item--none {
    display: none;
  }
  .movie__item--none {
    display: none;
  }
}

@media screen and (max-width: 1024px) and (max-width: 520px) {
  .mv {
    height: auto;
    min-height: 100svh;
  }
  .news {
    height: auto;
    min-height: 100svh;
  }
  .schedule__img {
    position: static;
    width: 100%;
  }
  .schedule__inner {
    width: 100%;
    margin: 0;
    padding-top: 24px;
  }
  .profile__img {
    position: static;
    width: 100%;
  }
  .profile__inner {
    padding: 40px 0 400px;
  }
  .profile__body {
    padding: 40px 32px 0;
  }
}
/*# sourceMappingURL=front-page.css.map */
/*# sourceMappingURL=front-page.css.map */