@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  vertical-align: baseline;
  margin: 0;
  outline: 0;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 100%;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  vertical-align: baseline;
  margin: 0;
  background: transparent;
  padding: 0;
  font-size: 100%;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #cccccc;
  padding: 0;
  height: 1px;
}

input, select {
  vertical-align: middle;
}

@use "_variable/mq";
@use "_mixin" as *;
html {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  background: var(--color-bg);
  width: 100%;
  overflow: hidden;
  color: var(--color-text);
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1.5px;
  letter-spacing: .15rem;
}

a {
  position: relative;
  color: var(--color-text);
  text-decoration: none;
}

.clearfix:after {
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  content: ' . ';
}

* {
  -webkit-transition: color 0.2s var(--ease_out);
  transition: color 0.2s var(--ease_out);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

*:focus-visible {
  outline: 1px solid var(--color-black) !important;
}

input, select, textarea {
  background-color: transparent;
  min-height: 1.5em;
}

input[type="submit"], input[type="reset"] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=' tel '] {
  display: inline-block;
  color: inherit;
}

button {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

ol, ul {
  list-style: none;
}

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

img::-moz-selection {
  background: none;
}

img::selection {
  background: none;
}

img[height] {
  height: auto !important;
}

[data-prefix]::before {
  content: attr(data-prefix);
}

[data-suffix]::after {
  content: attr(data-suffix);
}

:root {
  --svh: 100vh;
  --color-text: var(--color-black);
  --color-bg: var(--color-white);
  --color-black: #000;
  --color-white: #fff;
  --ease_out: cubic-bezier(0.5, 1, 0.89, 1);
  --ease_inout: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  -webkit-transition: color 2s var(--ease_out);
  transition: color 2s var(--ease_out);
}

@use "sass:math";
@use "sass:math";
@use "_mixin" as *;
.u-text-indent {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.u-ta-center {
  text-align: center !important;
}

.u-display-block {
  display: block !important;
}

.u-display-inline-block {
  display: inline-block !important;
}

.u-ta-left {
  text-align: left !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-fw-lighter {
  font-weight: lighter !important;
}

.u-fw-normal {
  font-weight: normal !important;
}

.u-fw-bold {
  font-weight: bold !important;
}

.u-fs-1 {
  font-size: 0.1em;
}

.u-fs-2 {
  font-size: 0.2em;
}

.u-fs-3 {
  font-size: 0.3em;
}

.u-fs-4 {
  font-size: 0.4em;
}

.u-fs-5 {
  font-size: 0.5em;
}

.u-fs-6 {
  font-size: 0.6em;
}

.u-fs-7 {
  font-size: 0.7em;
}

.u-fs-8 {
  font-size: 0.8em;
}

.u-fs-9 {
  font-size: 0.9em;
}

.u-fs-10 {
  font-size: 1em;
}

.u-fs-11 {
  font-size: 1.1em;
}

.u-fs-12 {
  font-size: 1.2em;
}

.u-fs-13 {
  font-size: 1.3em;
}

.u-fs-14 {
  font-size: 1.4em;
}

.u-fs-15 {
  font-size: 1.5em;
}

.u-fs-16 {
  font-size: 1.6em;
}

.u-fs-17 {
  font-size: 1.7em;
}

.u-fs-18 {
  font-size: 1.8em;
}

.u-fs-19 {
  font-size: 1.9em;
}

.u-fs-20 {
  font-size: 2em;
}

.u-color-white {
  color: var(--color-white);
}

.u-color-black {
  color: var(--color-black);
}

table tr td a {
  text-decoration: underline;
}

.p-tour__inner {
  margin: 100px auto 150px;
  padding: 0 5%;
  max-width: 1400px;
}

.p-tour-kv__logo {
  margin: 0 auto;
  width: 70%;
}

.p-tour-link__inner {
  margin: 60px auto;
  margin: 6rem auto;
  max-width: 450px;
}

.p-tour-link__btn {
  display: block;
  -webkit-transition: color 0.2s var(--ease_out), background-color 0.2s var(--ease_out);
  transition: color 0.2s var(--ease_out), background-color 0.2s var(--ease_out);
  border: 2px solid #3f5d6b;
  background-color: #3f5d6b;
  padding: 30px 10px 35px;
  padding: 3rem 1rem 3.5rem;
  color: #fff;
}

.p-tour-link__text {
  font-weight: 900;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
}

.p-tour-schedule__year {
  margin-top: 30px;
  margin-top: 3rem;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 45px;
  font-size: 4.5rem;
  text-align: left;
}

.p-tour-schedule__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  padding-bottom: 2rem;
}

.p-tour-schedule__list-item.--head {
  padding-bottom: 10px;
  padding-bottom: 1rem;
}

.p-tour-schedule__list-item-day, .p-tour-schedule__list-item-opst, .p-tour-schedule__list-item-area, .p-tour-schedule__list-item-venue, .p-tour-schedule__list-item-contact {
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.--head .p-tour-schedule__list-item-day, .--head .p-tour-schedule__list-item-opst, .--head .p-tour-schedule__list-item-area, .--head .p-tour-schedule__list-item-venue, .--head .p-tour-schedule__list-item-contact {
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
}

.p-tour-schedule__list-item-day {
  width: 15%;
  font-size: 13px;
  font-size: 1.3rem;
}

.p-tour-schedule__list-item-opst {
  width: 12.5%;
  font-size: 12px;
  font-size: 1.2rem;
}

.p-tour-schedule__list-item-area {
  background-color: #3f5d6b;
  padding: 10px 5px 12.5px;
  padding: 1rem 0.5rem 1.25rem;
  width: 8%;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

.--head .p-tour-schedule__list-item-area {
  background-color: transparent;
  color: #000;
}

.p-tour-schedule__list-item-venue {
  padding-left: 5%;
  width: 35%;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
}

.p-tour-schedule__list-item-contact {
  padding-left: 2.5%;
  width: 30%;
  font-size: 14px;
  font-size: 1.4rem;
}

.p-tour-schedule__list-item-contact a {
  -webkit-transition: none;
  transition: none;
  text-decoration: underline;
}

.p-tour-ticket__inner {
  margin: 0 auto;
  max-width: 800px;
}

.p-tour-ticket__block {
  margin-top: 50px;
  margin-top: 5rem;
}

.p-tour-ticket__block-head {
  margin-bottom: 20px;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 40px;
  font-size: 4rem;
}

.p-tour-ticket__block-head .is-week {
  display: inline-block;
  vertical-align: middle;
  margin-top: -10px;
  margin-top: -1rem;
  font-size: 25px;
  font-size: 2.5rem;
}

.p-tour-ticket__block-box {
  border: 2px solid #3f5d6b;
  padding: 20px;
  padding: 2rem;
}

.p-tour-ticket__block-box-cap {
  margin-bottom: 20px;
  margin-bottom: 2rem;
  color: #f92b38;
  font-weight: 700;
  font-size: 40px;
  font-size: 4rem;
}

.p-tour-ticket__block-box-cap.--left {
  margin: 0 auto 20px;
  margin: 0 auto 2rem;
  width: 90%;
  color: #000;
  font-size: 25px;
  font-size: 2.5rem;
  text-align: left;
}

.p-tour-ticket__block-box-schedule {
  font-weight: 900;
  font-size: 25px;
  font-size: 2.5rem;
}

.p-tour-ticket__block-box-schedule .is-week {
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
  margin-top: -0.5rem;
  font-size: 15px;
  font-size: 1.5rem;
}

.p-tour-ticket__block-box-link {
  margin: 20px auto 30px;
  margin: 2rem auto 3rem;
  width: 45%;
}

.p-tour-ticket__block-box-link .p-box-link {
  display: block;
  -webkit-transition: color 0.2s var(--ease_out), background-color 0.2s var(--ease_out);
  transition: color 0.2s var(--ease_out), background-color 0.2s var(--ease_out);
  border: 2px solid #d6211a;
  background-color: #d6211a;
  padding: 25px 10px 30px;
  padding: 2.5rem 1rem 3rem;
  color: #fff;
}

.p-tour-ticket__block-box-link .p-box-link__text {
  font-weight: 900;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
}

.p-tour-ticket__block-box-link .p-box-link.--disable {
  border: 2px solid #ccc;
  background-color: #ccc;
  pointer-events: none;
}

.p-tour-ticket__block-box-point .p-point-list {
  margin: 0 auto;
  width: 90%;
}

.p-tour-ticket__block-box-point .p-point-list__item {
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  text-align: left;
}

.p-tour-ticket__block-box-point .p-point-list__item .is-small {
  font-size: 11px;
  font-size: 1.1rem;
}

.p-tour-ticket__block-box-point .p-point-list__item a {
  -webkit-transition: none;
  transition: none;
  text-decoration: underline;
}

.p-tour-ticket__block-box-attention {
  margin-top: 20px;
  margin-top: 2rem;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}

.p-tour-ticket__block-box-attention .p-attention-link {
  -webkit-transition: none;
  transition: none;
  color: #f92b38;
  text-decoration: underline;
}

.p-tour-ticket__block-box-attention .p-attention-link__text {
  font-weight: 900;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
}

.p-tour-attention {
  margin: 0 auto;
  max-width: 800px;
}

.p-tour-attention__head {
  background-color: #3f5d6b;
  padding: 10px 5px 15px;
  padding: 1rem 0.5rem 1.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 2;
  text-align: center;
}

.p-tour-attention__inner {
  margin-top: 40px;
  margin-top: 4rem;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 3.5;
  text-align: left;
}

@media screen and (max-width: 960px){
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .is-pc {
    display: none !important;
  }
  .is-pc-inline {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .pc-inline {
    display: none !important;
  }
}

@media screen and (min-width: 961px){
  .is-sp {
    display: none !important;
  }
  .is-sp-inline {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .sp-inline {
    display: none !important;
  }
  table tr td a:hover {
    -webkit-transition: none;
    transition: none;
    color: #000;
    text-decoration: none;
  }
  .p-tour-link__btn:hover {
    background-color: transparent;
    color: #3f5d6b;
  }
  .p-tour-schedule__list-item-contact a:hover {
    color: #000;
    text-decoration: none;
  }
  .p-tour-ticket__block-box-link .p-box-link:hover {
    background-color: transparent;
    color: #d6211a;
  }
  .p-tour-ticket__block-box-point .p-point-list__item a:hover {
    color: #000;
    text-decoration: none;
  }
  .p-tour-ticket__block-box-attention .p-attention-link:hover {
    text-decoration: none;
  }
}
