@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 {
  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-200: #efefef;
  --clr-neutral-300: #eaeaea;
  --clr-neutral-400: #ededff;
  --clr-neutral-500: #edf5fc;
  --clr-neutral-600: #ddefff;
  --clr-neutral-700: #666;
  --clr-neutral-800: #999;
  --clr-neutral-900: #333;

  --clr-primary: #B7A5E0;
  --clr-red-400: #FF0000;

  --clr-background: #212121;

  --clr-border-400: #aaa;
  --clr-border-500: #ccc;
  --clr-border-600: #333;

  --clr-link: #2680EA;

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

body {
  line-height: 1.5;
  color: var(--clr-neutral-100);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  background-color: var(--clr-background);
  -webkit-font-smoothing: antialiased;
}

.pcnone {
  display: none;
}

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

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

.clr-orange {
  color: #FF8455;
}

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

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

.sec-ttl {
  line-height: 1.1;
  margin-bottom: 60px;
  padding-bottom: 5px;
  font-size: 52px;
  background-image: linear-gradient(to right, #613BB7, #B93E84);
  background-repeat: no-repeat;
  background-size: 100% 20px;
  background-position: bottom;
}

.sec-mv {
  display: grid;
  min-height: 46.852vw;
  padding: 2.928vw 2.928vw 0;
  place-items: center;
}

.sec-mv .sec-mv-bg {
  width: 100%;
  height: 100%;
  background-image: url('../img/bg_mv.jpg');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 50%;
}

.sec-mv .sec-wrap {
  --max-width: max(1100px, 71.742vw);
  height: 100%;
}

.sec-mv .mv-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: start;
  gap: max(15px, 1.464vw);
  justify-content: center;
}

.sec-mv .mv-inner h1 {
  font-size: max(48px, 5.271vw);
}

.sec-mv .mv-inner h2 {
  position: relative;
  line-height: 1.1;
  font-size: max(24px, 3.075vw);
  padding-inline: 1.464vw;
}

.sec-mv .mv-inner h2::before,
.sec-mv .mv-inner h2::after {
  position: absolute;
  top: 0;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
}

.sec-mv .mv-inner h2::before {
  right: calc(100% + -1.464vw);
  content: '「';
}

.sec-mv .mv-inner h2::after {
  left: calc(100% + -1.464vw);
  content: '」';
}

.sec-mv .mv-inner p {
  margin-top: 1.464vw;
  font-size: max(16px, 1.318vw);
  font-weight: 700;
}

.sec-mv .mv-inner .explain {
  font-size: max(14px, 1.025vw);
  font-weight: 400;
}

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

.tour-card {
  display: grid;
  border: 2px solid var(--clr-neutral-100);
  grid-template-columns: 245px 1fr;
}

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

.tour-card .card-left,
.tour-card .card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tour-card .card-left {
  padding: 30px 20px;
}

.tour-card .card-right {
  padding: 27px 20px;
}

.tour-card h3 {
	display: flex;
	flex-direction: column;
	align-items: baseline;
	gap: 0 10px;
	flex-wrap: wrap;
}

.tour-card h3 strong {
  display: block;
  color: var(--clr-primary);
  font-size: 32px;
}

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

.tour-card .tour-date {
  margin-top: 10px;
  font-size: 28px;
}

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

.tour-card .card-right {
  background-color: var(--clr-neutral-900);
}

.tour-card .tour-info {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border-500);
}

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

.tour-card .tour-sub-place {
  margin-top: 5px;
  font-size: 20px;
}

.tour-card .tour-link {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.tour-card .tour-link a {
  display: inline-block;
  margin-right: 10px;
}

.tour-card .tour-time {
  display: flex;
  padding-top: 20px;
  font-size: 18px;
  font-weight: 500;
  flex-wrap: wrap;
  gap: 40px;
}

.sec-ticket .ticket-info {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-neutral-100);
}

.sec-ticket .ticket-info+.ticket-info {
  margin-top: 20px;
}

.ticket-info dl {
  display: flex;
  gap: 60px;
}

.ticket-info dl dt {
  font-size: 18px;
  font-weight: 700;
}

.ticket-info dl dd {
  width: 73.5%;
  margin-left: auto;
  font-weight: 500;
}

.ticket-info h3 {
  margin-bottom: 20px;
  font-size: 26px;
}

.ticket-info h3 strong {
  font-size: 30px;
}

.ticket-info h3 small {
  font-size: 16px;
}

.ticket-info .info-list {
  list-style: "※";
  padding-left: 15px;
  font-size: 14px;
}

.ticket-info .buy-list li+li {
  margin-top: 18px;
}

.ticket-info .buy-list .buy-item {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 30px;
}

.main-logo {
  padding: 25px;
  border: 2px solid var(--clr-neutral-100);
  text-align: center;
  margin-block: 120px 60px;
  background-color: var(--clr-neutral-900);
}

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

.btn-pagetop {
  display: flex;
  justify-content: center;
  background-color: var(--clr-neutral-900);
  padding-block: 25px;
}

.btn-buy-ticket {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 12px 30px;
  border: 2px solid var(--clr-neutral-100);
  border-radius: 4px;
  color: var(--clr-neutral-100);
  font-weight: 700;
  gap: 5px;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right, #613BB7, #B23C7F);
}

.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;
  text-decoration: none;
}

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

.main-footer .footer-copy {
  margin-top: 40px;
  color: #999;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .sec-wrap {
    --max-width: 600px;
    --padding: 40px;
  }

  .spnone {
    display: none !important;
  }

  .pcnone {
    display: block;
  }

  .sec-ttl {
    margin-bottom: 60px;
    padding-bottom: 8px;
    font-size: min(52px, 10.769vw);
  }

  .sec-mv {
    min-height: 90vh;
    min-height: 90svh;
    margin-bottom: 0;
    padding: 40px 0 0;
  }

  .sec-mv .sec-mv-bg {
    background-image: url('../img/bg_mv_sp.png');
    background-size: 350px 420px;
    background-position: center top;
  }

  .sec-mv .sec-wrap {
    --max-width: 640px;
  }

  .sec-mv .mv-inner {
    margin-top: 380px;
    text-align: center;
    justify-content: start;
    align-items: center;
    gap: min(20px, 5.128vw);
  }

  .sec-mv .mv-inner h1 {
    line-height: 1.25;
    font-size: min(72px, 12.308vw);
  }

  .sec-mv .mv-inner h2 {
    font-size: min(42px, 6.154vw);
    padding-inline: 10px;
  }

  .sec-mv .mv-inner h2::before {
    right: calc(100% + -10px);
  }

  .sec-mv .mv-inner h2::after {
    left: calc(100% + -10px);
    content: '」';
  }

  .sec-mv .mv-inner p {
    margin-top: min(20px, 5.128vw);
    font-size: min(18px, 4.103vw);
  }

  .sec-mv .mv-inner .explain {
    font-size: min(14px, 3.59vw);
  }

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

	.tour-card h3 {
		flex-direction: row;
		flex-wrap: wrap;
	}

  .tour-card .tour-date {
    margin-top: unset;
  }

  .tour-card .card-left,
  .tour-card .card-right {
    padding: 20px;
  }

  .tour-card .card-left {
    padding-block: 10px;
  }

  .tour-card .card-right {
    background-color: var(--clr-neutral-900);
  }

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

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

  .tour-card .tour-time {
    font-size: 16px;
    gap: 10px 20px;
  }

  .ticket-info .buy-list .buy-item {
    flex-direction: column;
  }

  .ticket-info .buy-list li:has(.btn-buy-ticket) {
    text-align: center;
  }

  .ticket-info dl {
    gap: 20px;
    flex-direction: column;
  }

  .ticket-info dl dd {
    width: 100%;
  }

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