@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;400;500;700;900&display=swap");
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html {
  color: #000;
  background: #FFF;
}

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

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,
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,
input, textarea, button, select,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

td, th {
  vertical-align: top;
}

img {
  vertical-align: bottom;
}

ul, ol, li {
  list-style: none;
}

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

p, li, dd, dt, td, th {
  word-wrap: break-word;
}

select, input {
  word-wrap: normal;
}

address, caption, cite, code, dfn, em, strong, th, var, time, mark {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

mark {
  color: #000;
  background: #FFF;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select, keygen {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

pre, code,
kbd, samp, tt {
  font-family: monospace;
  line-height: 100%;
}

input:not([type=radio]):not([type=checkbox]), textarea, button {
  /* iosでボタンなどのデフォルト装飾を解除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Firefoxでボタン系の高さが1pxずれる対策 */
button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  border: 0px;
}

/*----------------------
     html base
---------------------------------------- */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 10px; /* 1rem = 10px */
  background: #fff;
}

body {
  min-height: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  background: #000;
  color: #fff;
  line-height: 1;
  font-family: Ryumin Regular KL, Noto Serif JP, ヒラギノ明朝 ProN, Hiragino Mincho ProN, 游明朝, Yu Mincho, sans-serif;
  font-weight: 400;
}

html,
body {
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 1s;
}
a.-inner {
  color: #641344;
  text-decoration: underline;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
.l-header {
  position: relative;
  margin: 0 0 0;
  padding: 4.6rem 0 0 0;
  background: #000;
  color: #fff;
  z-index: 200;
}
.l-header_prefix {
  background: #fff;
  padding: 1.6rem 1.6rem 2.4rem;
  text-align: center;
}
.l-header_inner {
  position: relative;
}
.l-header_nav {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  position: absolute;
  z-index: 10;
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-header_nav {
    padding: 0 1.6rem;
  }
}
@media (max-width: 767px) {
  .l-header_nav {
    transform: translateX(0);
    flex-direction: column;
    justify-content: center;
    position: fixed;
    padding-top: 8rem;
    top: -120vh;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    transition: 0.3s;
  }
  .l-header_nav.__active {
    top: 0;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .l-header_nav {
    padding-top: 4rem;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "nav lang" "nav sns";
  }
}
.l-header_logo {
  position: absolute;
  z-index: 10;
  top: 10rem;
  left: 50%;
  transform: translateX(-50%);
}
.l-header_logo img {
  filter: drop-shadow(0 0 5px #000);
}
@media (max-width: 767px) {
  .l-header_menu {
    position: relative; /*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 3.2rem;
    height: 2rem;
  }
  .l-header_menu_wrap {
    display: block;
    position: fixed;
    top: 1.3rem;
    right: 0.3rem;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 100;
  }
  .l-header_menu span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 0px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 70%;
  }
  .l-header_menu span:nth-of-type(1) {
    top: 0px;
  }
  .l-header_menu span:nth-of-type(2) {
    top: 8px;
  }
  .l-header_menu span:nth-of-type(3) {
    top: 16px;
  }
  .l-header_menu.__active span:nth-of-type(1) {
    top: 2px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
    width: 80%;
  }
  .l-header_menu.__active span:nth-of-type(2) {
    opacity: 0; /*真ん中の線は透過*/
  }
  .l-header_menu.__active span:nth-of-type(3) {
    top: 14px;
    left: auto;
    right: 6px;
    bottom: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 80%;
  }
}

.l-mv {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.l-footer {
  text-align: center;
  padding: 2.4rem;
  font-size: 1.2rem;
  background: #000;
  color: #fff;
}

body.__menu_open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .l-section {
    margin-top: calc(7.2rem * 2);
    margin-bottom: calc(7.2rem * 2);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-section {
    margin-top: calc(5.6rem * 2);
    margin-bottom: calc(5.6rem * 2);
  }
}
@media (max-width: 767px) {
  .l-section {
    margin-top: calc(4rem * 2);
    margin-bottom: calc(4rem * 2);
  }
}

.l-contents_heading {
  text-align: center;
}
.l-contents_inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .l-contents_inner {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-contents_inner {
    margin-top: calc(5.6rem * 0.75);
    margin-bottom: calc(5.6rem * 0.75);
  }
}
@media (max-width: 767px) {
  .l-contents_inner {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .l-contents {
    padding: 0 3vw;
  }
}

/*----------------------
     page top
---------------------------------------- */
.l-page_top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
}
.l-page_top span {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.l-page_top span:hover {
  opacity: 0.7;
}
.l-page_top.upMove {
  animation: UpAnime 0.5s forwards;
}
.l-page_top.downMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.c-with_line {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.c-with_line:before, .c-with_line:after {
  content: "";
  display: block;
  text-align: center;
  background: url(../images/jp/line.png) scroll no-repeat center center;
  background-size: contain;
  width: 100%;
  height: 1.3rem;
}

.c-list_item {
  display: flex;
}
.c-list_item:before {
  content: attr(data-icon);
  margin-right: 0.2em;
}

.p-header_nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}
.p-header_nav_list li {
  display: block;
  width: 12rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-header_nav_list li {
    width: 10rem;
  }
}
.p-header_nav_list a {
  display: block;
  width: 100%;
}
.p-header_nav_list img {
  width: 100%;
}
@media (max-width: 767px) {
  .p-header_nav_list {
    flex-direction: column;
  }
  .p-header_nav_list li {
    width: auto;
  }
  .p-header_nav_list img {
    width: 40vw;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .p-header_nav_list {
    grid-area: nav;
  }
  .p-header_nav_list img {
    width: 30vw;
  }
}
.p-header_lang select {
  border: 1px solid #fff;
  border-radius: 4px;
  background: #fff;
  padding: 0.5em;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .p-header_lang select {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .p-header_lang {
    grid-area: lang;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .p-header_sns {
    grid-area: sns;
  }
}

@media (max-width: 767px) {
  .p-mv_image img {
    width: 100%;
    aspect-ratio: 3/4;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-mv_image .slider {
  overflow: hidden;
  max-height: 67rem;
  opacity: 0;
  transition: opacity 0.3s linear;
}
.p-mv_image .slider.slick-initialized {
  opacity: 1;
}

.p-introduction_inner {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  padding: 0 3.2rem;
  row-gap: 1.6rem;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  grid-template-columns: 40% 58%;
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "image subject" "image text";
  justify-content: center;
}
@media (max-width: 767px) {
  .p-introduction_inner {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "image" "subject" "text";
  }
}
.p-introduction_inner .__item {
  line-height: 1.6;
}
.p-introduction_inner .__subject {
  grid-area: subject;
  font-weight: 700;
  font-size: 2.7rem;
  font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
  .p-introduction_inner .__subject {
    font-weight: 700;
    font-size: 1.8rem;
    font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
  }
}
.p-introduction_inner .__text {
  grid-area: text;
  font-weight: 400;
  font-size: 1.5rem;
}
.p-introduction_inner .__image {
  grid-area: image;
}
.p-introduction .__aside {
  text-align: center;
  padding: 0 1.6rem;
}

.p-venue_menu_inner {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3.2rem;
  text-align: center;
  font-weight: 700;
  font-size: 2.6rem;
  font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-venue_menu_inner {
    font-weight: 700;
    font-size: 1.8rem;
    font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
  }
}
.p-venue_menu_item {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3.2rem;
}
.p-venue_menu_item_list {
  display: grid;
  gap: 2.4rem 1.6rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p-venue_menu_item_list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
}
.p-venue_menu_item_list .__item {
  background: #a19569;
  text-align: center;
}
.p-venue_menu_item_list .__item a {
  padding: 0.5em;
  display: block;
}
.p-venue_menu_item_list .__item a:hover {
  background: rgba(255, 255, 255, 0.267);
  opacity: 0.7;
}
.p-venue_menu_attention {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-venue_menu_attention {
    font-weight: 500;
    font-size: 1.6rem;
  }
}
.p-venue_menu .__disabled {
  pointer-events: none;
}

.p-movie .__largetext {
  font-weight: 700;
  font-size: 2.7rem;
  font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-movie .__largetext {
    font-weight: 700;
    font-size: 1.8rem;
    font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
    line-height: 1.6;
  }
}
.p-movie_heading_inner {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.p-movie_inner {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  padding: 0 3.2rem;
  row-gap: 1.6rem;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  grid-template-columns: 40% 58%;
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "image subject" "image text";
  justify-content: center;
}
@media (max-width: 767px) {
  .p-movie_inner {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "image " " subject" " text";
  }
}
.p-movie_inner .__item {
  line-height: 1.6;
}
.p-movie_inner .__subject {
  grid-area: subject;
  font-weight: 700;
  font-size: 2.7rem;
  font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #fff;
  display: grid;
  gap: 0.8rem;
}
.p-movie_inner .__text {
  grid-area: text;
  font-weight: 400;
  font-size: 1.5rem;
}
.p-movie_inner .__image {
  grid-area: image;
  text-align: center;
}
.p-movie_inner .__class {
  background: #fff;
  color: #000;
  font-weight: 400;
  font-size: 1.1rem;
  padding: 0.2em 0.8em;
  width: -moz-fit-content;
  width: fit-content;
}
.p-movie_inner .__personal_title {
  font-weight: 400;
  font-size: 1.7rem;
}
.p-movie_inner .__name {
  font-weight: 700;
  font-size: 3.2rem;
  font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
  line-height: 1;
}
.p-movie_inner .__ruby {
  font-weight: 400;
  font-size: 1.7rem;
}
.p-movie_inner .__detail {
  margin-bottom: 0.5em;
}
@media (min-width: 1024px) {
  .p-movie_inner .__link {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-movie_inner .__link {
    margin-top: calc(5.6rem * 0.25);
    margin-bottom: calc(5.6rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-movie_inner .__link {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-movie_inner .__link a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #fff;
  color: #00baef;
  padding: 0.2em 0.8em;
  font-weight: 400;
  font-size: 1rem;
}
.p-movie_inner .__profile_item .__item {
  font-weight: 400;
  font-size: 1.2rem;
}
.p-movie_inner .__profile_item .__address {
  font-weight: 400;
  font-size: 1rem;
}
.p-movie_block {
  display: grid;
  gap: 0.8rem;
  text-align: center;
  margin-bottom: 4rem;
}
.p-movie_block .__movie {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.4rem;
}
@media (max-width: 767px) {
  .p-movie_block .__caption {
    line-height: 1.4;
  }
}
.p-movie_block iframe {
  width: 100%;
  aspect-ratio: 760/428;
}
.p-movie_en {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  max-width: 65rem;
  display: grid;
  gap: 2.4rem;
  padding: 0 3.2rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-movie_en {
    gap: 0.8rem;
    grid-template-columns: 20% 80%;
    grid-template-areas: "large large" "image text";
  }
}
.p-movie_en .__largetext {
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
  border-bottom: 1px solid #fff;
  padding-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .p-movie_en .__largetext {
    grid-area: large;
    font-weight: 700;
    font-size: 1.8rem;
    font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
    padding-bottom: 0.8rem;
  }
}
.p-movie_en .__text {
  line-height: 1.6;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .p-movie_en .__text {
    grid-area: text;
  }
}
.p-movie_en .__image {
  align-self: center;
}
@media (min-width: 768px) {
  .p-movie_en .__image {
    position: absolute;
    left: -12rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .p-movie_en .__image {
    grid-area: image;
  }
}

.p-sake_comingsoon {
  text-align: center;
  padding-block: 16rem;
}
.p-sake_title {
  text-align: center;
  font-weight: 700;
  font-size: 2.7rem;
  font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
}
.p-sake_attention {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  font-weight: 400;
  font-size: 1.2rem;
}
@media (min-width: 1024px) {
  .p-sake_attention {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-sake_attention {
    margin-top: calc(5.6rem * 0.25);
    margin-bottom: calc(5.6rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-sake_attention {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-sake_inner {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-sake_inner {
    margin-top: calc(7.2rem * 1.5);
    margin-bottom: calc(7.2rem * 1.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-sake_inner {
    margin-top: calc(5.6rem * 1.5);
    margin-bottom: calc(5.6rem * 1.5);
  }
}
@media (max-width: 767px) {
  .p-sake_inner {
    margin-top: calc(4rem * 1.5);
    margin-bottom: calc(4rem * 1.5);
  }
}
.p-sake_inner h3 {
  margin-bottom: 3.2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-sake_inner h3 img {
    height: 2rem;
  }
}
.p-sake_item {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(3, 255px);
  padding: 0 1.6rem;
}
@media (max-width: 767px) {
  .p-sake_item {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-sake_item a {
  display: block;
  background-color: #976e31;
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-sake_item a {
    font-size: 1.2rem;
  }
}
.p-sake_item .__item {
  transition: all 0.3s;
}
.p-sake_item .__hide {
  display: none;
}
.p-sake_item .__no_event {
  pointer-events: none;
}
.p-sake_more_btn {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1em 0.7em;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  border: 1px solid #fff;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .p-sake_more_btn_wrap {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-sake_more_btn_wrap {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-sake_more_btn_wrap {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-photo_inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.p-photo_list {
  margin-left: auto;
  margin-right: auto;
}
.p-photo_list .__image {
  width: 150px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.p-photo_list .__image:hover {
  opacity: 0.7;
}
.p-photo_list .__image1 {
  width: 22.2222222222%;
  width: 300px;
}
.p-photo_list .__image2 {
  width: 11.1111111111%;
  width: 150px;
}
.p-photo_list .__image3 {
  width: 22.2222222222%;
  width: 300px;
}
.p-photo_list .__item {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.p-photo_list .__pos2 {
  aspect-ratio: 1/1;
}
.p-photo_list .__pos3 {
  aspect-ratio: 2/1;
}
@media (max-width: 767px) {
  .p-photo_list .__image {
    width: 25%;
  }
  .p-photo_list .__image1,
  .p-photo_list .__image2,
  .p-photo_list .__image3 {
    width: 25%;
  }
  .p-photo_list .__pos3 {
    aspect-ratio: 1/1;
  }
}

.modaal-gallery-item img {
  max-height: 90vh !important;
}

@media (max-width: 1023px) {
  .modaal-gallery-control {
    bottom: -70px !important;
  }
}
.p-grid_list {
  position: relative;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
.p-grid_list .item {
  display: block;
  position: absolute;
  width: 150px;
  height: 150px;
  margin: 0;
  z-index: 1;
}
.p-grid_list .item-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-grid_list .__image1 {
  width: 300px;
  height: 300px;
}
.p-grid_list .__image2 {
  width: 150px;
  height: 150px;
}
.p-grid_list .__image3 {
  width: 300px;
  height: 150px;
}
.p-grid_list .__item {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.p-grid_list .__pos2 {
  aspect-ratio: 1/1;
}
.p-grid_list .__pos3 {
  aspect-ratio: 2/1;
}

.grid {
  position: relative;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.item {
  display: block; /* 必須 */
  position: absolute; /* 必須 */
  width: 150px; /* アイテムの幅 */
  height: 150px; /* アイテムの高さ */
  margin: 0px; /* アイテム間のマージン(この2倍になる) */
  z-index: 1;
}

@media (max-width: 877px) {
  .item {
    width: calc(33.33% - 11px);
    height: calc(33.33vw - 11px);
  }
}
/* 640ピクセル幅以下になったら2カラム化 */
@media (max-width: 640px) {
  .item {
    width: calc(50% - 10px);
    height: calc(50vw - 10px);
  }
}
.p-award .__title {
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
  text-align: center;
  margin-bottom: calc(1.6rem * 1);
}
@media (max-width: 767px) {
  .p-award .__title {
    font-weight: 700;
    font-size: 2rem;
    font-family: "Ryumin Medium KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
  }
}
.p-award .__text {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 767px) {
  .p-award .__text {
    font-weight: 500;
    font-size: 1.8rem;
  }
}
.p-award .__link {
  width: 100%;
  min-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-award .__link {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-award .__link {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-award .__link {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-award .__link a {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  background: #a19569;
  padding: 0.5em 2em;
  display: block;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
}

.p-foot_fest {
  text-align: center;
  padding-inline: 1.6rem;
}
@media (min-width: 1024px) {
  .p-foot_fest {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-foot_fest {
    margin-top: calc(5.6rem * 0.25);
    margin-bottom: calc(5.6rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-foot_fest {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}

.p-comingsoon {
  text-align: center;
  font-family: "Ryumin Regular KL", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  border: 1px solid #fff;
  padding: 0.5em 1.5em;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.p-introduction {
  background: url(../images/jp/bg02.png) scroll no-repeat calc(50% + 50rem) 0, url(../images/jp/bg01.png) scroll no-repeat calc(50% - 55rem) 220px, url(../images/jp/bg04.png) scroll no-repeat calc(50% + 60rem) 680px;
}

.p-photo {
  background: url(../images/jp/bg05.png) scroll no-repeat calc(50% + 55rem) 0px, url(../images/jp/bg03.png) scroll no-repeat calc(50% - 50rem) 20px;
}

.p-venue_menu {
  background: url(../images/jp/bg06.png) scroll no-repeat calc(50% + 45rem) 0px;
}

.p-movie {
  background: url(../images/jp/bg07.png) scroll no-repeat calc(50% - 45rem) 0px, url(../images/jp/bg08.png) scroll no-repeat calc(50% + 52rem) 380px, url(../images/jp/bg09.png) scroll no-repeat calc(50% - 52rem) 680px, url(../images/jp/bg10.png) scroll no-repeat calc(50% + 52rem) 1400px, url(../images/jp/bg11.png) scroll no-repeat calc(50% - 51rem) 1840px, url(../images/jp/bg12.png) scroll no-repeat calc(50% + 52rem) 2050px, url(../images/jp/bg13.png) scroll no-repeat calc(50% - 53rem) 2700px;
}

.p-sake {
  background: url(../images/jp/bg14.png) scroll no-repeat calc(50% + 55rem) 220px, url(../images/jp/bg15.png) scroll no-repeat calc(50% - 52rem) 760px, url(../images/jp/bg16.png) scroll no-repeat calc(50% + 52rem) 1100px;
}

@media (min-width: 1024px) {
  .h-pc_hide,
  .h-pc_tab_hide {
    display: none;
  }
}
@media (min-width: 768px) {
  .sp_only {
    display: none;
  }
  .event_consent.sp_only {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h-tab_hide,
  .h-pc_tab_hide,
  .h-sp_tab_hide {
    display: none;
  }
}
@media (max-width: 767px) {
  .h-sp_hide,
  .h-sp_tab_hide {
    display: none;
  }
  .pc_only {
    display: none;
  }
}
.ellipsis {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hp_mb0 {
  margin-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .hp_mb0 {
    margin-bottom: 0rem !important;
  }
}

.hp_mt0 {
  margin-top: 0rem !important;
}

.hp_pb0 {
  padding-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .hp_pb0 {
    padding-bottom: 0rem !important;
  }
}

.hp_mb10 {
  margin-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .hp_mb10 {
    margin-bottom: 0.8rem !important;
  }
}

.hp_mt10 {
  margin-top: 1.6rem !important;
}

.hp_pb10 {
  padding-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .hp_pb10 {
    padding-bottom: 0.8rem !important;
  }
}

.hp_mb20 {
  margin-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .hp_mb20 {
    margin-bottom: 1.6rem !important;
  }
}

.hp_mt20 {
  margin-top: 3.2rem !important;
}

.hp_pb20 {
  padding-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .hp_pb20 {
    padding-bottom: 1.6rem !important;
  }
}

.hp_mb30 {
  margin-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .hp_mb30 {
    margin-bottom: 2.4rem !important;
  }
}

.hp_mt30 {
  margin-top: 4.8rem !important;
}

.hp_pb30 {
  padding-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .hp_pb30 {
    padding-bottom: 2.4rem !important;
  }
}

.hp_mb40 {
  margin-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .hp_mb40 {
    margin-bottom: 3.2rem !important;
  }
}

.hp_mt40 {
  margin-top: 6.4rem !important;
}

.hp_pb40 {
  padding-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .hp_pb40 {
    padding-bottom: 3.2rem !important;
  }
}

.hp_mb50 {
  margin-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .hp_mb50 {
    margin-bottom: 4rem !important;
  }
}

.hp_mt50 {
  margin-top: 8rem !important;
}

.hp_pb50 {
  padding-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .hp_pb50 {
    padding-bottom: 4rem !important;
  }
}

.hp_mb60 {
  margin-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .hp_mb60 {
    margin-bottom: 4.8rem !important;
  }
}

.hp_mt60 {
  margin-top: 9.6rem !important;
}

.hp_pb60 {
  padding-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .hp_pb60 {
    padding-bottom: 4.8rem !important;
  }
}

.hp_mb70 {
  margin-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .hp_mb70 {
    margin-bottom: 5.6rem !important;
  }
}

.hp_mt70 {
  margin-top: 11.2rem !important;
}

.hp_pb70 {
  padding-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .hp_pb70 {
    padding-bottom: 5.6rem !important;
  }
}

.hp_mb80 {
  margin-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .hp_mb80 {
    margin-bottom: 6.4rem !important;
  }
}

.hp_mt80 {
  margin-top: 12.8rem !important;
}

.hp_pb80 {
  padding-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .hp_pb80 {
    padding-bottom: 6.4rem !important;
  }
}

.hp_mb90 {
  margin-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .hp_mb90 {
    margin-bottom: 7.2rem !important;
  }
}

.hp_mt90 {
  margin-top: 14.4rem !important;
}

.hp_pb90 {
  padding-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .hp_pb90 {
    padding-bottom: 7.2rem !important;
  }
}

.hp_mb100 {
  margin-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .hp_mb100 {
    margin-bottom: 8rem !important;
  }
}

.hp_mt100 {
  margin-top: 16rem !important;
}

.hp_pb100 {
  padding-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .hp_pb100 {
    padding-bottom: 8rem !important;
  }
}

.-mb5 {
  margin-bottom: 0.5rem !important;
}

.-mb10 {
  margin-bottom: 1rem !important;
}

.-mb20 {
  margin-bottom: 2rem !important;
}

.-mt5 {
  margin-top: 0.5rem !important;
}

.-mt10 {
  margin-top: 1rem !important;
}

.-mt20 {
  margin-top: 2rem !important;
}

.-tac {
  text-align: center;
}

.hp_bold {
  font-weight: 700;
}

.hp_white {
  color: #fff;
}

.hp_black {
  color: #000;
}

.hp_tac {
  text-align: center;
}

@media (max-width: 767px) {
  .hp_sp_tal {
    text-align: left;
  }
}

.hp_tal {
  text-align: left;
}

@media (max-width: 767px) {
  .hp_sp_padding {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

.hp_bg_white {
  background: #fff;
}
.hp_bg_white .__note {
  color: #000;
}

.hp_bg_radius {
  border-radius: 1.4rem;
}

.hp_contents_padding {
  padding: 2.4rem;
}

.hp_image_org_width img {
  width: auto !important;
}

.hp_fontL {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .hp_fontL {
    font-size: 1.8rem;
  }
}

.hp_fontS {
  font-size: 80%;
}

.hp_notice {
  font-size: 80%;
}

.hp_hide {
  display: none;
}