@import url("https://use.typekit.net/dzw2sos.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #000;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
}
body.looking {
  height: 100%;
  overflow: hidde;
}

a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:active, a.active {
  color: #555555;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
img.sp {
  display: none;
}

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, a, span, input, textarea {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

br.brsp {
  display: none;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
header {
  width: 100%;
  background-color: #000;
  padding: 16px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 333;
}
header h1 {
  width: 492px;
  height: 56px;
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}

.hum {
  width: 40px;
  height: 40px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999;
  transition: all 0.2s ease-in 0s;
  cursor: pointer;
}
.hum:hover {
  opacity: 0.5;
}
.hum.on > div span {
  background-color: #000;
}
.hum.on > div span:nth-child(1) {
  top: 20px;
  transform: rotate(-45deg);
}
.hum.on > div span:nth-child(2) {
  opacity: 0;
}
.hum.on > div span:nth-child(3) {
  top: 20px;
  transform: rotate(45deg);
}
.hum > div {
  width: 40px;
  height: 30px;
  position: relative;
}
.hum > div span {
  width: 100%;
  height: 2px;
  background-color: #FFF;
  display: block;
  position: absolute;
  transition: all 0.35s ease-out;
  transform-origin: center;
}
.hum > div span:nth-child(1) {
  top: 0px;
}
.hum > div span:nth-child(2) {
  top: 14px;
}
.hum > div span:nth-child(3) {
  top: 28px;
}

nav {
  width: 100%;
  height: 100%;
  max-width: 320px;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 555;
  transition: all 0.2s ease-in 0s;
  clip-path: inset(0 0 0 100%);
}
nav.on {
  clip-path: inset(0 0 0 0);
}
nav .menu {
  width: 100%;
  height: 100%;
  padding: 120px 0 0 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
nav .menu dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
nav .menu dl dd:not(:last-child) {
  margin-bottom: 24px;
}
nav .menu dl dd a {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.2s ease-in 0s;
}
nav .menu dl dd a:hover {
  color: #FF0000;
}

main {
  width: 100%;
  padding: 88px 0 0 0;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
main:not(:last-child) {
  margin-bottom: 120px;
}
main section {
  transition: all 0.5s ease-in 0.1s;
  opacity: 0;
}
main section.on {
  opacity: 1;
}
main section#visual {
  width: calc(100% - 240px);
  max-width: 1280px;
  min-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 3;
}
main section#visual:not(:last-child) {
  margin-bottom: 80px;
}
main section#visual.on .hero {
  opacity: 1;
}
main section#visual.on .title {
  opacity: 1;
}
main section#visual .hero {
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main section#visual .title {
  width: 100%;
  padding: 240px 0 160px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), #000 50%);
  position: relative;
  margin-top: -320px;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
}
main section#visual .title .mytitle {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px 0;
}
main section#visual .title .mytitle:not(:last-child) {
  margin-bottom: 0px;
}
main section#visual .title .mytitle h2 {
  width: 770px;
  height: 108px;
  background-image: url(../images/title.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: relative;
}
main section#visual .title .mytitle h3 {
  color: #FFF;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#visual .title .mytitle .sub {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 0;
}
main section#visual .title .mytitle .sub h4 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
}
main section#visual .title .mytitle .sub h4::before {
  content: "";
  width: 46px;
  height: 12px;
  background-image: url(../images/deco.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
main section#visual .title .mytitle .sub h4::after {
  content: "";
  width: 46px;
  height: 12px;
  background-image: url(../images/deco.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  transform: rotate(180deg);
}
main section#visual .title .mytitle .sub h4 span {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
main section#visual .title .mytitle .sub h5 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
main section#visual .title .buttons {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 24px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  transition: all 0.2s ease-in 0s;
}
main section#visual .title .buttons.fix {
  position: fixed;
  bottom: 40px;
  z-index: 333;
}
main section#visual .title .buttons > div {
  text-align: left;
}
main section#visual .title .buttons > div a {
  background-color: #FF0000;
  width: 100%;
  height: 120px;
  padding: 0 40px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.2s ease-in 0s;
}
main section#visual .title .buttons > div a:hover {
  background-color: #FFF;
}
main section#visual .title .buttons > div a:hover::after {
  right: 20px;
}
main section#visual .title .buttons > div a::after {
  width: 56px;
  height: 59px;
  background-image: url(../images/arrow_btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 30px);
  right: 40px;
  z-index: 1;
  transition: all 0.2s ease-in 0s;
}
main section#visual .title .buttons > div:nth-child(1) {
  width: 540px;
}
main section#visual .title .buttons > div:nth-child(1) a dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px 0;
}
main section#visual .title .buttons > div:nth-child(1) a dl dt {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
}
main section#visual .title .buttons > div:nth-child(1) a dl dd {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
main section#visual .title .buttons > div:nth-child(2) {
  width: 360px;
}
main section#visual .title .buttons > div:nth-child(2) a span {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
}
main section#topics {
  width: calc(100% - 240px);
  max-width: 1280px;
  min-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 120px;
  position: relative;
}
main section#topics:not(:last-child) {
  margin-bottom: 80px;
}
main section#topics.open .text dl:nth-child(n+4) {
  display: flex;
}
main section#topics.open .btn::before {
  content: "CLOSE";
  color: #000;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  display: inline-block;
}
main section#topics.open .btn::after {
  transform: rotate(180deg);
}
main section#topics.open .btn span {
  display: none;
}
main section#topics h3 {
  color: #FFF;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 12rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  text-align: left;
}
main section#topics .text {
  text-align: left;
  padding: 1rem 72px 1rem 0;
  padding-right: 0px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px 0;
}
main section#topics .text dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 24px;
}
main section#topics .text dl:nth-child(n+4) {
  display: none;
}
main section#topics .text dl dt {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0em;
}
main section#topics .text dl dd {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
main section#topics .text dl dd a {
  color: #FFF;
}
main section#topics .text dl dd a:hover {
  color: #FF0000;
}
main section#topics .text dl dd span {
  color: #FFF;
}
main section#topics .text dl dd span:hover {
  color: #FF0000;
}
main section#topics .btn {
  width: 72px;
  height: 72px;
  background-color: #FFF;
  border-radius: 40px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1rem;
  right: 0px;
  cursor: pointer;
  transition: all 0.2s ease-in 0s;
}
main section#topics .btn:hover {
  background-color: #FF0000;
}
main section#topics .btn::after {
  width: 15px;
  height: 13px;
  background-image: url(../images/arrow_down.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: calc(100% - 13px - 8px);
  left: calc(50% - 7px);
  transition: all 0.2s ease-in 0s;
}
main section#topics .btn span {
  color: #000;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#lead {
  width: calc(100% - 240px);
  max-width: 1280px;
  min-width: 1024px;
  padding: 80px 0 0 0;
  border-top: solid 2px #FFF;
  margin: 0 auto;
}
main section#lead:not(:last-child) {
  margin-bottom: 80px;
}
main section#lead .inner {
  text-align: left;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px 0;
}
main section#lead .inner h5 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4em;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
}
main section#lead .inner p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0em;
}
main section#track {
  width: 100%;
  padding: 80px 0 0 0;
  position: relative;
}
main section#track:not(:last-child) {
  margin-bottom: 80px;
}
main section#track::before {
  content: "";
  width: 100vw;
  height: 480px;
  background-image: linear-gradient(#212121, rgba(0, 0, 0, 0));
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
}
main section#track .inner {
  text-align: left;
  width: calc(100% - 240px);
  max-width: 1280px;
  min-width: 1024px;
  margin: 0 auto;
  gap: 24px 0;
  position: relative;
  z-index: 1;
}
main section#track .inner .title {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main section#track .inner .title:not(:last-child) {
  margin-bottom: 40px;
}
main section#track .inner .title h3 {
  color: #FFF;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 12em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#track .inner .title h4 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#track .inner .title h4:not(:last-child) {
  margin-bottom: 16px;
}
main section#track .inner .title p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
main section#track .inner .list {
  width: 100%;
}
main section#track .inner .list:not(:last-child) {
  margin-bottom: 40px;
}
main section#track .inner .list h5 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  padding: 16px 0;
  border-top: solid 2px #FFF;
  border-bottom: solid 2px #FFF;
}
main section#track .inner .list ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
}
main section#track .inner .list ul li {
  text-align: left;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
main section#track .inner .list ul li:nth-child(odd) > div {
  background-color: #212121;
}
main section#track .inner .list ul li:nth-child(odd) > a {
  background-color: #212121;
}
main section#track .inner .list ul li > div,
main section#track .inner .list ul li > a {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 16px;
  padding: 16px 8px;
}
main section#track .inner .list ul li > div span:nth-child(1),
main section#track .inner .list ul li > a span:nth-child(1) {
  color: #000;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  width: 40px;
  height: 40px;
  background-color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
}
main section#track .inner .list ul li > div span:nth-child(2),
main section#track .inner .list ul li > a span:nth-child(2) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
main section#track .inner .list ul li > a {
  transition: all 0.2s ease-in 0s;
}
main section#track .inner .list ul li > a:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
main section#track .inner .list ul li > a span:nth-child(2) {
  text-decoration: underline;
}
main section#track .inner .list ul li > a p {
  color: #FFF;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  margin-left: auto;
  background-color: #FF0000;
  padding: 8px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
}
main section#track .inner .list ul li > a p::after {
  width: 22px;
  height: 20px;
  background-image: url(../images/icon_streaming.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
main section#track .inner .btn {
  width: 400px;
  margin: 0 auto;
}
main section#track .inner .btn a {
  background-color: #FF0000;
  width: 100%;
  height: 102px;
  padding: 0 40px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.2s ease-in 0s;
}
main section#track .inner .btn a:hover {
  background-color: #FFF;
}
main section#track .inner .btn a:hover::after {
  right: 10px;
}
main section#track .inner .btn a::after {
  width: 40px;
  height: 42px;
  background-image: url(../images/arrow_btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 21px);
  right: 20px;
  z-index: 1;
  transition: all 0.2s ease-in 0s;
}
main section#track .inner .btn a span {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
}
main section#product {
  width: 100%;
  padding: 80px 0 0 0;
  position: relative;
}
main section#product:not(:last-child) {
  margin-bottom: 80px;
}
main section#product::before {
  content: "";
  width: 100vw;
  height: 480px;
  background-image: linear-gradient(#212121, rgba(0, 0, 0, 0));
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
}
main section#product .inner {
  text-align: left;
  width: calc(100% - 240px);
  max-width: 1280px;
  min-width: 1024px;
  margin: 0 auto;
  gap: 24px 0;
  position: relative;
  z-index: 1;
}
main section#product .inner .title {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main section#product .inner .title:not(:last-child) {
  margin-bottom: 40px;
}
main section#product .inner .title h3 {
  color: #FFF;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 12em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#product .inner .title h4 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#product .inner .title h4:not(:last-child) {
  margin-bottom: 16px;
}
main section#product .inner .title p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
main section#product .inner .product {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main section#product .inner .product:not(:last-child) {
  margin-bottom: 80px;
}
main section#product .inner .product:nth-child(2) .pt {
  margin-bottom: 16px;
}
main section#product .inner .product .pt {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 32px;
}
main section#product .inner .product .pt h4 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#product .inner .product .pt h4:not(:last-child) {
  margin-bottom: 24px;
}
main section#product .inner .product .pt h5 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 24px;
  margin-bottom: 16px;
}
main section#product .inner .product .pt h5 span:nth-child(1) {
  color: #FF0000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  padding: 8px 16px;
  border: solid 2px #FF0000;
}
main section#product .inner .product .pt h5 span:nth-child(2) {
  color: #FF0000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.6em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
main section#product .inner .product .pt p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  text-align: center;
}
main section#product .inner .product .image {
  width: 480px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px 0;
  margin-bottom: 32px;
}
main section#product .inner .product .image figure {
  width: 100%;
}
main section#product .inner .product .image p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0em;
}
main section#product .inner .product .novelty {
  width: 100%;
}
main section#product .inner .product .novelty:not(:last-child) {
  margin-bottom: 32px;
}
main section#product .inner .product .novelty .set {
  width: 100%;
  background-color: #212121;
  padding: 40px;
  border-radius: 4px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main section#product .inner .product .novelty .set:not(:last-child) {
  margin-bottom: 8px;
}
main section#product .inner .product .novelty .set h4 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.6em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 32px;
}
main section#product .inner .product .novelty .set .combo {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px 0;
}
main section#product .inner .product .novelty .set .combo:not(:last-child) {
  margin-bottom: 32px;
}
main section#product .inner .product .novelty .set .combo > figure {
  width: 400px;
}
main section#product .inner .product .novelty .set .combo .pset {
  width: 800px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 0 32px;
}
main section#product .inner .product .novelty .set .combo dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 0;
}
main section#product .inner .product .novelty .set .combo dl dt {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#product .inner .product .novelty .set .combo dl dd {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
}
main section#product .inner .product .btn {
  width: 400px;
}
main section#product .inner .product .btn a {
  background-color: #FF0000;
  width: 100%;
  height: 102px;
  padding: 0 40px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.2s ease-in 0s;
}
main section#product .inner .product .btn a:hover {
  background-color: #FFF;
}
main section#product .inner .product .btn a:hover::after {
  right: 10px;
}
main section#product .inner .product .btn a::after {
  width: 40px;
  height: 42px;
  background-image: url(../images/arrow_btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 21px);
  right: 20px;
  z-index: 1;
  transition: all 0.2s ease-in 0s;
}
main section#product .inner .product .btn a span {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
}
main section#product .inner .list {
  width: 100%;
}
main section#product .inner .list:not(:last-child) {
  margin-bottom: 40px;
}
main section#product .inner .list h5 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  padding: 16px 0;
  border-top: solid 2px #FFF;
  border-bottom: solid 2px #FFF;
}
main section#product .inner .list ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
}
main section#product .inner .list ul li {
  text-align: left;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
main section#product .inner .list ul li:nth-child(odd) > div {
  background-color: #212121;
}
main section#product .inner .list ul li:nth-child(odd) > a {
  background-color: #212121;
}
main section#product .inner .list ul li > div,
main section#product .inner .list ul li > a {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 16px;
  padding: 16px 8px;
}
main section#product .inner .list ul li > div span:nth-child(1),
main section#product .inner .list ul li > a span:nth-child(1) {
  color: #000;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  width: 40px;
  height: 40px;
  background-color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
}
main section#product .inner .list ul li > div span:nth-child(2),
main section#product .inner .list ul li > a span:nth-child(2) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
main section#product .inner .list ul li > a {
  transition: all 0.2s ease-in 0s;
}
main section#product .inner .list ul li > a:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
main section#product .inner .list ul li > a span:nth-child(2) {
  text-decoration: underline;
}
main section#product .inner .list ul li > a p {
  color: #FFF;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  margin-left: auto;
  background-color: #FF0000;
  padding: 8px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
}
main section#product .inner .list ul li > a p::after {
  content: "";
  width: 22px;
  height: 20px;
  background-image: url(../images/icon_streaming.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
main section#video {
  width: 100%;
  padding: 80px 0 0 0;
  position: relative;
}
main section#video:not(:last-child) {
  margin-bottom: 80px;
}
main section#video::before {
  content: "";
  width: 100vw;
  height: 480px;
  background-image: linear-gradient(#212121, rgba(0, 0, 0, 0));
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
}
main section#video .inner {
  text-align: left;
  width: calc(100% - 240px);
  max-width: 1280px;
  min-width: 1024px;
  margin: 0 auto;
  gap: 24px 0;
  position: relative;
  z-index: 1;
}
main section#video .inner .title {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main section#video .inner .title:not(:last-child) {
  margin-bottom: 40px;
}
main section#video .inner .title h3 {
  color: #FFF;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 12em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#video .inner .title h4 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#video .inner .title h4:not(:last-child) {
  margin-bottom: 16px;
}
main section#video .inner .title p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
main section#video .inner .videos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}
main section#video .inner .videos .thumb {
  width: calc(50% - 20px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 16px 0;
  cursor: pointer;
  transition: opacity 0.35s ease-in 0s;
}
main section#video .inner .videos .thumb:hover {
  opacity: 0.75;
}
main section#video .inner .videos .thumb figure {
  width: 100%;
}
main section#video .inner .videos .thumb p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  text-align: center;
}
main section#order {
  width: 100%;
  padding: 80px 0 0 0;
  position: relative;
}
main section#order:not(:last-child) {
  margin-bottom: 80px;
}
main section#order::before {
  content: "";
  width: 100vw;
  height: 480px;
  background-image: linear-gradient(#212121, rgba(0, 0, 0, 0));
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
}
main section#order .inner {
  text-align: left;
  width: calc(100% - 240px);
  max-width: 1280px;
  min-width: 1024px;
  margin: 0 auto;
  gap: 24px 0;
  position: relative;
  z-index: 1;
}
main section#order .inner .title {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main section#order .inner .title:not(:last-child) {
  margin-bottom: 40px;
}
main section#order .inner .title h3 {
  color: #FFF;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 12em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#order .inner .title h4 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#order .inner .title h4:not(:last-child) {
  margin-bottom: 16px;
}
main section#order .inner .title p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
main section#order .inner .list {
  width: 100%;
}
main section#order .inner .list:not(:last-child) {
  margin-bottom: 48px;
}
main section#order .inner .list .lwrap {
  width: 100%;
}
main section#order .inner .list .lwrap:not(:last-child) {
  margin-bottom: 8px;
}
main section#order .inner .list .lwrap table {
  width: 100%;
}
main section#order .inner .list .lwrap table:not(:last-child) {
  margin-bottom: 16px;
}
main section#order .inner .list .lwrap table thead tr th {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  background-color: #555555;
  padding: 16px;
  border-right: solid 2px #000;
  border-bottom: solid 2px #000;
}
main section#order .inner .list .lwrap table thead tr th:nth-child(1) {
  width: 30%;
}
main section#order .inner .list .lwrap table thead tr th:nth-child(2) {
  width: 35%;
}
main section#order .inner .list .lwrap table thead tr th:nth-child(3) {
  width: 35%;
}
main section#order .inner .list .lwrap table tbody tr th {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0em;
  text-align: center;
  vertical-align: middle;
  background-color: #D9D9D9;
  border-right: solid 2px #000;
  border-bottom: solid 2px #000;
}
main section#order .inner .list .lwrap table tbody tr td {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  text-align: center;
  vertical-align: middle;
  background-color: #FFF;
  padding: 16px;
  border-right: solid 2px #000;
  border-bottom: solid 2px #000;
}
main section#order .inner .list p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
main section#order .inner .bonus {
  text-align: left;
  width: 100%;
}
main section#order .inner .bonus:not(:last-child) {
  margin-bottom: 40px;
}
main section#order .inner .bonus h4 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 16px;
}
main section#order .inner .bonus h4:not(:last-child) {
  margin-bottom: 16px;
}
main section#order .inner .bonus h4::before {
  content: "";
  width: 4px;
  height: 4.2rem;
  background-color: #FF0000;
  display: block;
}
main section#order .inner .bonus h4 span {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.6em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#order .inner .bonus h5 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  text-align: left;
}
main section#order .inner .bonus h5:not(:last-child) {
  margin-bottom: 16px;
}
main section#order .inner .bonus h6 {
  text-align: left;
}
main section#order .inner .bonus h6:not(:last-child) {
  margin-bottom: 16px;
}
main section#order .inner .bonus h6 a {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  text-decoration: underline;
  transition: all 0.2s ease-in 0s;
}
main section#order .inner .bonus h6 a:hover {
  color: #FF0000;
}
main section#order .inner .bonus p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  text-align: left;
}
main section#order .inner .bonus p:not(:last-child) {
  margin-bottom: 16px;
}
main section#order .inner .bonus p span {
  font-size: 1.4rem;
}
main section#order .inner .bonus dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main section#order .inner .bonus dl:not(:last-child) {
  margin-bottom: 16px;
}
main section#order .inner .bonus dl dt {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
}
main section#order .inner .bonus dl dd {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
main section#order .inner .bonus dl dd span {
  font-size: 1.4rem;
}
main section#order .inner .bonus .image {
  width: 100%;
  background-color: #FFF;
}
main section#order .inner .bonus .image:not(:last-child) {
  margin-bottom: 40px;
}
main section#order .inner .videos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}
main section#order .inner .videos .thumb {
  width: calc(50% - 20px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 16px 0;
  transition: all 0.2s ease-in 0s;
}
main section#order .inner .videos .thumb:hover {
  opacity: 0.75;
}
main section#order .inner .videos .thumb figure {
  width: 100%;
}
main section#order .inner .videos .thumb p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  text-align: center;
}
main section#live {
  width: calc(100% - 240px);
  max-width: 1280px;
  min-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px 0;
}
main section#live:not(:last-child) {
  margin-bottom: 80px;
}
main section#live .title {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px 0;
}
main section#live .title h3 {
  color: #FFF;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 12em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#live .title h4 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 0;
}
main section#live .title h4:not(:last-child) {
  margin-bottom: 16px;
}
main section#live .title h4 span:nth-child(1) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#live .title h4 span:nth-child(2) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#live .date {
  width: 100%;
  padding: 16px 0 0 0;
  border-top: solid 1px #FFF;
}
main section#live .date dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 40px;
  padding-bottom: 16px;
  border-bottom: solid 1px #FFF;
}
main section#live .date dl:not(:last-child) {
  margin-bottom: 16px;
}
main section#live .date dl dt {
  text-align: left;
  width: 27.5%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 16px;
}
main section#live .date dl dt span:nth-child(1) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  width: 10rem;
}
main section#live .date dl dt span:nth-child(2) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  width: 5rem;
}
main section#live .date dl dt span:nth-child(3) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
main section#live .date dl dd {
  width: 72.5%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 16px;
}
main section#live .date dl dd span:nth-child(1) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
main section#live .date dl dd span:nth-child(2) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
main section#live .date dl dd span:nth-child(3) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
main section#live .date dl dd .btn {
  margin-left: auto;
}
main section#live .date dl dd .btn a {
  background-color: #FF0000;
  padding: 4px 8px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 8px;
  transition: all 0.2s ease-in 0s;
}
main section#live .date dl dd .btn a:hover {
  background-color: #FFF;
}
main section#live .date dl dd .btn a:hover::after {
  background-image: url(../images/icon_blank_hv.png);
}
main section#live .date dl dd .btn a:hover span {
  color: #000;
}
main section#live .date dl dd .btn a::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/icon_blank.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
main section#live .date dl dd .btn a span {
  color: #FFF;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
main section#live .t-btn {
  width: 480px;
}
main section#live .t-btn a {
  background-color: #FF0000;
  width: 100%;
  height: 102px;
  padding: 0 40px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.2s ease-in 0s;
}
main section#live .t-btn a:hover {
  background-color: #FFF;
}
main section#live .t-btn a:hover::after {
  right: 10px;
}
main section#live .t-btn a::after {
  width: 40px;
  height: 42px;
  background-image: url(../images/arrow_btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 21px);
  right: 20px;
  z-index: 1;
  transition: all 0.2s ease-in 0s;
}
main section#live .t-btn a span {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
}
main section#album {
  width: calc(100% - 240px);
  max-width: 1280px;
  min-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px 0;
}
main section#album h4 {
  color: #FFF;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 6em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#album h5 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section#album figure {
  width: 480px;
}
main section#album .btn {
  width: 480px;
}
main section#album .btn a {
  background-color: #FF0000;
  width: 100%;
  height: 102px;
  padding: 0 40px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.2s ease-in 0s;
}
main section#album .btn a:hover {
  background-color: #FFF;
}
main section#album .btn a:hover::after {
  right: 10px;
}
main section#album .btn a::after {
  width: 40px;
  height: 42px;
  background-image: url(../images/arrow_btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 21px);
  right: 20px;
  z-index: 1;
  transition: all 0.2s ease-in 0s;
}
main section#album .btn a span {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
}

footer {
  width: 100%;
  padding: 0 0 240px 0;
  margin: 0px auto;
  position: relative;
  opacity: 1;
  transition: all 0.5s ease-in 0s;
}
footer.on {
  opacity: 1;
}
footer .inner {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px 0;
}
footer .inner ul.sns {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 0 24px;
}
footer .inner ul.sns li {
  width: 40px;
}
footer .inner ul.sns li:nth-child(1) a {
  background-image: url(../images/logo_x.png);
}
footer .inner ul.sns li:nth-child(2) a {
  background-image: url(../images/logo_ig.png);
}
footer .inner ul.sns li:nth-child(3) a {
  background-image: url(../images/logo_yt.png);
}
footer .inner ul.sns li:nth-child(4) a {
  background-image: url(../images/logo_tt.png);
}
footer .inner ul.sns li a {
  width: 100%;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
footer .inner .link {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 0 40px;
}
footer .inner .link > div {
  width: 400px;
}
footer .inner .link > div a {
  background-color: #000;
  width: 100%;
  height: 160px;
  padding: 0 40px;
  border: solid 2px #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.2s ease-in 0s;
}
footer .inner .link > div a:hover {
  background-color: #FFF;
}
footer .inner .link > div a:hover::after {
  background-image: url(../images/arrow_btn.svg);
  right: 10px;
}
footer .inner .link > div a:hover span {
  color: #000;
}
footer .inner .link > div a::after {
  width: 30px;
  height: 32px;
  background-image: url(../images/arrow_btn_wh.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 21px);
  right: 20px;
  z-index: 1;
  transition: all 0.2s ease-in 0s;
}
footer .inner .link > div a span {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0em;
}
footer .inner p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
footer .inner .pgtop {
  cursor: pointer;
  position: absolute;
  right: 20px;
  bottom: 0px;
  display: none;
}
footer .inner .pgtop p {
  color: #000;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  text-decoration: underline;
  text-align: right;
}

#topics-detail {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1111;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in 0s;
}
#topics-detail .close {
  width: 40px;
  height: 40px;
  background-image: url(../images/btn_close.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 24px;
  right: 24px;
}
#topics-detail.open {
  opacity: 1;
  pointer-events: auto;
}
#topics-detail .inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 0;
}
#topics-detail .inner .topic {
  text-align: left;
  width: 800px;
  padding: 80px 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px 0;
}
#topics-detail .inner .topic > div {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px 0;
}
#topics-detail .inner .topic > div h4 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
}
#topics-detail .inner .topic > div p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
#topics-detail .inner .topic > div dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px 0;
}
#topics-detail .inner .topic > div dl dt {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
#topics-detail .inner .topic > div dl dd {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0em;
}
#topics-detail .inner .topic > div dl dd.ph {
  width: 400px;
}
#topics-detail .inner .topic > div dl dd a {
  color: #FF0000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0em;
}
#topics-detail .inner .topic > div dl dd a:hover {
  opacity: 0.7;
}
#topics-detail .inner .tube {
  width: 100%;
  display: none;
}
#topics-detail .inner .tube.on {
  display: block;
}

#overlay {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1111;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in 0s;
}
#overlay.on {
  opacity: 1;
  pointer-events: auto;
}
#overlay .inner {
  width: 800px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 0;
}
#overlay .inner .close {
  width: 40px;
  height: 40px;
  background-image: url(../images/btn_close.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin: 0 0 0 auto;
}
#overlay .inner .tube {
  width: 100%;
  display: none;
}
#overlay .inner .tube.on {
  display: block;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  br.brsp {
    display: block;
  }

  img.pc {
    display: none;
  }
  img.sp {
    display: block;
  }

  header {
    padding: 16px;
  }
  header h1 {
    width: 211px;
    height: 24px;
  }

  .hum {
    width: 32px;
    height: 32px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 999;
  }
  .hum:hover {
    opacity: 1;
  }
  .hum.on > div span:nth-child(1) {
    top: 11px;
  }
  .hum.on > div span:nth-child(3) {
    top: 11px;
  }
  .hum > div {
    width: 32px;
    height: 24px;
    position: relative;
  }
  .hum > div span {
    height: 2px;
  }
  .hum > div span:nth-child(1) {
    top: 0px;
  }
  .hum > div span:nth-child(2) {
    top: 11px;
  }
  .hum > div span:nth-child(3) {
    top: 22px;
  }

  nav {
    width: 60%;
    height: 100%;
    max-width: 60%;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 555;
    transition: all 0.2s ease-in 0s;
    clip-path: inset(0 0 0 100%);
  }
  nav.on {
    clip-path: inset(0 0 0 0);
  }
  nav .menu {
    width: 100%;
    height: 100%;
    padding: 120px 0 0 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  nav .menu dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }
  nav .menu dl dd:not(:last-child) {
    margin-bottom: 24px;
  }
  nav .menu dl dd a {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    transition: all 0.2s ease-in 0s;
  }
  nav .menu dl dd a:hover {
    color: #FF0000;
  }

  main {
    padding: 56px 0 0 0;
  }
  main:not(:last-child) {
    margin-bottom: 80px;
  }
  main section {
    transition: all 0.5s ease-in 0.1s;
    opacity: 0;
  }
  main section.on {
    opacity: 1;
  }
  main section#visual {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main section#visual:not(:last-child) {
    margin-bottom: 120px;
  }
  main section#visual.on .hero {
    opacity: 1;
  }
  main section#visual.on .title {
    opacity: 1;
  }
  main section#visual .hero {
    width: 100%;
    opacity: 0;
    transition: all 0.5s ease-in 0s;
  }
  main section#visual .title {
    width: 100%;
    padding: 80px 0 0px 0;
    margin: -60px;
    background-image: linear-gradient(rgba(0, 0, 0, 0) 10%, #000 30%);
    position: relative;
  }
  main section#visual .title .mytitle {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px 0;
  }
  main section#visual .title .mytitle:not(:last-child) {
    margin-bottom: 0px;
  }
  main section#visual .title .mytitle h2 {
    width: calc(100% - 32px);
    height: calc((100vw - 32px) * 0.1435);
  }
  main section#visual .title .mytitle h3 {
    color: #FFF;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#visual .title .mytitle .sub {
    gap: 16px 0;
  }
  main section#visual .title .mytitle .sub h4 {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
  }
  main section#visual .title .mytitle .sub h4::before {
    width: 31px;
    height: 8px;
  }
  main section#visual .title .mytitle .sub h4::after {
    width: 31px;
    height: 8px;
  }
  main section#visual .title .mytitle .sub h4 span {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#visual .title .mytitle .sub h5 {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#visual .title .buttons {
    width: calc(100% - 16px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    position: absolute;
    bottom: 0px;
    left: 8px;
    transition: all 0.2s ease-in 0s;
  }
  main section#visual .title .buttons.fix {
    position: fixed;
    bottom: 8px;
    z-index: 333;
  }
  main section#visual .title .buttons > div {
    text-align: left;
  }
  main section#visual .title .buttons > div a {
    background-color: #FF0000;
    width: 100%;
    height: 88px;
    padding: 16px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.2s ease-in 0s;
  }
  main section#visual .title .buttons > div a:hover {
    background-color: #FFF;
  }
  main section#visual .title .buttons > div a:hover::after {
    right: 8px;
  }
  main section#visual .title .buttons > div a::after {
    width: 28px;
    height: 30px;
    background-image: url(../images/arrow_btn.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    position: absolute;
    top: calc(100% - 30px - 8px);
    right: 8px;
  }
  main section#visual .title .buttons > div:nth-child(1) {
    width: 65%;
  }
  main section#visual .title .buttons > div:nth-child(1) a dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px 0;
  }
  main section#visual .title .buttons > div:nth-child(1) a dl dt {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#visual .title .buttons > div:nth-child(1) a dl dd {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#visual .title .buttons > div:nth-child(2) {
    width: 35%;
  }
  main section#visual .title .buttons > div:nth-child(2) a span {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#topics {
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    min-width: calc(100% - 48px);
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px 0;
    position: relative;
  }
  main section#topics:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#topics.open .text dl:nth-child(n+4) {
    display: flex;
  }
  main section#topics h3 {
    color: #FFF;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    text-align: left;
  }
  main section#topics .text {
    text-align: left;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px 0;
  }
  main section#topics .text dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 24px;
  }
  main section#topics .text dl:nth-child(n+4) {
    display: none;
  }
  main section#topics .text dl dt {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section#topics .text dl dd {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section#topics .text dl dd a {
    color: #FFF;
  }
  main section#topics .text dl dd a:hover {
    color: #FF0000;
  }
  main section#topics .btn {
    width: 64px;
    height: 64px;
    border-radius: 32px;
    position: relative;
    top: auto;
    right: auto;
  }
  main section#topics .btn:hover {
    background-color: #FF0000;
  }
  main section#topics .btn span {
    color: #000;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#lead {
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    min-width: calc(100% - 48px);
    padding: 40px 0 0 0;
    border-top: solid 2px #FFF;
    margin: 0 auto;
  }
  main section#lead:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#lead .inner {
    text-align: left;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px 0;
  }
  main section#lead .inner h5 {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  main section#lead .inner p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6em;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  main section#track {
    padding: 40px 0 0 0;
  }
  main section#track:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#track::before {
    width: 100vw;
    height: 320px;
  }
  main section#track .inner {
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    min-width: calc(100% - 48px);
    margin: 0 auto;
    gap: 24px 0;
    position: relative;
    z-index: 1;
  }
  main section#track .inner .title {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section#track .inner .title:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#track .inner .title h3 {
    color: #FFF;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 6em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#track .inner .title h4 {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#track .inner .title h4:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#track .inner .title p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  main section#track .inner .list {
    width: 100%;
  }
  main section#track .inner .list:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#track .inner .list h5 {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    padding: 8px 0;
    border-top: solid 1px #FFF;
    border-bottom: solid 1px #FFF;
  }
  main section#track .inner .list ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0px;
  }
  main section#track .inner .list ul li {
    text-align: left;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  main section#track .inner .list ul li:nth-child(odd) > div {
    background-color: #212121;
  }
  main section#track .inner .list ul li:nth-child(odd) > a {
    background-color: #212121;
  }
  main section#track .inner .list ul li > div,
main section#track .inner .list ul li > a {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0 8px;
    padding: 8px 8px;
  }
  main section#track .inner .list ul li > div span:nth-child(1),
main section#track .inner .list ul li > a span:nth-child(1) {
    color: #000;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  main section#track .inner .list ul li > div span:nth-child(2),
main section#track .inner .list ul li > a span:nth-child(2) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6em;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section#track .inner .list ul li > a {
    transition: all 0.2s ease-in 0s;
  }
  main section#track .inner .list ul li > a:hover {
    background-color: rgba(255, 255, 255, 0.25);
  }
  main section#track .inner .list ul li > a span:nth-child(2) {
    text-decoration: underline;
  }
  main section#track .inner .list ul li > a p {
    color: #FFF;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 1.6em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    margin-left: auto;
    background-color: #FF0000;
    padding: 4px 8px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
  }
  main section#track .inner .list ul li > a p::after {
    width: 11px;
    height: 10px;
  }
  main section#track .inner .btn {
    width: 100%;
  }
  main section#track .inner .btn a {
    background-color: #FF0000;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.2s ease-in 0s;
  }
  main section#track .inner .btn a:hover {
    background-color: #FF0000;
  }
  main section#track .inner .btn a:hover::after {
    right: 16px;
  }
  main section#track .inner .btn a::after {
    width: 30px;
    height: 32px;
    top: calc(50% - 16px);
    right: 16px;
  }
  main section#track .inner .btn a span {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#product {
    padding: 40px 0 0 0;
  }
  main section#product:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#product::before {
    content: "";
    width: 100vw;
    height: 480px;
    background-image: linear-gradient(#212121, rgba(0, 0, 0, 0));
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  main section#product .inner {
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    min-width: calc(100% - 48px);
    gap: 24px 0;
    position: relative;
    z-index: 1;
  }
  main section#product .inner .title {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section#product .inner .title:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#product .inner .title h3 {
    color: #FFF;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 6em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#product .inner .title h4 {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#product .inner .title h4:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#product .inner .title p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  main section#product .inner .product {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section#product .inner .product:not(:last-child) {
    margin-bottom: 80px;
  }
  main section#product .inner .product:nth-child(2) .pt {
    margin-bottom: 16px;
  }
  main section#product .inner .product .pt {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 32px;
  }
  main section#product .inner .product .pt h4 {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#product .inner .product .pt h4:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#product .inner .product .pt h5 {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8px 0;
    margin-bottom: 16px;
  }
  main section#product .inner .product .pt h5 span:nth-child(1) {
    color: #FF0000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    padding: 8px 16px;
    border: solid 2px #FF0000;
  }
  main section#product .inner .product .pt h5 span:nth-child(2) {
    color: #FF0000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  main section#product .inner .product .pt p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
    text-align: left;
  }
  main section#product .inner .product .pt p br {
    display: none;
  }
  main section#product .inner .product .image {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
    margin-bottom: 32px;
  }
  main section#product .inner .product .image figure {
    width: 100%;
  }
  main section#product .inner .product .image p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  main section#product .inner .product .novelty {
    width: 100%;
  }
  main section#product .inner .product .novelty:not(:last-child) {
    margin-bottom: 32px;
  }
  main section#product .inner .product .novelty .set {
    width: 100%;
    background-color: #212121;
    padding: 16px;
    border-radius: 4px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section#product .inner .product .novelty .set:not(:last-child) {
    margin-bottom: 8px;
  }
  main section#product .inner .product .novelty .set h4 {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    margin-bottom: 16px;
  }
  main section#product .inner .product .novelty .set .combo {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
  }
  main section#product .inner .product .novelty .set .combo:not(:last-child) {
    margin-bottom: 32px;
  }
  main section#product .inner .product .novelty .set .combo > figure {
    width: 100%;
  }
  main section#product .inner .product .novelty .set .combo .pset {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
  }
  main section#product .inner .product .novelty .set .combo dl {
    text-align: left;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
  }
  main section#product .inner .product .novelty .set .combo dl dt {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section#product .inner .product .novelty .set .combo dl dd {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section#product .inner .product .btn {
    width: 100%;
  }
  main section#product .inner .product .btn a {
    background-color: #FF0000;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.2s ease-in 0s;
  }
  main section#product .inner .product .btn a:hover {
    background-color: #FF0000;
  }
  main section#product .inner .product .btn a:hover::after {
    right: 16px;
  }
  main section#product .inner .product .btn a::after {
    width: 30px;
    height: 32px;
    top: calc(50% - 16px);
    right: 16px;
  }
  main section#product .inner .product .btn a span {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#product .inner .list {
    width: 100%;
  }
  main section#product .inner .list:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#product .inner .list h5 {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    padding: 16px 0;
    border-top: solid 2px #FFF;
    border-bottom: solid 2px #FFF;
  }
  main section#product .inner .list ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0px;
  }
  main section#product .inner .list ul li {
    text-align: left;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  main section#product .inner .list ul li:nth-child(odd) > div {
    background-color: #212121;
  }
  main section#product .inner .list ul li:nth-child(odd) > a {
    background-color: #212121;
  }
  main section#product .inner .list ul li > div,
main section#product .inner .list ul li > a {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0 16px;
    padding: 16px 8px;
  }
  main section#product .inner .list ul li > div span:nth-child(1),
main section#product .inner .list ul li > a span:nth-child(1) {
    color: #000;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 3em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    width: 40px;
    height: 40px;
    background-color: #FFF;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
  }
  main section#product .inner .list ul li > div span:nth-child(2),
main section#product .inner .list ul li > a span:nth-child(2) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#product .inner .list ul li > a {
    transition: all 0.2s ease-in 0s;
  }
  main section#product .inner .list ul li > a:hover {
    background-color: rgba(255, 255, 255, 0.25);
  }
  main section#product .inner .list ul li > a span:nth-child(2) {
    text-decoration: underline;
  }
  main section#product .inner .list ul li > a p {
    color: #FFF;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 2em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    margin-left: auto;
    background-color: #FF0000;
    padding: 8px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
  }
  main section#product .inner .list ul li > a p::after {
    width: 22px;
    height: 20px;
    background-image: url(../images/icon_streaming.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
  }
  main section#video {
    padding: 40px 0 0 0;
  }
  main section#video:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#video::before {
    content: "";
    width: 100vw;
    height: 480px;
    background-image: linear-gradient(#212121, rgba(0, 0, 0, 0));
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  main section#video .inner {
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    min-width: calc(100% - 48px);
    gap: 24px 0;
    position: relative;
    z-index: 1;
  }
  main section#video .inner .title {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section#video .inner .title:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#video .inner .title h3 {
    color: #FFF;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 6em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#video .inner .title h4 {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#video .inner .title h4:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#video .inner .title p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  main section#video .inner .videos {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
  }
  main section#video .inner .videos .thumb {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px 0;
    cursor: pointer;
    transition: opacity 0.35s ease-in 0s;
  }
  main section#video .inner .videos .thumb:hover {
    opacity: 1;
  }
  main section#video .inner .videos .thumb figure {
    width: 100%;
  }
  main section#video .inner .videos .thumb p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6em;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
    text-align: center;
  }
  main section#order {
    padding: 40px 0 0 0;
  }
  main section#order:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#order::before {
    content: "";
    width: 100vw;
    height: 480px;
    background-image: linear-gradient(#212121, rgba(0, 0, 0, 0));
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  main section#order .inner {
    text-align: left;
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    min-width: calc(100% - 48px);
    margin: 0 auto;
    gap: 24px 0;
    position: relative;
    z-index: 1;
  }
  main section#order .inner .title {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section#order .inner .title:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#order .inner .title h3 {
    color: #FFF;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 6em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#order .inner .title h4 {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#order .inner .title h4:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#order .inner .title p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  main section#order .inner .list {
    width: 100%;
    position: relative;
  }
  main section#order .inner .list::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #000;
    display: block;
    position: absolute;
    top: 0px;
    left: 159px;
    z-index: 3;
  }
  main section#order .inner .list:not(:last-child) {
    margin-bottom: 48px;
  }
  main section#order .inner .list .lwrap {
    width: 100%;
    padding-bottom: 8px;
    overflow-x: scroll;
  }
  main section#order .inner .list .lwrap:not(:last-child) {
    margin-bottom: 0px;
  }
  main section#order .inner .list .lwrap table {
    width: 800px;
    position: relative;
  }
  main section#order .inner .list .lwrap table:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#order .inner .list .lwrap table thead tr th {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0em;
    text-align: center;
    vertical-align: middle;
    background-color: #555555;
    padding: 8px;
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
  }
  main section#order .inner .list .lwrap table thead tr th:nth-child(1) {
    width: 160px;
    position: sticky;
    left: 0px;
  }
  main section#order .inner .list .lwrap table thead tr th:nth-child(2) {
    width: 320px;
  }
  main section#order .inner .list .lwrap table thead tr th:nth-child(3) {
    width: 320px;
  }
  main section#order .inner .list .lwrap table tbody tr th {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.75;
    letter-spacing: 0em;
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
    position: sticky;
    left: 0px;
  }
  main section#order .inner .list .lwrap table tbody tr td {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
    padding: 8px;
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
  }
  main section#order .inner .list p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  main section#order .inner .bonus {
    text-align: left;
    width: 100%;
  }
  main section#order .inner .bonus:not(:last-child) {
    margin-bottom: 40px;
  }
  main section#order .inner .bonus h4 {
    gap: 0 8px;
  }
  main section#order .inner .bonus h4:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#order .inner .bonus h4::before {
    height: 3rem;
  }
  main section#order .inner .bonus h4 span {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#order .inner .bonus h5 {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    text-align: left;
  }
  main section#order .inner .bonus h5:not(:last-child) {
    margin-bottom: 8px;
  }
  main section#order .inner .bonus h6:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#order .inner .bonus h6 a {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section#order .inner .bonus p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
    text-align: left;
  }
  main section#order .inner .bonus p:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#order .inner .bonus p span {
    font-size: 1.2rem;
  }
  main section#order .inner .bonus dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section#order .inner .bonus dl:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#order .inner .bonus dl dt {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section#order .inner .bonus dl dd {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6em;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  main section#order .inner .bonus dl dd span {
    font-size: 1.4rem;
  }
  main section#order .inner .bonus .image:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#order .inner .videos {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
  }
  main section#order .inner .videos .thumb {
    width: calc(50% - 20px);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px 0;
    transition: all 0.2s ease-in 0s;
  }
  main section#order .inner .videos .thumb:hover {
    opacity: 0.75;
  }
  main section#order .inner .videos .thumb figure {
    width: 100%;
  }
  main section#order .inner .videos .thumb p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6em;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
    text-align: center;
  }
  main section#live {
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    min-width: calc(100% - 48px);
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px 0;
  }
  main section#live:not(:last-child) {
    margin-bottom: 80px;
  }
  main section#live .title {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px 0;
  }
  main section#live .title h3 {
    color: #FFF;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 6em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#live .title h4 {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
  }
  main section#live .title h4:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#live .title h4 span:nth-child(1) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section#live .title h4 span:nth-child(2) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#live .date {
    width: 100%;
    padding: 16px 0 0 0;
    border-top: solid 1px #FFF;
  }
  main section#live .date dl {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px 0;
    padding-bottom: 16px;
    border-bottom: solid 1px #FFF;
  }
  main section#live .date dl:not(:last-child) {
    margin-bottom: 16px;
  }
  main section#live .date dl dt {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
  }
  main section#live .date dl dt span:nth-child(1) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#live .date dl dt span:nth-child(2) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#live .date dl dt span:nth-child(3) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#live .date dl dd {
    text-align: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0px 0;
  }
  main section#live .date dl dd span:nth-child(1) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section#live .date dl dd span:nth-child(2) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section#live .date dl dd span:nth-child(3) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section#live .date dl dd .btn {
    margin-left: auto;
  }
  main section#live .date dl dd .btn a {
    background-color: #FF0000;
    padding: 4px 8px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0 8px;
    transition: all 0.2s ease-in 0s;
  }
  main section#live .date dl dd .btn a:hover {
    background-color: #FFF;
  }
  main section#live .date dl dd .btn a:hover::after {
    background-image: url(../images/icon_blank_hv.png);
  }
  main section#live .date dl dd .btn a:hover span {
    color: #000;
  }
  main section#live .date dl dd .btn a::after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(../images/icon_blank.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
  }
  main section#live .date dl dd .btn a span {
    color: #FFF;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#live .t-btn {
    width: 100%;
  }
  main section#live .t-btn a {
    height: 80px;
    padding: 0 16px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.2s ease-in 0s;
  }
  main section#live .t-btn a:hover {
    background-color: #FFF;
  }
  main section#live .t-btn a:hover::after {
    right: 10px;
  }
  main section#live .t-btn a::after {
    content: "";
    width: 30px;
    height: 32px;
    top: calc(50% - 16px);
    right: 16px;
  }
  main section#live .t-btn a span {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#album {
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    min-width: calc(100% - 48px);
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px 0;
  }
  main section#album h4 {
    color: #FFF;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 4em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#album h5 {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4em;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section#album figure {
    width: 100%;
  }
  main section#album .btn {
    width: 100%;
  }
  main section#album .btn a {
    height: 80px;
    padding: 0 16px;
  }
  main section#album .btn a:hover {
    background-color: #FFF;
  }
  main section#album .btn a:hover::after {
    right: 16px;
  }
  main section#album .btn a::after {
    width: 30px;
    height: 32px;
    top: calc(50% - 16px);
    right: 16px;
  }
  main section#album .btn a span {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
  }

  footer {
    width: 100%;
    padding: 0 0 120px 0;
    margin: 0px auto;
    position: relative;
    opacity: 1;
    transition: all 0.5s ease-in 0s;
  }
  footer.on {
    opacity: 1;
  }
  footer .inner {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px 0;
  }
  footer .inner .link {
    width: calc(100% - 32px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
  }
  footer .inner .link > div {
    width: 100%;
  }
  footer .inner .link > div a {
    background-color: #000;
    width: 100%;
    height: 104px;
    padding: 0 40px;
    border: solid 2px #FFF;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px 0;
    position: relative;
    transition: all 0.2s ease-in 0s;
  }
  footer .inner .link > div a:hover {
    background-color: #000;
  }
  footer .inner .link > div a:hover::after {
    background-image: url(../images/arrow_btn_wh.svg);
    right: 16px;
  }
  footer .inner .link > div a:hover span {
    color: #FFF;
  }
  footer .inner .link > div a::after {
    width: 24px;
    height: 25px;
    top: calc(50% - 12px);
    right: 16px;
    z-index: 1;
    transition: all 0.2s ease-in 0s;
  }
  footer .inner .link > div a span {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  footer .inner p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .inner .pgtop {
    cursor: pointer;
    position: absolute;
    right: 20px;
    bottom: 0px;
    display: none;
  }
  footer .inner .pgtop p {
    color: #000;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    text-decoration: underline;
    text-align: right;
  }

  #topics-detail .close {
    width: 24px;
    height: 24px;
    top: 16px;
    right: 16px;
  }
  #topics-detail.open {
    opacity: 1;
    pointer-events: auto;
  }
  #topics-detail .inner {
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
  }
  #topics-detail .inner .topic {
    width: calc(100% - 48px);
    padding: 80px 0;
    gap: 40px 0;
  }
  #topics-detail .inner .topic > div {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
  }
  #topics-detail .inner .topic > div h4 {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  #topics-detail .inner .topic > div p {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  #topics-detail .inner .topic > div dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
  }
  #topics-detail .inner .topic > div dl dt {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  #topics-detail .inner .topic > div dl dd {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  #topics-detail .inner .topic > div dl dd.ph {
    width: 100%;
  }
  #topics-detail .inner .topic > div dl dd a {
    color: #FF0000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  #topics-detail .inner .topic > div dl dd a:hover {
    opacity: 1;
  }
  #topics-detail .inner .tube {
    width: 100%;
    display: none;
  }
  #topics-detail .inner .tube.on {
    display: block;
  }

  #overlay .inner {
    width: calc(100% - 32px);
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
  }
  #overlay .inner .close {
    width: 24px;
    height: 24px;
  }
  #overlay .inner .tube {
    width: 100%;
    display: none;
  }
  #overlay .inner .tube.on {
    display: block;
  }
  #overlay .inner .tube iframe {
    width: 100%;
    height: calc((100vw - 32px) * 0.5625);
  }
}

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