@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

:is(ul, ol)[class] {
  list-style: "";
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.46;
}

button,
input,
label {
  line-height: 1.1;
}

a[class] {
  text-decoration: none;
}

a:not([class]) {
  color: currentColor;
  text-decoration-skip-ink: auto;
}

a:not(.disabled):hover,
.main-footer .footer-nav-wrap a:hover {
  opacity: 0.7;
}

a.disabled {
  cursor: auto;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button:not(disabled, .disabled) {
  cursor: pointer;
}

p {
  line-height: 2;
}

a,
button {
  color: var(--clr-primary);
  transition: all .3s;
  -webkit-tap-highlight-color: transparent;
}

iframe,
iframe:focus {
  outline: none;
}

table {
  border-collapse: collapse;
}

td,
math,
time[datetime*=":"] {
  font-variant-numeric: tabular-nums lining-nums;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  margin: -1px;
  padding: 0;
  border: 0;
  clip-path: inset(50%);
  word-wrap: normal !important;
}

:root {
  --clr-neutral-100: #fff;
  --clr-neutral-800: #999;
  --clr-neutral-900: #000;
  --clr-neutral-700: #212121;

  --font-primary: "Noto Sans JP", "Helvetica", Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "メイリオ", "ＭＳ Ｐゴシック", "Osaka‐等幅", sans-serif;
  --font-secondary: "Oswald", serif;
}

body {
  position: relative;
  line-height: 1.5;
  color: var(--clr-neutral-100);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/bg_background.jpg) no-repeat center / cover;
  content: "";
  z-index: -1;
  will-change: transform;
}

.pcnone {
  display: none;
}

.en {
  font-family: var(--font-secondary);
  font-weight: 700;
}

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

.txt-center {
  text-align: center;
}

.sec-wrap {
  --max-width: 980px;
  --padding: 80px;

  width: min(var(--max-width), 100% - var(--padding));
  margin-inline: auto;
}

.ttl-line {
  display: flex;
  padding-bottom: 60px;
  align-items: center;
  justify-content: center;
}

.ttl-line::before,
.ttl-line::after {
  height: 1px;
  content: "";
  flex: 1;
  background-color: var(--clr-neutral-100);
}

.sec-ttl {
  font-size: 42px;
  text-align: center;
  margin-inline: 32px;
}

.tour-ttl {
  line-height: 1.5;
  padding-bottom: 60px;
  font-family: var(--font-secondary);
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}

.sec-mv {
  display: flex;
  position: relative;
  height: min(768px, 56.223vw);
  min-height: 100vh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.mv-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mv-bg picture,
.mv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sec-mv .sec-wrap {
  --max-width: 1240px;
  padding-left: 80px;
  margin-inline: unset;
}

.sec-mv .mv-inner {
  padding-bottom: 40px;
  font-family: var(--font-secondary);
}

.sec-mv .mv-inner h1 {
  max-width: 786px;
  line-height: 1.36;
  font-size: 80px;
}

.sec-schedule {
  padding-block: 80px;
}

.schedule-banner {
  padding-bottom: 80px;
}

.schedule-banner img {
  margin-inline: auto;
}

.tour-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 20px;
  align-items: center;
}

.tour-card+.tour-card {
  margin-top: 40px;
}

.tour-card .card-left {
  display: flex;
  font-family: var(--font-secondary);
  gap: 20px;
  align-items: center;
}

.tour-card h3 {
  min-width: 180px;
  max-width: 100%;
  font-size: 36px;
}

.tour-card .tour-date {
  display: flex;
  font-size: 24px;
  align-items: baseline;
  flex-wrap: wrap;
}

.tour-card .tour-date span {
  font-size: 18px;
}

.tour-card .tour-place {
  font-family: var(--font-primary);
  font-size: 24px;
}

.grand-tour {
  margin-top: 60px;
  border: 2px solid var(--clr-neutral-100);
}

.grand-finale {
  display: flex;
  color: var(--clr-neutral-700);
  font-family: var(--font-secondary);
  font-size: 28px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-neutral-100);
  padding-block: 10px;
}

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

.grand-section img {
  width: 175px;
  height: 46px;
}

.grand-section p {
  font-size: 36px;
  line-height: 1.5;
}

.x-icon {
  font-family: var(--font-primary);
  font-size: 36px;
}

.grand-txt {
  line-height: 1.4;
}

.grand-bottom {
  font-family: var(--font-secondary);
  text-align: center;
  padding-block: 20px;
}

.grand-bottom .tour-date {
  font-size: 36px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.grand-bottom .tour-date .tour-day {
  font-size: 24px;
}

.grand-bottom h4 {
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.grand-bottom .tour-place {
  font-family: var(--font-primary);
  font-size: 32px;
}

.sec-ticket {
  text-align: center;
  padding-block: 60px;
}

.sec-ticket p {
  font-family: var(--font-primary);
  font-size: 18px;
}

.company {
  font-size: 18px;
  text-align: center;
  padding-block: 60px 40px;
  border-top: 1px solid var(--clr-neutral-100);
}

.main-logo {
  padding: 25px 30px;
  border: 2px solid var(--clr-neutral-100);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
}

.main-logo a {
  display: inline-block;
}

.btn-pagetop {
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding-block: 25px;
}

.main-footer .footer {
  background-color: rgba(0, 0, 0, 0.8);
}

.main-footer .footer-wrap {
  --max-width: 1200px;
}

.main-footer .footer-inner {
  padding-block: 40px;
}

.main-footer .footer-nav-wrap {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.main-footer .footer-nav-wrap a {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.main-footer .footer-social-list {
  display: flex;
  gap: 20px;
}

.main-footer .footer-copy {
  margin-top: 40px;
  color: var(--clr-neutral-800);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .sec-mv {
    height: 69.818vw;
    min-height: unset;
  }

  .sec-mv .sec-wrap {
    padding-left: 3.636vw;
  }

  .sec-mv .mv-inner h1 {
    font-size: 7.273vw;
  }

  .sec-mv .mv-inner {
    padding-bottom: 3.636vw;
  }
}

@media (max-width: 768px) {
  body::before {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/bg_background.jpg) repeat center / 500% auto;
  }

  .sec-wrap {
    --max-width: 600px;
    --padding: 40px;
  }

  .spnone {
    display: none !important;
  }

  .pcnone {
    display: block;
  }

  .sec-ttl {
    font-size: 32px;
  }

  .tour-ttl {
    padding-bottom: 40px;
    font-size: 28px;
  }

  .sec-mv {
    height: unset;
    min-height: 87.179vw;
  }

  .sec-mv .sec-wrap {
    padding-left: 5.128vw;
  }

  .sec-mv .mv-inner h1 {
    font-size: 8.205vw;
  }

  .sec-mv .mv-inner h2 {
    font-size: 8.205vw;
  }

  .sec-mv .mv-inner {
    padding-bottom: 5.128vw;
  }

  .schedule-banner {
    padding-bottom: 60px;
  }

  .schedule-banner img {
    width: 208px;
    height: 200px;
  }

  .tour-card .tour-place {
    font-size: 18px;
  }

  .tour-card+.tour-card {
    margin-top: 30px;
  }

  .ttl-line {
    padding-bottom: 40px;
  }

  .sec-schedule {
    padding-block: 60px;
  }

  .tour-card {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .tour-card .card-left {
    gap: 10px;
    align-items: baseline;
  }

  .tour-card h3 {
    min-width: unset;
    max-width: 100%;
    font-size: 24px;
  }

  .tour-card .tour-date {
    font-size: 14px;
  }

  .tour-card .tour-date span {
    font-size: 14px;
  }

  .sec-ticket {
    padding-block: 40px 50px;
  }

  .sec-ticket p {
    line-height: 1.5;
    padding: 0 20px;
    font-size: 16px;
  }

  .grand-finale {
    font-size: 16px;
  }

  .grand-section p {
    font-size: 20px;
  }

  .grand-bottom {
    padding-block: 16px;
  }

  .grand-bottom .tour-date {
    font-size: 24px;
  }

  .grand-bottom .tour-date .tour-day {
    font-size: 18px;
  }

  .grand-bottom h4 {
    font-size: 24px;
  }

  .grand-bottom .tour-place {
    font-size: 22px;
  }

  .sec-ticket {
    text-align: center;
    padding-block: 40px;
  }

  .x-icon {
    font-size: 20px;
  }

  .grand-section img {
    width: 100px;
    height: 26px;
  }

  .sec-ticket p {
    font-size: 16px;
  }

  .company {
    font-size: 16px;
    padding-block: 40px;
  }

  .main-footer .footer-nav-wrap {
    flex-direction: column;
  }

  .grand-tour {
    margin-top: 40px;
  }
}
