@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:wght@900&display=swap");

/* CSS Document */
:root {
  --content-color-base: #2c2a29;
  --content-color-link: #3064d5;
  --content-color-red: #990707;
  --content-color-wine: #6c0000;
  --content-color-khaki: #654b00;
  --content-color-gold: #856401;
  --bg-img-setting: no-repeat center center / cover;
  --content-width-sp: calc(335vw / 3.75);
  --content-width-pc: 1104px;
  --content-width: min(var(--content-width-sp), var(--content-width-pc));
  --content-bg-width-pc: max(100%, 1920px);
  --font-size-pc: 14px;
  --font-size-sp: calc(14vw / 3.75);
  --font-sans: "Noto Sans JP", serif;
  --font-serif: "Noto Serif JP", serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-arrow-down: url(/cmn/icon2/expand_more.svg);
  --content-arrow-up: url(/cmn/icon2/expand_less.svg);
  --content-arrow-right: url(/cmn/icon2/chevron_right.svg);
  --content-border-1: 1px solid;
  --content-border-2: 2px solid;
  --content-border-4: 4px solid;
}

.is-pc,
.is-tb {
  display: none;
}
.is-sp.is-tb {
  display: block;
}
.main {
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  line-height: 1.3;
  position: relative;
}
.main * {
  box-sizing: border-box;
}
.inner {
  width: var(--content-width);
  margin: auto;
  position: relative;
}
a {
  transition: var(--content-hover-speed);
}

/***** MV・ナビ *****/
.mv-wrapper {
  width: 100%;
}
.nav-wrapper .inner {
  width: 100vw;
}
.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(8vw / 3.75);
}
.nav-list > li > a {
  display: block;
  padding: calc(8vw / 3.75) calc(12vw / 3.75);
  font-weight: bold;
  text-align: center;
  position: relative;
}
.nav-list > li > a:hover {
  color: var(--content-color-red);
}
.nav-list > li > a:hover::after {
  content: "";
  background: var(--content-color-red);
  width: 100%;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/***** メインコンテンツ *****/
.main-container {
  width: 100%;
}
.container {
  width: 100%;
  padding-bottom: calc(48vw / 3.75);
}
.content-wrapper {
  display: grid;
  gap: calc(32vw / 3.75);
}
.head-title {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  padding: calc(20vw / 3.75) 0;
}
.title-wrapper {
  display: grid;
  gap: calc(12vw / 3.75);
}
.sub-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.bodycopy {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
.catchcopy {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}
.leadcopy {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.note-txt {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px !important;
  font-weight: normal !important;
}
.note-txt > a {
  text-decoration: underline;
  color: var(--content-color-link);
}
.note-txt > a:hover {
  text-decoration: none;
}
.copyright {
  font-size: 12px;
  text-align: right;
}
.is-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container.about .inner,
.container.info .inner {
  padding-top: calc(48vw / 3.75);
  display: grid;
  gap: calc(48vw / 3.75);
}
.content-box {
  display: grid;
  gap: calc(16vw / 3.75);
}
.content-midashi {
  font-size: 18px;
  text-align: center;
}
.midashi-txt {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.midashi-txt > small {
  font-size: 14px;
}
.txt-data {
  line-height: 1.5;
}
.txt-box {
  background: #fff;
  padding: calc(20vw / 3.75);
  font-size: 16px;
  line-height: 1.5;
}
.link-button {
  margin: calc(24vw / 3.75) auto 0;
  width: 100%;
  height: 48px;
}
.link-button > a {
  display: flex;
  gap: calc(8vw / 3.75);
  justify-content: center;
  align-items: center;
  height: 100%;
  background: var(--content-color-khaki);
  border-radius: 999px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding-left: calc(24vw / 3.75);
}
.link-button > a::after {
  content: "";
  mask: var(--content-arrow-right) var(--bg-img-setting);
  background: #fff;
  width: calc(24vw / 3.75);
  height: calc(24vw / 3.75);
  display: inline-block;
}
.link-button > a:hover {
  background: var(--content-color-gold);
}
.link-button.is-white > a {
  background: #fff;
  color: var(--content-color-base);
}
.link-button.is-white > a::after {
  background: var(--content-color-base);
}
.link-button.is-white > a:hover {
  background: #d5d4d4;
}

/*** 動画 ***/
.container.movie {
  background: var(--content-color-base);
}
#movie-wrapper {
  margin: auto;
  position: relative;
  text-align: center;
  padding-top: 56.25%;
  width: 100vw;
  height: 0;
}
#youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}
#youtube-mask {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 100%;
}
.container.movie .inner {
  display: grid;
  gap: calc(16vw / 3.75);
  padding-top: calc(16vw / 3.75);
}
.container.movie .copyright {
  color: #fff;
}
.anchor-button {
  width: calc(290vw / 3.75);
  height: 48px;
  margin: auto;
}
.anchor-button > a {
  display: flex;
  height: 100%;
  gap: calc(8vw / 3.75);
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 999px;
  padding: calc(16vw / 3.75) 0;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.anchor-button > a::after {
  content: "";
  mask: var(--content-arrow-down) var(--bg-img-setting);
  background: var(--content-color-base);
  width: calc(24vw / 3.75);
  height: calc(24vw / 3.75);
  display: inline-block;
}
.anchor-button > a:hover {
  background: #d5d4d4;
}

/*** ツアー ***/
.container.tour {
  background:
    url(../img/bg_tour.webp) no-repeat center bottom / cover,
    var(--content-color-base);
}
.head-title#tour {
  font-size: 22px;
  font-weight: bold;
  padding-top: 0;
}
.link-wrapper {
  display: grid;
  gap: 0;
}

/*** 祭り情報 ***/
.container.about {
  background: linear-gradient(to bottom, #ffdbdb 0, #fff9f9 8%);
}
.container.about .head-title {
  background: var(--content-color-wine);
}
.container.about .inner .sub-title {
  background:
    url(../img/bg_title_info.png) no-repeat right bottom / contain,
    var(--content-color-red);
  padding: calc(8vw / 3.75) calc(24vw / 3.75);
  color: #fff;
}
.seat-info-wrapper {
  display: grid;
  gap: calc(16vw / 3.75);
}
.seat-info {
  display: grid;
  gap: calc(16vw / 3.75);
}
.seat-info-box {
  display: grid;
  gap: calc(8vw / 3.75);
}
.seat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(16vw / 3.75);
  align-items: flex-start;
}
.seat-list > li {
  display: grid;
  gap: calc(8vw / 3.75);
}
.seat-img {
  width: 100%;
  aspect-ratio: 160 / 106;
}
.seat-txt {
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.point-list {
  display: grid;
  gap: calc(32vw / 3.75);
  align-items: flex-start;
}
.point-list li:nth-child(-n + 2) {
  display: grid;
  gap: calc(8vw / 3.75);
}
.point-list li:nth-child(-n + 2) .point-item {
  display: contents;
}
.point-list li:nth-child(n + 3) {
  display: grid;
  grid-template-columns: calc(157vw / 3.75) 1fr;
  gap: calc(16vw / 3.75);
  align-items: flex-start;
}

.point-list li .midashi-txt {
  font-size: 24px;
  text-align: center;
}
.skill-no {
  background: var(--content-color-gold);
  padding: calc(8vw / 3.75);
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.copyright-link {
  text-align: right;
}
.copyright-link > a {
  font-size: 12px;
  color: var(--content-color-link);
  text-decoration: underline;
}
.content-inbox {
  display: grid;
  gap: calc(8vw / 3.75);
}
.content-inbox table {
  width: 100%;
  table-layout: fixed;
  border-top: var(--content-border-1) #c0c5cc;
  border-left: var(--content-border-1) #c0c5cc;
  background: #fff;
}
.content-inbox table caption {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  margin-bottom: calc(4vw / 3.75);
}
.content-inbox table tr th,
.content-inbox table tr td {
  border-right: var(--content-border-1) #c0c5cc;
  border-bottom: var(--content-border-1) #c0c5cc;
  padding: calc(8vw / 3.75);
  line-height: 1.5;
}
.content-inbox table tr th {
  width: 8em;
  background: #e9ecf2;
  font-weight: bold;
  text-align: center;
}
.is-schedule .content-inbox table:first-child tr {
  display: grid;
  grid-template-rows: auto;
}
.is-schedule .content-inbox table:first-child tr th {
  width: 100%;
}
.content-inbox .txt-data + table {
  margin-top: calc(24vw / 3.75);
}
.content-box.review .midashi-txt {
  font-weight: normal;
  text-align: center;
}
.review-list {
  display: grid;
  gap: calc(16vw / 3.75);
}
.review-list > li {
  display: flex;
  gap: calc(16vw / 3.75);
  align-items: center;
  background: #fff;
  padding: calc(12vw / 3.75);
}
.review-list > li::before {
  content: "";
  background: url(../img/ico_people.svg) var(--bg-img-setting);
  width: calc(40vw / 3.75);
  height: calc(40vw / 3.75);
  display: block;
}
.review-list > li > span {
  flex: 1;
}

/*** 関連情報 ***/
.container.info {
  background:
    url(../img/bg_other.webp) no-repeat center bottom / 100%,
    #fbf9ef;
}
.head-title#info {
  background: var(--content-color-khaki);
}
.container.info .inner .sub-title {
  background:
    url(../img/bg_title_other.png) no-repeat right bottom / contain,
    var(--content-color-gold);
  padding: calc(8vw / 3.75) calc(24vw / 3.75);
  color: #fff;
}
.tri-grid,
.article-list {
  display: grid;
  gap: calc(24vw / 3.75);
  align-items: flex-start;
}
.tri-grid > li {
  display: grid;
  grid-template-columns: calc(120vw / 3.75) 1fr;
  gap: calc(16vw / 3.75);
}
.grid-img {
  height: calc(120vw / 3.75);
  position: relative;
}
.grid-item {
  display: grid;
  gap: calc(8vw / 3.75);
}
.grid-item .midashi-txt {
  text-align: left;
}
.grid-item .copyright {
  display: block;
  text-align: left;
}
.tri-grid > li .link-button {
  grid-column: 1 / 3;
  margin-top: 0;
}
.article-list > li > a {
  display: grid;
  grid-template-columns: calc(120vw / 3.75) 1fr;
  gap: calc(16vw / 3.75);
  position: relative;
}
.article-list > li > a::after {
  content: "";
  background: var(--content-color-gold);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: calc(16vw / 3.75);
  height: calc(16vw / 3.75);
  position: absolute;
  right: 0;
  bottom: 0;
}
.article-list > li > a:hover::after {
  background: var(--content-color-khaki);
}
.article-list .midashi-txt {
  font-size: 16px;
}
.article-list + .link-button {
  margin-top: 0;
}
.four-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(12vw / 3.75);
  align-items: flex-start;
}
.four-grid > li {
  display: grid;
  gap: calc(8vw / 3.75);
}
.four-grid > li .grid-img {
  height: auto;
}
.four-grid > li .midashi-txt {
  font-size: 16px;
}
.faq-list {
  display: grid;
  gap: calc(16vw / 3.75);
}
.faq-list > li {
  display: grid;
}
.que-txt {
  border-radius: 8px;
  background: var(--content-color-khaki);
  padding: calc(16vw / 3.75);
  display: flex;
  gap: calc(8vw / 3.75);
  position: relative;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
.que-txt > span {
  display: inline-block;
  padding-right: calc(8vw / 3.75);
}
.que-txt.is-open {
  border-radius: 8px 8px 0 0;
}
.que-txt::before {
  content: "Q";
  display: inline-block;
}
.que-txt::after {
  content: "";
  background: #fff;
  mask: var(--bg-img-setting);
  mask-image: var(--content-arrow-down);
  width: calc(16vw / 3.75);
  height: calc(16vw / 3.75);
  position: absolute;
  top: 0;
  right: calc(8vw / 3.75);
  bottom: 0;
  margin: auto;
}
.que-txt.is-open::after {
  mask-image: var(--content-arrow-up);
}
.ans-txt {
  display: none;
  background: #fff;
  border-radius: 0 0 8px 8px;
  border: var(--content-border-2) var(--content-color-khaki);
  border-top: none;
  padding: calc(16vw / 3.75);
}

.line-midashi {
  background: #06c755;
  padding: calc(8vw / 3.75);
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.line-item {
  border: var(--content-border-1) #939dad;
  border-top: none;
  background: #fff;
  padding: calc(20vw / 3.75);
  display: grid;
  gap: calc(16vw / 3.75);
  align-items: flex-start;
}
.line-txt {
  display: grid;
  gap: calc(8vw / 3.75);
  font-size: 16px;
  font-weight: bold;
}
.line-txt > span {
  display: block;
  font-size: 18px;
  color: #bc1410;
}
.line-item .link-button {
  margin-top: 0;
}
.line-item .link-button > a {
  border: #939dad var(--content-border-1);
}

/*** フッター ***/
.container.search {
  padding-bottom: 0;
}
.search-wrapper {
  padding: calc(64vw / 3.75) 0;
  background: url("../img/bg_search.webp") no-repeat center / cover;
}
.search-wrapper .inner {
  width: 100vw;
  margin: auto;
  display: block;
}
.search-wrapper .inner .sub-title {
  font-weight: normal;
  color: #fff;
  margin-bottom: calc(24vw / 3.75);
}
