@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 {
  width: 25px;
}
.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: 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: 1;
    padding: 16px 0;
  }
}
.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 {
  position: fixed;
  bottom: 15px;
  right: 0;
  padding: 20px 40px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), black);
  z-index: 5;
}
@media (max-width: 768px) {
  .l-membership {
    padding: 0;
    width: 100%;
    height: 147px;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0), black);
  }
}
.l-membership__button {
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .l-membership__button {
    margin: 24% 0 0;
  }
}

.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 {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12.8px;
  height: 21.94px;
  background: url(../img/component/c-button01_arrow.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .c-button01::after {
    width: 8.29px;
    height: 14.21px;
  }
}
.c-button01.l-membership__link {
  min-width: 480px;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .c-button01.l-membership__link {
    min-width: 480px;
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .c-button01.l-membership__link {
    min-width: 311px;
  }
}
.c-button01.l-membership__link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12.8px;
  height: 21.94px;
  background: url(../img/component/c-button01_arrow.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .c-button01.l-membership__link::after {
    width: 8.29px;
    height: 14.21px;
  }
}

.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-title01.is-case {
  margin: 0 0 60px;
}
@media (max-width: 768px) {
  .c-title01.is-case {
    margin: 0 0 15px;
  }
}
.c-title01.is-mission {
  margin: 0 0 78px;
}
@media (max-width: 768px) {
  .c-title01.is-mission {
    margin: 0 0 18px;
  }
}
@media (max-width: 768px) {
  .c-title01.is-mission > .is-small {
    line-height: 1.4;
  }
}

.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 50px;
}
@media (max-width: 768px) {
  .c-list01__item {
    -ms-flex-direction: column;
        flex-direction: column;
    margin: 0 0 25px;
  }
}
@media (max-width: 768px) {
  .c-list01__item {
    margin: 0;
  }
}
.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.is-last {
  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;
    padding: 0 16px;
    margin: 0 0 6px;
  }
}
.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;
  }
}
.c-list01__item__lead.is-black {
  color: #000000;
}
@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.4444444444;
}
.p-gourmet__slider__name {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #CFA65D;
  padding: 10px 0;
  max-width: 675px;
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 1840px) {
  .p-gourmet__slider__name {
    padding: 0 0 0 20px;
  }
}
@media (max-width: 768px) {
  .p-gourmet__slider__name {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.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;
  max-width: 675px;
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 1840px) {
  .p-gourmet__slider__store {
    padding: 0 0 0 20px;
  }
}
@media (max-width: 768px) {
  .p-gourmet__slider__store {
    font-size: 14px;
    font-size: 0.875rem;
    height: 120px;
  }
}
.p-gourmet__slider__button {
  display: none;
}
@media (max-width: 768px) {
  .p-gourmet__slider__button {
    display: block;
  }
}
@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%;
  }
}

.swiper {
  text-align: center;
  margin: 0 auto;
  padding: 0 0 70px;
}
@media (max-width: 768px) {
  .swiper {
    padding: 0 0 35px;
  }
}

.swiper-slide {
  width: 100%;
  transition: opacity 0.3s;
  position: relative;
}
.swiper-slide img {
  max-width: 675px;
  width: 100%;
}
.swiper-slide span {
  position: absolute;
  top: 34%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  opacity: 0;
}
@media (any-hover: hover) {
  .swiper-slide:hover span {
    opacity: 1;
  }
}

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-color: #fff;
  top: 34%;
}
@media screen and (min-width: 769px) and (max-width: 1450px) {
  .swiper-button-next,
.swiper-button-prev {
    top: 26%;
  }
}
@media (max-width: 768px) {
  .swiper-button-next,
.swiper-button-prev {
    top: 35%;
  }
}
.swiper-button-next::after,
.swiper-button-prev::after {
  width: 16px !important;
  height: 32px !important;
}

.swiper-button-prev {
  left: 29%;
}
@media (max-width: 768px) {
  .swiper-button-prev {
    left: 0.5%;
  }
}

@media (max-width: 768px) {
  #mission > div.swiper.swiper-initialized.swiper-horizontal.swiper-autoheight.swiper-ios.swiper-backface-hidden > div.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
  }
}

.swiper-button-next {
  right: 29%;
}
@media (max-width: 768px) {
  .swiper-button-next {
    right: 2%;
  }
}

/* ページネーションの余白 */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 15px;
}

/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
  background-color: #CFA65D;
}

.p-mission {
  padding: 70px 0 0;
}
@media (max-width: 768px) {
  .p-mission {
    padding: 22px 0 0;
  }
}
.p-mission__catch.is-born {
  max-width: 1165px;
  width: 100%;
  margin: 0 0 50px;
}
.p-mission__catch.is-born > img {
  width: 100%;
}
@media (max-width: 768px) {
  .p-mission__catch.is-born {
    max-width: 343px;
    width: 92%;
    margin: 0 0 31px;
  }
}
.p-mission__catch.is-make {
  max-width: 1300px;
  width: 100%;
  margin: 0 0 56px;
}
.p-mission__catch.is-make img {
  width: 100%;
}
@media (max-width: 768px) {
  .p-mission__catch.is-make {
    width: 100%;
    margin: 0 0 26px;
  }
}
.p-mission__contents {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 768px) {
  .p-mission__contents {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: normal;
        align-items: normal;
  }
}
.p-mission__contents.is-about {
  margin: 0 0 132px;
}
@media (max-width: 768px) {
  .p-mission__contents.is-about {
    margin: 0 0 38px;
  }
}
.p-mission__contents.is-second {
  margin: 0 0 60px;
}
@media (max-width: 768px) {
  .p-mission__contents.is-second {
    margin: 0 0 26px;
  }
}
.p-mission__content.p-mission__image {
  max-width: 675px;
  width: 100%;
}
.p-mission__content.p-mission__image > img {
  width: 100%;
}
.p-mission__content.p-mission__image.is-first {
  margin: 0 50px 0 0;
}
@media (max-width: 768px) {
  .p-mission__content.p-mission__image.is-first {
    margin: 0 auto 15px;
  }
}
.p-mission__content.p-mission__image.is-second {
  margin: 0 0 0 50px;
}
@media (max-width: 768px) {
  .p-mission__content.p-mission__image.is-second {
    margin: 0 auto 15px;
    width: 100%;
    padding: 53.64% 0 0;
    position: relative;
    overflow: hidden;
  }
  .p-mission__content.p-mission__image.is-second > img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.p-mission__content.p-mission__lead {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
@media (max-width: 768px) {
  .p-mission__content.p-mission__lead {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.p-mission__content.p-mission__lead.is-second {
  width: 100%;
}
@media (max-width: 768px) {
  .p-mission__content.p-mission__lead.is-second > p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-mission__title {
  text-align: center;
  margin: 0 0 20px;
}
.p-mission__title > p {
  color: #CFA65D;
  font-size: 48px;
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-mission__title > p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.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 77px;
}
@media (max-width: 768px) {
  .p-main-visual__image {
    padding: 177.87% 0 0;
    margin: 0 0 35px;
  }
}
.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 {
  max-width: 1040px;
  width: 100%;
  margin: 0 0 52px;
}
@media (max-width: 768px) {
  .p-main-visual__catch {
    width: 80%;
    margin: 0 0 16px;
  }
}
.p-main-visual__catch > img {
  width: 100%;
}
.p-main-visual__lead {
  width: 48%;
  margin: 0 0 30px;
}
@media (max-width: 768px) {
  .p-main-visual__lead {
    width: 100%;
    margin: 0;
  }
}
.p-main-visual__lead > p {
  color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
@media (max-width: 768px) {
  .p-main-visual__lead > p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-preview {
  padding: 70px 0 100px;
}
@media (max-width: 768px) {
  .p-preview {
    padding: 25px 0 0;
  }
}
.p-preview.is-second {
  background: #fff;
}
.p-preview__title {
  display: inline-block;
  color: #CFA65D;
  font-size: 48px;
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-preview__title {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 0 16px;
  }
}
.p-preview__lead {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 10px;
}
@media (max-width: 768px) {
  .p-preview__lead {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 15px;
    padding: 0 16px;
  }
}
.p-preview__lead.is-last {
  margin: 0 0 75px;
}
@media (max-width: 768px) {
  .p-preview__lead.is-last {
    margin: 0 0 10px;
  }
}

.p-preview2 {
  padding: 70px 0 100px;
  background: #fff;
}
@media (max-width: 768px) {
  .p-preview2 {
    padding: 25px 0 0;
  }
}
.p-preview2.is-second {
  background: #fff;
}
.p-preview2__title {
  display: inline-block;
  color: #CFA65D;
  font-size: 48px;
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-preview2__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-preview2__lead {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-preview2__lead {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-preview2__lead.is-last {
  margin: 0 0 50px;
}

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

.text_wrapper {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  height: auto;
}
@media (max-width: 768px) {
  .text_wrapper {
    padding: 0 16px;
  }
}

.show_more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  padding-top: 70px;
  text-align: center;
  line-height: 30px;
  background: linear-gradient(180deg, transparent 0%, #000 46%, #000 100%);
  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-preview2 .wrapper {
  color: #000;
}
.p-preview2 .show_more {
  background: linear-gradient(180deg, transparent 0%, #fff 46%, #fff 100%);
}
.p-preview2 .show_more::before {
  color: #000;
}
.p-preview2 .text_wrapper.active.open .show_more {
  background: transparent;
}

.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-slogan {
  padding: 65px 0 100px;
}
@media (max-width: 768px) {
  .p-slogan {
    padding: 22px 0 30px;
  }
}
.p-slogan__contents {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin: 0 0 50px;
}
@media (max-width: 768px) {
  .p-slogan__contents {
    -ms-flex-direction: column;
        flex-direction: column;
    margin: 0 0 15px;
  }
}
.p-slogan__image {
  max-width: 672px;
  width: 100%;
  margin: 0 53px 0 0;
}
.p-slogan__image > img {
  width: 100%;
}
@media (max-width: 768px) {
  .p-slogan__image {
    margin: 0 0 16px;
  }
}
.p-slogan__lead {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  width: 90%;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-slogan__lead {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    width: 100%;
    word-break: break-all;
  }
}
.p-slogan__sns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 50px;
}
@media (max-width: 768px) {
  .p-slogan__sns {
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin: 0 0 10px;
    padding: 0 16px;
  }
}
.p-slogan__sns > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0 35px;
}
@media (max-width: 768px) {
  .p-slogan__sns > li {
    width: 50%;
    padding: 0;
    -ms-flex-pack: start;
        justify-content: flex-start;
    margin: 0 0 20px;
  }
}
@media (max-width: 768px) {
  .p-slogan__sns > li.is-flex {
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 0 0 0 4%;
  }
}
.p-slogan__sns > li > span {
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 0 10px;
}
@media (max-width: 768px) {
  .p-slogan__sns > li > span {
    margin: 0 0 0 30px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-slogan__button {
  text-align: center;
}
.p-slogan__button.is-first {
  margin: 0 0 25px;
}
@media (max-width: 768px) {
  .p-slogan__button.is-first {
    margin: 0 0 15px;
  }
}

.p-sponsor {
  background: #fff;
  padding: 65px 0 100px;
}
@media (max-width: 768px) {
  .p-sponsor {
    padding: 24px 0 30px;
  }
}
.p-sponsor__title {
  font-size: 48px;
  font-size: 3rem;
  font-weight: bold;
  color: #CFA65D;
  margin: 0 0 50px;
}
@media (max-width: 768px) {
  .p-sponsor__title {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 0 16px;
    margin: 0 0 15px;
  }
}
.p-sponsor__list {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .p-sponsor__list {
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 0 16px;
    margin: 0 auto 15px;
  }
}
@media (max-width: 768px) {
  .p-sponsor__list.is-second {
    margin: 0;
  }
}
.p-sponsor__image {
  margin: 0 25px 50px;
  width: 300px;
}
@media (max-width: 768px) {
  .p-sponsor__image {
    margin: 0 auto 21px;
    width: 150px;
    padding: 0;
    margin: 0 0 15px;
  }
}
.p-sponsor__button {
  text-align: center;
}
.p-sponsor__button.is-first {
  margin: 0 0 25px;
}
@media (max-width: 768px) {
  .p-sponsor__button.is-first {
    margin: 0 0 15px;
  }
}

.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;
  }
}