@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100..900&display=swap');

/*================================================
 共通
================================================ */
html,
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
  background-color: #000;
  line-height: 1;
  margin: 0;
  --width: 1440;
  --sp-width: 750;
  overflow: hidden;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin: 0;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  z-index: 100;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
.s a:hover {
  opacity: 1;
}

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

section {
  padding: 0 calc(85 / var(--width) * 100vw) calc(140 / var(--width) * 100vw);
}
.s section {
  padding: 0 calc(35 / var(--sp-width) * 100vw) calc(180 / var(--sp-width) * 100vw);
}

/* wrapper */
.section-wrapper {
  padding-inline: calc(150 / var(--width) * 100vw);
}
.s .section-wrapper {
  padding-inline: calc(70 / var(--sp-width) * 100vw);
}

/* タイトル */
.section-title {
  display: flex;
  align-items: center;
  column-gap: calc(36 / var(--width) * 100vw);
}
.s .section-title {
  column-gap: calc(20 / var(--sp-width) * 100vw);
}

.section-title-text {
  font-size: calc(32 / var(--width) * 100vw);
  color: #0790e0;
  flex-shrink: 0;
}
.s .section-title-text {
  font-size: calc(42 / var(--sp-width) * 100vw);
}

.section-title-line {
  display: block;
  width: 100%;
  height: calc(1 / var(--width) * 100vw);
  background-color: #0790e0;
}
.s .section-title-line {
  height: calc(1 / var(--sp-width) * 100vw);
}

.section-title._right .section-title-text {
  color: #b3a369;
}
.section-title._right .section-title-line {
  background-color: #b3a369;
}

.section-title-deco {
  position: absolute;
  top: calc(80 / var(--width) * 100vw);
  left: 0;
  width: calc(80 / var(--width) * 100vw);
}

.section-title._right .section-title-deco {
  left: initial;
  right: 0;
}

/* ボタン */
.section-button {
  background-image: linear-gradient(360deg, rgba(7, 144, 224, 1), rgba(148, 207, 242, 1));
  border-radius: calc(42 / var(--width) * 100vw);
  padding: calc(4 / var(--width) * 100vw);
  border: none;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  transition: opacity 0.3s;
}
.s .section-button {
  border-radius: calc(60 / var(--sp-width) * 100vw);
  padding: calc(2 / var(--sp-width) * 100vw);
}
.section-button._yellow {
  background-image: linear-gradient(360deg, rgba(179, 163, 105, 1), rgba(255, 246, 213, 1));
}

.section-button:hover {
  opacity: 0.7;
}

.section-button p {
  padding-block: calc(27 / var(--width) * 100vw);
  font-size: calc(28 / var(--width) * 100vw);
  font-weight: 500;
  color: #fff;
  background-color: #000;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(14, 244, 255, 0));
  border-radius: calc(40 / var(--width) * 100vw);
}
.s .section-button p {
  padding-block: calc(45 / var(--sp-width) * 100vw);
  font-size: calc(28 / var(--sp-width) * 100vw);
  border-radius: calc(62 / var(--sp-width) * 100vw);
}

.section-button span {
  position: absolute;
  top: 50%;
  right: calc(30 / var(--width) * 100vw);
  transform: translateY(-80%);
  width: calc(70 / var(--width) * 100vw);
  transition: transform 0.3s;
}
.s .section-button span {
  right: calc(35 / var(--sp-width) * 100vw);
  width: calc(70 / var(--sp-width) * 100vw);
}

.section-button:hover span {
  transform: translate(7%, -80%);
}

/* 詳細カード */
.section-card {
  padding: calc(40 / var(--width) * 100vw);
  border-radius: calc(16 / var(--width) * 100vw);
  border: calc(1 / var(--width) * 100vw) solid #fff;
  display: flex;
  flex-direction: column;
  row-gap: calc(40 / var(--width) * 100vw);
  background-color: #000;
}
.s .section-card {
  padding: calc(70 / var(--sp-width) * 100vw);
  border-radius: calc(16 / var(--sp-width) * 100vw);
  border: calc(1 / var(--sp-width) * 100vw) solid #fff;
  row-gap: calc(40 / var(--sp-width) * 100vw);
}

.section-card-wrapper {
  display: flex;
  column-gap: calc(20 / var(--width) * 100vw);
  align-items: flex-start;
}
.s .section-card-wrapper {
  flex-direction: column;
  row-gap: calc(30 / var(--sp-width) * 100vw);
  align-items: center;
}

/* 画像 */
.section-card-img {
  flex-shrink: 0;
  width: calc(460 / var(--width) * 100vw);
  height: calc(380 / var(--width) * 100vw);
  border-radius: calc(16 / var(--width) * 100vw);
  overflow: hidden;
}
.s .section-card-img {
  width: calc(540 / var(--sp-width) * 100vw);
  height: calc(445 / var(--sp-width) * 100vw);
  border-radius: calc(16 / var(--sp-width) * 100vw);
}
.section-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-card-content {
  display: flex;
  flex-direction: column;
  row-gap: calc(24 / var(--width) * 100vw);
}
.s .section-card-content {
  row-gap: calc(25 / var(--sp-width) * 100vw);
}

/* アーティスト名 */
.section-card-content h3 {
  font-size: calc(24 / var(--width) * 100vw);
  font-weight: 500;
}
.section-card-content h3 span {
  display: block;
  margin-bottom: calc(7 / var(--width) * 100vw);
  font-size: calc(20 / var(--width) * 100vw);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  color: rgb(225 225 225 / 70%);
}
.s .section-card-content h3 {
  font-size: calc(40 / var(--sp-width) * 100vw);
}
.s .section-card-content h3 span {
  margin-bottom: calc(7 / var(--sp-width) * 100vw);
  font-size: calc(22 / var(--sp-width) * 100vw);
}

/* SNSリンク */
.section-card-link {
  display: flex;
  column-gap: calc(24 / var(--width) * 100vw);
  align-items: center;
}
.s .section-card-link {
  column-gap: calc(34 / var(--sp-width) * 100vw);
}

.section-card-linkSite {
  color: #fff;
  font-size: calc(18 / var(--width) * 100vw);
  font-family: 'Roboto', sans-serif;
  padding: calc(15 / var(--width) * 100vw) calc(20 / var(--width) * 100vw);
  border: calc(3 / var(--width) * 100vw) solid #fff;
  border-radius: calc(26 / var(--width) * 100vw);
}
.s .section-card-linkSite {
  font-size: calc(25 / var(--sp-width) * 100vw);
  padding: calc(23 / var(--sp-width) * 100vw) calc(30 / var(--sp-width) * 100vw)
    calc(22 / var(--sp-width) * 100vw);
  border: calc(3 / var(--sp-width) * 100vw) solid #fff;
  border-radius: calc(36 / var(--sp-width) * 100vw);
}

.section-card-linkSns {
  width: calc(30 / var(--width) * 100vw);
}
.s .section-card-linkSns {
  width: calc(42 / var(--sp-width) * 100vw);
}

/* テキスト */
.section-card-content p {
  font-size: calc(16 / var(--width) * 100vw);
  line-height: 1.5;
}
.s .section-card-content p {
  font-size: calc(22 / var(--sp-width) * 100vw);
}

/* ボタン */
.section-card .section-button p {
  padding-inline: calc(70 / var(--width) * 100vw) calc(110 / var(--width) * 100vw);
}
.s .section-card .section-button p {
  padding-inline: calc(70 / var(--sp-width) * 100vw) calc(130 / var(--sp-width) * 100vw);
}

/********************* ローディング *********************/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #005a99b3;
  z-index: 9999;
}
.loadingIcon {
  --uib-size: 40px;
  --uib-color: #fff;
  --uib-speed: 2s;
  --uib-bg-opacity: 0;
  height: var(--uib-size);
  width: var(--uib-size);
  transform-origin: center;
  animation: rotate var(--uib-speed) linear infinite;
  will-change: transform;
  overflow: visible;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loadingTrack {
  fill: none;
  stroke: var(--uib-color);
  opacity: var(--uib-bg-opacity);
  transition: stroke 0.5s ease;
}
.loadingCar {
  fill: none;
  stroke: var(--uib-color);
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: stretch calc(var(--uib-speed) * 0.75) ease-in-out infinite;
  will-change: stroke-dasharray, stroke-dashoffset;
  transition: stroke 0.5s ease;
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes stretch {
  0% {
    stroke-dasharray: 0, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 75, 150;
    stroke-dashoffset: -25;
  }
  100% {
    stroke-dashoffset: -100;
  }
}

/*================================================
 各section
================================================ */

/* ========== lead ========== */
.lead {
  padding: 0;
  padding-bottom: calc(140 / var(--width) * 100vw);
  text-align: center;
}
.s .lead {
  padding: calc(150 / var(--sp-width) * 100vw) 0 calc(110 / var(--sp-width) * 100vw);
}

.lead h2 {
  font-size: calc(86 / var(--width) * 100vw);
  font-weight: 600;
}
.lead h2 span {
  font-size: calc(66 / var(--width) * 100vw);
}
.s .lead h2 {
  font-size: calc(83 / var(--sp-width) * 100vw);
  font-weight: 600;
}
.s .lead h2 span {
  font-size: calc(63 / var(--sp-width) * 100vw);
}

.lead p {
  font-size: calc(22 / var(--width) * 100vw);
  line-height: 1.5;
  margin-top: calc(35 / var(--width) * 100vw);
  padding-inline: calc(230 / var(--width) * 100vw);
}
.s .lead p {
  font-size: calc(24 / var(--sp-width) * 100vw);
  margin-top: calc(40 / var(--sp-width) * 100vw);
  padding-inline: calc(27 / var(--sp-width) * 100vw);
}

/* スライダー */
.lead-slider {
  margin-top: calc(70 / var(--width) * 100vw);
  height: calc(168 / var(--width) * 100vw);
  overflow: hidden;
}
.s .lead-slider {
  margin-top: calc(70 / var(--sp-width) * 100vw);
  height: calc(205 / var(--sp-width) * 100vw);
}

.lead-slider ul {
  display: flex;
  height: 100%;
  width: max-content;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
  --slider-distance: 0px;
  --slider-duration: 20s;
  animation: none;
}
.lead-slider ul._active {
  animation: sliderAnimation var(--slider-duration) linear infinite;
}
.lead-slider li {
  flex: 0 0 auto;
  height: 100%;
}
.lead-slider li img {
  height: 100%;
  width: auto;
}

@keyframes sliderAnimation {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(var(--slider-distance) * -1), 0, 0);
  }
}

/* ========== artist ========== */
.artist-content {
  margin-top: calc(30 / var(--width) * 100vw);
  min-height: calc(497 / var(--width) * 100vw);
}
.s .artist-content {
  margin-top: calc(60 / var(--sp-width) * 100vw);
  min-height: calc(385 / var(--sp-width) * 100vw);
}

.artist-date {
  display: flex;
  justify-content: flex-end;
  column-gap: calc(25 / var(--width) * 100vw);
  align-items: center;
  position: relative;
}
.s .artist-date {
  justify-content: center;
}

.artist-date-arrow {
  width: calc(80 / var(--width) * 100vw);
  cursor: pointer;
}
.s .artist-date-arrow {
  width: calc(120 / var(--sp-width) * 100vw);
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}

.artist-date-arrow._next {
  transform: rotate(180deg);
}
.s .artist-date-arrow._next {
  transform: rotate(180deg) translateY(50%);
  left: initial;
  right: 3%;
}

.artist-date-arrow._disabled {
  cursor: default;
  pointer-events: none;
}

#artist-date-month {
  font-size: calc(32 / var(--width) * 100vw);
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
.s #artist-date-month {
  font-size: calc(48 / var(--sp-width) * 100vw);
}

/* アーティスト一覧 */
.artist-list {
  margin-top: calc(70 / var(--width) * 100vw);
  display: flex;
  justify-content: center;
  gap: calc(75 / var(--width) * 100vw) calc(35 / var(--width) * 100vw);
  flex-wrap: wrap;
}
.artist-list::after,
.artist-list::before {
  content: '';
  width: calc(300 / var(--width) * 100vw);
  order: 1;
}
.s .artist-list::after,
.s .artist-list::before {
  display: none;
}

.s .artist-list {
  margin-top: calc(100 / var(--sp-width) * 100vw);
  flex-direction: column;
  row-gap: calc(90 / var(--sp-width) * 100vw);
}

.artist-item {
  width: calc(300 / var(--width) * 100vw);
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
.s .artist-item {
  width: 100%;
}
.artist-item:hover {
  opacity: 0.7;
}

.artist-item-date {
  position: absolute;
  top: calc(-20 / var(--width) * 100vw);
  left: calc(-20 / var(--width) * 100vw);
  font-size: calc(18 / var(--width) * 100vw);
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #000;
  background-color: #fff;
  border-radius: calc(20 / var(--width) * 100vw);
  padding: calc(11 / var(--width) * 100vw);
  width: calc(120 / var(--width) * 100vw);
  z-index: 10;
}
.s .artist-item-date {
  top: calc(-20 / var(--sp-width) * 100vw);
  left: initial;
  right: calc(-20 / var(--sp-width) * 100vw);
  font-size: calc(24 / var(--sp-width) * 100vw);
  border-radius: calc(30 / var(--sp-width) * 100vw);
  padding: calc(18 / var(--sp-width) * 100vw);
  width: calc(180 / var(--sp-width) * 100vw);
}

.artist-item-img {
  width: calc(300 / var(--width) * 100vw);
  height: calc(300 / var(--width) * 100vw);
  border-radius: calc(16 / var(--width) * 100vw);
  overflow: hidden;
}
.s .artist-item-img {
  width: calc(540 / var(--sp-width) * 100vw);
  height: calc(540 / var(--sp-width) * 100vw);
  border-radius: calc(26 / var(--sp-width) * 100vw);
}
.artist-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-item p {
  margin-top: calc(20 / var(--width) * 100vw);
  font-size: calc(26 / var(--width) * 100vw);
}
.s .artist-item p {
  margin-top: calc(24 / var(--sp-width) * 100vw);
  font-size: calc(40 / var(--sp-width) * 100vw);
}

/* モーダル */
.artist-modal {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
}

.artist-modal-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(980 / var(--width) * 100vw);
  max-height: 80vh;
}
.s .artist-modal-wrapper {
  width: calc(680 / var(--sp-width) * 100vw);
}

.artist-modal-wrapper .section-card {
  max-height: 80vh;
  overflow-y: scroll;
}

.artist-modal-close {
  position: absolute;
  top: calc(-10 / var(--width) * 100vw);
  right: calc(-60 / var(--width) * 100vw);
  font-size: calc(50 / var(--width) * 100vw);
  font-weight: 100;
  color: #fff;
  cursor: pointer;
}
.s .artist-modal-close {
  top: calc(-65 / var(--sp-width) * 100vw);
  right: 0;
  font-size: calc(50 / var(--sp-width) * 100vw);
}

.artist-modal-appear h4 {
  display: flex;
  align-items: center;
  column-gap: calc(10 / var(--width) * 100vw);
  margin-bottom: calc(10 / var(--width) * 100vw);
}
.s .artist-modal-appear h4 {
  column-gap: calc(22 / var(--sp-width) * 100vw);
  margin-bottom: calc(10 / var(--sp-width) * 100vw);
}

.artist-modal-appear h4 span:first-of-type {
  font-size: calc(20 / var(--width) * 100vw);
  flex-shrink: 0;
}
.s .artist-modal-appear h4 span:first-of-type {
  font-size: calc(28 / var(--sp-width) * 100vw);
}

.artist-modal-appear h4 span:last-of-type {
  display: block;
  width: 100%;
  height: calc(1 / var(--width) * 100vw);
  background-color: #fff;
}
.s .artist-modal-appear h4 span:last-of-type {
  height: calc(1 / var(--sp-width) * 100vw);
}

/* ========== event ========== */
.event-content {
  margin-top: calc(53 / var(--width) * 100vw);
}
.s .event-content {
  margin-top: calc(55 / var(--sp-width) * 100vw);
  padding: 0;
}

.event-list {
  display: flex;
  flex-direction: column;
  row-gap: calc(56 / var(--width) * 100vw);
}
.s .event-list {
  row-gap: calc(68 / var(--sp-width) * 100vw);
}

/* ========== access ========== */
.access {
  padding-bottom: calc(120 / var(--width) * 100vw);
}
.s .access {
  padding-bottom: calc(170 / var(--sp-width) * 100vw);
}

.access-content {
  margin-top: calc(56 / var(--width) * 100vw);
  display: flex;
  flex-direction: column;
  row-gap: calc(75 / var(--width) * 100vw);
}
.s .access-content {
  margin-top: calc(45 / var(--sp-width) * 100vw);
  row-gap: calc(60 / var(--sp-width) * 100vw);
  padding: 0;
}

.access-img {
  width: 100%;
  border-radius: calc(16 / var(--width) * 100vw);
  overflow: hidden;
}

/* ボタン */
.access-content .section-button p {
  padding-inline: calc(127 / var(--width) * 100vw);
}
.s .access-content .section-button p {
  padding-inline: calc(185 / var(--sp-width) * 100vw);
}

/* ========== useful ========== */
.useful {
  padding: calc(30 / var(--width) * 100vw) calc(300 / var(--width) * 100vw);
  background-color: #0790e0;
}
.s .useful {
  padding: calc(140 / var(--sp-width) * 100vw) calc(40 / var(--sp-width) * 100vw);
}

.useful-ttl {
  font-size: calc(30 / var(--width) * 100vw);
  font-weight: 500;
}
.s .useful-ttl {
  font-size: calc(42 / var(--sp-width) * 100vw);
  text-align: center;
}

.useful-list {
  margin: calc(24 / var(--width) * 100vw) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(12 / var(--width) * 100vw);
}
.s .useful-list {
  margin-top: calc(72 / var(--sp-width) * 100vw);
  gap: calc(20 / var(--sp-width) * 100vw);
}

.useful-item {
  width: calc(200 / var(--width) * 100vw);
}
.s .useful-item {
  width: calc(325 / var(--sp-width) * 100vw);
}

.useful-item a {
  position: relative;
  width: 100%;
  height: calc(50 / var(--width) * 100vw);
  padding-left: calc(25 / var(--width) * 100vw);
  padding-right: calc(25 / var(--width) * 100vw);
  background-color: #fff;
  border-radius: calc(1px / 0);
  box-shadow: 3px 3px 5px 0 rgb(0 0 0 / 24%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.2;
  text-align: left;
  font-weight: 600;
  font-size: calc(14 / var(--width) * 100vw);
  color: #009de0;
}
.useful-item a span {
  position: absolute;
  top: 50%;
  right: 10%;
  translate: 0 -60%;
  display: block;
  width: calc(34 / var(--width) * 100vw);
  transition: right 0.3s;
}

.s .useful-item a {
  height: calc(100 / var(--sp-width) * 100vw);
  padding-left: calc(40 / var(--sp-width) * 100vw);
  padding-right: calc(40 / var(--sp-width) * 100vw);
  border-radius: calc(1px / 0);
  font-size: calc(26 / var(--sp-width) * 100vw);
}
.s .useful-item a span {
  right: 10%;
  translate: 0 -60%;
  width: calc(54 / var(--sp-width) * 100vw);
}

.useful-item a:hover span {
  right: 8%;
}
