@charset "UTF-8";
/* ========================================
   1. ボックスモデルの設定
   ======================================== */
/* すべての要素でボックスサイジングをborder-boxに設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ========================================
   2. 基本的なリセット
   ======================================== */
/* ボディ、HTML、マージン、パディングをリセット */
html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif; /* 標準フォントファミリー */
  line-height: 1.5; /* 行間を標準に */
}

html {
  margin-top: 0 !important;
}

/* ========================================
   3. 主要な要素のスタイルリセット
   ======================================== */
/* 見出し要素のスタイルリセット */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

/* リスト要素のリセット */
ul, ol {
  list-style: none; /* デフォルトのリストスタイルを削除 */
  margin: 0;
  padding: 0;
}

/* リンクのスタイルをリセット */
a {
  text-decoration: none; /* リンクの下線を削除 */
  color: inherit; /* リンクの色を親要素から継承 */
}

/* フォームのスタイルをリセット */
input, button, select, textarea {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  border: none; /* フォームのデフォルトボーダーを削除 */
  background-color: transparent; /* リンクの背景色を透明に */
}

/* ========================================
   4. 表のスタイルリセット
   ======================================== */
/* 表のスタイルをリセット */
table {
  border-collapse: collapse; /* テーブルのセルの隙間を取り除く */
  width: 100%;
}

/* 表のセルにパディングを追加 */
th, td {
  padding: 0;
  text-align: left;
}

/* ========================================
   5. その他のスタイルリセット
   ======================================== */
/* ========================================
   6. その他の調整
   ======================================== */
/* 画像のリセット */
img {
  max-width: 100%; /* 画像が親要素の幅を超えないように */
  height: auto; /* 画像の高さを自動で調整 */
}

/* ========================================
   7. テキストのリセット
   ======================================== */
/* テキストのスタイルをリセット */
p, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

.fx-col {
  display: flex;
  flex-direction: column;
}

.fx-col-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.fx-row {
  display: flex;
  flex-direction: row;
}

.fx-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.fx-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fx-wrap {
  display: flex;
  flex-wrap: wrap;
}

.fx-nowrap {
  display: flex;
  flex-wrap: nowrap;
}

.fx-between {
  display: flex;
  justify-content: space-between;
}

.fx-around {
  display: flex;
  justify-content: space-around;
}

.fx-evenly {
  display: flex;
  justify-content: space-evenly;
}

.w-100 {
  width: 100%;
}

.w-80 {
  width: 80%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.pt-section {
  padding-top: 10em;
}

.dis-none {
  display: none;
}

html {
  background-color: black;
}

h1, h2, h3, h4, p, span {
  color: white;
  font-family: "futura", "Yu Gothic", sans-serif;
}

.background {
  position: fixed;
  object-fit: cover;
  width: 1920px;
  height: 100dvh;
  z-index: -2;
  overflow: hidden;
}
.mobile-cta {
  display: none;
  position: relative;
}

.main-visual {
  width: 100%;
  height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 0;
  z-index: 1;
}
.main-visual h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: clamp(20px, 5vw, 45px);
  font-weight: 550;
  letter-spacing: 0.05em;
  width: max-content;
  font-family: "Noto Sans JP", sans-serif;
  opacity: 0;
  animation-name: fadein;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.main-visual .title {
  width: fit-content;
  position: absolute;
  bottom: 5%;
  right: 2%;
  font-size: clamp(20px, 5vw, 40px);
  font-weight: 550;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  animation-name: fadein-left;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.main-visual .title p {
  width: fit-content;
  color: black;
  line-height: 1;
  font-weight: bold;
  background-color: #C1272D;
  transform: skewX(-13deg);
  margin-bottom: 20px;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}
@keyframes fadein-left {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
section.information {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-color: #C1272D;
  padding: 30px 0;
  margin: clamp(50px, 8vw, 100px) auto;
}
section.information .box {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin: auto;
  text-align: center;
}
section.information .box .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
section.information .box .container .date {
  display: inline-block;
  text-align: center;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.5;
}
section.information .box .container .date span {
  font-size: clamp(20px, 3vw, 32px);
}
section.information .box .container .place {
  font-size: clamp(25px, 3vw, 40px);
}
section.information .box .container .price {
  display: flex;
  gap: 20px;
  text-align: center;
}
section.information .box .container .price .age {
  display: flex;
  flex-direction: column;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.3;
}
section.information .box .container .price .age span {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1;
}
section.information .box .container .title {
  width: 100%;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  section.information .box {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: clamp(200px, 80%, 650px);
  }
  section.information .box .container {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}

section {
  width: 80%;
  margin: auto;
}
section h2 {
  font-size: clamp(35px, 7vw, 60px);
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
  width: fit-content;
  font-weight: 600;
  font-style: normal;
  font-style: italic;
  transform: skew(-15deg);
  rotate: -3deg;
  line-height: 1;
  z-index: -1;
}
section h2::before {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 10px;
  background-color: #C1272D;
  bottom: 0;
  left: 0;
  z-index: -2;
  overflow: visible;
}
section h2 span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 5vw, 50px);
}

section.about {
  width: 80%;
  margin: clamp(50px, 15vw, 200px) auto;
}
section.about .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
section.about .container .about-logo {
  width: 40%;
  padding: clamp(20px, 4vw, 50px);
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}
section.about .container .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  margin-top: clamp(50px, 10vw, 100px);
  text-align: center;
}
section.about .container .content h3 {
  font-size: clamp(20px, 3vw, 35px);
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
section.about .container .content p {
  font-size: clamp(15px, 2vw, 20px);
  line-height: 2.5;
}
section.about .button-about {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  font-size: clamp(12px, 5vw, 15px);
  color: white;
  background-color: #C1272D;
  box-shadow: 5px 4px white;
  padding: 20px 30px;
  letter-spacing: 0.05em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}
section.about .button-about svg {
  margin-left: 15px;
}
@media (max-width: 1024px) {
  section.about .container {
    flex-direction: column;
    gap: 30px;
  }
  section.about .container .about-logo {
    width: 50%;
    margin: auto;
  }
  section.about .container .content {
    width: 100%;
    margin-top: 0;
  }
  section.about .container .content h3 {
    font-size: clamp(20px, 5vw, 35px);
  }
  section.about .container .content p {
    font-size: clamp(15px, 2vw, 20px);
  }
  section.about .button-about {
    margin: 50px auto;
    width: fit-content;
    padding: 20px 30px;
    font-size: clamp(12px, 5vw, 15px);
    color: white;
    background-color: #C1272D;
    box-shadow: 5px 4px white;
    letter-spacing: 0.05em;
  }
}

section.artist {
  margin: 200px auto;
}
section.artist h2 {
  margin-bottom: 50px;
}
section.artist .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(16, 1fr);
  grid-column-gap: clamp(50px, 10vw, 150px);
  margin-top: 100px;
}
section.artist .container .artist-card-1,
section.artist .container .artist-card-2,
section.artist .container .artist-card-3,
section.artist .container .artist-card-4,
section.artist .container .artist-card-5,
section.artist .container .artist-card-6,
section.artist .container .artist-card-7 {
  position: relative;
}
section.artist .container .artist-card-1 img,
section.artist .container .artist-card-2 img,
section.artist .container .artist-card-3 img,
section.artist .container .artist-card-4 img,
section.artist .container .artist-card-5 img,
section.artist .container .artist-card-6 img,
section.artist .container .artist-card-7 img {
  width: 100%;
  height: auto;
}
section.artist .container .artist-card-1 .artist-name,
section.artist .container .artist-card-2 .artist-name,
section.artist .container .artist-card-3 .artist-name,
section.artist .container .artist-card-4 .artist-name,
section.artist .container .artist-card-5 .artist-name,
section.artist .container .artist-card-6 .artist-name,
section.artist .container .artist-card-7 .artist-name{
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: clamp(20px, 5vw, 40px);
}
section.artist .container .artist-card-1 {
  grid-area: 1/1/4/2;
}
section.artist .container .artist-card-1 svg {
  fill: white;
  width: 50%;
  height: auto;
}
section.artist .container .artist-card-1 .artist-name {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: clamp(20px, 5vw, 40px);
}
section.artist .container .artist-card-2 {
  grid-area: 3/2/6/3;
}
section.artist .container .artist-card-2 svg {
  width: 50%;
  height: auto;
}
section.artist .container .artist-card-2 svg .cls-1 {
  fill: white;
}
section.artist .container .artist-card-2 .artist-name {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: clamp(20px, 5vw, 40px);
}
section.artist .container .artist-card-3 .artist-name-img,
section.artist .container .artist-card-4 .artist-name-img,
section.artist .container .artist-card-5 .artist-name-img {
	position: absolute;
	width: 50%;
	bottom: 0;
	right: 0;
}
section.artist .container .artist-card-6 .artist-name-img,
section.artist .container .artist-card-7 .artist-name-img {
	position: absolute;
	width: 75%;
	bottom: 0;
	right: 0;
}

section.artist .container .artist-card-3 {
  grid-area: 5/1/8/2;
}
section.artist .container .artist-card-4 {
  grid-area: 7/2/10/3;
}
section.artist .container .artist-card-5 {
  grid-area: 9/1/12/2;
}
section.artist .container .artist-card-6 {
  grid-area: 11/2/14/3;
}
section.artist .container .artist-card-7 {
  grid-area: 13/1/16/2;
}
@media (max-width: 768px) {
  section.artist .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }
}


section.timetable .container {
  width: 90%;
  background-color: white;
  margin: 100px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px;
}
section.timetable .container .time {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section.timetable .container .time p {
  color: black;
  font-size: clamp(18px, 3vw, 24px);
}
section.timetable .container .table {
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 54px;
}
section.timetable .container .table span {
  display: block;
  width: 100%;
  background-color: #322B29;
  color: white;
  text-align: center;
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 26px;
}
section.timetable .container .table .artist-time, section.timetable .container .table .artist-time-right {
  width: 100%;
  height: 100px;
  position: relative;
  display: flex;
}
section.timetable .container .table .artist-time::before, section.timetable .container .table .artist-time-right::before {
  content: "";
  position: absolute;
  width: 100%;
  display: inline-block;
  height: 1px;
  background-color: black;
  top: -27px;
}
section.timetable .container .table .artist-time img, section.timetable .container .table .artist-time-right img {
  box-shadow: 5px 4px white;
}
section.timetable .container .table .artist-time-right {
  display: flex;
  justify-content: flex-end;
}

section.sns {
  width: clamp(200px, 80%, 650px);
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 0;
  justify-content: center;
  align-items: center;
  background-color: black;
  border-radius: 10px;
  border: 3px solid white;
  margin: 100px auto;
}
section.sns h2 {
  z-index: 1;
  margin-bottom: clamp(10px, 3vw, 30px);
}
section.sns p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  width: max-content;
}
section.sns .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: clamp(15px, 3vw, 25px);
}
section.sns .container .icon-instagram,
section.sns .container .icon-x,
section.sns .container .icon-youtube,
section.sns .container .icon-tiktok,
section.sns .container .icon-line {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 500px) {
  section.sns {
    gap: 30px;
  }
  section.sns p {
    width: fit-content;
    padding: 0 20px;
    line-height: 2;
  }
  section.sns .container {
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
  }
}

section.sponsor {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
}
section.sponsor .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 50px auto;
}
section.sponsor .container .sponsor-card {
  width: 200px;
  height: 120px;
  background-color: white;
}

section.other {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}
section.other .sponsorship {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  gap: 15px;
  background-image: url("../img/contact.jpeg");
  background-color: rgba(0, 0, 0, 0.8);
  background-blend-mode: darken;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
section.other .sponsorship h4 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: bold;
  letter-spacing: 0.05em;
}
section.other .sponsorship p {
  font-size: clamp(12px, 2vw, 15px);
  line-height: 2;
}
section.other .contact {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  gap: 15px;
  background-image: url("../img/sponsor.jpeg");
  background-color: rgba(225, 225, 225, 0.8);
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.other .contact h4 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: black;
}
section.other .contact p {
  font-size: clamp(12px, 2vw, 15px);
  line-height: 2;
  color: black;
}
@media (max-width: 768px) {
  section.other {
    flex-direction: column;
  }
  section.other .sponsorship, section.other .contact {
    width: 100%;
  }
}

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