@charset "UTF-8";
/* SP（デフォルト） */
.pc {
  display: none;
}
@media (min-width: 768px) {
  .pc {
    display: inline;
  }
}

.sp {
  display: inline;
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../../assets/font/NotoSansJP-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../assets/font/NotoSansJP-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pathway Gothic One";
  src: url("../../assets/font/PathwayGothicOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
  overflow-x: hidden;
}
html:has(body.is-modal-open), html:has(nav.site-nav.active), html:has(header.front) {
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html:has(body.is-modal-open) ::-webkit-scrollbar, html:has(nav.site-nav.active) ::-webkit-scrollbar, html:has(header.front) ::-webkit-scrollbar {
  display: none;
}

main {
  opacity: 0;
}

body {
  color: #EFEFEF;
  font-family: "Noto Sans JP";
  font-weight: 700;
  background-color: #03121F;
  overflow: hidden;
}

img {
  width: 100%;
}

section {
  position: relative;
}

.inner {
  margin: 0 auto;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: none;
}

p {
  font-family: "Noto Sans JP";
}

.section-title {
  color: #FF8400;
  font-size: 18px;
  margin-bottom: 60px;
  font-family: meno-banner, serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 120px;
  }
}
.section-title::before {
  content: "";
  border-top: 1.5px solid #FF8400;
  vertical-align: middle;
  display: inline-block;
  width: 24px;
  height: 0;
  margin-right: 12px;
}

.circle-arrow {
  font-family: "Pathway Gothic One";
  font-size: 18px;
}
@media (min-width: 768px) {
  .circle-arrow {
    font-size: 32px;
  }
}

.circle-arrow a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #EFEFEF;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  font-weight: 400;
}

/* ===== arrow（SP） ===== */
.circle-arrow .arrow {
  position: relative;
  width: 35px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
}

/* 横棒 */
.circle-arrow .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 31px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* 先端 */
.circle-arrow .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 25px);
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

/* ===== hover（SP） ===== */
.circle-arrow a:hover {
  opacity: 0.6;
}

.circle-arrow a:hover .arrow::before {
  transform: translateY(-50%) translateX(4px);
}

.circle-arrow a:hover .arrow::after {
  transform: translateY(-50%) translateX(4px) rotate(45deg);
}

/* ===== PC ===== */
@media (min-width: 768px) {
  .circle-arrow a {
    gap: 16px;
  }
  .circle-arrow .arrow {
    width: 70px;
  }
  .circle-arrow .arrow::before {
    width: 62px;
  }
  .circle-arrow .arrow::after {
    left: calc(50% + 55px);
    width: 6px;
    height: 6px;
  }
  /* PCは少し動かす */
  .circle-arrow a:hover .arrow::before {
    transform: translateY(-50%) translateX(10px);
  }
  .circle-arrow a:hover .arrow::after {
    transform: translateY(-50%) translateX(10px) rotate(45deg);
  }
}
.circle-arrow--left a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #EFEFEF;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  font-weight: 400;
}

/* ===== arrow（SP） ===== */
.circle-arrow--left .arrow {
  position: relative;
  width: 35px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
}

/* 横棒（右→左） */
.circle-arrow--left .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 31px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* 先端（左向き） */
.circle-arrow--left .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(50% + 25px);
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.3s ease;
}

/* ===== hover（SP） ===== */
.circle-arrow--left a:hover {
  opacity: 0.6;
}

.circle-arrow--left a:hover .arrow::before {
  transform: translateY(-50%) translateX(-4px);
}

.circle-arrow--left a:hover .arrow::after {
  transform: translateY(-50%) translateX(-4px) rotate(-45deg);
}

/* ===== PC ===== */
@media (min-width: 768px) {
  .circle-arrow--left a {
    gap: 16px;
  }
  .circle-arrow--left .arrow {
    width: 70px;
  }
  .circle-arrow--left .arrow::before {
    width: 62px;
  }
  .circle-arrow--left .arrow::after {
    right: calc(50% + 55px);
    width: 6px;
    height: 6px;
  }
  /* PCは少し動かす */
  .circle-arrow--left a:hover .arrow::before {
    transform: translateY(-50%) translateX(-10px);
  }
  .circle-arrow--left a:hover .arrow::after {
    transform: translateY(-50%) translateX(-10px) rotate(-45deg);
  }
}
.circle-blur-deep-blue,
.circle-blur-light-blue {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  mix-blend-mode: normal;
}

.release-section {
  position: relative;
  background-image: url("../images/bg/bg_release_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .release-section {
    background-image: url("../images/bg/bg_release_pc.webp");
    padding-bottom: 300px;
  }
}
.release-section .inner {
  padding: 0 17px;
}
@media (min-width: 768px) {
  .release-section .inner {
    padding: 0 100px;
  }
}
.release-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000000 0%, rgba(3, 18, 31, 0.32) 55%, rgba(3, 18, 31, 0.32) 87.02%, #03121F 93.56%);
  pointer-events: none;
}
.release-section .circle-arrow {
  padding-bottom: 162px;
}
@media (min-width: 768px) {
  .release-section .circle-arrow {
    padding-bottom: 0;
  }
}

.release-section > .inner {
  position: relative;
  z-index: 1;
}

.release-section-title {
  position: relative;
  display: inline-block;
  z-index: 1;
  isolation: isolate;
  line-height: 0.8;
  font-family: meno-banner, serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(80px, 10.4vw, 10.4vw);
  letter-spacing: -0.1em;
  color: #C9C9C9;
  letter-spacing: -0.05em;
}
.release-section-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  /* ===== SP ===== */
  width: 257px;
  height: 111px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #03121F;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 1;
  /* ===== PC ===== */
}
@media (min-width: 768px) {
  .release-section-title::before {
    width: 792px;
    height: 328px;
  }
}

.release-layout {
  display: block;
  padding-top: 90px;
}
@media (min-width: 768px) {
  .release-layout {
    display: flex;
    align-items: end;
    gap: 8vw;
    padding-top: 200px;
  }
}
.release-right {
  padding-top: 100px;
}
@media (min-width: 768px) {
  .release-right {
    padding-top: unset;
  }
}
@media (min-width: 768px) {
  .release-left {
    position: relative;
  }
}
.release-left-inner {
  margin-top: -24px;
}
@media (min-width: 768px) {
  .release-left-inner {
    margin-top: clamp(-35px, -2.1vw, -40px);
  }
}
.release-item {
  display: block;
  margin-top: -20px;
}
@media (min-width: 768px) {
  .release-item {
    display: flex;
    justify-content: space-between;
    gap: 185px;
    margin-top: -40px;
    align-items: end;
  }
}
.release-content {
  align-items: flex-end;
  width: 100%;
}
@media (min-width: 768px) {
  .release-content {
    width: 50%;
  }
}
.release-jacket {
  width: 76vw;
  margin-left: auto;
}
@media (min-width: 768px) {
  .release-jacket {
    width: 33vw;
  }
}
.release-title {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 768px) {
  .release-title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
.release-date {
  font-size: 16px;
  margin-bottom: 16px;
  font-family: "Noto Sans JP";
  font-weight: 500;
}
@media (min-width: 768px) {
  .release-date {
    margin-bottom: 32px;
  }
}
.release-description {
  font-size: 15px;
  margin-bottom: 60px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .release-description {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.release-description p {
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .release-description p {
    letter-spacing: 0.64px;
  }
}

.playBtn {
  position: absolute;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #EFEFEF;
  padding: 0;
  cursor: pointer;
}
@media (min-width: 768px) {
  .playBtn {
    right: 14.4vw;
    width: 64px;
    height: 64px;
    margin-top: 40px;
  }
}
.playBtn__icon {
  position: relative;
  width: 11px;
  height: 11.5px;
  background-color: #EFEFEF;
  border-radius: 2px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (min-width: 768px) {
  .playBtn__icon {
    width: 12px;
    height: 13px;
    border-radius: 2.5px;
  }
}

.jacket-image {
  width: 75vw;
  height: auto;
}
@media (min-width: 768px) {
  .jacket-image {
    width: 28vw;
  }
}

.news-section .inner .news-image-wrap .circle-blur-deep-blue {
  top: 55%;
  left: 65%;
  transform: translate(-50%, -50%);
  width: 26vw;
  height: 26vw;
  background: rgba(0, 42, 255, 0.8);
  filter: blur(60px);
}
@media (min-width: 768px) {
  .news-section .inner .news-image-wrap .circle-blur-deep-blue {
    top: 60%;
    left: 50%;
    transform: none;
    width: 19.69vw;
    height: 19.69vw;
    filter: blur(200px);
  }
}

.news-section .inner .news-image-wrap .inner-image {
  margin-bottom: 95px;
}
@media (min-width: 768px) {
  .news-section .inner .news-image-wrap .inner-image {
    margin-bottom: 60px;
  }
}

.news-section {
  background-color: #03121F;
}
.news-section .section-title {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .news-section .section-title {
    padding: 0 100px;
  }
}
.news-section ul {
  display: inline;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .news-section ul {
    margin-bottom: unset;
  }
}
.news-section .inner-image {
  margin-bottom: 60px;
  width: 420px;
}
.news-section .inner {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.news-section .circle-arrow {
  text-align: end;
  margin: 40px 20px 0 0;
}
@media (min-width: 768px) {
  .news-section .circle-arrow {
    text-align: unset;
  }
}

.news-block-flex {
  display: block;
  margin-bottom: 65px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .news-block-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: unset;
    margin-bottom: 0;
    gap: clamp(80px, 19vw, 523.5px);
    padding: 0 100px;
  }
}

.news-list {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .news-list {
    margin-bottom: unset;
  }
}

.news-tags {
  background-color: #03121f;
  border: 1px solid #EFEFEF;
  border-radius: 40px;
  width: 156px;
  height: 19px;
  color: #EFEFEF;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s, color 0.5s;
}
@media (min-width: 768px) {
  .news-tags {
    width: 126px;
    height: 24px;
  }
}
.news-item {
  border-bottom: 1px solid #283551;
  padding: 0;
}
.news-item .news-link {
  display: block;
  transition: background-color 0.5s;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .news-item .news-link {
    padding: 0 20px;
  }
}
.news-item:hover .news-link {
  background-color: #0A1836;
}
.news-item:hover .news-tags {
  background-color: #0A1836;
  color: #efefef;
}
.news-item-flex {
  display: flex;
  gap: 100px;
  padding: 20px 0 14px;
}
@media (min-width: 768px) {
  .news-item-flex {
    gap: 40px;
    padding: 32px 0 26px;
  }
}
.news-title {
  padding-bottom: 20px;
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .news-title {
    padding-bottom: 32px;
    letter-spacing: 0.64px;
  }
}
.news-date {
  font-size: 14px;
  font-family: meno-banner, serif;
  color: #C9C9C9;
}
@media (min-width: 768px) {
  .news-date {
    font-size: 20px;
  }
}
.news-list {
  display: inline;
}
@media (min-width: 768px) {
  .news-list {
    width: 56%;
  }
}

.news-image-wrap {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .news-image-wrap {
    overflow-x: visible;
  }
}
.news-image-wrap .inner-image {
  width: 95vw;
  margin-left: auto;
}
@media (min-width: 768px) {
  .news-image-wrap .inner-image {
    width: 60.99vw;
  }
}
.news-image-wrap img {
  display: block;
  position: relative;
  z-index: 1;
}

.circle-blur-deep-blue {
  top: 85%;
  left: 65%;
  transform: translate(-50%, -50%);
  width: 26vw;
  height: 26vw;
  background: rgba(0, 42, 255, 0.8);
  filter: blur(80px);
}
@media (min-width: 768px) {
  .circle-blur-deep-blue {
    top: 60%;
    left: 50%;
    transform: none;
    width: 19.69vw;
    height: 19.69vw;
    filter: blur(200px);
  }
}

#news li.news {
  margin-bottom: 20px;
}
#news li.news .news-list {
  display: flex;
  flex-direction: column;
}
#news li.news .post-content {
  font-weight: bold;
  margin-top: 4px;
}
#news li.news .post-head.news-date {
  font-size: 12px;
  color: #888;
}

.tab {
  padding: 6px 12px;
  border: 1px solid #ccc;
  cursor: pointer;
  background: #f5f5f5;
}
.tab.active {
  background: #000;
  color: #fff;
}

.movie-section {
  position: relative;
  background-image: url("../images/bg/bg_movie_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: auto;
}
@media (min-width: 768px) {
  .movie-section {
    background-image: url("../images/bg/bg_movie_pc.webp");
    min-height: 1038px;
  }
}
.movie-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #03121F 0%, rgba(3, 18, 31, 0.32) 74.08%);
  pointer-events: none;
  z-index: 1;
}
.movie-section .section-content {
  font-family: meno-banner, serif;
  font-weight: 600;
  font-style: normal;
  font-size: 25px;
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 2;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .movie-section .section-content {
    font-size: 72px;
    padding: 400px 0 37px;
  }
}

.movie-section-title {
  position: relative;
  margin-bottom: 15px;
  /* space */
  /* space */
  /* space */
}
@media (min-width: 768px) {
  .movie-section-title {
    margin-bottom: 37px;
  }
}
.movie-section-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: 162px;
  height: 56px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #0A1836;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 1;
}
@media (min-width: 768px) {
  .movie-section-title::before {
    width: 514px;
    height: 182px;
  }
}
.movie-section-title span {
  display: inline-block;
}
.movie-section-title span:nth-child(1) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(2) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(3) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(4) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(5) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(6) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(7) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(8) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(9) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(10) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(11) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(12) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(13) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(14) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(15) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(16) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(17) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(18) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(19) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(20) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(21) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(22) {
  letter-spacing: -0.35em;
}
.movie-section-title span:nth-child(23) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(24) {
  letter-spacing: -0.34em;
}
.movie-section-title span:nth-child(25) {
  letter-spacing: -0.21em;
}
.movie-section-title span:nth-child(26) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(27) {
  letter-spacing: -0.25em;
}
.movie-section-title span:nth-child(28) {
  letter-spacing: -0.2em;
}
.movie-section-title span:nth-child(29) {
  letter-spacing: -0.2em;
}

/* ============================
   円の基準ラッパー（回転しない）
   ============================ */
.circle-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 20px auto 0;
}
@media (min-width: 768px) {
  .circle-wrap {
    width: 240px;
    height: 240px;
    margin: 20px auto 300px;
  }
}

/* ============================
   回転する円画像（丸加工なし）
   ============================ */
.circle-image {
  width: 100%;
  height: 100%;
}
.circle-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  animation: rotateCircle 30s linear infinite;
}

/* ============================
   中央の ↗︎（回転しない）
   ============================ */
.movie-circle-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
  /* 斜めの軸 */
  /* 矢印の先端 */
}
.movie-circle-arrow::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: #EFEFEF;
  left: 50%;
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}
.movie-circle-arrow::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 3px solid #EFEFEF;
  border-right: 3px solid #EFEFEF;
  top: 3px;
  right: 3px;
}
@media (min-width: 768px) {
  .movie-circle-arrow {
    width: 32px;
    height: 32px;
  }
}

/* ===== hover ===== */
.circle-wrap:hover .movie-circle-arrow {
  transform: translate(-50%, -50%) translate(4px, -4px);
  opacity: 0.6;
}

/* ===== PC ===== */
@media (min-width: 768px) {
  .circle-wrap:hover .movie-circle-arrow {
    transform: translate(-50%, -50%) translate(10px, -10px);
    opacity: 0.6;
  }
}
/* ============================
   回転アニメーション
   ============================ */
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.links-section {
  background-color: #0A1836;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.links-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 31, 0.32);
  pointer-events: none;
  z-index: 1;
}
.links-section .link-list {
  width: 100%;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .links-section .link-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.links-section .banner-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.links-section .banner-item:hover img {
  filter: grayscale(70%) contrast(120%) brightness(90%);
}
.links-section .banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}
.links-section .banner-content {
  position: absolute;
  top: 59%;
  left: 37%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  text-align: left;
  width: 59.79%;
}
@media (min-width: 768px) {
  .links-section .banner-content {
    top: 57%;
    left: 43%;
  }
}
.links-section .banner-sub-title {
  position: relative;
  font-family: "Pathway Gothic One";
  font-size: clamp(12px, 1.04vw, 20px);
  color: #FF8400;
  letter-spacing: 0.04em;
  padding-left: 10px;
  margin-bottom: 2px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .links-section .banner-sub-title {
    margin-bottom: 3px;
  }
}
.links-section .banner-sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #FF8400;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .links-section .banner-sub-title::before {
    width: 8px;
    height: 8px;
    left: -8px;
  }
}
.links-section .banner-title {
  font-family: meno-banner, serif;
  font-size: clamp(24px, 2.5vw, 48px);
  margin-bottom: clamp(40px, 6.9vw, 133px);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .links-section .banner-title {
    font-weight: 700;
    margin-right: -8px;
  }
}
.links-section .banner-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  color: #EFEFEF;
  font-family: "Pathway Gothic One";
  cursor: pointer;
  font-size: clamp(12px, 1.25vw, 24px);
  gap: clamp(10px, 1.04vw, 20px);
  font-weight: 400;
}

/* ============================
   Chevron Icon
============================ */
.chevron-icon {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #EFEFEF;
  border-radius: 50%;
  background: #03121F;
  display: inline-block;
  transform: rotate(180deg);
  overflow: hidden;
  /* ===== 中央に出る小丸 ===== */
  /* ===== 矢印「＞」 ===== */
}
@media (min-width: 768px) {
  .chevron-icon {
    width: 40px;
    height: 40px;
  }
}
.chevron-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  background: #EFEFEF;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1;
}
.chevron-icon::before,
.chevron-icon span {
  content: "";
  position: absolute;
  top: 50%;
  left: 38%;
  width: 5px;
  height: 2px;
  background-color: #EFEFEF;
  transform-origin: left center;
  z-index: 2;
}
@media (min-width: 768px) {
  .chevron-icon::before,
  .chevron-icon span {
    width: 8px;
    left: 40%;
  }
}
.chevron-icon::before {
  transform: translateY(-10%) rotate(-45deg);
}
.chevron-icon span {
  transform: translateY(-50%) rotate(45deg);
}

/* ===== ホバー時 ===== */
.banner-item:hover .chevron-icon::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* KV画像 */
.kv {
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.kv img {
  position: relative;
  z-index: 1; /* ← KVは一番下 */
}

/* ローディング中はスクロール禁止 */
body.loading {
  overflow: hidden;
  height: 100vh;
}

/* ローディング中はハンバーガーメニュ非表示 */
body.loading .hamburger {
  display: none;
}

.kv-mask {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.mask-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.kv-mask picture,
.kv-mask img {
  display: block;
  width: 100%;
  height: auto;
}

/* ハンバーガーアイコン */
.site-header {
  position: fixed;
  top: 22px;
  right: 18px;
  z-index: 9999;
}
@media (min-width: 768px) {
  .site-header {
    top: 37px;
    right: 25px;
  }
}
.site-header .hamburger {
  width: 35px;
  height: 9px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media (min-width: 768px) {
  .site-header .hamburger {
    width: 70px;
    height: 18px;
  }
}
.site-header .hamburger span {
  display: block;
  width: 100%;
  height: 2px !important;
  background: #fff;
  transition: 0.3s ease;
  transform-origin: center;
}
.site-header .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
@media (min-width: 768px) {
  .site-header .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
}
.site-header .hamburger.active span:nth-child(2) {
  transform: translateY(1px) rotate(-45deg);
}
@media (min-width: 768px) {
  .site-header .hamburger.active span:nth-child(2) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* 右から出るメニュー（これは fixed のまま） */
.site-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-image: url("../images/bg/bg_release_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.3s ease;
  z-index: 999;
}
@media (min-width: 768px) {
  .site-nav {
    background-image: url("../images/bg/bg_release_pc.webp");
  }
}
.site-nav a {
  color: #EFEFEF;
  text-decoration: none;
  font-size: 24px;
  margin: 15px 0;
}
.site-nav.active {
  right: 0;
  position: fixed;
}

.site-footer {
  background-color: #03121F;
  position: relative;
  z-index: 1;
}

.footer-box {
  display: block;
  gap: 50px;
  padding: 0 20px 75px;
  margin: auto;
  font-size: clamp(14px, 4.2vw, 16px);
}
@media (min-width: 768px) {
  .footer-box {
    display: flex;
    padding-bottom: 112px;
    max-width: 1129px;
    padding: 0 0 193px 10.4%;
  }
}
.footer-box a {
  transition: opacity 0.5s ease;
}
.footer-box a:hover {
  opacity: 0.5;
  transition: 0.5s;
}
.footer-box ul {
  column-gap: 35px;
}
@media (min-width: 768px) {
  .footer-box ul {
    column-gap: unset;
  }
}
.footer-box li {
  font-family: "Noto Sans JP";
  font-weight: 400;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .footer-box li {
    margin-top: 20px;
  }
}

.footer-name {
  font-family: meno-banner, serif;
  font-weight: 600;
  font-style: normal;
  color: #283551;
  letter-spacing: -0.08em;
  font-size: clamp(43px, 6.25vw, 120px);
  text-align: center;
  padding: 50px 0 47px 0;
}
@media (min-width: 768px) {
  .footer-name {
    letter-spacing: -0.06em;
    text-align: unset;
    padding: 60px 0 80px 4.1%;
  }
}
.footer-title {
  color: #FF8400;
  font-size: clamp(16px, 5.3vw, 20px);
  font-family: "Pathway Gothic One";
  font-weight: 400;
  margin: 50px 0 40px;
  letter-spacing: 0.64px;
}
@media (min-width: 768px) {
  .footer-title {
    letter-spacing: 0.8px;
  }
}

.footer-nav-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer-nav-flex li {
  font-size: 14px;
}
@media (min-width: 768px) {
  .footer-nav-flex li {
    font-size: 16px;
  }
}
.footer-nav-flex li::before {
  content: "";
  border-top: 0.75px solid #FF8400;
  vertical-align: middle;
  display: inline-block;
  width: 12px;
  height: 0;
  margin-right: 12px;
}
@media (min-width: 768px) {
  .footer-nav-flex li::before {
    border-top: 1.5px solid #FF8400;
    width: 24px;
  }
}
.footer-nav-flex a {
  font-size: clamp(14px, 4.2vw, 16px);
}

.footer-nav-1 {
  flex: 2;
}
.footer-nav-2 {
  flex: 1;
}
.footer-nav-3 {
  display: flex;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .footer-nav-3 {
    display: block;
  }
}

/* 左列（1〜7） */
.footer-nav-flex li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.footer-nav-flex li:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.footer-nav-flex li:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}

.footer-nav-flex li:nth-child(4) {
  grid-column: 1;
  grid-row: 4;
}

.footer-nav-flex li:nth-child(5) {
  grid-column: 1;
  grid-row: 5;
}

.footer-nav-flex li:nth-child(6) {
  grid-column: 1;
  grid-row: 6;
}

.footer-nav-flex li:nth-child(7) {
  grid-column: 1;
  grid-row: 7;
}

/* 右列（8〜） */
.footer-nav-flex li:nth-child(8) {
  grid-column: 2;
  grid-row: 1;
}

.footer-nav-flex li:nth-child(9) {
  grid-column: 2;
  grid-row: 2;
}

.footer-nav-flex li:nth-child(10) {
  grid-column: 2;
  grid-row: 3;
}

.footer-nav-3 li {
  display: flex;
  font-family: "din-2014", sans-serif;
  font-weight: 400;
}
.footer-nav-3 a {
  align-items: center;
  display: flex;
}
.footer-nav-3 img {
  width: 1em;
  height: 1em;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .footer-nav-3 img {
    padding-right: 20px;
  }
}

.discography.archive-header {
  position: relative;
  background-image: url("../images/bg/bg_discography_archive-sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 60px;
  width: 100%;
  aspect-ratio: 750/540;
}
@media (min-width: 768px) {
  .discography.archive-header {
    background-image: url("../images/bg/bg_discography_archive-pc.webp");
    width: 100%;
    aspect-ratio: 1920/540;
    margin-bottom: 202px;
  }
}
.discography.archive-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(3, 18, 31, 0.48);
}
.discography.archive-header .archive-header-tx {
  width: 89.12vw;
  position: absolute;
  top: 64%;
  left: unset;
  right: 0;
}
@media (min-width: 768px) {
  .discography.archive-header .archive-header-tx {
    width: 73.18vw;
    top: 82%;
    left: 5.2%;
    right: unset;
  }
}
.discography.archive-header .circle-blur-deep-blue {
  top: 105%;
  left: 71%;
  width: 52vw;
  height: 52vw;
}
@media (min-width: 768px) {
  .discography.archive-header .circle-blur-deep-blue {
    top: 98%;
    left: 9%;
    width: 19.69vw;
    height: 19.69vw;
  }
}

.news-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  white-space: nowrap;
}
.news-tabs .news-tags {
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid #EFEFEF;
}
.news-tabs .news-tags.is-active {
  background: #0A1836;
  color: #EFEFEF;
  border: 1px solid #EFEFEF;
}

.archive-news.archive-discography .discography-list .disc-item .news-tags {
  background-color: transparent;
  color: #EFEFEF;
  border: 1px solid #EFEFEF;
  width: 95px;
  height: 17px;
  font-size: 10px;
  line-height: 0.68px;
  margin-bottom: 6px;
  padding: unset;
}
@media (min-width: 768px) {
  .archive-news.archive-discography .discography-list .disc-item .news-tags {
    width: 6.56vw;
    height: 0;
    font-size: 0.63vw;
    line-height: 0.48px;
    margin-bottom: unset;
    padding: 4%;
  }
}
.archive-news.archive-discography .discography-list .disc-item .news-tags:hover {
  background-color: #0A1836;
  border: 1px solid #EFEFEF;
}

.archive-discography-inner {
  padding: unset;
}
@media (min-width: 768px) {
  .archive-discography-inner {
    padding: 0 5.21vw;
  }
}

.archive-news .section-title {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .archive-news .section-title {
    padding-top: unset;
  }
}
.archive-news .discography-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  padding: 0 0 60px;
  margin: 0;
}
@media (min-width: 768px) {
  .archive-news .discography-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 2vw;
    padding: 0 0 6.25vw;
  }
}
.archive-news .discography-list .disc-item {
  width: 42.67vw;
  margin: 0 auto;
  aspect-ratio: 160/263;
  height: auto;
}
@media (min-width: 768px) {
  .archive-news .discography-list .disc-item {
    width: 16.25vw;
    aspect-ratio: 312/480;
  }
}
.archive-news .discography-list .jacket-image {
  position: relative;
  width: 42.67vw;
  aspect-ratio: 160/160;
  height: auto;
  margin-bottom: 10px;
  background-color: #03121F;
}
@media (min-width: 768px) {
  .archive-news .discography-list .jacket-image {
    width: 16.25vw;
    aspect-ratio: 312/312;
    margin-bottom: 20px;
  }
}
.archive-news .discography-list .jacket-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.archive-news .release-date {
  font-family: meno-banner, serif;
  font-weight: 400;
  color: #EFEFEF;
  font-size: 14px;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .archive-news .release-date {
    font-size: 0.83vw;
    margin-bottom: unset;
  }
}
.archive-news .tag-date-flex {
  display: block;
  gap: unset;
  margin-bottom: unset;
}
@media (min-width: 768px) {
  .archive-news .tag-date-flex {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
  }
}
.archive-news .release-contents-title {
  letter-spacing: 0.56px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .archive-news .release-contents-title {
    letter-spacing: 0.64px;
    font-size: 0.83vw;
  }
}

.jacket-image {
  position: relative;
}
.jacket-image img {
  display: block;
  width: 100%;
  height: auto;
}
.jacket-image .plus-btn {
  position: absolute;
  top: 36vw;
  right: 2vw;
  width: 5vw;
  height: 5vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5vw;
  line-height: 1;
  font-weight: 500;
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .jacket-image .plus-btn {
    top: 13.5vw;
    right: 0.5vw;
    width: 2vw;
    height: 2vw;
    font-size: 1vw;
  }
}
.jacket-image .plus-btn:hover {
  opacity: 0.7;
}
.jacket-image .plus-btn.is-white {
  color: #EFEFEF;
}
.jacket-image .plus-btn.is-black {
  color: #03121F;
}

.archive-container, .single-container {
  background-color: #0A1836;
}

.news.archive-header {
  display: block !important;
  position: relative;
  background-image: url("../images/bg/bg_news_archive-sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 60px;
  width: 100%;
  aspect-ratio: 750/540;
}
@media (min-width: 768px) {
  .news.archive-header {
    background-image: url("../images/bg/bg_news_archive-pc.webp");
    width: 100%;
    aspect-ratio: 1920/540;
    margin-bottom: 202px;
  }
}
.news.archive-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(3, 18, 31, 0.48);
}
.news.archive-header .archive-header-tx {
  width: 99.05vw;
  position: absolute;
  top: 64%;
  left: unset;
  right: 0;
}
@media (min-width: 768px) {
  .news.archive-header .archive-header-tx {
    width: 73.39vw;
    top: 82%;
    left: 5.2%;
    right: unset;
  }
}
.news.archive-header .circle-blur-deep-blue {
  top: 105%;
  left: 71%;
  width: 52vw;
  height: 52vw;
}
@media (min-width: 768px) {
  .news.archive-header .circle-blur-deep-blue {
    top: 98%;
    left: 9%;
    width: 19.69vw;
    height: 19.69vw;
  }
}

.archive-news {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .archive-news {
    padding: unset;
  }
}
.archive-news .section-title {
  margin: 0 0 110px 0;
}
@media (min-width: 768px) {
  .archive-news .section-title {
    margin: 0 0 216px 5.5%;
  }
}
.archive-news .news-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 60px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: unset;
  justify-content: unset;
}
@media (min-width: 768px) {
  .archive-news .news-tabs {
    gap: 1%;
    margin-bottom: 180px;
    padding: 0 120px 4px;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .archive-news .news-tabs .news-tags a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}
.archive-news .news-tags {
  background-color: #283551;
  color: #EFEFEF;
  border: 1px solid #283551;
  font-size: 12px;
  width: 90px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: unset;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .archive-news .news-tags {
    font-size: 0.83vw;
    width: 8.7vw;
    height: auto;
  }
}
.archive-news .news-tags a, .archive-news .news-tags span {
  padding: 4px;
}
@media (min-width: 768px) {
  .archive-news .news-tags a, .archive-news .news-tags span {
    padding: 8px 16px;
  }
}
.archive-news .news-tags:hover {
  background-color: #0A1836;
  border: 1px solid #efefef;
}
.archive-news .news-tags.active {
  background: #0A1836;
  color: #EFEFEF;
  border: 1px solid #EFEFEF;
}

.archive-news-inner {
  padding: unset;
}
@media (min-width: 768px) {
  .archive-news-inner {
    padding: 0 100px;
  }
}
.archive-news-inner .inner-flex {
  display: flex;
  gap: 20px;
}
@media (min-width: 768px) {
  .archive-news-inner .inner-flex {
    gap: 40px;
  }
}
.archive-news-inner ul {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .archive-news-inner ul {
    margin-bottom: 120px;
  }
}
.archive-news-inner li {
  border-bottom: 1px solid #283551;
  padding: 20px 10px;
  transition: background-color 0.5s;
}
@media (min-width: 768px) {
  .archive-news-inner li {
    padding: 40px 20px;
  }
}
.archive-news-inner li:hover {
  background-color: rgba(3, 18, 31, 0.5019607843);
}
.archive-news-inner li:hover .news-tags {
  color: #efefef;
  transition: background-color 0.5s, color 0.5s;
  background-color: #0a1836;
}
.archive-news-inner .news-thumbnail {
  width: 90px;
  height: 66px;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 768px) {
  .archive-news-inner .news-thumbnail {
    width: 170px;
    height: 127px;
  }
}
.archive-news-inner .news-thumbnail::before {
  backdrop-filter: blur(4px);
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.archive-news-inner .news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}
.archive-news-inner .img-blur {
  position: relative;
  width: 90px;
}
.archive-news-inner .news-body {
  display: flex;
  flex-direction: column;
}
.archive-news-inner .date-tag-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .archive-news-inner .date-tag-flex {
    gap: 40px;
    margin-bottom: 26px;
  }
}
.archive-news-inner .news-date {
  font-size: 12px;
  font-weight: 400;
  color: #C4C4C4;
}
@media (min-width: 768px) {
  .archive-news-inner .news-date {
    font-size: 20px;
  }
}
.archive-news-inner .news-tags {
  font-size: 10px;
  color: #EFEFEF;
  background-color: #0A1836;
  width: 95px;
  height: 17px;
  transition: background-color 0.5s, color 0.5s;
  border: 1px solid #c9c9c9;
}
@media (min-width: 768px) {
  .archive-news-inner .news-tags {
    font-size: 12px;
    width: 126px;
    height: 24px;
  }
}
.archive-news-inner .news-tags:hover {
  background-color: #0A1836;
  color: #EFEFEF;
}
.archive-news-inner .post-content {
  font-size: 12px;
}
@media (min-width: 768px) {
  .archive-news-inner .post-content {
    font-size: 16px;
  }
}

#paginate {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  #paginate {
    padding-bottom: 120px;
  }
}

.sec-news-single {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .sec-news-single {
    padding: 120px 100px;
  }
}
.sec-news-single .news-item-flex {
  gap: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .sec-news-single .news-item-flex {
    gap: 40px;
  }
}
.sec-news-single .news-date {
  font-size: 12px;
  color: #BABABA;
  font-family: meno-banner, serif;
  font-weight: 400;
  letter-spacing: 0.96;
}
@media (min-width: 768px) {
  .sec-news-single .news-date {
    font-size: 20px;
    color: #C4C4C4;
    line-height: 0.8;
  }
}
.sec-news-single .news-tags {
  font-size: 10px;
  line-height: 1.8;
  width: 80px;
  height: 17px;
  background-color: #0A1836;
  color: #EFEFEF;
  border: 1px solid #EFEFEF;
}
@media (min-width: 768px) {
  .sec-news-single .news-tags {
    font-size: 12px;
    width: 126px;
    height: 24px;
  }
}
.sec-news-single .news-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media (min-width: 768px) {
  .sec-news-single .news-title {
    font-size: 30px;
    letter-spacing: 1.2px;
  }
}
.sec-news-single .news-thumbnail {
  width: 339px;
  height: 254px;
  flex-shrink: 0;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .sec-news-single .news-thumbnail {
    width: 740px;
    height: 555px;
    margin-bottom: 80px;
  }
}
.sec-news-single .news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sec-news-single .news-text {
  letter-spacing: unset;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .sec-news-single .news-text {
    letter-spacing: 0.64px;
    font-size: 16px;
  }
}
.sec-news-single .news-text p {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .sec-news-single .news-text p {
    margin-top: 30px;
  }
}
.sec-news-single .news-text img {
  max-width: 400px;
}
.sec-news-single .news-text .wp-block-image {
  width: 90.4vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sec-news-single .news-text .wp-block-image {
    width: auto;
  }
}
.sec-news-single .news-text .wp-block-image img {
  width: 100% !important;
}

.single-news .sec-news-single .single-news a {
  border-bottom: 1px solid #EFEFEF;
  transition: opacity 0.5s ease;
}
.single-news .sec-news-single .single-news a:hover {
  opacity: 0.6;
}

/* =========================
    SNS SHARE
 ========================= */
.sns-share {
  display: block;
  gap: 16px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .sns-share {
    display: flex;
    gap: 24px;
    margin-top: 120px;
    justify-content: center;
  }
}
.sns-share .sns-share-item {
  text-align: center;
  margin: 0 auto 20px;
  display: table;
}
@media (min-width: 768px) {
  .sns-share .sns-share-item {
    margin: 0;
    display: unset;
  }
}

.sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 7.67vw;
  background-color: #0A1836;
  border: 2px solid #283551;
  border-radius: 30px;
  color: #efefef;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
  /* buttonリセット */
  appearance: none;
  background: #0A1836;
  width: 250px;
  height: 45px;
}
@media (min-width: 768px) {
  .sns-btn {
    width: 17.7vw;
    height: 60px;
    padding: 0 4.69vw;
  }
}
.sns-btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  padding-right: 1.9vw;
}
@media (min-width: 768px) {
  .sns-btn img {
    width: 30px;
    height: 30px;
    padding-right: 0.2vw;
  }
}
.sns-btn .text {
  flex: 1;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.sns-btn .arrow {
  margin-left: 12px;
  font-size: 14px;
  line-height: 1;
}
.sns-btn:hover {
  opacity: 0.6;
  transition: 0.5s;
}
@media (min-width: 768px) {
  .sns-btn .text {
    font-size: 0.83vw;
  }
  .sns-btn .arrow {
    font-size: 16px;
  }
}

.sns-share-chevron {
  position: relative;
  width: 10px;
  height: 10px;
  margin-left: 12px;
  flex-shrink: 0;
  /* 上の線 */
  /* 下の線 */
}
.sns-share-chevron::before, .sns-share-chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 2px;
  background-color: #EFEFEF;
  transform-origin: right center;
}
.sns-share-chevron::before {
  transform: translateY(-50%) rotate(-45deg);
}
.sns-share-chevron::after {
  transform: translateY(-50%) rotate(45deg);
}

/* Backの矢印ボタン */
.circle-arrow--left {
  margin-top: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .circle-arrow--left {
    margin-top: 120px;
  }
}
.circle-arrow--left .label {
  font-size: 18px;
  font-family: "Pathway Gothic One";
}
@media (min-width: 768px) {
  .circle-arrow--left .label {
    font-size: 36px;
  }
}
.circle-arrow--left a {
  gap: 20px;
}
@media (min-width: 768px) {
  .circle-arrow--left a {
    gap: 40px;
  }
}

.news-pagination .nav-links {
  width: 64vw;
  margin: auto;
  display: flex;
  padding-bottom: 60px;
  gap: 8vw;
  justify-content: center;
}
@media (min-width: 768px) {
  .news-pagination .nav-links {
    width: 31.9vw;
    gap: 3.1vw;
    padding-bottom: 120px;
  }
}
.news-pagination .page-numbers {
  font-family: meno-banner, serif;
  font-size: 18px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .news-pagination .page-numbers {
    font-size: 30px;
  }
}
.news-pagination span.page-numbers.current {
  color: #ff8400;
}

.circle-blur-light-blue {
  top: 100%;
  left: 29%;
  transform: translate(-50%, -50%);
  width: 26vw;
  height: 26vw;
  background: rgba(0, 140, 255, 0.8);
  filter: blur(100px);
}
@media (min-width: 768px) {
  .circle-blur-light-blue {
    top: 43%;
    left: 6%;
    transform: none;
    width: 19.69vw;
    height: 19.69vw;
    filter: blur(200px);
  }
}

.qa-section {
  background-color: #0A2256;
  color: #EFEFEF;
  padding: 90px 0 85px;
}
@media (min-width: 768px) {
  .qa-section {
    padding: 180px 0;
  }
}
.qa-section .circle-arrow {
  margin-right: 17px;
  text-align: right;
}
@media (min-width: 768px) {
  .qa-section .circle-arrow {
    display: flex;
    margin-right: unset;
  }
}
@media (min-width: 768px) {
  .qa-section .section-title {
    text-indent: -0.7em;
  }
}
.qa-section .qa-block-flex {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  padding: 0 17px;
  align-items: end;
  gap: 0;
}
@media (min-width: 768px) {
  .qa-section .qa-block-flex {
    flex-direction: unset;
    padding: 0 100px;
    gap: clamp(80px, 19vw, 523.5px);
  }
}
.qa-section .qa-right-column {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .qa-section .qa-right-column {
    width: 56%;
    margin-bottom: 0;
  }
}
.qa-section .qa-image {
  width: 95vw;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .qa-section .qa-image {
    width: 60vw;
    margin-bottom: 120px;
  }
}
.qa-section .qa-item {
  border-bottom: 1px solid #283551;
}
.qa-section .qa-item .qa-question {
  font-family: "Noto Sans JP";
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  letter-spacing: 0.04em;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-size: 15px;
  border: none;
  background: transparent;
  color: inherit;
  padding: 20px 35px 20px 0;
  padding-left: 1.5em;
  text-indent: -1.5em;
}
@media (min-width: 768px) {
  .qa-section .qa-item .qa-question {
    font-size: 16px;
    padding: 32px 35px 32px 0;
  }
}
.qa-section .qa-item .qa-question::before {
  content: "Q";
  padding-right: 2%;
  font-weight: 500;
}
.qa-section .qa-item .qa-question::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.qa-section .qa-item .qa-answer {
  font-family: "Noto Sans JP";
  padding: 10px 0;
  font-size: 14px;
  font-weight: 400;
  background-color: #0A1836;
  padding: 12px 11px;
  letter-spacing: 0.04em;
  margin: 0 7px 20px 11px;
  display: flex;
}
@media (min-width: 768px) {
  .qa-section .qa-item .qa-answer {
    font-size: 16px;
    padding: 24px 25px;
    margin: 0 0 32px 25px;
  }
}
.qa-section .qa-item .qa-answer::before {
  content: "A";
  padding-right: 2%;
}
.qa-section .qa-item.open .qa-question::after {
  transform: translateY(-50%) rotate(-135deg);
}
.qa-section button,
.qa-section button * {
  color: inherit;
}
.qa-section .qa-inner {
  display: none;
}

.page-qa.archive-header {
  position: relative;
  background-image: url("../images/bg/bg_qa_page-sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 100px;
  width: 100%;
  aspect-ratio: 750/540;
}
@media (min-width: 768px) {
  .page-qa.archive-header {
    background-image: url("../images/bg/bg_qa_page-pc.webp");
    width: 100%;
    aspect-ratio: 1920/540;
    margin-bottom: 202px;
  }
}
.page-qa.archive-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(3, 18, 31, 0.48);
}
.page-qa.archive-header .archive-header-tx {
  width: 83.3vw;
  position: absolute;
  top: 87%;
  left: unset;
  right: 0;
}
@media (min-width: 768px) {
  .page-qa.archive-header .archive-header-tx {
    width: 51.98vw;
    top: 82%;
    left: 5.2%;
    right: unset;
  }
}
.page-qa.archive-header .circle-blur-deep-blue {
  top: 103%;
  left: 71%;
  width: 52vw;
  height: 52vw;
}
@media (min-width: 768px) {
  .page-qa.archive-header .circle-blur-deep-blue {
    top: 98%;
    left: 9%;
    width: 19.69vw;
    height: 19.69vw;
  }
}

.qa-containe {
  background-color: #0A1836;
}
.qa-containe .form-box {
  background-color: #0A2256;
  padding: 0 6.2vw;
}
.qa-containe .form-box span {
  margin-bottom: 10px;
}
.qa-containe .form-box p {
  border-bottom: 1px solid #EFEFEF;
  padding: 10px 0 0;
}
@media (min-width: 768px) {
  .qa-containe .form-box p {
    padding: 32px 0 0;
  }
}

.sec-qa {
  padding: 0 20px;
  /* 利用規約チェック全体を中央に */
  /* チェックボックス＋テキストを横並び＆中央揃え */
}
@media (min-width: 768px) {
  .sec-qa {
    padding: 0;
  }
}
.sec-qa .section-title {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .sec-qa .section-title {
    padding: 0 120px;
  }
}
.sec-qa .qa-info {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: unset;
  margin-bottom: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .sec-qa .qa-info {
    font-size: 16px;
    letter-spacing: 0.64px;
    margin-bottom: 120px;
    padding: 0 120px;
  }
}
.sec-qa .contact-box {
  color: #EFEFEF;
}
.sec-qa .contact-box .form-box-start {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .sec-qa .contact-box .form-box-start {
    padding-top: 48px;
  }
}
.sec-qa .contact-box .form-box-end {
  padding-bottom: 50px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .sec-qa .contact-box .form-box-end {
    padding-bottom: 80px;
    margin-bottom: 120px;
  }
}
.sec-qa .contact-box .agree-label {
  color: #EFEFEF;
}
.sec-qa .wpcf7-form-control-wrap[data-name=agree] {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.sec-qa .wpcf7-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* □とテキストの間隔 */
}
.sec-qa .asterisk {
  font-size: 15px;
  font-family: "NotoSansCJKjp-Medium";
  font-weight: 500;
  color: #FF383C;
  margin-bottom: unset;
  padding: unset;
}
@media (min-width: 768px) {
  .sec-qa .asterisk {
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
    padding: 0 120px;
  }
}

/* ----------------------------
   サンクスページ
----------------------------- */
.qa-thanks-containe {
  background-color: #0A1836;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .qa-thanks-containe {
    padding: 0 110px;
  }
}
.qa-thanks-containe .simple-header {
  margin-bottom: 110px;
}
@media (min-width: 768px) {
  .qa-thanks-containe .simple-header {
    margin-bottom: 160px;
  }
}
.qa-thanks-containe .sec-contact-thanks {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .qa-thanks-containe .sec-contact-thanks {
    padding-bottom: 120px;
  }
}
.qa-thanks-containe .sec-contact-thanks .thanks-inner {
  color: #EFEFEF;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .qa-thanks-containe .sec-contact-thanks .thanks-inner {
    padding-bottom: 120px;
  }
}
.qa-thanks-containe .sec-contact-thanks .thanks-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .qa-thanks-containe .sec-contact-thanks .thanks-title {
    font-size: 36px;
    margin-bottom: 120px;
  }
}
.qa-thanks-containe .sec-contact-thanks .thanks-message {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 60px;
  display: block;
}
@media (min-width: 768px) {
  .qa-thanks-containe .sec-contact-thanks .thanks-message {
    font-size: 16px;
    margin-bottom: 120px;
    display: flex;
    justify-content: center;
  }
}
.qa-thanks-containe .sec-contact-thanks .thanks-notice {
  font-size: 12px;
  font-weight: 500;
  background-color: #0A2256;
  border: 1px solid #0A2256;
  color: #EFEFEF;
  padding: 20px;
  width: unset;
  letter-spacing: 0.4px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .qa-thanks-containe .sec-contact-thanks .thanks-notice {
    font-size: 16px;
    padding: 42px 32px;
    width: 43.5vw;
    margin: auto;
    letter-spacing: 0.64px;
  }
}
.qa-thanks-containe .btn-back {
  position: relative;
  display: block;
  width: 76.6vw;
  max-width: 300px;
  margin: 0 auto;
  padding: 14px 7vw;
  font-size: 14px;
  color: #EFEFEF;
  background-color: #496CCC;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .qa-thanks-containe .btn-back {
    font-size: 0.8vw;
    width: 21vw;
    max-width: unset;
  }
}
.qa-thanks-containe .btn-back::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("../images/parts/arrow-back.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .qa-thanks-containe .btn-back::after {
    right: 2.1vw;
    width: 0.83vw;
    height: 0.89vw;
  }
}

/* ================================
   共通モーダルスタイル
================================ */
body.is-modal-open {
  overflow: hidden;
}

.player-modal,
.detail-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  padding: 20px;
  justify-content: center;
  overflow: hidden;
}

/* 閉じるボタン */
.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  cursor: pointer;
  color: #EFEFEF;
  background-color: #283551; /* 背景色 */
  width: 22px; /* 丸のサイズ */
  height: 22px;
  border-radius: 50%; /* 丸にする */
  display: flex; /* 中央揃え */
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .modal-close-btn {
    width: 45px; /* 丸のサイズ */
    height: 45px;
    font-size: 22px;
  }
}

/* ================================
   トップ用モーダル（Apple Musicプレイヤー）
================================ */
.player-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 18, 31, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 998;
}
.player-modal.active {
  display: flex;
}

.player-modal .player-content {
  /* 共通 */
  overscroll-behavior: contain;
}
.player-modal.top-player .player-content {
  position: relative;
  background: #0A2256;
  width: 94vw;
  max-height: 90dvh;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .player-modal.top-player .player-content {
    width: 80vw;
    max-width: 900px;
    padding: 40px;
  }
}
.player-modal .modal-embed {
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
}

.modal-embed {
  width: 100%;
}

/* ================================
   アーカイブ用モーダル（ディスコグラフィー詳細）
================================ */
.detail-modal.player-modal.active {
  padding: 0 10vw;
  font-size: 14px;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active {
    font-size: 16px;
  }
}
.detail-modal.player-modal.active .player-content {
  width: 100%;
  background: #0A2256;
  overflow-y: auto;
  padding: 30px 20px 60px;
  position: relative;
  margin-top: 105px;
  max-height: calc(100dvh - 105px);
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .player-content {
    width: 66.6vw;
    padding: 60px 4.17vw;
    margin-top: unset;
    max-height: calc(100vh - 210px);
  }
}
.detail-modal.player-modal.active .modal-body-flex {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-body-flex {
    display: flex;
    gap: 3%;
  }
}
.detail-modal.player-modal.active .modal-body-left {
  width: 100%;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-body-left {
    width: 45%;
  }
}
.detail-modal.player-modal.active .modal-body-right {
  line-height: 1.6;
  letter-spacing: 0.04em;
  width: 100%;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-body-right {
    width: 55%;
  }
}
.detail-modal.player-modal.active .tag-date-flex {
  display: flex;
  gap: 5px;
  align-items: baseline;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .tag-date-flex {
    gap: 10px;
  }
}
.detail-modal.player-modal.active .modal-type {
  background-color: #0A2256;
  font-size: 12px;
  letter-spacing: 0.96px;
  width: 112px;
  height: 19px;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-type {
    font-size: 16px;
    letter-spacing: 0.64px;
    width: 168px;
    height: 32px;
    line-height: 1.8;
  }
}
.detail-modal.player-modal.active .modal-date {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.96px;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-date {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
.detail-modal.player-modal.active .number-price-flex {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .number-price-flex {
    display: flex;
    margin-bottom: 40px;
    font-size: 16px;
    gap: 4vw;
  }
}
.detail-modal.player-modal.active .modal-title {
  border-top: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
  padding: 10px 0;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-title {
    padding: 20px 0;
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.detail-modal.player-modal.active .modal-image {
  aspect-ratio: 260/260;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-image {
    aspect-ratio: 460/460;
    margin: 0 auto 40px;
  }
}
.detail-modal.player-modal.active .modal-image img {
  object-fit: contain;
  height: 100%;
}
.detail-modal.player-modal.active .modal-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 8px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-links {
    gap: 12px 16px;
    margin-bottom: unset;
  }
}
.detail-modal.player-modal.active .modal-links .news-tags {
  background-color: #0A2256;
  color: #EFEFEF;
  border: 1px solid #EFEFEF;
  font-size: 10px;
  width: 126px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter_-Medium.woff";
  width: 100%;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-links .news-tags {
    font-size: 16px;
    width: 223px;
    height: 76px;
    width: 100%;
  }
}
.detail-modal.player-modal.active .modal-links .news-tags:hover {
  opacity: 0.6;
}
.detail-modal.player-modal.active .modal-links .news-tags a {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-links .news-tags a {
    gap: 17px;
  }
}
.detail-modal.player-modal.active .modal-links .news-tags a img {
  width: 12px;
  height: auto;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-links .news-tags a img {
    width: 24px;
  }
}
.detail-modal.player-modal.active .modal-desc {
  line-height: 1.6;
}
.detail-modal.player-modal.active .modal-desc p:last-child {
  margin-bottom: 58px;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-desc p:last-child {
    margin-bottom: 60px;
  }
}
.detail-modal.player-modal.active .modal-apple,
.detail-modal.player-modal.active .modal-spotify,
.detail-modal.player-modal.active .modal-line {
  display: inline-block;
}
.detail-modal.player-modal.active .modal-songs {
  position: relative;
}
.detail-modal.player-modal.active .modal-songs::before {
  content: "【収録曲】";
  display: block;
  font-size: 14px;
  left: 0;
  margin-bottom: 4px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-songs::before {
    font-size: 16px;
  }
}
.detail-modal.player-modal.active .disc-1, .detail-modal.player-modal.active .disc-2 {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .disc-1, .detail-modal.player-modal.active .disc-2 {
    margin-bottom: 40px;
  }
}
.detail-modal.player-modal.active .sale-links {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 11px 0;
  margin: 50px 0 30px;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .sale-links {
    flex-direction: row;
    gap: 0 1vw;
    margin: 70px 0 60px;
  }
}
.detail-modal.player-modal.active .sale-links::before {
  content: "【販売場所】";
  font-size: 14px;
  margin-bottom: 4px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .sale-links::before {
    font-size: 16px;
  }
}
.detail-modal.player-modal.active .modal-tour {
  position: relative;
}
.detail-modal.player-modal.active .modal-tour img {
  margin: 10px 0;
}
@media (min-width: 768px) {
  .detail-modal.player-modal.active .modal-tour img {
    margin: 20px 0;
    width: 50%;
  }
}

@font-face {
  font-family: "KozGoPr6N-Bold";
  src: url("../../assets/font/KozGoPr6N-Bold.woff") format("woff");
}
@font-face {
  font-family: "NotoSansCJKjp-Bold";
  src: url("../../assets/font/NotoSansCJKjp-Bold.woff") format("woff");
}
@font-face {
  font-family: "NotoSansCJKjp-Light";
  src: url("../../assets/font/NotoSansCJKjp-Light.woff") format("woff");
}
@font-face {
  font-family: "NotoSansCJKjp-Medium";
  src: url("../../assets/font/NotoSansCJKjp-Medium.woff") format("woff");
}
@font-face {
  font-family: "NotoSansCJKjp-Regular";
  src: url("../../assets/font/NotoSansCJKjp-Regular.woff") format("woff");
}
@font-face {
  font-family: "Inter_-Medium.woff";
  src: url("../../assets/font/Inter_18pt-Medium.woff") format("woff");
}
@font-face {
  font-family: "Inter-BoldItalic";
  src: url("../../assets/font/Inter-BoldItalic.woff") format("woff");
}
@font-face {
  font-family: "IBMPlexSansJP-Bold.woff";
  src: url("../../assets/font/IBMPlexSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "IBMPlexSansJP-Medium.woff";
  src: url("../../assets/font/IBMPlexSansJP-Medium.woff") format("woff");
}
@font-face {
  font-family: "ShipporiMincho-Bold.woff";
  src: url("../../assets/font/ShipporiMincho-Bold.woff") format("woff");
}
/* ハンバーガーアイコン */
.site-header {
  position: fixed;
  top: 1px;
  right: 2px;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
@media (min-width: 768px) {
  .site-header {
    top: 5px;
    right: 25px;
  }
}
.site-header:hover {
  opacity: 0.6;
}
.site-header .hamburger {
  width: 35px;
  height: 9px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 25px 21px;
}
@media (min-width: 768px) {
  .site-header .hamburger {
    width: 70px;
    height: 18px;
    padding: 37px 25px;
  }
}
.site-header .hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: 0.3s ease;
  transform-origin: center;
}
.site-header .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(20deg);
}
@media (min-width: 768px) {
  .site-header .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(20deg);
  }
}
.site-header .hamburger.active span:nth-child(2) {
  transform: translateY(1px) rotate(-20deg);
}
@media (min-width: 768px) {
  .site-header .hamburger.active span:nth-child(2) {
    transform: translateY(-9px) rotate(-20deg);
  }
}

/* 右から出るメニュー（これは fixed のまま） */
.site-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100dvh;
  background-image: url("../images/bg/bg_release_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column;
  align-items: center;
  overscroll-behavior: contain;
  justify-content: flex-start;
  transition: right 0.6s cubic-bezier(1, 0, 0, 1) 0.2s;
  z-index: 999;
}
@media (min-width: 768px) {
  .site-nav {
    background-image: url("../images/bg/bg_release_pc.webp");
    height: 100vh;
    justify-content: center;
  }
}
.site-nav a {
  color: #EFEFEF;
  text-decoration: none;
  font-size: 16px;
  margin: 15px 0;
}
@media (min-width: 768px) {
  .site-nav a {
    font-size: 32px;
  }
}
.site-nav .footer-contents {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .site-nav .footer-contents {
    height: 100%;
  }
}
.site-nav .footer-contents::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.site-nav .footer-name {
  color: #EFEFEF;
  font-family: meno-banner, serif;
  font-weight: 600;
  font-size: 16px;
  margin-top: 31px;
  padding: 0 0 94px;
  text-align: left;
  z-index: 1;
}
@media (min-width: 768px) {
  .site-nav .footer-name {
    font-size: 32px;
    margin-top: 0;
    padding-bottom: 174px;
    width: 100%;
  }
}
.site-nav .footer-box {
  flex-wrap: wrap;
  padding: 0;
  width: 95.2%;
  gap: 0;
  margin-right: 0;
  max-width: none;
  opacity: 0;
  position: relative;
  transition: all 0.3s linear 0s;
  z-index: 90;
}
@media (min-width: 768px) {
  .site-nav .footer-box {
    margin: 73px auto 0;
    width: 89.58%;
  }
}
@media (min-width: 768px) {
  .site-nav .footer-box .footer-box__inner {
    display: flex;
    margin: 0 auto;
    max-width: 1130px;
    width: 100%;
  }
}
.site-nav .footer-title {
  font-size: 16px;
}
@media (min-width: 768px) {
  .site-nav .footer-title {
    font-size: 20px;
  }
}
.site-nav li {
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .site-nav li {
    margin: 0 0 20px;
  }
}
.site-nav li a {
  font-size: 16px;
  margin: 0;
}
.site-nav .footer-title {
  margin: 0 0 22px;
}
.site-nav .footer-nav-link {
  margin-bottom: 60px;
}
.site-nav .footer-nav-1, .site-nav .footer-nav-2 {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .site-nav .footer-nav-1, .site-nav .footer-nav-2 {
    margin-bottom: unset;
  }
}
.site-nav.active {
  display: flex;
  right: 0;
  position: fixed;
  top: 0;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  transition: right 0.6s cubic-bezier(1, 0, 0, 1) 0s;
}
@media (min-width: 768px) {
  .site-nav.active {
    display: flex;
    flex-direction: column;
  }
}
.site-nav.active .footer-box {
  opacity: 1;
  transition: all 0.5s linear 0.75s;
}

.simple-header {
  height: 45px;
}
@media (min-width: 768px) {
  .simple-header {
    height: 90px;
  }
}

.simple-header-black {
  height: 45px;
  color: #03121F;
}
@media (min-width: 768px) {
  .simple-header-black {
    height: 90px;
  }
}

.header-name {
  position: fixed;
  top: 22px;
  left: 5.2%;
  color: #FFFFFF;
  font-family: meno-banner, serif;
  font-weight: 600;
  font-size: 16px;
  left: 4.6%;
  z-index: 2;
}
@media (min-width: 768px) {
  .header-name {
    font-size: 1.67vw;
    top: 37px;
    left: 5.2%;
  }
}

.header-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .header-blur {
    height: 95px;
  }
}

/* トップだけ初期非表示にする */
.home .header-blur {
  opacity: 0;
}

.header-blur.is-active {
  opacity: 1;
  z-index: 2;
}

.container-trigger {
  position: relative;
  width: 100%;
  height: 1px;
}

.profile.archive-header {
  position: relative;
  background-image: url("../images/bg/bg_profile_page-sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 60px;
  width: 100%;
  aspect-ratio: 750/540;
}
@media (min-width: 768px) {
  .profile.archive-header {
    background-image: url("../images/bg/bg_profile_page-pc.webp");
    width: 100%;
    aspect-ratio: 1920/540;
    margin-bottom: 202px;
  }
}
.profile.archive-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(3, 18, 31, 0.48);
}
.profile.archive-header .archive-header-tx {
  width: 100.05vw;
  position: absolute;
  top: 88%;
  left: 2%;
}
@media (min-width: 768px) {
  .profile.archive-header .archive-header-tx {
    width: 62.47vw;
    top: 82%;
    left: 5.2%;
  }
}
.profile.archive-header .circle-blur-deep-blue {
  top: 105%;
  left: 71%;
  width: 52vw;
  height: 52vw;
}
@media (min-width: 768px) {
  .profile.archive-header .circle-blur-deep-blue {
    top: 98%;
    left: 9%;
    width: 19.69vw;
    height: 19.69vw;
  }
}

.profile-inner {
  padding: 0 0 60px;
}
@media (min-width: 768px) {
  .profile-inner {
    padding: 0 100px 120px;
  }
}
.profile-inner .main-img {
  width: 100%;
  margin: 0 auto 30px;
}
@media (min-width: 768px) {
  .profile-inner .main-img {
    width: 40vw;
    margin: 0 auto 60px;
  }
}
.profile-inner .profile-name {
  text-align: center;
  font-size: 20px;
  font-family: "din-2014", sans-serif;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .profile-inner .profile-name {
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  .profile-inner .profile-name {
    font-size: 32px;
  }
}
.profile-inner .profile-birthday {
  font-size: 10px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .profile-inner .profile-birthday {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.profile-inner .profile-text {
  padding: 0 0 120px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .profile-inner .profile-text {
    padding: 0 0 120px 206.02px;
    font-size: 16px;
    line-height: unset;
  }
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline .timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  row-gap: 20px;
  column-gap: 12px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .timeline .timeline-item {
    display: flex;
    gap: 35px;
    align-items: flex-start;
  }
}
.timeline .timeline-year {
  grid-column: 1/-1;
  font-family: "Pathway Gothic One";
  color: #496CCC;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  position: relative;
}
.timeline .timeline-year::after {
  content: "";
  height: 1px;
  background-color: #283551;
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .timeline .timeline-year {
    width: auto;
    font-size: 36px;
    line-height: unset;
    gap: 24px;
  }
  .timeline .timeline-year::after {
    flex: 0 0 101px;
  }
}
.timeline .timeline-text {
  grid-column: 1/-1;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}
@media (min-width: 768px) {
  .timeline .timeline-text {
    grid-column: auto;
    font-size: 16px;
    flex: 1;
    min-width: 0;
    display: grid;
  }
}
.timeline .img-music-2009 {
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .timeline .img-music-2009 {
    width: 23.2vw;
    margin-top: 20px;
  }
}
.timeline .img-music-2010 {
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .timeline .img-music-2010 {
    width: 36.6vw;
    margin-top: 20px;
  }
}
.timeline .img-music-2012 {
  width: 54.6vw;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .timeline .img-music-2012 {
    width: 10.1vw;
    margin-top: 20px;
  }
}

.profile-panel--fishing .profile.archive-header {
  position: relative;
  background-image: url("../images/bg/bg_profile_fishing-sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 60px;
  width: 100%;
  aspect-ratio: 750/540;
}
@media (min-width: 768px) {
  .profile-panel--fishing .profile.archive-header {
    background-image: url("../images/bg/bg_profile_fishing-pc.webp");
    width: 100%;
    aspect-ratio: 1920/540;
    margin-bottom: 202px;
  }
}
.profile-panel--fishing .profile.archive-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(135, 70, 0, 0.46);
}
.profile-panel--fishing .profile.archive-header .archive-header-tx {
  width: 100.05vw;
  position: absolute;
  top: 88%;
  left: 2%;
}
@media (min-width: 768px) {
  .profile-panel--fishing .profile.archive-header .archive-header-tx {
    width: 62.47vw;
    top: 82%;
    left: 5.2%;
  }
}
.profile-panel--fishing .profile.archive-header .circle-blur-deep-blue {
  top: 105%;
  left: 71%;
  width: 52vw;
  height: 52vw;
}
@media (min-width: 768px) {
  .profile-panel--fishing .profile.archive-header .circle-blur-deep-blue {
    top: 98%;
    left: 9%;
    width: 19.69vw;
    height: 19.69vw;
  }
}
.profile-panel--fishing .archive-container {
  background-color: #AF5700;
}

.circle-blur-orange {
  top: 85%;
  left: 65%;
  transform: translate(-50%, -50%);
  width: 26vw;
  height: 26vw;
  background: rgba(175, 87, 0, 0.46);
  filter: blur(80px);
  border-radius: 50%;
  position: absolute;
}
@media (min-width: 768px) {
  .circle-blur-orange {
    top: 90%;
    left: 10%;
    transform: none;
    width: 19.69vw;
    height: 19.69vw;
    filter: blur(100px);
  }
}

/* ボタンは固定表示 */
.profile-switcher {
  position: fixed;
  z-index: 100;
  right: clamp(20px, 5vw, 50px);
  bottom: calc(env(safe-area-inset-bottom) + clamp(20px, 5vw, 50px));
}
.profile-switcher .btn-profile {
  aspect-ratio: 1/1;
  position: relative;
  width: 50px;
  height: auto;
  cursor: pointer;
  transition: all 0.4s;
}
@media (min-width: 768px) {
  .profile-switcher .btn-profile {
    width: 7.4vw;
  }
}
.profile-switcher .btn-profile img {
  position: absolute;
  top: 0;
  left: 0;
}
.profile-switcher .btn-profile img.fishing {
  backface-visibility: hidden;
  transition: transform 1s;
}
.profile-switcher .btn-profile img.music {
  backface-visibility: hidden;
  transform: rotateY(-180deg);
  transition: transform 1s;
}
.profile-switcher .btn-profile.active img.fishing {
  transform: rotateY(180deg);
}
.profile-switcher .btn-profile.active img.music {
  transform: rotateY(0);
}

.profile-panel--fishing .section-title {
  color: #EFEFEF;
}
.profile-panel--fishing .section-title::before {
  border-top: 1.5px solid #EFEFEF;
}
.profile-panel--fishing .timeline-year {
  color: #EFEFEF;
}
.profile-panel--fishing .timeline-year::after {
  background-color: #EFEFEF;
}
.profile-panel--fishing .img-fishing-2019 {
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .profile-panel--fishing .img-fishing-2019 {
    width: 21.9vw;
    margin-top: 20px;
  }
}
.profile-panel--fishing .img-fishing-2020 {
  width: 100%;
  height: 254px;
  margin-top: 10px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .profile-panel--fishing .img-fishing-2020 {
    width: 21.9vw;
    margin-top: 20px;
    height: 316px;
  }
}

/* ===== プロフィール切替 ===== */
.profile-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.profile-wrapper .header-name {
  position: fixed;
  top: 22px;
  left: 5.2%;
  z-index: 4;
}
@media (min-width: 768px) {
  .profile-wrapper .header-name {
    top: 37px;
  }
}
.profile-wrapper .header-blur {
  z-index: 3;
}

/* プロフ本体 */
.profile-panel {
  position: relative;
  inset: 0;
  z-index: 2;
}
.profile-panel.hidden {
  position: absolute;
  z-index: 1;
}

/* 前後の重なり順だけで制御 */
/* ===== 消しゴムアニメーション ===== */
.profile-eraser {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  --erase: 0%;
  /* マスクだけ */
  -webkit-mask-image: linear-gradient(to bottom, #000 var(--erase), transparent var(--erase));
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: intersect;
  background: #03121F;
}

.profile-wrapper.is-switching .profile-panel.is-front .profile-eraser {
  opacity: 1;
  animation: eraseDown 0.9s linear forwards;
}

@keyframes eraseDown {
  from {
    --erase: 0%;
  }
  to {
    --erase: 100%;
  }
}
.close-slice {
  position: absolute;
  top: 0;
  height: 100%;
  width: 10%;
  overflow: hidden;
  transition: all 6s linear;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
@media (min-width: 768px) {
  .close-slice {
    transition: all 3s ease;
  }
}
.close-slice .profile-panel {
  height: 100%;
}
.close-slice .profile-panel .archive-container {
  height: 100%;
}

.page-template-default.page.page-id-37 .hamburger span {
  background: #03121F;
}

.page-template-default.page.page-id-37 .hamburger.active span {
  background: #EFEFEF;
}

/* サンクスページのハンバーガー */
.page-template-page-contact-thanks .hamburger span {
  background: #03121F;
}

.page-container {
  background-color: #EFEFEF;
  padding: 0 20px;
}
.page-container .simple-header-black {
  margin-bottom: 110px; /* ページに合わせて調整 */
}
@media (min-width: 768px) {
  .page-container .simple-header-black {
    margin-bottom: 160px;
  }
}
.page-container .simple-header-black .header-name {
  color: #03121F;
}
.page-container .simple-header-black .header-name a {
  color: #03121F;
}
.page-container .page-section-title {
  color: #496CCC;
  font-family: meno-banner, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-container .page-section-title {
    font-size: 128px;
    font-weight: 400;
    margin-bottom: 40px;
  }
}
.page-container .page-section-title-jp {
  color: #496CCC;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 60px;
  padding-left: 0;
}
@media (min-width: 768px) {
  .page-container .page-section-title-jp {
    font-size: 24px;
    margin-bottom: 120px;
  }
}
.page-container .header-title {
  padding-left: 0;
}
@media (min-width: 768px) {
  .page-container .header-title {
    padding-left: 5.2%;
  }
}

.form-box {
  background-color: #FFFFFF;
  padding: 0 6.2vw;
}
.form-box span {
  margin-bottom: 10px;
}
.form-box p {
  border-bottom: 1px solid #c9c9c9;
  padding: 10px 0 0;
}
@media (min-width: 768px) {
  .form-box p {
    padding: 32px 0 0;
  }
}

.form-box-start {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .form-box-start {
    padding-top: 48px;
  }
}

.form-box-end {
  padding-bottom: 50px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .form-box-end {
    padding-bottom: 80px;
    margin-bottom: 40px;
  }
}

.contact-box {
  color: #03121F;
  /* ----- CF7フォーム全体 ----- */
  /* ----- 各入力欄のラッパー ----- */
  /* ----- 利用規約に相違するのラッパー ----- */
  /* ----- input / textarea / select 全体 ----- */
  /* ----- 入力例（placeholder）のスタイル ----- */
  /* 送信ボタンを包んでいる p */
  /* ----- ラベル部分 ----- */
  /* ----- 必須項目のラベル ----- */
  /* ----- 必須マーク（※） ----- */
  /* ----- テキスト入力欄の下線 ----- */
  /* ----- 項目タイトル（form-item内pタグ） ----- */
  /* ----- ラジオボタンの項目テキスト ----- */
}
.contact-box .wpcf7.js {
  padding: 40px 0 60px;
}
@media (min-width: 768px) {
  .contact-box .wpcf7.js {
    padding: 0 120px 120px;
  }
}
.contact-box .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 20px;
  flex: 1;
}
@media (min-width: 768px) {
  .contact-box .wpcf7-form-control-wrap {
    margin-bottom: unset;
  }
}
.contact-box .wpcf7-form-control-wrap[data-name=agree] {
  justify-content: center;
}
.contact-box .form-box input,
.contact-box textarea,
.contact-box select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 16px;
}
.contact-box textarea {
  background-color: #EFEFEF;
  border-radius: 10px;
  border: 1px solid #C9C9C9;
  padding: 20px 0 0 11px;
}
@media (min-width: 768px) {
  .contact-box textarea {
    padding: 20px 0 0 26px;
  }
}
.contact-box ::placeholder {
  color: #B9B9B9;
  font-size: 14px;
  opacity: 1;
}
.contact-box .wpcf7-submit {
  background-color: #496CCC;
  color: #EFEFEF;
  border: none;
  border-radius: 40px;
  padding: 15px 16vw;
  cursor: pointer;
  font-size: 3.7vw;
  width: 76.6vw;
}
@media (min-width: 768px) {
  .contact-box .wpcf7-submit {
    padding: 15px 10.2vw 15px 9.8vw;
    font-size: 0.83vw;
    width: 21vw;
  }
}
.contact-box .wpcf7-form p:has(.wpcf7-submit) {
  text-align: center;
}
.contact-box .wpcf7-spinner {
  display: none;
}
.contact-box .form-label {
  width: 80vw;
}
@media (min-width: 768px) {
  .contact-box .form-label {
    width: 7.6vw;
  }
}
.contact-box .label-text {
  position: relative;
  display: inline-block;
}
.contact-box .form-item.is-required .form-label {
  position: relative;
  display: inline-block;
}
.contact-box .form-item.is-required .label-text::after {
  content: "※";
  position: absolute;
  top: 0em;
  right: -1.1em;
  color: #FF383C;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}
.contact-box .wpcf7-form-control.wpcf7-text {
  border: 1px solid #C9C9C9;
  border-radius: 5px;
  background-color: #EFEFEF;
  padding: 5px 10px;
}
@media (min-width: 768px) {
  .contact-box .wpcf7-form-control.wpcf7-text {
    border-radius: 10px;
    padding: 17px 18px;
  }
}
.contact-box .wpcf7 form.invalid .wpcf7-response-output,
.contact-box .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-box .wpcf7 form.payment-required .wpcf7-response-output {
  color: #ff383c;
  border: none;
  font-size: 14px;
  font-weight: normal;
  margin: 10px 0.5em 0;
  padding: 10px 4%;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-box .wpcf7 form.invalid .wpcf7-response-output,
  .contact-box .wpcf7 form.unaccepted .wpcf7-response-output,
  .contact-box .wpcf7 form.payment-required .wpcf7-response-output {
    padding: 10px 5px;
  }
}
.contact-box .form-item p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.6px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .contact-box .form-item p {
    font-size: 16px;
  }
}
.contact-box .form-item.tx-center .wpcf7-form-control-wrap {
  justify-content: center;
}
.contact-box .form-item.tx-center .wpcf7-not-valid-tip {
  text-align: center;
}
.contact-box .form-item.tx-center .wpcf7-acceptance label {
  cursor: pointer;
}
.contact-box .form-item.tx-center .wpcf7-acceptance a {
  color: #496ccc;
  transition: all 0.3s;
}
.contact-box .form-item.tx-center .wpcf7-acceptance a.col-wh {
  color: #efefef;
}
.contact-box .form-item.tx-center .wpcf7-acceptance a:hover {
  opacity: 0.6;
}
.contact-box .form-item.tx-center .wpcf7-acceptance input {
  cursor: pointer;
  transition: all 0.3s;
}
.contact-box .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  margin-top: 10px;
}
.contact-box .wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}
.contact-box .form-item .wpcf7-form-control-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .contact-box .form-item .wpcf7-form-control-wrap {
    margin-bottom: 40px;
  }
}
.contact-box .form-item .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: #ff383c;
  margin-top: 10px;
  width: 100%;
}
.contact-box .wpcf7-list-item-label {
  font-size: 15px;
}
@media (min-width: 768px) {
  .contact-box .wpcf7-list-item-label {
    font-size: 16px;
  }
}
.contact-box .asterisk {
  font-size: 15px;
  font-family: "NotoSansCJKjp-Medium";
  font-weight: 500;
  color: #FF383C;
  margin-bottom: unset;
  padding: unset;
}
@media (min-width: 768px) {
  .contact-box .asterisk {
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
    padding: 0 120px;
  }
}

/* ------------------------
   カスタムラジオボタン
------------------------- */
.wpcf7-radio.radio-style {
  display: block;
  gap: 4.1vw;
  /* ここでラベルの文字サイズを変える */
}
@media (min-width: 768px) {
  .wpcf7-radio.radio-style {
    display: flex;
    flex-wrap: nowrap;
  }
}
.wpcf7-radio.radio-style .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .wpcf7-radio.radio-style .wpcf7-list-item {
    gap: 17px;
  }
}
.wpcf7-radio.radio-style .wpcf7-list-item input[type=radio] {
  transform: scale(2);
  margin-right: 15px;
  appearance: none;
  -webkit-appearance: none;
  width: 10px !important;
  height: 10px !important;
  background-color: #EFEFEF;
  border: 1px solid #c9c9c9;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .wpcf7-radio.radio-style .wpcf7-list-item input[type=radio] {
    width: 10px !important;
    height: 10px !important;
    transform: scale(2.2);
    margin-right: 15px;
  }
}
.wpcf7-radio.radio-style .wpcf7-list-item input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: #496CCC;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wpcf7-radio.radio-style .wpcf7-list-item-label {
  font-size: 15px !important;
  color: #03121F;
}
@media (min-width: 768px) {
  .wpcf7-radio.radio-style .wpcf7-list-item-label {
    font-size: 16px !important;
  }
}

/* ----------------------------
   送信ボタン初期状態（無効）
----------------------------- */
.submit-btn {
  background-color: #03121F;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ラッパー */
.submit-wrap {
  position: relative;
  display: inline-block;
  color: currentColor;
}

/* 横棒 */
.submit-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  width: 9vw;
  height: 1px;
  background-color: currentColor;
  transform: translateY(-50%);
  pointer-events: none;
  color: #EFEFEF;
}
@media (min-width: 768px) {
  .submit-wrap::before {
    width: 3.2vw;
  }
}

/* 矢印先端 */
.submit-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  width: 0.3em;
  height: 0.3em;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  color: #EFEFEF;
}

/* 利用規約チェックボックス */
.agree-label {
  color: #03121F;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin: 0 auto 40px;
  justify-content: center;
}
@media (min-width: 768px) {
  .agree-label {
    font-size: 16px;
  }
}
.agree-label input[type=checkbox] {
  flex-shrink: 0;
  width: 16px !important;
  height: 16px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.agree-label span {
  font-size: 15px;
}
@media (min-width: 768px) {
  .agree-label span {
    font-size: 16px;
  }
}

/* ----------------------------
   サンクスページ
----------------------------- */
.sec-contact-thanks {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .sec-contact-thanks {
    padding-bottom: 120px;
  }
}
.sec-contact-thanks .thanks-inner {
  color: #03121F;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .sec-contact-thanks .thanks-inner {
    padding-bottom: 120px;
  }
}
.sec-contact-thanks .thanks-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-contact-thanks .thanks-title {
    font-size: 36px;
    margin-bottom: 120px;
  }
}
.sec-contact-thanks .thanks-message {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 60px;
  display: block;
}
@media (min-width: 768px) {
  .sec-contact-thanks .thanks-message {
    font-size: 16px;
    margin-bottom: 120px;
    display: flex;
    justify-content: center;
  }
}
.sec-contact-thanks .thanks-notice {
  font-size: 12px;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 20px;
  width: unset;
  letter-spacing: 0.4px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .sec-contact-thanks .thanks-notice {
    font-size: 16px;
    padding: 42px 32px;
    width: 43.5vw;
    margin: auto;
    letter-spacing: 0.64px;
  }
}

.btn-back {
  position: relative;
  display: block;
  width: 76.6vw;
  max-width: 300px;
  margin: 0 auto;
  padding: 14px 7vw;
  font-size: 14px;
  color: #EFEFEF;
  background-color: #496CCC;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .btn-back {
    font-size: 0.8vw;
    width: 21vw;
    max-width: unset;
  }
}
.btn-back::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("../images/parts/arrow-back.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .btn-back::after {
    right: 2.1vw;
    width: 0.83vw;
    height: 0.89vw;
  }
}

.page-template-page-privacy .site-header .hamburger.active span {
  background: #EFEFEF;
}

.wp-singular.page-template-default.page.page-id-39 .site-header .hamburger span {
  background: #03121F;
}

.privacy-container {
  /* h2直後のp */
  /* h2直後のul */
  /* h3 を1文字分下げる */
  /* h3直後のpは本文として字下げ */
}
.privacy-container.page-container {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .privacy-container.page-container {
    padding: unset;
  }
}
.privacy-container .page-section-title {
  letter-spacing: -0.06em;
}
.privacy-container .privacy-inner {
  color: #03121F;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.12px;
  line-height: 1.6;
  padding: 0 0 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .privacy-container .privacy-inner {
    font-size: 16px;
    letter-spacing: 0.64px;
    padding: 0 5.2vw 120px;
    gap: 40px;
  }
}
.privacy-container .simple-header-black {
  margin-bottom: 85px;
}
@media (min-width: 768px) {
  .privacy-container .simple-header-black {
    margin-bottom: 160px;
  }
}
.privacy-container .header-title {
  padding-left: 0;
}
@media (min-width: 768px) {
  .privacy-container .header-title {
    padding-left: 5.2vw;
  }
}
.privacy-container .privacy-lead {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .privacy-container .privacy-lead {
    margin-bottom: 80px;
  }
}
.privacy-container h2 {
  font-weight: 700;
}
.privacy-container h2 + p {
  padding-left: 1.4em;
}
.privacy-container h2 + ul {
  padding-left: 1.1em;
}
.privacy-container h3 {
  padding-left: 1em;
}
.privacy-container h3 + p {
  padding-left: 1.2em;
}
.privacy-container .indent + div, .privacy-container .indent + p {
  padding-left: 1.9em;
}
.privacy-container .browser-list li .underline {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.discography-template-default.single.single-discography main {
  position: relative;
  z-index: 1;
}
.discography-template-default.single.single-discography .header-blur {
  z-index: 2;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  padding: 0 20px;
  background-image: url("../images/bg/bg_latest-release_pc.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .bg-layer {
    background-image: url("../images/bg/bg_latest-release_pc.webp");
  }
}
.bg-layer::before {
  background: rgba(3, 18, 31, 0.85);
  content: "";
  position: absolute;
  inset: 0;
}

.single-discography-container {
  position: relative;
}
.single-discography-container .site-footer {
  position: relative;
}
.single-discography-container section {
  border-bottom: 1px solid #C9C9C9;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .single-discography-container section {
    padding-bottom: 120px;
  }
}
.single-discography-container .single-discography-inner {
  position: relative;
  z-index: 1;
}

.release-title-animation {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .release-title-animation {
    top: 25%;
  }
}

.release-title__box {
  position: absolute;
  top: 51%;
  z-index: -1;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .release-title__box {
    top: 63%;
  }
}

.slideAnimation-list__item {
  font-family: "Inter-BoldItalic";
  color: rgb(49, 67, 112);
  opacity: 0.4;
  font-size: 28vw;
}
@media (min-width: 768px) {
  .slideAnimation-list__item {
    font-size: 8.5vw;
  }
}

.latest-release-inner {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .latest-release-inner {
    padding: 0 100px;
  }
}
.latest-release-inner .release-section-title {
  font-size: 18.6vw;
  margin-top: 78px;
  padding: unset;
}
@media (min-width: 768px) {
  .latest-release-inner .release-section-title {
    font-size: 10.4vw;
    margin-top: 305px;
    padding: 0 5.2vw;
  }
}
.latest-release-inner .release-section-title::before {
  width: 52vw;
  height: 52vw;
  left: 32%;
  top: 100%;
  border-radius: 50%;
  background: rgba(0, 42, 255, 0.8);
}
@media (min-width: 768px) {
  .latest-release-inner .release-section-title::before {
    width: 17.55vw;
    height: 17.55vw;
    left: 25%;
    top: 90%;
  }
}
.latest-release-inner .release-layout {
  display: flex;
  flex-direction: column-reverse;
  padding: 0;
  align-items: unset;
}
@media (min-width: 768px) {
  .latest-release-inner .release-layout {
    padding: 110px 11.4vw 0 16.6vw;
    flex-direction: unset;
    align-items: flex-start;
  }
}
.latest-release-inner .release-title {
  font-family: "IBMPlexSansJP-Bold.woff";
  text-align: center;
  letter-spacing: 1.28px;
  line-height: 1.3;
  font-size: 32px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .latest-release-inner .release-title {
    text-align: unset;
    letter-spacing: 2.56px;
    font-size: 3.3vw;
    margin-bottom: 40px;
    line-height: 1.3;
  }
}
.latest-release-inner .release-date {
  font-family: "NotoSansCJKjp-Bold";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .latest-release-inner .release-date {
    font-size: 1.25vw;
    text-align: unset;
    margin-bottom: 8px;
  }
}
.latest-release-inner .number-price-flex {
  font-family: "IBMPlexSansJP-Medium.woff";
  display: flex;
  margin-bottom: 30px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .latest-release-inner .number-price-flex {
    margin-bottom: 40px;
    font-size: 0.83vw;
    justify-content: unset;
  }
}
.latest-release-inner .sp-description {
  display: block;
}
@media (min-width: 768px) {
  .latest-release-inner .sp-description {
    display: none;
  }
}
.latest-release-inner .pc-description {
  display: none;
}
@media (min-width: 768px) {
  .latest-release-inner .pc-description {
    display: block;
  }
}
.latest-release-inner .release-jacket {
  width: 76vw;
  margin: 25px auto 20px;
}
@media (min-width: 768px) {
  .latest-release-inner .release-jacket {
    width: 24.9vw;
    margin: 0 auto 40px;
  }
}
.latest-release-inner .music-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 9px;
  margin: 0 auto 30px;
  width: 76vw;
}
@media (min-width: 768px) {
  .latest-release-inner .music-links {
    gap: 20px 16px;
    margin: unset;
    width: unset;
  }
}
.latest-release-inner .music-tags {
  color: #EFEFEF;
  border: 1px solid #EFEFEF;
  border-radius: 40px;
  font-size: 12px;
  width: 90px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 38px;
  width: 100%;
  font-size: 10px;
  font-family: "Inter_-Medium.woff";
}
@media (min-width: 768px) {
  .latest-release-inner .music-tags {
    font-size: 0.83vw;
    height: 76px;
  }
}
.latest-release-inner a {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .latest-release-inner a {
    gap: 17px;
  }
}
.latest-release-inner a img {
  width: 12px;
  height: auto;
}
@media (min-width: 768px) {
  .latest-release-inner a img {
    width: 24px;
  }
}
.latest-release-inner .release-left-inner {
  margin-top: 0;
  position: relative;
}
.latest-release-inner .release-description {
  line-height: 1.6;
  margin-bottom: 0;
}
.latest-release-inner h2 {
  font-family: "ShipporiMincho-Bold.woff";
  font-size: 36px;
  line-height: 1.6;
  text-align: center;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .latest-release-inner h2 {
    margin-top: 120px;
    font-size: 5vw;
  }
}
.latest-release-inner h3 {
  font-family: "NotoSansCJKjp-Bold";
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .latest-release-inner h3 {
    font-size: 1.88vw;
    margin-bottom: 120px;
  }
}

.track-list span {
  display: inline-block;
}
.track-list span:nth-child(1) {
  letter-spacing: -0.3em;
}
.track-list span:nth-child(2) {
  letter-spacing: -0.22em;
}
.track-list span:nth-child(3) {
  letter-spacing: -0.34em;
}
.track-list span:nth-child(4) {
  letter-spacing: -0.34em;
}
.track-list span:nth-child(5) {
  letter-spacing: -0.3em;
}
.track-list span:nth-child(6) {
  letter-spacing: -0.04em;
}
.track-list span:nth-child(7) {
  letter-spacing: -0.33em;
}
.track-list span:nth-child(8) {
  letter-spacing: -0.32em;
}
.track-list span:nth-child(9) {
  letter-spacing: -0.32em;
}
.track-list span:nth-child(10) {
  letter-spacing: -0.04em;
}
.track-list .disc-flex {
  display: block;
}
@media (min-width: 768px) {
  .track-list .disc-flex {
    display: flex;
    justify-content: center;
    gap: 7.7vw;
  }
}
.track-list .disc-1, .track-list .disc-2 {
  border: 1px solid #EFEFEF;
  background-color: #03121F;
  width: unset;
  padding: 30px 27px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media (min-width: 768px) {
  .track-list .disc-1, .track-list .disc-2 {
    width: 40.9vw;
    padding: 60px 3.1vw;
    font-size: 16px;
  }
}
.track-list .disc-1 {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .track-list .disc-1 {
    margin-bottom: 0;
  }
}

.available-at span {
  display: inline-block;
}
.available-at span:nth-child(1) {
  letter-spacing: -0.53em;
}
.available-at span:nth-child(2) {
  letter-spacing: -0.53em;
}
.available-at span:nth-child(3) {
  letter-spacing: -0.26em;
}
.available-at span:nth-child(4) {
  letter-spacing: -0.34em;
}
.available-at span:nth-child(5) {
  letter-spacing: -0.32em;
}
.available-at span:nth-child(6) {
  letter-spacing: -0.25em;
}
.available-at span:nth-child(7) {
  letter-spacing: -0.33em;
}
.available-at span:nth-child(8) {
  letter-spacing: -0.32em;
}
.available-at span:nth-child(9) {
  letter-spacing: -0.3em;
}
.available-at span:nth-child(10) {
  letter-spacing: -0.04em;
}
.available-at span:nth-child(11) {
  letter-spacing: -0.4em;
}
.available-at span:nth-child(12) {
  letter-spacing: -0.32em;
}
.available-at .sale-links {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 18px 0;
}
@media (min-width: 768px) {
  .available-at .sale-links {
    display: flex;
    gap: 1.82vw;
    justify-content: center;
    flex-direction: unset;
    margin: auto;
  }
}
.available-at .sale-links a {
  width: 75.7vw;
  margin: auto;
}
@media (min-width: 768px) {
  .available-at .sale-links a {
    width: 14.9vw;
    margin: unset;
  }
}
.available-at .sale-links img {
  width: 100%;
}

.music-video span {
  display: inline-block;
}
.music-video span:nth-child(1) {
  letter-spacing: -0.28em;
}
.music-video span:nth-child(2) {
  letter-spacing: -0.35em;
}
.music-video span:nth-child(3) {
  letter-spacing: -0.3em;
}
.music-video span:nth-child(4) {
  letter-spacing: -0.33em;
}
.music-video span:nth-child(5) {
  letter-spacing: -0.3em;
}
.music-video span:nth-child(6) {
  letter-spacing: 0em;
}
.music-video span:nth-child(7) {
  letter-spacing: -0.25em;
}
.music-video span:nth-child(8) {
  letter-spacing: -0.26em;
}
.music-video span:nth-child(9) {
  letter-spacing: -0.38em;
}
.music-video span:nth-child(10) {
  letter-spacing: -0.3em;
}
.music-video span:nth-child(11) {
  letter-spacing: -0.04em;
}
.music-video .mv-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin: auto;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .music-video .mv-embed {
    width: 48.33vw;
    margin-bottom: 80px;
  }
}
.music-video .mv-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.music-video .circle-wrap {
  margin: 0 auto;
}
.music-video a img {
  width: 33vw;
}
@media (min-width: 768px) {
  .music-video a img {
    width: 12.9vw;
  }
}
.music-video .movie-circle-arrow::before {
  width: 2px;
}
@media (min-width: 768px) {
  .music-video .movie-circle-arrow::before {
    width: 3px;
  }
}
.music-video .movie-circle-arrow::after {
  border-top: 2px solid #EFEFEF;
  border-right: 2px solid #EFEFEF;
}
@media (min-width: 768px) {
  .music-video .movie-circle-arrow::after {
    border-top: 3px solid #EFEFEF;
    border-right: 3px solid #EFEFEF;
  }
}

.tour-info {
  border-bottom: none !important;
}
.tour-info span {
  display: inline-block;
}
.tour-info span:nth-child(1) {
  letter-spacing: -0.3em;
}
.tour-info span:nth-child(2) {
  letter-spacing: -0.36em;
}
.tour-info span:nth-child(3) {
  letter-spacing: -0.3em;
}
.tour-info span:nth-child(4) {
  letter-spacing: -0.3em;
}
.tour-info span:nth-child(5) {
  letter-spacing: 0em;
}
.tour-info span:nth-child(6) {
  letter-spacing: -0.3em;
}
.tour-info span:nth-child(7) {
  letter-spacing: -0.3em;
}
.tour-info span:nth-child(8) {
  letter-spacing: -0.3em;
}
.tour-info span:nth-child(9) {
  letter-spacing: -0.3em;
}
.tour-info .tour-text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 500;
  display: block;
  margin: 0 0 30px;
  display: block;
}
@media (min-width: 768px) {
  .tour-info .tour-text {
    font-size: 0.83vw;
    margin: 0 auto 60px;
    display: flex;
    gap: 7.3vw;
    justify-content: center;
  }
}
.tour-info .circle-arrow a {
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .tour-info .circle-arrow a {
    justify-content: center;
  }
}
.tour-info .tour-sp {
  font-size: 20px;
  font-weight: 700;
  font-family: "NotoSansCJKjp-Bold";
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .tour-info .tour-sp {
    display: none;
  }
}
.tour-info .tour-pc {
  display: none;
}
@media (min-width: 768px) {
  .tour-info .tour-pc {
    display: block;
    font-size: 40px;
    font-weight: 700;
    font-family: "NotoSansCJKjp-Bold";
    margin-bottom: 60px;
  }
}
.tour-info .flyer-img {
  width: 76vw;
  margin: 0 auto 30px;
}
@media (min-width: 768px) {
  .tour-info .flyer-img {
    width: 32.5vw;
    margin: unset;
  }
}
.tour-info .tour-inner-text {
  font-size: 16px;
  font-family: "NotoSansCJKjp-Medium";
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .tour-info .tour-inner-text {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */