@charset "UTF-8";
/* --- Reset & Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  /* メインコンテンツの幅を画像に合わせて調整 */
  padding: 0 20px;
  margin: 0 auto;
}

/* --- Utility Classes --- */
.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 700;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.section-spacer {
  padding: 60px 0;
}

/* --- Header Section --- */
.header {
  padding: 80px 0 40px;
  text-align: center;
}

.logo {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 6.25rem;
  line-height: 1;
}

/* ロゴの簡易再現 */
.logo span {
  display: inline-block;
}

.logo .symbol {
  font-family: monospace;
}

.event-info h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.main-act {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.and-more {
  font-size: 0.9rem;
  color: #ccc;
}

/* --- Box Section Styles (ABOUT, TICKETS) --- */
.box-section {
  position: relative;
}

.box-frame {
  border: 1px solid #fff;
  padding: 40px 20px;
  position: relative;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 8rem;
  /* タイトル分のスペース */
}

.box-title {
  background-color: #fff;
  color: #000;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 5px 20px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- About Content --- */
.about-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 2;
  font-size: 1.5rem;
}

/* --- Tickets Content --- */
.ticket-list {
  margin-bottom: 30px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.ticket-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #444;
  padding: 15px 0;
  font-weight: 700;
}

.ticket-name {
  font-size: 1.75rem;
}

.ticket-price {
  font-size: 1.75rem;
}

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 15px 60px;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 0;
  transition: opacity 0.3s;
  margin-bottom: 15px;
  width: 100%;
  max-width: 400px;
}

.cta-button:hover {
  opacity: 0.8;
}

.ticket-period {
  font-size: 0.8rem;
  font-weight: 700;
  font-size: 1.2rem;
}

/* --- Movie Section --- */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  background-color: #fff;
  color: #000;
  display: inline-block;
  padding: 5px 20px;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}

.play-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.play-icon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

/* --- FAQ (今回の修正箇所) --- */
.faq-section {
  background: #1a1a1a;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-category {
  font-size: 18px;
  margin: 30px 0 15px;
  padding-left: 10px;
  border-left: 3px solid #666;
  color: #ccc;
}

.faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  /* アコーディオンではないのでポインターを削除 */
  cursor: default;
  /* クリックイベントなどが残っていても無効化 */
  pointer-events: none;
  padding-left: 1.8em;
  text-indent: -1.8em;
}

.faq-answer {
  /* 常に表示させるためのスタイル */
  display: block !important;
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible !important;
  font-size: 15px;
  color: #aaa;
  line-height: 1.6;
  padding-left: 1em;
}

/* --- Map Section --- */
.map-section {
  text-align: center;
  margin-bottom: 80px;
}

.venue-name {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.map-container {
  width: 100%;
  height: 300px;
  background-color: #333;
  position: relative;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(90%);
  /* 地図をモノクロ・ダーク風にするCSSフィルター */
}

/* --- About FENNEL Section --- */
.footer-about {
  background-color: #000;
  padding: 60px 20px;
  border-top: 1px solid #333;
}

.fennel-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
  /* 画像に合わせて左揃えも可だが、全体バランスで中央に */
}

.fennel-content {
  max-width: 1100px;
  margin: 0 auto;
}

.fennel-block {
  margin-bottom: 25px;
}

.fennel-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.fennel-block p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
}

/* --- Footer --- */
.site-footer {
  padding: 40px 0 80px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icon {
  width: 30px;
  height: 30px;
  fill: #fff;
  transition: fill 0.3s;
}

.social-icon:hover {
  fill: #ccc;
}

.copyright {
  font-size: 0.7rem;
  color: #666;
}

.artist-box {
  margin-bottom: 2.5rem;
}

.artist-box p {
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 3.75rem;
}

.artist-box02 p {
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 0.5rem;
  line-height: 1.3;
}

.special-label {
  font-size: 14px;
  display: block;
  margin-top: 0.2rem;
  line-height: 1.2;
}

.spDisp {
  display: none;
}

ul.ticket-list-nortice {
  text-align: left;
  margin-bottom: 40px;
}

p.artist-guest {
  width: 250px;
  margin: 0 auto;
}

.andmore {
  width: 100px;
  margin: 0 auto;
  margin-top: 3.125rem;
}

.logo-icon {
  width: 300px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.logo-icon ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo-icon li {
  margin: 20px 0;
}

.logo-icon img {
  width: 100%;
}

.faq-item-notice {
  margin-bottom: 30px;
}

.faq-head {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.faq-head-box {
  background-color: #000000;
  padding: 20px;
}

.artist-box-wrap {
  display: flex;
  justify-content: space-around;
  margin-top: 5rem;
}

.artist-box-wrap-three {
  margin-top: 3rem;
}

.artist-box-wrap-three .artist-box02 {
  flex: 1;
  max-width: 250px;
}

p.artist-guest img {
  width: 100%;
  height: auto;
}

/* --- Responsive Tweaks --- */
@media (max-width: 600px) {
  .header {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
  }
  .logo {
    font-size: 2rem;
    margin-bottom: 1.875rem;
  }
  .main-act {
    font-size: 1.8rem;
  }
  .box-frame {
    padding: 30px 15px;
    margin-bottom: 0.625rem;
  }
  .ticket-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    text-align: left;
  }
  .ticket-price {
    align-self: center;
  }
  .venue-name {
    font-size: 1.4rem;
  }
  .fennel-title {
    text-align: left;
  }
  .artist-box p {
    font-weight: bold;
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  .artist-box02 p {
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
  .special-label {
    font-size: 14px;
    margin-top: 0.2rem;
  }
  .spDisp {
    display: block;
  }
  p.artist-guest {
    width: 90%;
    margin: 0 auto;
  }
  .artist-box-wrap-three {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .artist-box-wrap-three .artist-box02 {
    max-width: calc(50% - 0.75rem);
    width: calc(50% - 0.75rem);
    flex: 0 0 calc(50% - 0.75rem);
  }
  /* --- About Content --- */
  .about-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
  }
  .box-title {
    background-color: #fff;
    color: #000;
    font-size: 1.125rem;
    font-weight: 900;
    padding: 5px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .section-title {
    background-color: #fff;
    color: #000;
    display: inline-block;
    padding: 5px 20px;
    font-size: 1.125rem;
    font-weight: 900;
    text-transform: uppercase;
  }
  .ticket-name {
    font-size: 1.125rem;
    text-align: center;
    align-self: center;
  }
  .container {
    max-width: 1100px;
    /* メインコンテンツの幅を画像に合わせて調整 */
    padding: 20px;
    margin: 0 auto;
  }
  /* --- About FENNEL Section --- */
  .footer-about {
    background-color: #000;
    padding: 0px;
    border-top: 1px solid #333;
  }
  /* --- FAQ (今回の修正箇所) --- */
  .faq-section {
    background: #1a1a1a;
    padding: 20px 20px;
    margin-bottom: 0px;
  }
  ul.ticket-list-nortice {
    text-align: left;
    margin-bottom: 40px;
    font-size: 0.875rem;
  }
  .andmore {
    width: 70px;
    margin: 0 auto;
    margin-top: 1.875rem;
  }
  .faq-head {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
/*# sourceMappingURL=style.css.map */