/* CSS */
:root {
  --color-white: #fff;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/* Body */
body {
  background: #000;
  color: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial,
    sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* =========================
   Scroll Effect
========================= */
[data-scroll-effect] {
  transition-property: opacity, transform;
  transition-duration: var(--duration, 1000ms);
  transition-timing-function: ease;
}

/* fade-up */
[data-scroll-effect][data-effect="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
}

[data-scroll-effect][data-effect="fade-up"].is-active {
  opacity: 1;
  transform: translateY(0);
}

/* fade-left */
[data-scroll-effect][data-effect="fade-left"] {
  opacity: 0;
  transform: translateX(40px);
}

[data-scroll-effect][data-effect="fade-left"].is-active {
  opacity: 1;
  transform: translateX(0);
}

/* fade-right */
[data-scroll-effect][data-effect="fade-right"] {
  opacity: 0;
  transform: translateX(-40px);
}

[data-scroll-effect][data-effect="fade-right"].is-active {
  opacity: 1;
  transform: translateX(0);
}

/* fade-in */
[data-scroll-effect][data-effect="fade-in"] {
  opacity: 0;
}

[data-scroll-effect][data-effect="fade-in"].is-active {
  opacity: 1;
}

/* zoom */
[data-scroll-effect][data-effect="zoom"] {
  opacity: 0;
  transform: scale(0.92);
}

[data-scroll-effect][data-effect="zoom"].is-active {
  opacity: 1;
  transform: scale(1);
}

/* fade-slide-zoom（ぬるっと） */
[data-scroll-effect][data-effect="fade-slide-zoom"] {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
}

[data-scroll-effect][data-effect="fade-slide-zoom"].is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tourSchedule__item[data-scroll-effect] {
  transition-delay: calc(var(--stagger, 0) * 80ms);
}

/* =========================
   Background
========================= */
.siteBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: url("../images/main-bg.jpg") no-repeat center center / cover;
  opacity: 0;
  animation: siteBgFadeIn 1.2s ease-out forwards;
}

@keyframes siteBgFadeIn {
  to {
    opacity: 1;
  }
}

/* =========================
   Container
========================= */
.container {
  width: 100%;
  position: relative;
}

.main__content {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
}

.main__footer {
  width: 100%;
  position: relative;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .main__content {
    padding-top: 5%;
  }
}

/* =========================
   Tour Schedule
========================= */
.tourSchedule {
  margin-top: 61px;
}

@media (max-width: 767px) {
  .tourSchedule {
    margin-top: 38px;
  }
}

.tourSchedule__header {
  padding-bottom: 9px;
  border-bottom: solid 0.1px #f2f2f2;
}

@media (max-width: 767px) {
  .tourSchedule__header {
    padding-bottom: 13px;
  }
}

.tourSchedule__headerRow {
  display: flex;
  align-items: center;
}

.tourSchedule__headerCell {
  color: var(--color-orange);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

/* スマホ幅だけ順番を入れ替える */
@media (max-width: 768px) {
  .tourSchedule__headerRow {
    display: flex; /* 横並びのまま順番制御 */
    align-items: center;
    gap: 8px; /* 好みで */
  }

  .tourSchedule__headerCell.is-col-date {
    order: 1;
  }

  .tourSchedule__headerCell.is-col-city {
    order: 2;
  }

  .tourSchedule__headerCell.is-col-venue {
    order: 3;
  }
}

@media (max-width: 767px) {
  .tourSchedule__headerCell {
    font-weight: 400;
  }
}

.tourSchedule__headerCell.is-col-date {
  width: 12%;
}

.tourSchedule__headerCell.is-col-venue {
  width: 49%;
}

.tourSchedule__headerCell.is-col-city {
  width: 23.5%;
}

@media (max-width: 767px) {
  .tourSchedule__headerCell.is-col-date {
    width: 17%;
  }

  .tourSchedule__headerCell.is-col-city {
    flex: 1;
  }

  .tourSchedule__headerCell.is-col-venue {
    width: 65%;
  }
}

.tourSchedule__item {
  border-bottom: solid 0.1px #f2f2f2;
}

/* =========================
   Tour Row
========================= */
.tourRow {
  padding: 25px 0;
}

@media (max-width: 767px) {
  .tourRow {
    padding: 22.5px 0;
  }
}

.tourRow__inner {
  display: flex;
  align-items: center;
}

.tourRow__date {
  width: 12%;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .tourRow__date {
    width: 20%;
    margin-right: 3%;
    font-size: 11px;
  }
}

.tourRow__place {
  display: flex;
  align-items: center;
  width: 74%;
}

@media (max-width: 767px) {
  .tourRow__place {
    display: block;
    width: 68%;
    margin-right: 2%;
  }
}

/* スマホ幅だけ順番を逆にする */
@media (max-width: 768px) {
  .tourRow__place {
    display: flex;
    flex-direction: column; /* 縦並び */
  }

  .tourRow__city {
    order: 1; /* 上 */
  }

  .tourRow__venue {
    order: 2; /* 下 */
  }
}

.tourRow__city {
  width: 40%;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .tourRow__city {
    width: 100%;
    font-size: 11px;
  }
}

.tourRow__venue {
  width: 80%;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .tourRow__venue {
    width: 100%;
    margin-top: 6px;
    margin-bottom: 5px;
    font-size: 11px;
  }
}

.tourRow__ticket {
  width: 14%;
}

@media (max-width: 767px) {
  .tourRow__ticket {
    width: 21.8%;
    margin-top: 0;
  }
}

.tourRow__ticketLink {
  display: block;
  position: relative;
  width: fit-content;
  margin-left: auto;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border-radius: 5px;
  background: #fff;
  color: #000;
  transition: background-color 0.35s ease, color 0.35s ease;
}

.tourRow__ticketLink:hover {
  background: #222;
  color: #fff;
}

@media (max-width: 767px) {
  .tourRow__ticketLink {
    font-size: 11px;
    font-weight: 400;
    padding: 10px 10px;
    letter-spacing: 0.15em;
  }
}

/* =========================
   Footer
========================= */
.siteFooter {
  padding: 76px 0 50px;
}

@media (max-width: 767px) {
  .siteFooter {
    padding-top: 46px;
  }
}

.siteFooter__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .siteFooter__inner {
    display: block;
  }
}

.siteFooter__navItem:nth-child(n + 2) {
  margin-top: 5px;
}

@media (max-width: 767px) {
  .siteFooter__navItem {
    text-align: center;
  }

  .siteFooter__navItem:nth-child(n + 2) {
    margin-top: 14px;
  }
}

.siteFooter__navLink {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 0.012em;
}

@media (max-width: 767px) {
  .siteFooter__navLink {
    font-size: 1rem;
  }
}

.siteFooter__right {
  margin-top: 7px;
}

@media (max-width: 767px) {
  .siteFooter__right {
    margin-top: 37px;
  }
}

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

.siteFooter__snsItem {
  margin: 0 20px;
}

@media (max-width: 767px) {
  .siteFooter__snsList {
    justify-content: space-evenly;
  }

  .siteFooter__snsItem {
    margin: 0;
  }
}

.siteFooter__snsItem a {
  color: #fff;
  font-size: 1.8rem;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.siteFooter__snsItem a:hover {
  opacity: 0.7;
}

.siteFooter__copy {
  margin-top: 13px;
}

.siteFooter__copyText {
  text-align: center;
  color: var(--color-orange);
  font-size: 10px;
}

@media (max-width: 767px) {
  .siteFooter__copyText {
    text-align: center;
  }
}

.site__link {
  padding: 50px 0 10px;
  text-align: center;
}

.site__link a {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.site__link a:hover {
  opacity: 0.7;
}
