@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

main {
  display: block;
}

select::-ms-expand {
  display: none;
}

textarea {
  width: 100%;
  max-width: 100%;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

textarea:focus {
  outline: 0;
}

input {
  border: none;
  background: none;
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: none;
}

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

input:focus {
  outline: 0;
}

select {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  background: none;
}

select:focus {
  outline: 0;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.c-pc {
  display: inline-block;
}
@media (max-width: 768px) {
  .c-pc {
    display: none;
  }
}

.c-sp {
  display: none;
}
@media (max-width: 768px) {
  .c-sp {
    display: inline-block;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6666666667;
  background: url(../img/common/bg_img.png);
}
body.js-active {
  overflow: hidden;
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

.l-header {
  background: #000000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transition: background 0.3s;
}
@media (max-width: 768px) {
  .l-header.js-active {
    background: transparent;
  }
}
.l-header__inner {
  max-width: 1700px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 0 auto;
  padding: 0 20px;
  height: 98px;
}
@media (max-width: 768px) {
  .l-header__inner {
    height: 64px;
  }
}
.l-header__logo {
  width: 65px;
  z-index: 1;
}
@media (max-width: 768px) {
  .l-header__logo {
    width: 39px;
  }
}
.l-header__logo > a {
  width: inherit;
  display: block;
}
.l-header__logo > a img {
  width: 100%;
}
.l-header__ham-button {
  display: none;
}
@media (max-width: 768px) {
  .l-header__ham-button {
    display: block;
    position: fixed;
    top: 17px;
    right: 16px;
    width: 30px;
    height: 24px;
    z-index: 10;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 400ms;
  }
}
@media (max-width: 768px) {
  .l-header__ham-button span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: transparent;
    border: 1px solid #ffffff;
    transition: all 400ms;
  }
  .l-header__ham-button span:nth-child(1) {
    top: 0;
  }
  .l-header__ham-button span:nth-child(2) {
    top: 10px;
  }
  .l-header__ham-button span:nth-child(3) {
    top: 20px;
  }
}
.l-header__ham-button.open span:nth-child(1) {
  background: transparent;
  top: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l-header__ham-button.open span:nth-child(2),
.l-header__ham-button.open span:nth-child(3) {
  top: 6px;
  background: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l-header__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .l-header__list {
    position: fixed;
    width: 100%;
    height: 100%;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: start;
        justify-content: flex-start;
    text-align: center;
    top: 0;
    right: -100%;
    background: rgba(0, 0, 0, 0.73);
    padding: 80px 0 0;
  }
  .l-header__list.open {
    right: 0px;
  }
}
@media (max-width: 768px) {
  .l-header__item {
    width: 100%;
    padding: 0 32px;
  }
}
.l-header__item:not(:first-of-type) {
  margin: 0 0 0 25px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .l-header__item:not(:first-of-type) {
    margin: 0 0 0 10px;
  }
}
@media (max-width: 768px) {
  .l-header__item:not(:first-of-type) {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .l-header__item.is-last > a {
    border-bottom: 1px solid #ffffff;
  }
}
.l-header__item > a {
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
  padding: 20px 0;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .l-header__item > a {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .l-header__item > a {
    padding: 17px 0;
    text-align: left;
    border-top: 1px solid #ffffff;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-header__item > a:link, .l-header__item a:visited, .l-header__item a:hover, .l-header__item a:active {
  color: #ffffff;
}

.l-footer {
  background-color: #292929;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 0 0 110px;
  }
}
.l-footer__logo {
  padding: 90px 0 56px;
  text-align: center;
}
@media (max-width: 768px) {
  .l-footer__logo {
    padding: 56px 0 37px;
  }
}
.l-footer__logo > img {
  max-width: 153.14px;
  width: 100%;
}
@media (max-width: 768px) {
  .l-footer__logo > img {
    max-width: 108.95px;
  }
}
.l-footer__sns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 0 0 56px;
}
@media (max-width: 768px) {
  .l-footer__sns {
    -ms-flex-direction: column;
        flex-direction: column;
    margin: 0 0 41px;
  }
}
.l-footer__sns__title {
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 1.2105263158;
  font-weight: bold;
  margin: 0 55px 0 0;
}
@media (max-width: 768px) {
  .l-footer__sns__title {
    margin: 0 0 22px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}
.l-footer__sns__icons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.l-footer__sns__icons > li {
  max-width: 35px;
  width: 100%;
}
.l-footer__sns__icons > li:not(:last-child) {
  margin: 0 30px 0 0;
}
@media (max-width: 768px) {
  .l-footer__sns__icons > li:not(:last-child) {
    margin: 0 21px 0 0;
  }
}
.l-footer__sns__icons > img {
  width: 100%;
}
.l-footer__nav {
  margin: 0 0 115px;
}
@media (max-width: 768px) {
  .l-footer__nav {
    margin: 0 0 60px;
    padding: 0 16px;
  }
}
.l-footer__nav > :first-child {
  border-top: 3px solid #404040;
}
@media (max-width: 768px) {
  .l-footer__nav > :first-child {
    border-top: 2px solid #404040;
  }
}
.l-footer__nav > li {
  max-width: 702px;
  border-bottom: 3px solid #404040;
  padding: 16px 22px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
@media (max-width: 768px) {
  .l-footer__nav > li {
    border-bottom: 2px solid #404040;
    padding: 20px 0 19px 0;
  }
}
.l-footer__nav > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 2.2631578947;
  display: block;
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .l-footer__nav > li > a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.2857142857;
  }
}
.l-footer__nav > li > a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15.06px;
  height: 21.08px;
  background: url(../img/layout/l-footer__nav_arrow.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .l-footer__nav > li > a::after {
    right: 0;
    width: 10.71px;
    height: 15px;
  }
}
.l-footer__copyright {
  color: #4B4B4B;
  text-align: center;
  padding: 0 0 83px;
  font-family: "Prompt", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1875;
}
@media (max-width: 768px) {
  .l-footer__copyright {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.1666666667;
    padding: 0 0 60px;
  }
}

.l-membership {
  display: none;
}
@media (max-width: 768px) {
  .l-membership {
    background: linear-gradient(rgba(0, 0, 0, 0), black);
    width: 100%;
    height: 147px;
    display: block;
    position: fixed;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.l-membership__button {
  text-align: center;
}

.c-inner1400 {
  box-sizing: content-box;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .c-inner1400 {
    padding: 0 16px;
  }
}

.c-button01 {
  display: inline-block;
  min-width: 383px;
  padding: 10px 0;
  line-height: 1;
  border: 2px solid #CFA65D;
  border-radius: 4px;
  background: #ffffff;
  color: #CFA65D;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.28);
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .c-button01 {
    min-width: auto;
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .c-button01 {
    min-width: auto;
    width: 100%;
    max-width: 311px;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 7px 0;
    text-shadow: none;
  }
}
.c-button01::after {
  display: inline-block;
  content: "";
  width: 9.42px;
  height: 16.15px;
  background: url(../img/component/c-button01_arrow.svg) no-repeat center center/contain;
  vertical-align: -1.5px;
  margin: 0 0 0 10px;
}
@media (max-width: 768px) {
  .c-button01::after {
    width: 8.29px;
    height: 14.21px;
    vertical-align: -2px;
  }
}
.c-button01.is-membership {
  min-width: 311px;
  position: absolute;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-title01 {
  max-width: 700px;
  width: 100%;
  margin: 0 0 50px;
}
@media (max-width: 768px) {
  .c-title01 {
    margin: 0 0 15px;
  }
}
.c-title01 > span {
  display: block;
  padding: 1px 0;
  line-height: 1;
}
.c-title01 > .is-large {
  font-family: "Prompt", sans-serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: bold;
  border-bottom: 2px solid #000000;
}
@media (max-width: 768px) {
  .c-title01 > .is-large {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.c-title01 > .is-small {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .c-title01 > .is-small {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-title01.is-white > .is-large {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}
.c-title01.is-white > .is-small {
  color: #ffffff;
}

.c-logos {
  max-width: 458px;
  width: 100%;
  margin: 0 auto 48px;
}
.c-logos > img {
  width: inherit;
}
@media (max-width: 768px) {
  .c-logos {
    padding: 0 16px;
  }
}

.c-dates {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-width: 866px;
  width: 100%;
}
@media (max-width: 768px) {
  .c-dates {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.c-dates > li {
  width: 44.23%;
  text-align: center;
}
@media (max-width: 768px) {
  .c-dates > li {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .c-dates > li.is-first {
    margin: 0 0 51px;
  }
}
.c-dates__image {
  margin: 0 0 33.5px;
}
@media (max-width: 768px) {
  .c-dates__image {
    margin: 0 auto 20px;
  }
}
@media (max-width: 768px) {
  .c-dates__image > img {
    width: 59.2%;
  }
}

.c-list01__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 0 0 100px;
}
@media (max-width: 768px) {
  .c-list01__item {
    -ms-flex-direction: column;
        flex-direction: column;
    margin: 0 0 25px;
  }
}
.c-list01__item.is-reverse {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .c-list01__item.is-reverse {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.c-list01__item.is-reverse.is-preview {
  margin: 0;
}
.c-list01__item__content {
  width: 48.21%;
}
@media (max-width: 768px) {
  .c-list01__item__content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .c-list01__item__content.is-text {
    -ms-flex-order: 1;
        order: 1;
  }
}
@media (max-width: 768px) {
  .c-list01__item__content.is-event {
    margin: -11% 0 0;
  }
}
@media (max-width: 768px) {
  .c-list01__item__content.is-image {
    -ms-flex-order: 0;
        order: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list01__item__content.is-image {
    margin: 0 0 15px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list01__item__content.is-image.is-event {
    max-width: 205px;
  }
}
.c-list01__item__content.is-image > img {
  width: 100%;
}
.c-list01__item__title {
  color: #CFA65D;
  font-size: 48px;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 10px;
}
@media (max-width: 768px) {
  .c-list01__item__title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
.c-list01__item__title.is-event {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media (max-width: 768px) {
  .c-list01__item__title.is-event {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.c-list01__item__lead {
  color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
@media (max-width: 768px) {
  .c-list01__item__lead {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .c-list01__item__wrap {
    height: 115px;
    overflow: hidden;
    position: relative;
  }
}
@media (max-width: 768px) {
  .c-list01.is-event {
    margin: 0 16.2px;
  }
  .c-list01.is-event .c-list01__item {
    -ms-flex-align: center;
        align-items: center;
    margin: 0 0 50px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list01.is-event .c-list01__item {
    margin: 0 0 20px;
  }
  .c-list01.is-event .c-list01__item:nth-child(even) {
    -ms-flex-align: end;
        align-items: end;
  }
  .c-list01.is-event .c-list01__item:nth-child(odd) {
    -ms-flex-align: start;
        align-items: start;
  }
}
@media (max-width: 768px) {
  .c-list01.is-event .c-list01__item__title {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list01.is-event .c-list01__item__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .c-list01.is-event .c-list01__item__lead {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list01.is-event .c-list01__item__lead {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .p-about__slider {
    padding: 0 32px;
  }
}
.p-about__slider__item {
  text-align: center;
}
.p-about__slider__link {
  display: inline-block;
}
.p-about__slider__link > img {
  width: 100%;
  height: 56.95%;
  object-fit: cover;
  max-width: 669px;
  max-height: 381px;
  margin: 0 0 15px;
}
.p-about__slider__lead {
  color: #ffffff;
  text-align: left;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.44;
  width: 100%;
  max-width: 669px;
  display: block;
}
@media (max-width: 768px) {
  .p-about__slider__lead {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .p-about .slick-dots {
    bottom: -35px;
  }
}

.p-gourmet__slider {
  margin: 0 auto;
}
.p-gourmet__slider__image {
  margin: 0 25px;
}
.p-gourmet__slider__image > img {
  width: 100%;
  height: auto;
}
.p-gourmet__slider__image > p {
  display: block;
  line-height: 1;
}
.p-gourmet__slider__name {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #CFA65D;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .p-gourmet__slider__name {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-gourmet__slider__store, .p-gourmet__slider__price {
  color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-gourmet__slider__store, .p-gourmet__slider__price {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-gourmet__slider__store {
  margin: 0 0 10px;
}
@media (max-width: 768px) {
  .p-gourmet .slick-dots {
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -40px;
  }
}

.p-venue__slider {
  margin: 0 auto;
}
.p-venue__slider.is-second .slick-dots {
  display: none !important;
}
.p-venue__slider__image {
  margin: 0 25px;
}
.p-venue__slider__image > img {
  width: 100%;
  height: auto;
  margin: 0 0 15px;
}
.p-venue__slider__text {
  width: 100%;
}
.p-venue__slider__text > p {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2222222222;
}
@media (max-width: 768px) {
  .p-venue__slider__text > p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}
.p-venue .slick-dotted.slick-slider {
  margin: 0 0 50px;
}
@media (max-width: 768px) {
  .p-venue .slick-dots {
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -35px;
  }
}

.p-event__slider {
  margin: 0 auto;
}
.p-event__slider__image {
  margin: 0 26px;
}
@media (max-width: 768px) {
  .p-event__slider__image {
    margin: 0 12px;
  }
}
.p-event__slider__image > img {
  width: 100%;
  height: auto;
}

.slick-dots {
  bottom: -50px;
}
.slick-dots li {
  padding: 0 20px;
}
@media (max-width: 768px) {
  .slick-dots li {
    padding: 0 10px;
  }
}
.slick-dots li button::before {
  color: #707070;
  opacity: 1;
}
.slick-dots li.slick-active button::before {
  color: #CFA65D;
  opacity: 1;
}
@media (max-width: 768px) {
  .slick-dots {
    width: 100%;
    left: 2%;
  }
}

.my-slide-arrow {
  position: absolute;
  top: -90px;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  width: 16px;
  z-index: 1;
}

.my-prev-arrow {
  left: 29.5%;
}
@media (max-width: 768px) {
  .my-prev-arrow {
    left: 0.5%;
  }
}

.my-next-arrow {
  right: 29.5%;
}
@media (max-width: 768px) {
  .my-next-arrow {
    right: 0.5%;
  }
}

.about-prev-arrow {
  left: 19.5%;
  top: -20px;
}
@media (max-width: 768px) {
  .about-prev-arrow {
    left: -1%;
  }
}

.about-next-arrow {
  right: 19.5%;
  top: -20px;
}
@media (max-width: 768px) {
  .about-next-arrow {
    right: -1%;
  }
}

.event-prev-arrow {
  left: 32.5%;
  top: -190px;
}
@media (max-width: 768px) {
  .event-prev-arrow {
    left: -1%;
  }
}

.event-next-arrow {
  right: 32.5%;
  top: -190px;
}
@media (max-width: 768px) {
  .event-next-arrow {
    right: -1%;
  }
}

.p-about {
  padding: 110px 0 0;
}
@media (max-width: 768px) {
  .p-about {
    padding: 40px 0 0;
  }
}
.p-about__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 0 0 50px;
}
@media (max-width: 768px) {
  .p-about__list {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 0 16px;
  }
}
.p-about__item {
  width: calc(33.33% - 38.66px);
}
@media (max-width: 768px) {
  .p-about__item {
    width: 100%;
    margin: 0 0 20px;
  }
}
@media (max-width: 768px) {
  .p-about__item.is-last {
    margin: 0;
  }
}
.p-about__image {
  width: 100%;
  margin: 0 0 10px;
}
.p-about__image > img {
  width: inherit;
}
.p-about__title {
  margin: 0 0 9px;
}
.p-about__title > p {
  color: #CFA65D;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-about__title > p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
  }
}
.p-about__lead {
  margin: 0 0 10px;
}
.p-about__lead > p {
  font-size: 18px;
  font-size: 1.125rem;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-about__lead > p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-about__button {
  text-align: center;
}

.p-access {
  padding: 115px 0 0;
}
@media (max-width: 768px) {
  .p-access {
    padding: 40px 0 0;
  }
}
.p-access__map {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.p-access__map__title {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 0.96;
  color: #CFA65D;
  margin: 0 0 9px;
}
@media (max-width: 768px) {
  .p-access__map__title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
    margin: 0 0 14px;
  }
}
.p-access__map__address {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 25px;
}
@media (max-width: 768px) {
  .p-access__map__address {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 15px;
  }
}
.p-access__map__address.is-access {
  text-align: left;
  margin: 0;
}
@media (max-width: 768px) {
  .p-access__map__address.is-access {
    max-width: 311px;
  }
}
.p-access__map > iframe {
  margin: 0 0 25px;
}
@media (max-width: 768px) {
  .p-access__map > iframe {
    margin: 0 0 15px;
  }
}

.p-event {
  padding: 90px 0 0;
}
@media (max-width: 768px) {
  .p-event {
    padding: 40px 0 0;
  }
}
.p-event__inner {
  max-width: 920px;
  width: 100%;
  margin: 0 auto 115px;
}
@media (max-width: 768px) {
  .p-event__inner {
    margin: 0 auto 40px;
  }
}
.p-event__player {
  max-width: 896px;
  width: 100%;
  margin: 0 0 50px;
}
.p-event__player > img {
  max-width: inherit;
  width: inherit;
}
@media (max-width: 768px) {
  .p-event__player {
    max-width: 289px;
    margin: 0 0 15px;
  }
}
.p-event__slider__image > img {
  margin: 0 0 10px;
}
.p-event__slider__text {
  width: 100%;
}
.p-event__slider__position > p, .p-event__slider__name > p {
  color: #CFA65D;
  font-size: 48px;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-event__slider__position > p, .p-event__slider__name > p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
.p-event__slider__name {
  margin: 0 0 10px;
}
.p-event__slider__lead > p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-event__slider__lead > p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}

.p-gourmet {
  padding: 100px 0 0;
}
@media (max-width: 768px) {
  .p-gourmet {
    padding: 40px 0 0;
  }
}

.p-main-visual {
  padding: 98px 0 0;
}
@media (max-width: 768px) {
  .p-main-visual {
    padding: 0 0 14px;
  }
}
.p-main-visual__image {
  padding: 44.95% 0 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 0 65px;
}
@media (max-width: 768px) {
  .p-main-visual__image {
    padding: 177.87% 0 0;
  }
}
.p-main-visual__image > img {
  position: absolute;
  top: 51%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  object-fit: cover;
}
@media (max-width: 768px) {
  .p-main-visual__image > img {
    top: 50%;
    width: 100%;
  }
}
@media screen and (min-width: 700px) and (max-width: 768px) {
  .p-main-visual__image > img {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
            transform: translate(-50%, -50%) scale(1.05);
  }
}
.p-main-visual__catch {
  margin: 0 0 50px;
}
@media (max-width: 768px) {
  .p-main-visual__catch {
    margin: 0 0 15px;
  }
}
.p-main-visual__catch > p {
  font-size: 48px;
  font-size: 3rem;
  font-weight: bold;
  color: #CFA65D;
  text-align: center;
}
@media (max-width: 768px) {
  .p-main-visual__catch > p {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-main-visual__dates {
  margin: 0 0 100px;
}
@media (max-width: 768px) {
  .p-main-visual__dates {
    margin: 0 0 30px;
  }
}
.p-main-visual__under {
  background: #fff;
  padding: 56px 0 45px;
}
.p-main-visual__inner {
  box-sizing: content-box;
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-main-visual__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .p-main-visual__list {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.p-main-visual__item {
  width: 274px;
  margin: 0 0 13px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .p-main-visual__item {
    margin: 0 5px 13px;
  }
}
.p-main-visual__item > a {
  display: block;
  width: inherit;
}
.p-main-visual__item > img {
  width: inherit;
}

.p-preview {
  padding: 70px 0 0;
}
@media (max-width: 768px) {
  .p-preview {
    padding: 25px 0 0;
  }
}

.wrapper {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

.text_wrapper {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  height: auto;
}

.show_more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  padding-top: 70px;
  text-align: center;
  line-height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, black 70%);
  cursor: pointer;
}

.open .show_more {
  background: transparent;
}

.show_more::before {
  position: absolute;
  content: "+ 続きを読む";
  color: #fff;
  display: inline-block;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.active .show_more:before {
  content: "閉じる";
}

.p-schedule {
  padding: 65px 0 0;
}
@media (max-width: 768px) {
  .p-schedule {
    padding: 40px 0 0;
  }
}
.p-schedule__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 0 0 115px;
}
@media (max-width: 768px) {
  .p-schedule__list {
    -ms-flex-direction: column;
        flex-direction: column;
    margin: 0 0 40px;
  }
  .p-schedule__list > :first-child {
    margin: 0 0 29px;
  }
}
.p-schedule__item {
  width: 50%;
  padding: 0 84px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .p-schedule__item {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .p-schedule__item {
    width: 100%;
    padding: 0 25.8px;
  }
}
.p-schedule__item__list > div {
  color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 50px;
  line-height: 50px;
  border-bottom: 2px solid #CFA65D;
}
.p-schedule__item__list > div > dt {
  letter-spacing: 0.1em;
  font-family: "Prompt", sans-serif;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .p-schedule__item__list > div > dt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .p-schedule__item__list > div > dt {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.1875;
  }
}
.p-schedule__item__list > div > dd {
  margin: 0 0 0 20px;
}
@media (max-width: 768px) {
  .p-schedule__item__list > div > dd {
    margin: 0 0 0 10px;
  }
}
.p-schedule__item__list > div > dd > span {
  margin: 0 0 0 15px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .p-schedule__item__list > div > dd {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .p-schedule__item__list > div > dd {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.8333333333;
  }
}
.p-schedule__catch {
  margin: 0 0 50px;
}
@media (max-width: 768px) {
  .p-schedule__catch {
    margin: 0 0 15px;
  }
}
.p-schedule__catch > p {
  font-size: 48px;
  font-size: 3rem;
  font-weight: bold;
  color: #CFA65D;
  text-align: center;
}
@media (max-width: 768px) {
  .p-schedule__catch > p {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-schedule__image {
  margin: 0 0 56px;
  max-width: 293px;
  width: 100%;
}
.p-schedule__image > img {
  width: inherit;
}
@media (max-width: 768px) {
  .p-schedule__image {
    margin: 0px 0 13px;
    width: 147.42px;
  }
}

.p-sponsor {
  background: #fff;
  padding: 65px 0 100px;
}
@media (max-width: 768px) {
  .p-sponsor {
    padding: 24px 0 30px;
  }
}
.p-sponsor__list {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 549.04px;
}
.p-sponsor__list.is-first {
  display: block;
  margin: 0 auto 33px;
}
@media (max-width: 768px) {
  .p-sponsor__list.is-first {
    margin: 0 auto 21px;
  }
}
.p-sponsor__list > :last-child {
  margin: 0;
}
.p-sponsor__image {
  max-width: 262.57px;
  width: 50%;
  margin: 0 0 33.1px;
}
@media (max-width: 768px) {
  .p-sponsor__image > img {
    max-width: 165px;
  }
}
@media (max-width: 768px) {
  .p-sponsor__image {
    margin: 0 auto 21px;
  }
}
.p-sponsor__image.is-first {
  margin: 0 auto;
}

.p-ticket {
  padding: 115px 0 0;
}
@media (max-width: 768px) {
  .p-ticket {
    padding: 40px 0 0;
  }
}
.p-ticket__contents {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin: 0 0 50px;
}
@media (max-width: 768px) {
  .p-ticket__contents {
    -ms-flex-direction: column;
        flex-direction: column;
    margin: 0 0 13.2px;
  }
}
.p-ticket__content.is-image {
  max-width: 700px;
  width: 100%;
}
.p-ticket__content.is-image > img {
  width: 100%;
}
@media (max-width: 768px) {
  .p-ticket__content.is-image {
    margin: 0 0 15px;
  }
}
.p-ticket__content.is-price {
  max-width: 617.89px;
  width: 100%;
  margin: 0 0 0 15px;
}
@media (max-width: 768px) {
  .p-ticket__content.is-price {
    margin: 0;
  }
}
.p-ticket__content.is-price > img {
  width: 100%;
}
.p-ticket__lead {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-ticket__lead {
    padding: 0 16px;
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 auto;
  }
}

.p-venue {
  padding: 115px 0 100px;
}
@media (max-width: 768px) {
  .p-venue {
    padding: 40px 0 30px;
  }
}
.p-venue__title {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 0.96;
  color: #CFA65D;
  text-align: center;
  margin: 130px 0 21px;
}
@media (max-width: 768px) {
  .p-venue__title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    margin: 30px 0 23px;
  }
}
.p-venue__infomation {
  width: 677px;
  margin: 0 auto 50px;
}
@media (max-width: 768px) {
  .p-venue__infomation {
    width: 274px;
    margin: 0 auto 15px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .p-venue__infomation {
    width: 100%;
    padding: 0 32px;
  }
}
.p-venue__infomation > p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  color: #fff;
}
@media (max-width: 768px) {
  .p-venue__infomation > p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}
.p-venue__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (max-width: 768px) {
  .p-venue__buttons {
    -ms-flex-direction: column;
        flex-direction: column;
    text-align: center;
  }
}
.p-venue__button.is-venue {
  margin: 0 50px;
}
@media (max-width: 768px) {
  .p-venue__button.is-venue {
    margin: 15px 0;
  }
}