@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a:focus {
  outline: none !important;
}

ul, li {
  list-style: none;
}

img {
  max-width: 100%;
}

html, body {
  height: auto;
}

:root {
  --bar-color: #000;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", kozuka-gothic-pr6n, Arial, "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  letter-spacing: -0.2px;
  color: #fff;
  background: #000;
}

body.bars--white {
  --bar-color: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 5000;
}

.site-header .inner {
  position: relative;
}

.site-header .hamburger {
  --size: 50px;
  position: relative;
  width: var(--size);
  height: calc(var(--size) - 6px);
  display: inline-grid;
  align-content: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
}

.site-header .hamburger .bar {
  display: block;
  height: 4px;
  width: 100%;
  background: #000;
  border-radius: 0px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
  transform-origin: 50% 50%;
}

/* === ハンバーガー色のテーマ切替 === */
.site-header .hamburger .bar {
  background: var(--bar-color);
  transition: background 0.2s ease, transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
}

.site-header .hamburger.is-open .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.site-header .hamburger.is-open .bar:nth-child(2) {
  opacity: 0;
}

.site-header .hamburger.is-open .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.site-header .hamburger.hamburger--edge {
  position: fixed;
  top: 14px;
  right: calc(26px + env(safe-area-inset-right));
  z-index: 2001;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* 全画面ドロワー */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
}

.nav-drawer.is-open {
  display: block;
}

.nav-drawer__overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
}

.nav-drawer__panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.nav-drawer__list li:nth-child(1) img {
  position: relative;
  left: 3%;
  width: 53%;
}
.nav-drawer__list li:last-child {
  margin-top: 20px;
}
.nav-drawer__list li:last-child img {
  position: relative;
  left: 3%;
  width: 17%;
}

.nav-drawer__list a {
  pointer-events: auto;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: clamp(18px, 6vw, 34px);
  font-family: "Helvetica Neue", Arial, sans-serif;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-drawer__list a img {
  width: 50%;
}

.nav-drawer__overlay {
  z-index: 0;
}

.nav-drawer__panel {
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open {
  --bar-color: #fff;
}

.top-wrapper {
  background: #FCE98A;
}

#top {
  position: relative;
  background: #FCE98A;
  min-height: 100svh;
}
#top h1 {
  padding: 8px 0 0;
  text-align: center;
}
#top h1 img {
  width: 15%;
}
#top .sp-main {
  width: 100%;
}
#top .tit {
  text-align: center;
  margin-top: 20px;
}
#top .tit img {
  width: 88%;
}
#top .bnr-live {
  display: none;
}

.section {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 96px 18px 56px;
  min-height: 100svh;
  padding-top: 55px;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: var(--bg);
  transform-origin: center center;
  will-change: transform, background-image;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, var(--y, 0%), 0) scale(var(--scale, 1));
  contain: paint;
}
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, var(--overlay, 0.35));
  pointer-events: none;
}
.section h2 {
  text-align: center;
}
.section h2 img {
  width: 70%;
}

.content {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  margin-inline: auto;
}

@supports (-webkit-touch-callout: none) {
  #release::before {
    transform: translate3d(0, var(--y, 0%), 0) scale(var(--scale-ios, var(--scale, 1)));
    transform-origin: center top;
  }
}
#hero {
  padding-top: 0;
}
#hero .hero-content {
  margin-top: 30px;
}
#hero p {
  text-align: center;
  line-height: 1.85;
  font-weight: 700;
  font-size: 16px;
  font-size: 4.2666666667vw;
  color: #474747;
}

#hero::before {
  background-repeat: no-repeat;
  background-size: 220% auto;
  background-position: 30% 50%;
}

#hero::after {
  background: rgba(0, 0, 0, 0);
}

#release {
  padding: 90px 16px 90px;
  background-position: center top;
}
#release .release-content {
  border: 5px solid #000;
  border-radius: 20px;
  background: rgba(182, 131, 4, 0.65);
}
#release .release-content__tit {
  padding: 5% 6% 5% 6%;
  /* padding-left: 12%; */
  background: rgba(0, 0, 0, 0.5);
}
#release .release-content__tit h3 {
  width: 90%;
  margin: 0 auto;
}
#release .release-content__tit .release-content__date {
  width: 90%;
  margin: 5px auto 0;
}
#release .release-content__jk {
  margin-top: 20px;
  text-align: center;
}
#release .release-content__jk img {
  width: 78%;
}
#release .release-content__box {
  border-radius: 20px;
  padding: 1px;
  border: double 3px #fff;
  width: 90%;
  margin: 20px auto;
}
#release .release-content__box.release-content__box--tracklist {
  border-color: #474747;
}
#release .release-content__box.release-content__box--tracklist .release-content__box__head {
  padding: 10px 0;
  background: #474747;
  text-align: center;
}
#release .release-content__box.release-content__box--tracklist .release-content__box__head .release-content__box__discname {
  color: #fff;
}
#release .release-content__box.release-content__box--tracklist .bd-tracklist_tit {
  margin-top: 20px;
  text-align: center;
}
#release .release-content__box.release-content__box--tracklist .bd-tracklist_tit img {
  width: 94%;
}
#release .release-content__box.release-content__box--tracklist .bd-tracklist {
  display: block;
  padding: 20px;
}
#release .release-content__box.release-content__box--tracklist .bd-tracklist ul li {
  height: 1.65rem;
  font-size: 15px;
  font-size: 4vw;
  font-weight: bold;
}
#release .release-content__box.release-content__box--tokuten .release-content__box__head {
  position: relative;
  padding: 10px 0;
  background: #bbd0ff;
  text-align: center;
}
#release .release-content__box.release-content__box--tokuten .release-content__box__head .release-content__box__price {
  text-align: center;
  background: transparent;
  position: absolute;
  left: -14%;
  width: 45%;
  top: -42%;
  transform: rotate(-11deg);
}
#release .release-content__box.release-content__box--tokuten .release-content__box__head .release-content__box__price img {
  width: 100%;
  background: rgba(255, 255, 255, 0.55);
}
#release .release-content__box.release-content__box--tokuten .box--tokuten_txt {
  padding: 10px 20px;
  font-size: 13px;
  font-size: 3.4666666667vw;
  color: #fff;
  font-weight: bold;
}
#release .release-content__box.release-content__box--tokuten .box--tokuten_txt ul li {
  margin: 10px auto;
  text-indent: -1em;
  padding-left: 1em;
}
#release .release-content__box .release-content__box__head {
  padding: 10px 0;
  background: #fff;
  text-align: center;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
}
#release .release-content__box .release-content__box__head .release-content__box__discname {
  position: relative;
  top: 2px;
  line-height: 1.2;
  text-align: center;
  color: #474747;
  font-weight: 900;
  font-size: 22px;
  font-size: 5.8666666667vw;
  letter-spacing: -0.3px;
}
#release .release-content__box .release-content__box__head .release-content__box__discname span {
  font-family: "Helvetica Neue", kozuka-gothic-pr6n, Arial, "Noto Sans JP", sans-serif;
}
#release .release-content__box .release-content__box__head .release-content__box__price {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  margin: 10px auto 0;
  background: #474747;
  color: #fff;
  padding: 4px 20px 4px;
  line-height: 1;
  font-weight: bold;
  border-radius: 20px;
  font-size: 16px;
  font-size: 4.2666666667vw;
  font-family: "Helvetica Neue", kozuka-gothic-pr6n, Arial, "Noto Sans JP", sans-serif;
}
#release .release-content__box .release-content__box__head .release-content__box__price small {
  position: relative;
  top: 0.1em;
  margin-left: 3px;
  font-size: 9px;
  font-size: 2.4vw;
}
#release .release-content__box .release-content__box__order {
  text-align: center;
  padding: 5px;
  margin-top: 5px;
}
#release .release-content__box .release-content__box__order a {
  display: inline-block;
  width: 60%;
}
#release .release-content__attention {
  padding: 5px 0;
  text-align: center;
  background: #ff6e6e;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  font-size: 4vw;
}

#release::before {
  background-position: 60% 80%;
  transform: translateY(var(--y, 0%)) scale(var(--scale, 1.12));
  transform-origin: center top;
}

#popup {
  min-height: 80svh;
}
#popup .popup-content {
  border: 5px solid #000;
  border-radius: 20px;
  background: rgba(200, 144, 3, 0.72);
  overflow: hidden;
}
#popup .popup-content__tit {
  padding: 10px 5%;
  background: rgba(0, 0, 0, 0.2);
}
#popup .popup-content__tit h3 {
  width: 100%;
}
#popup .popup-content__tit .popup-content__date {
  width: 80%;
}

#news {
  min-height: 80svh;
}
#news .news-content {
  border: none;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}
#news .news-content__list ul li {
  position: relative;
  border: solid 2px #a2eaea;
  border-radius: 10px;
  font-size: 19px;
  font-size: 5.0666666667vw;
  font-weight: bold;
  margin-bottom: 20px;
}
#news .news-content__list ul li a {
  text-decoration: none;
  padding: 5px 25px 5px 15px;
  display: block;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.71);
}
#news .news-content__list ul li .fa-caret-right {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #a2eaea;
}
#news .news-content__list h3 {
  width: 100%;
}
#news .news-content__list .popup-content__date {
  width: 80%;
}

#live .live-content {
  border: 5px solid #000;
  border-radius: 20px;
  background: rgba(182, 131, 4, 0.65);
  overflow: hidden;
}
#live .live-content__tit {
  padding: 10px 5%;
  background: rgba(0, 0, 0, 0.5);
}
#live .live-content__tit h3 {
  width: 100%;
}
#live .live-content__tit .release-content__date {
  width: 80%;
}
#live .live-content__box {
  padding: 10px;
}

.site-footer {
  position: relative;
  background: url("https://dyvx7gvcyc9io.cloudfront.net/naoto/reboot/footer.jpg?dp=i") no-repeat center center;
  background-size: cover;
  padding: 30px 10px;
  text-align: center;
  color: #fff;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.site-footer p {
  position: relative;
}
.site-footer .sns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.site-footer .sns a {
  color: #fff;
  font-size: 22px;
  font-size: 5.8666666667vw;
}
.site-footer .policy {
  margin-top: 30px;
  font-size: 10px;
  font-size: 2.6666666667vw;
  text-align: center;
}
.site-footer .policy a {
  color: #ccc;
}
.site-footer p.copy {
  margin-top: 15px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 10px;
  font-size: 2.6666666667vw;
}
.site-footer .footer-logo {
  position: relative;
  margin: 30px auto;
  text-align: center;
}
.site-footer .footer-logo img {
  width: 20%;
}

.fancybox__container {
  z-index: 10000;
}

.fancybox__backdrop {
  background: rgba(24, 24, 27, 0.88);
}

.fancybox__content {
  padding: 15px;
  /* border: solid 3px; */
  background: transparent;
}

.news-modal {
  font: inherit;
  color: #111;
  background: rgba(255, 255, 255, 0.9411764706);
  padding: 20px;
  border-radius: 12px;
  border: solid 5px #a2eaea;
}

.news-modal__head {
  margin-bottom: 12px;
}

.news-modal__title {
  font-weight: 800;
  font-size: clamp(20px, 4vw, 25px);
  margin: 0 0 6px;
  line-height: 1.4;
}

.news-modal__date {
  font-size: 14px;
  color: #666;
}

.news-modal__body .order-btn {
  display: inline-block;
  width: 80%;
  max-width: 200px;
  outline: none;
  border: none;
}

.news-modal__body p {
  font-size: clamp(14px, 2.4vw, 18px);
  line-height: 1.7;
  margin: 0 0 12px;
}

.news-modal__body ul {
  margin: 0 0 12px 1em;
}

.news-modal__closebar {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  text-align: center;
}

.news-modal__close {
  display: inline-block;
  padding: 10px 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #000000;
  color: #333;
}

.news-modal__close:active {
  transform: translateY(1px);
}

.no-sp {
  display: none;
}

.no-pc {
  display: inline;
}

@media (min-width: 900px) {
  .no-sp {
    display: inline;
  }
  .no-pc {
    display: none;
  }
  .site-header .hamburger {
    --size: 50px;
    position: relative;
    width: var(--size);
    height: calc(var(--size) - 6px);
    display: inline-grid;
    align-content: center;
    gap: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
    outline: none;
  }
  .site-header .hamburger .bar {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 0px;
    transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
    transform-origin: 50% 50%;
  }
  body.bars--white {
    --bar-color: #fff;
  }
  .site-header .hamburger.is-open .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .site-header .hamburger.is-open .bar:nth-child(2) {
    opacity: 0;
  }
  .site-header .hamburger.is-open .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .site-header .hamburger.hamburger--edge {
    position: fixed;
    top: 14px;
    right: calc(26px + env(safe-area-inset-right));
    z-index: 2001;
    pointer-events: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  /* 全画面ドロワー */
  .nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: none;
  }
  .nav-drawer.is-open {
    display: block;
  }
  .nav-drawer__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
  }
  .nav-drawer__panel {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  .nav-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }
  .nav-drawer__list li:nth-child(1) img {
    position: relative;
    left: 6%;
    width: 280px;
  }
  .nav-drawer__list li:last-child {
    margin-top: 20px;
  }
  .nav-drawer__list li:last-child img {
    position: relative;
    left: 3%;
    width: 90px;
  }
  .nav-drawer__list a {
    pointer-events: auto;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: clamp(18px, 6vw, 34px);
    font-family: "Helvetica Neue", Arial, sans-serif;
    padding: 0px 18px;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .nav-drawer__list a img {
    width: 260px;
  }
  .nav-drawer__overlay {
    z-index: 0;
  }
  .nav-drawer__panel {
    z-index: 1;
  }
  .hamburger--edge {
    top: 18px;
    right: calc(24px + env(safe-area-inset-right));
  }
  .site-header .hamburger.hamburger--edge {
    top: 18px;
    right: calc(24px + env(safe-area-inset-right));
  }
  .section {
    position: relative;
    z-index: 0;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 100px 20px 100px;
    min-height: 100svh;
  }
  .section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: var(--bg);
    transform: translate3d(0, var(--y, 0%), 0) scale(var(--scale, 1));
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: paint; /* ペイント境界を切る */
  }
  .section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, var(--overlay, 0.35));
    pointer-events: none;
  }
  .section h2 {
    text-align: center;
  }
  .section h2 img {
    width: 400px;
  }
  .content {
    position: relative;
    z-index: 2;
    width: min(100%, 1200px);
    margin-inline: auto;
  }
  #top {
    position: relative;
    background: #FCE98A;
    min-height: 100svh;
    background: url("../images/main__.jpg") no-repeat center top;
    background-size: cover;
  }
  #top h1 {
    padding: 0;
    width: 100px;
    text-align: center;
    position: absolute;
    left: 30px;
    top: 20px;
  }
  #top h1 img {
    width: 100%;
  }
  #top .sp-main {
    display: none;
  }
  #top .tit {
    position: absolute;
    text-align: center;
    margin-top: 0px;
    left: 10px;
    bottom: 20px;
    width: 420px;
  }
  #top .tit img {
    width: 88%;
  }
  #top .bnr-live {
    display: block;
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 300px;
  }
  #top .bnr-live img {
    width: 100%;
  }
  #hero {
    padding: 100px 20px 100px;
  }
  #hero p {
    text-align: center;
    line-height: 1.9;
    font-weight: 700;
    font-size: 20px;
    font-size: 1.6666666667rem;
    color: #474747;
  }
  #hero::before {
    background-size: 120% auto;
  }
  #release {
    background-position: center top;
    padding: 150px 20px;
  }
  #release .release-content {
    border: 8px solid #000;
    border-radius: 30px;
    background: rgba(182, 131, 4, 0.65);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
  }
  #release .release-content__tit {
    padding: 25px;
    padding-left: 25px;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    background: rgba(0, 0, 0, 0.5);
  }
  #release .release-content__tit h3 {
    width: 60%;
    margin-right: 40px;
    margin-left: 30px;
  }
  #release .release-content__tit .release-content__date {
    width: 80%;
  }
  #release .release-content__jk {
    margin-top: 50px;
    text-align: center;
  }
  #release .release-content__jk img {
    width: 50%;
  }
  #release .release-content__box {
    border-radius: 30px;
    padding: 1px;
    border: double 6px #fff;
    width: 94%;
    margin: 40px auto;
  }
  #release .release-content__box.release-content__box--tracklist {
    border-color: #474747;
  }
  #release .release-content__box.release-content__box--tracklist .release-content__box__head {
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    background: #474747;
    text-align: center;
  }
  #release .release-content__box.release-content__box--tracklist .release-content__box__head .release-content__box__discname {
    color: #fff;
  }
  #release .release-content__box.release-content__box--tracklist .bd-tracklist_tit {
    margin-top: 20px;
    text-align: center;
  }
  #release .release-content__box.release-content__box--tracklist .bd-tracklist_tit img {
    width: 90%;
  }
  #release .release-content__box.release-content__box--tracklist .bd-tracklist {
    padding: 20px;
    display: flex;
  }
  #release .release-content__box.release-content__box--tracklist .bd-tracklist ul {
    margin-right: 20px;
    margin-left: 40px;
  }
  #release .release-content__box.release-content__box--tracklist .bd-tracklist ul li {
    height: 2.1rem;
    font-size: 17px;
    font-size: 1.4166666667rem;
    font-weight: bold;
  }
  #release .release-content__box.release-content__box--tokuten .release-content__box__head {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 30px;
    background: #bbd0ff;
    text-align: center;
  }
  #release .release-content__box.release-content__box--tokuten .release-content__box__head .release-content__box__price {
    text-align: center;
    background: transparent;
    position: absolute;
    left: auto;
    right: 1%;
    width: 200px;
    top: -1%;
    transform: rotate(0deg);
  }
  #release .release-content__box.release-content__box--tokuten .release-content__box__head .release-content__box__price img {
    width: 100%;
  }
  #release .release-content__box.release-content__box--tokuten .box--tokuten_txt {
    padding: 10px 20px;
    font-size: 17px;
    font-size: 1.4166666667rem;
    color: #fff;
    font-weight: bold;
  }
  #release .release-content__box.release-content__box--tokuten .box--tokuten_txt ul li {
    margin: 3px auto;
    text-indent: -1em;
    padding-left: 1em;
  }
  #release .release-content__box .release-content__box__head {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 10px 30px;
    background: #fff;
    text-align: center;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
  #release .release-content__box .release-content__box__head .release-content__box__discname {
    text-align: center;
    color: #474747;
    font-size: 24px;
    font-size: 2rem;
    letter-spacing: -0.3px;
  }
  #release .release-content__box .release-content__box__head .release-content__box__discname span {
    font-family: "Helvetica Neue", kozuka-gothic-pr6n, Arial, "Noto Sans JP", sans-serif;
  }
  #release .release-content__box .release-content__box__head .release-content__box__price {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0;
    background: #474747;
    color: #fff;
    padding: 4px 20px 4px;
    line-height: 1;
    font-weight: bold;
    border-radius: 30px;
    font-size: 18px;
    font-size: 1.5rem;
    font-family: "Helvetica Neue", kozuka-gothic-pr6n, Arial, "Noto Sans JP", sans-serif;
  }
  #release .release-content__box .release-content__box__head .release-content__box__price small {
    position: relative;
    top: 0.1em;
    margin-left: 3px;
    font-size: 14px;
    font-size: 1.1666666667rem;
  }
  #release .release-content__box .release-content__box__order {
    text-align: center;
    padding: 5px;
    margin-top: 5px;
  }
  #release .release-content__box .release-content__box__order a {
    display: inline-block;
    width: 40%;
  }
  #release .release-content__attention {
    padding: 10px 0 7px;
    text-align: center;
    background: #ff6e6e;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    font-size: 1.6666666667rem;
  }
  #release::before {
    background-position: center top;
    transform: translateY(var(--y, 0%)) scale(var(--scale, 1.05));
    transform-origin: center top;
  }
  #popup {
    min-height: 60svh;
  }
  #popup .popup-content {
    border: 5px solid #000;
    border-radius: 20px;
    background: rgba(200, 144, 3, 0.72);
    overflow: hidden;
  }
  #popup .popup-content__tit {
    padding: 10px 5%;
    background: rgba(0, 0, 0, 0.2);
  }
  #popup .popup-content__tit h3 {
    width: 100%;
  }
  #popup .popup-content__tit .popup-content__date {
    width: 80%;
  }
  #news {
    min-height: 85svh;
  }
  #news .news-content {
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
  }
  #news .news-content__list ul li {
    position: relative;
    border: solid 4px #a2eaea;
    border-radius: 20px;
    font-size: 20px;
    font-size: 1.6666666667rem;
    font-weight: bold;
    margin-bottom: 30px;
  }
  #news .news-content__list ul li a {
    text-decoration: none;
    padding: 14px 30px 12px 22px;
    display: block;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.71);
  }
  #news .news-content__list ul li .fa-caret-right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #a2eaea;
  }
  #news .news-content__list h3 {
    width: 100%;
  }
  #news .news-content__list .popup-content__date {
    width: 80%;
  }
  .fancybox__content {
    padding: 15px;
    /* border: solid 3px; */
    background: transparent;
  }
  .news-modal {
    font: inherit;
    color: #111;
    background: rgba(255, 255, 255, 0.9411764706);
    padding: 50px;
    border-radius: 12px;
    border: solid 5px #a2eaea;
  }
  .news-modal__head {
    margin-bottom: 25px;
  }
  .news-modal__title {
    font-weight: 800;
    font-size: clamp(18px, 3.8vw, 30px);
    margin: 0 0 6px;
    line-height: 1.4;
  }
  .news-modal__date {
    font-size: 12px;
    color: #666;
  }
  .news-modal__body .order-btn {
    display: inline-block;
    width: 80%;
    max-width: 200px;
  }
  .news-modal__body p {
    font-size: clamp(14px, 2.4vw, 16px);
    line-height: 1.7;
    margin: 0 0 12px;
  }
  .news-modal__body ul {
    margin: 0 0 12px 1em;
  }
  .news-modal__closebar {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    text-align: center;
  }
  .news-modal__close {
    display: inline-block;
    padding: 10px 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid #000000;
    color: #333;
  }
  .news-modal__close:active {
    transform: translateY(1px);
  }
  #live .live-content {
    border: 8px solid #000;
    border-radius: 30px;
    background: rgba(182, 131, 4, 0.65);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
  }
  #live .live-content__tit {
    padding: 30px 4% 20px;
    background: rgba(0, 0, 0, 0.5);
  }
  #live .live-content__tit h3 {
    width: 100%;
  }
  #live .live-content__tit .release-content__date {
    width: 80%;
  }
  #live .live-content__box {
    padding: 30px 20px;
  }
  .site-footer {
    position: relative;
    background: url("https://dyvx7gvcyc9io.cloudfront.net/naoto/reboot/footer.jpg?dp=i") no-repeat center center;
    background-size: cover;
    padding: 50px 10px;
    text-align: center;
    color: #fff;
  }
  .site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  .site-footer p {
    position: relative;
  }
  .site-footer .sns {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
  }
  .site-footer .sns a {
    color: #fff;
    font-size: 26px;
    font-size: 2.1666666667rem;
  }
  .site-footer .policy {
    margin-top: 40px;
    font-size: 12px;
    font-size: 1rem;
    text-align: center;
  }
  .site-footer .policy a {
    color: #ccc;
  }
  .site-footer p.copy {
    margin-top: 30px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 11px;
    font-size: 0.9166666667rem;
  }
  .site-footer .footer-logo {
    position: relative;
    margin: 40px auto;
    text-align: center;
  }
  .site-footer .footer-logo img {
    width: 60px;
  }
}

/*# sourceMappingURL=main.css.map */
