@charset "UTF-8";
/*reset*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

figure {
  margin: 0;
}

/*
font-family: $en_font;
font-family: 'IBM Plex Sans JP', sans-serif;
*/
html, body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 20px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-style: normal;
  color: #2e2f27;
  background: #eef2e4;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media only screen and (max-width: 896px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
img {
  width: 100%;
  height: auto;
}

::selection {
  background: #333333;
  color: #eef2e4;
}

::-moz-selection {
  background: #ccc;
  color: #eef2e4;
}

/*----------------------------------------------------
 link
--------------------------------------------------- */
a:link, a:visited, a:active {
  color: #eef2e4;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: none;
}

/*----------------------------------------------------
  .scrollview
--------------------------------------------------- */
.scrollview, .fade_up {
  opacity: 0;
  transform: scale(1, 1) translate(0%, 20px);
}

.scrollview.view, .fade_up.js-fade_up_view {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
  transform: scale(1, 1) translate(0%, 0%);
}

/*----------------------------------------------------
  .lazyload
--------------------------------------------------- */
.lazyload_set span, .lazyload_set img {
  opacity: 0;
}
.lazyload_set span.lazyloaded, .lazyload_set img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}

/*----------------------------------------------------
 block_loading
--------------------------------------------------- */
.block_loading {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  transform-origin: left center;
}
.block_loading .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eef2e4 url(../img/common/logo_en.svg) no-repeat center center;
  background: #eef2e4;
  background-size: 160px;
  transform-origin: left center;
}
.block_loading .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  font-size: 4vh;
  font-weight: 500;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-feature-settings: "vpal";
  letter-spacing: 0.2em;
  line-height: 2;
  opacity: 0;
}
@media (max-width: 896px) {
  .block_loading .text {
    font-size: 5vw;
  }
}
body.loadStart .block_loading .text {
  transition: all 0.3s 0.1s ease;
  opacity: 1;
}

body.pageLoad .block_loading {
  opacity: 0;
  visibility: hidden;
  transition: all 1s 1.5s linear;
}

/*----------------------------------------------------
 block_scroll
--------------------------------------------------- */
.block_scroll {
  text-align: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  transition: all 0.5s 0s ease;
  z-index: 110;
}
body.page_scroll .block_scroll span {
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-180deg);
}

.block_scroll a {
  display: block;
  background: #2e2f27;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_scroll a {
    width: 50px;
    height: 50px;
  }
}
.block_scroll a svg {
  fill: #eef2e4;
  width: 30px;
  height: 30px;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_scroll a svg {
    width: 20px;
    height: 20px;
  }
}
.block_scroll a:hover {
  background: #b7282d;
}
.block_scroll a:hover svg {
  fill: #2e2f27;
}
.block_scroll span {
  transition: all 0.8s 0s cubic-bezier(0.875, 0.005, 0.09, 0.99);
}

@keyframes rotate-anime-3d {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*----------------------------------------------------
.block_navi
--------------------------------------------------- */
.block_navi a {
  position: fixed;
  display: block;
  z-index: 110;
  top: 10px;
  left: 10px;
  width: 80px;
  height: 80px;
  transition: all 0.4s 0s ease;
}
@media (max-width: 896px) {
  .block_navi a {
    width: 60px;
    height: 60px;
  }
}
.block_navi a:hover .wrap span:after {
  transform: scale(1, 1);
  transform-origin: left center;
}
@media (max-width: 896px) {
  .block_navi a:hover .wrap span:after {
    transform: scale(0, 0);
  }
}
body.menu_open .block_navi a .wrap {
  background: #eef2e4;
}
body.menu_open .block_navi a .wrap span {
  margin-top: 0px;
  background: #d4b572;
}
body.menu_open .block_navi a .wrap span.l1 {
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(45deg);
}
body.menu_open .block_navi a .wrap span.l2 {
  transform: scale3d(0, 1, 1) translate(0px, 0px) rotate(0deg);
}
body.menu_open .block_navi a .wrap span.l3 {
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-45deg);
}

.block_navi a .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  background: #2e2f27;
  border-radius: 100%;
  overflow: hidden;
  transition: all 0.4s 0s ease;
}
@media (max-width: 896px) {
  .block_navi a .wrap {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
  }
}
.block_navi a span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 2px;
  margin-left: -20px;
  background: #eef2e4;
  transform-origin: center center;
  transition: all 0.4s 0s ease;
}
@media (max-width: 896px) {
  .block_navi a span {
    width: 30px;
    height: 1px;
    margin-left: -15px;
  }
}
.block_navi a span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #b7282d;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right center;
}
.block_navi a span.l1 {
  margin-top: -10px;
}
@media (max-width: 896px) {
  .block_navi a span.l1 {
    margin-top: -5px;
  }
}
.block_navi a span.l2 {
  margin-top: 0px;
}
.block_navi a span.l2::after {
  transition: transform 0.4s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right center;
}
.block_navi a span.l3 {
  margin-top: 10px;
}
@media (max-width: 896px) {
  .block_navi a span.l3 {
    margin-top: 5px;
  }
}
.block_navi a span.l3::after {
  transition: transform 0.4s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right center;
}

/*----------------------------------------------------
.block_site_menu
--------------------------------------------------- */
.block_site_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  background: #2e2f27;
  visibility: hidden;
  opacity: 0;
  transform: translate(0%, 0%);
  transition: all 0.05s 0s ease;
}
body.menu_open .block_site_menu {
  visibility: visible;
  opacity: 1;
  transform: translate(0%, 0%);
}

.block_site_menu .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 896px) {
  .block_site_menu .inner {
    width: 70%;
  }
}
.block_site_menu .inner .menu_area {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_site_menu .inner .menu_area ul.menu {
  width: 35%;
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area ul.menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.block_site_menu .inner .menu_area ul.menu li {
  line-height: 1;
  margin-bottom: 2.8vh;
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area ul.menu li {
    width: 50%;
    margin-bottom: 15px;
  }
}
.block_site_menu .inner .menu_area ul.menu li:last-child {
  margin-bottom: 0;
}
.block_site_menu .inner .menu_area ul.menu li a, .block_site_menu .inner .menu_area ul.menu li .none {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-end; /* flex-start  center  */
  line-height: 1;
  transition: all 0.4s 0s ease;
}
.block_site_menu .inner .menu_area ul.menu li a span.en, .block_site_menu .inner .menu_area ul.menu li .none span.en {
  transition: all 0.4s 0s ease;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #eef2e4;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(24.8888888889px, 2.7777777778vw, 40px);
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area ul.menu li a span.en, .block_site_menu .inner .menu_area ul.menu li .none span.en {
    font-size: 5vw;
  }
}
.block_site_menu .inner .menu_area ul.menu li a:hover span.en {
  color: #b7282d;
}
.block_site_menu .inner .menu_area ul.menu li .none {
  opacity: 0.2;
}
.block_site_menu .inner .menu_area .sub_area {
  width: 65%;
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area .sub_area {
    width: 100%;
  }
}
.block_site_menu .inner .menu_area .sub_area .t_btn {
  margin-bottom: 3vh;
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area .sub_area .t_btn {
    margin-bottom: 20px;
  }
}
.block_site_menu .inner .menu_area .sub_area .t_btn a {
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  background: #eef2e4;
  color: #2e2f27;
  line-height: 1;
  font-size: clamp(18.6666666667px, 2.0833333333vw, 30px);
  padding: 15px 20px;
  border-radius: 5px;
  transition: all 0.4s 0s ease;
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area .sub_area .t_btn a {
    font-size: 5vw;
  }
}
.block_site_menu .inner .menu_area .sub_area .t_btn a:hover {
  background: #b7282d;
}
.block_site_menu .inner .menu_area .sub_area .t_btn a small {
  font-size: clamp(9.9555555556px, 1.1111111111vw, 16px);
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  vertical-align: baseline;
  padding-top: 10px;
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area .sub_area .t_btn a small {
    font-size: 3.5vw;
  }
}
.block_site_menu .inner .menu_area .sub_area .t_btn .none {
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  background: rgba(255, 255, 255, 0.2);
  color: #2e2f27;
  line-height: 1;
  font-size: clamp(18.6666666667px, 2.0833333333vw, 30px);
  padding: 15px 20px;
  border-radius: 5px;
  transition: all 0.4s 0s ease;
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area .sub_area .t_btn .none {
    font-size: 5vw;
  }
}
.block_site_menu .inner .menu_area .sub_area .t_btn .none small {
  font-size: clamp(9.9555555556px, 1.1111111111vw, 16px);
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  vertical-align: baseline;
  padding-top: 10px;
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area .sub_area .t_btn .none small {
    font-size: 3.5vw;
  }
}
.block_site_menu .inner .menu_area .sub_area ul.sub_menu {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  margin-bottom: 4vh;
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area .sub_area ul.sub_menu {
    flex-direction: column; /* row row-reverse column */
    align-items: flex-start; /* flex-start  center  */
  }
}
.block_site_menu .inner .menu_area .sub_area ul.sub_menu li {
  margin-right: 20px;
}
.block_site_menu .inner .menu_area .sub_area ul.sub_menu li a {
  display: block;
  font-feature-settings: "palt" on;
  font-weight: 500;
  font-size: clamp(8.7111111111px, 0.9722222222vw, 14px);
  line-height: 2;
  letter-spacing: 0.05em;
  color: #eef2e4;
  text-decoration: underline;
  text-underline-offset: 0.5em;
  text-decoration-thickness: 1px;
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area .sub_area ul.sub_menu li a {
    font-size: 2.6vw;
  }
}
.block_site_menu .inner .menu_area .sub_area ul.sns {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_site_menu .inner .menu_area .sub_area ul.sns li {
  margin-right: 20px;
}
.block_site_menu .inner .menu_area .sub_area ul.sns li a {
  border-radius: 100%;
  width: 60px;
  height: 60px;
  background: #eef2e4;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area .sub_area ul.sns li a {
    width: 40px;
    height: 40px;
  }
}
.block_site_menu .inner .menu_area .sub_area ul.sns li a:hover {
  background: #b7282d;
}
.block_site_menu .inner .menu_area .sub_area ul.sns li a svg {
  fill: #2e2f27;
  width: 20px;
  height: 20px;
}
@media (max-width: 896px) {
  .block_site_menu .inner .menu_area .sub_area ul.sns li a svg {
    width: 15px;
    height: 15px;
  }
}

/*----------------------------------------------------
  .block_ticket_fix
--------------------------------------------------- */
.block_ticket_fix {
  position: fixed;
  z-index: 110;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.block_ticket_fix .inner a {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: #2e2f27;
  color: #eef2e4;
  width: 170px;
  height: 60px;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media (max-width: 896px) {
  .block_ticket_fix .inner a {
    width: 50vw;
    height: 17vw;
    font-size: 4vw;
  }
}
.block_ticket_fix .inner a small {
  display: block;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-top: 7px;
}
@media (max-width: 896px) {
  .block_ticket_fix .inner a small {
    padding-top: 10px;
    letter-spacing: 0.05em;
    font-size: 3.5vw;
  }
}
.block_ticket_fix .inner a {
  transition: all 0.4s 0s ease;
}
.block_ticket_fix .inner a:hover {
  background: #b7282d;
}
.block_ticket_fix .inner .none {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: rgba(0, 0, 0, 0.4);
  color: #e1e1e1;
  width: 170px;
  height: 60px;
  line-height: 1;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media (max-width: 896px) {
  .block_ticket_fix .inner .none {
    width: 50vw;
    height: 17vw;
    font-size: 4vw;
  }
}
.block_ticket_fix .inner .none small {
  display: block;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 500;
  padding-top: 7px;
}
@media (max-width: 896px) {
  .block_ticket_fix .inner .none small {
    padding-top: 10px;
    letter-spacing: 0.05em;
    font-size: 3.5vw;
  }
}

/*----------------------------------------------------
  .block_bg
--------------------------------------------------- */
.block_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: 0;
}
.block_bg .title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 70vh;
  transform: translate(-50%, -50%);
  transition: all 1.5s 0s ease;
}
@media (max-width: 896px) {
  .block_bg .title {
    width: 50vw;
    height: 80vw;
  }
}
.block_bg .title .img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_bg .title .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.page_scroll .block_bg .title {
  opacity: 0.1;
}

.block_info .place {
  pointer-events: none;
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 5vw;
  height: 100svh;
  z-index: 110;
  opacity: 0;
  transform: translate(0%, -20px);
}
@media (max-width: 896px) {
  .block_info .place {
    bottom: 2px;
    left: 2px;
    width: 8vw;
  }
}
body.pageLoad .block_info .place {
  opacity: 1;
  transform: translate(0%, 0px);
  transition: all 0.8s 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.block_info .place .img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_info .place .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
}
.block_info .date {
  pointer-events: none;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 5vw;
  height: 100svh;
  z-index: 110;
  opacity: 0;
  transform: translate(0%, 20px);
}
@media (max-width: 896px) {
  .block_info .date {
    top: 2px;
    right: 2px;
    width: 8vw;
  }
}
body.pageLoad .block_info .date {
  opacity: 1;
  transform: translate(0%, 0px);
  transition: all 0.8s 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.block_info .date .img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_info .date .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top right;
}

/*----------------------------------------------------
  .block_ogi
--------------------------------------------------- */
.block_ogi {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
}
@media (max-width: 896px) {
  .block_ogi {
    transition: all 1.5s 0s ease;
  }
  body.page_scroll .block_ogi {
    opacity: 0.2;
  }
}
.block_ogi figure {
  position: absolute;
}
.block_ogi figure .img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_ogi figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.block_ogi figure.pos01 {
  top: -20%;
  left: -20%;
  width: 30%;
  height: 15%;
}
@media (max-width: 896px) {
  .block_ogi figure.pos01 {
    width: 60%;
    height: 30%;
  }
}
body.pageLoad .block_ogi figure.pos01 {
  top: -5%;
  left: -5%;
  transition: all 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.block_ogi figure.pos01 .img_wrap img {
  transform-origin: left top;
  animation: swing 4s ease-in-out infinite alternate;
  object-position: top left;
}
.block_ogi figure.pos02 {
  top: -20%;
  right: -20%;
  width: 40%;
  height: 80%;
}
@media (max-width: 896px) {
  .block_ogi figure.pos02 {
    top: -20%;
    right: -40%;
    width: 30%;
    height: 50%;
  }
}
body.pageLoad .block_ogi figure.pos02 {
  top: -5%;
  right: -5%;
  transition: all 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (max-width: 896px) {
  body.pageLoad .block_ogi figure.pos02 {
    right: -10%;
  }
}

.block_ogi figure.pos02 .img_wrap img {
  transform-origin: right top;
  animation: swing 4s ease-in-out -1s infinite alternate;
  object-position: top right;
}
@media (max-width: 896px) {
  .block_ogi figure.pos02 .img_wrap img {
    animation: swing_sp 4s ease-in-out -1s infinite alternate;
  }
}
.block_ogi figure.pos03 {
  bottom: -20%;
  left: -20%;
  width: 50%;
  height: 80%;
}
@media (max-width: 896px) {
  .block_ogi figure.pos03 {
    bottom: -40%;
    left: -40%;
    width: 30%;
    height: 50%;
  }
}
body.pageLoad .block_ogi figure.pos03 {
  bottom: -5%;
  left: -5%;
  transition: all 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (max-width: 896px) {
  body.pageLoad .block_ogi figure.pos03 {
    left: -10%;
  }
}

.block_ogi figure.pos03 .img_wrap img {
  transform-origin: left bottom;
  animation: swing 4s ease-in-out -2s infinite alternate;
  object-position: bottom left;
}
@media (max-width: 896px) {
  .block_ogi figure.pos03 .img_wrap img {
    animation: swing_sp 4s ease-in-out -2s infinite alternate;
  }
}
.block_ogi figure.pos04 {
  bottom: -20%;
  right: -20%;
  width: 40%;
  height: 20%;
}
@media (max-width: 896px) {
  .block_ogi figure.pos04 {
    width: 60%;
    height: 30%;
  }
}
body.pageLoad .block_ogi figure.pos04 {
  bottom: -5%;
  right: -5%;
  transition: all 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.block_ogi figure.pos04 .img_wrap img {
  transform-origin: right bottom;
  animation: swing 4s ease-in-out -2s infinite alternate;
  object-position: bottom right;
}

@keyframes swing {
  from {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(5deg);
  }
}
@keyframes swing_sp {
  from {
    transform: rotate(-3deg);
  }
  to {
    transform: rotate(3deg);
  }
}
/*----------------------------------------------------
  .wrapper
--------------------------------------------------- */
.wrapper {
  overflow: hidden;
  position: relative;
  z-index: 3;
}
body.page .wrapper {
  padding-top: 100px;
}

/*----------------------------------------------------
  .block_top
--------------------------------------------------- */
.block_top {
  position: relative;
  margin-bottom: 80px;
}

@media only screen and (max-width: 896px) {
  .block_top {
    height: 100svh;
  }
}
/*----------------------------------------------------
  .block_top_artist
--------------------------------------------------- */
.block_top_artist {
  position: relative;
  padding: 10% 0 10%;
}
.block_top_artist .inner {
  padding: 0% 15%;
  position: relative;
  z-index: 1;
}
.block_top_artist .inner .title {
  text-align: center;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 34px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_top_artist .inner .title {
    font-size: 6vw;
  }
}
.block_top_artist .inner ul {
  display: flex;
  flex-direction: row-reverse; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
.block_top_artist .inner ul li {
  font-size: 1.5vw;
  font-weight: 500;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-feature-settings: "vpal";
  letter-spacing: 0.1em;
  line-height: 2;
}
@media (max-width: 896px) {
  .block_top_artist .inner ul li {
    font-size: 4vw;
  }
}
.block_top_artist .inner .more {
  text-align: center;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 44px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 40px;
}
@media (max-width: 896px) {
  .block_top_artist .inner .more {
    font-size: 5vw;
  }
}
.block_top_artist .inner .more span {
  display: inline-block;
  position: relative;
}
.block_top_artist .inner .more span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100vw;
  width: 100vw;
  height: 1px;
  background: #2e2f27;
}
.block_top_artist .inner .more span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -100vw;
  width: 100vw;
  height: 1px;
  background: #2e2f27;
}

/*----------------------------------------------------
  .block_about
--------------------------------------------------- */
.block_about {
  position: relative;
  padding: 10% 0 20%;
}
.block_about .inner {
  padding: 0% 15%;
  position: relative;
  z-index: 1;
}
.block_about .inner .c_wrap {
  display: flex;
  flex-direction: row-reverse; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_about .inner .c_wrap {
    align-items: center; /* flex-start  center  */
    flex-direction: column; /* row row-reverse column */
  }
}
.block_about .inner .c_wrap .main_copy {
  font-size: 2vw;
  font-weight: 500;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-feature-settings: "vpal";
  letter-spacing: 0.2em;
  line-height: 2;
  margin-left: 10vw;
}
@media (max-width: 896px) {
  .block_about .inner .c_wrap .main_copy {
    font-size: 5vw;
    margin-left: 0vw;
  }
}
.block_about .inner .c_wrap .sub_copy {
  padding-top: 20vw;
  font-size: 1.5vw;
  font-weight: 500;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-feature-settings: "vpal";
  letter-spacing: 0.2em;
  line-height: 2;
}
@media (max-width: 896px) {
  .block_about .inner .c_wrap .sub_copy {
    padding-top: 20vw;
    font-size: 4vw;
    margin-left: 0vw;
  }
}

/*----------------------------------------------------
  .block_concept
--------------------------------------------------- */
.block_concept {
  position: relative;
  overflow: clip;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100svh;
}
@media (max-width: 896px) {
  .block_concept {
    height: 100vw;
  }
}
.block_concept figure {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.block_concept figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*----------------------------------------------------
  .block_slide
--------------------------------------------------- */
.block_slide .scroll_container {
  width: 100%;
  height: 100svh;
  background: #2e2f27;
  color: #eef2e4;
  position: relative;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_slide .scroll_container {
    height: auto;
  }
}
.block_slide .scroll_container .scroll_wrap {
  display: flex;
  column-gap: 0px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 896px) {
  .block_slide .scroll_container .scroll_wrap {
    position: relative;
    display: block;
  }
}
.block_slide .scroll_container .scroll_wrap .title_area {
  width: 100vw;
  height: 100svh;
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  line-height: 1;
}
@media (max-width: 896px) {
  .block_slide .scroll_container .scroll_wrap .title_area {
    height: auto;
    padding: 15vw 0;
  }
}
.block_slide .scroll_container .scroll_wrap .title_area .title {
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 10vh;
  text-transform: uppercase;
  margin-bottom: 5vh;
}
@media (max-width: 896px) {
  .block_slide .scroll_container .scroll_wrap .title_area .title {
    margin-bottom: 5vw;
    font-size: 8vw;
  }
}
.block_slide .scroll_container .scroll_wrap .title_area .jp {
  font-size: 6vh;
  font-weight: 500;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-feature-settings: "vpal";
  letter-spacing: 0.2em;
  line-height: 2;
}
@media (max-width: 896px) {
  .block_slide .scroll_container .scroll_wrap .title_area .jp {
    font-size: 6vw;
  }
}
.block_slide .scroll_container .scroll_wrap .coming {
  width: 100vw;
  height: 100svh;
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 10vh;
  text-transform: uppercase;
}
.block_slide .scroll_container .scroll_wrap .list {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_slide .scroll_container .scroll_wrap .list {
    flex-direction: initial; /* row row-reverse column */
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
    width: 75%;
    margin: 0 auto;
  }
}
.block_slide .scroll_container .scroll_wrap .list .column {
  width: 40vw;
  padding: 0 5vw;
}
@media (max-width: 896px) {
  .block_slide .scroll_container .scroll_wrap .list .column {
    padding: 0vw;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 10vw;
  }
  .block_slide .scroll_container .scroll_wrap .list .column:nth-child(2n) {
    margin-right: 0%;
  }
}
.block_slide .scroll_container .scroll_wrap .list .column a {
  display: block;
}
.block_slide .scroll_container .scroll_wrap .list .column a:hover figure .img_wrap {
  transform: scale3d(0.9, 0.9, 0.9);
}
.block_slide .scroll_container .scroll_wrap .list .column a figure {
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_slide .scroll_container .scroll_wrap .list .column a figure {
    margin-bottom: 10px;
  }
}
.block_slide .scroll_container .scroll_wrap .list .column a figure .img_wrap {
  position: relative;
  padding-top: 75%;
  transition: all 0.5s 0s ease;
}
.block_slide .scroll_container .scroll_wrap .list .column a figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}
.block_slide .scroll_container .scroll_wrap .list .column a figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_slide .scroll_container .scroll_wrap .list .column a .part {
  text-align: center;
  font-weight: 500;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: clamp(8.7111111111px, 0.9722222222vw, 14px);
}
@media (max-width: 896px) {
  .block_slide .scroll_container .scroll_wrap .list .column a .part {
    font-size: 2vw;
  }
}
.block_slide .scroll_container .scroll_wrap .list .column a .c_name {
  text-align: center;
  font-weight: 500;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: clamp(16.1777777778px, 1.8055555556vw, 26px);
}
@media (max-width: 896px) {
  .block_slide .scroll_container .scroll_wrap .list .column a .c_name {
    font-size: 3vw;
  }
}
.block_slide .scroll_container .scroll_wrap .list .column a .c_name small {
  display: block;
  font-size: clamp(8.7111111111px, 0.9722222222vw, 14px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media (max-width: 896px) {
  .block_slide .scroll_container .scroll_wrap .list .column a .c_name small {
    font-size: 2vw;
  }
}
.block_slide .scroll_container .scroll_wrap .more {
  width: 100vw;
  height: 100svh;
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 10vh;
}
@media (max-width: 896px) {
  .block_slide .scroll_container .scroll_wrap .more {
    height: auto;
    padding: 0 0 15vw 0;
    font-size: 5vw;
  }
}

/*----------------------------------------------------
  .block_access
--------------------------------------------------- */
.block_access {
  position: relative;
}
.block_access .img_over {
  position: relative;
  overflow: clip;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100svh;
}
@media (max-width: 896px) {
  .block_access .img_over {
    height: 100vw;
  }
}
.block_access .img_over figure {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.block_access .img_over figure .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block_access .access_pos {
  position: relative;
  margin-top: -20%;
  margin-bottom: 10%;
}
@media (max-width: 896px) {
  .block_access .access_pos {
    margin-top: -60vw;
  }
}
.block_access .inner {
  position: relative;
  background: #eef2e4;
  margin: -10% 15% 0 15%;
  padding: 5%;
}
@media (max-width: 896px) {
  .block_access .inner {
    margin: -10% 10% 0 10%;
    padding: 10% 0%;
  }
}
.block_access .inner .wrap .textarea {
  text-align: center;
}
@media (max-width: 896px) {
  .block_access .inner .wrap .textarea {
    width: 100%;
  }
}
.block_access .inner .wrap .textarea .title {
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: clamp(16.1777777778px, 1.8055555556vw, 26px);
  text-transform: uppercase;
  margin-bottom: clamp(12.4444444444px, 1.3888888889vw, 20px);
  line-height: 1;
}
@media (max-width: 896px) {
  .block_access .inner .wrap .textarea .title {
    font-size: 5vw;
  }
}
.block_access .inner .wrap .textarea .place {
  font-size: clamp(31.1111111111px, 3.4722222222vw, 50px);
  font-weight: 500;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  white-space: nowrap;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: clamp(12.4444444444px, 1.3888888889vw, 20px);
}
@media (max-width: 896px) {
  .block_access .inner .wrap .textarea .place {
    font-size: 5vw;
  }
}
.block_access .inner .wrap .textarea .address {
  font-size: clamp(9.9555555556px, 1.1111111111vw, 16px);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: clamp(12.4444444444px, 1.3888888889vw, 20px);
}
@media (max-width: 896px) {
  .block_access .inner .wrap .textarea .address {
    font-size: 12px;
  }
}
.block_access .inner .wrap .textarea .link {
  margin-bottom: 40px;
}
.block_access .inner .wrap .textarea .link a {
  display: inline-block;
  background: #2e2f27;
  color: #eef2e4;
  padding: 20px 40px 20px 80px;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.5s 0s ease;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 896px) {
  .block_access .inner .wrap .textarea .link a {
    padding: 10px 20px 10px 60px;
    font-size: 14px;
  }
}
.block_access .inner .wrap .textarea .link a svg {
  fill: #eef2e4;
  position: absolute;
  top: 50%;
  left: 30px;
  width: 30px;
  margin-top: -15px;
  height: 30px;
  transition: all 0.4s 0s ease;
}
@media (max-width: 896px) {
  .block_access .inner .wrap .textarea .link a svg {
    left: 20px;
    width: 20px;
    margin-top: -10px;
    height: 20px;
  }
}
.block_access .inner .wrap .textarea .link a:hover svg {
  fill: #2e2f27;
}
.block_access .inner .wrap .textarea .link a:hover {
  background: #b7282d;
  color: #2e2f27;
}
.block_access .inner .wrap .textarea .train .t_title {
  font-size: clamp(12.4444444444px, 1.3888888889vw, 20px);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: clamp(6.2222222222px, 0.6944444444vw, 10px);
}
@media (max-width: 896px) {
  .block_access .inner .wrap .textarea .train .t_title {
    font-size: 14px;
  }
}
.block_access .inner .wrap .textarea .train ul {
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_access .inner .wrap .textarea .train ul li {
  font-size: clamp(8.7111111111px, 0.9722222222vw, 14px);
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 896px) {
  .block_access .inner .wrap .textarea .train ul li {
    font-size: 14px;
  }
}
.block_access .inner .wrap .textarea p {
  font-size: clamp(9.9555555556px, 1.1111111111vw, 16px);
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 896px) {
  .block_access .inner .wrap .textarea p {
    font-size: 12px;
  }
}

/*----------------------------------------------------
  .block_guide
--------------------------------------------------- */
.block_guide {
  position: relative;
  padding: 10% 0 10%;
}
.block_guide .inner {
  padding: 0% 15%;
  position: relative;
  z-index: 1;
}
.block_guide .inner .title {
  text-align: center;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: clamp(24.8888888889px, 2.7777777778vw, 40px);
  text-transform: uppercase;
  margin-bottom: clamp(24.8888888889px, 2.7777777778vw, 40px);
  line-height: 1;
}
@media (max-width: 896px) {
  .block_guide .inner .title {
    font-size: 6vw;
  }
}
.block_guide .inner .list {
  max-width: 800px;
  margin: 0 auto;
}
.block_guide .inner .list dl {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  font-size: clamp(9.9555555556px, 1.1111111111vw, 16px);
  letter-spacing: 0.1em;
  border-bottom: 1px #2e2f27 solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_guide .inner .list dl {
    font-size: 14px;
    flex-direction: column; /* row row-reverse column */
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.block_guide .inner .list dl dt {
  width: 20%;
}
@media (max-width: 896px) {
  .block_guide .inner .list dl dt {
    width: 100%;
    font-weight: 600;
  }
}
.block_guide .inner .list dl dd {
  width: 80%;
}
@media (max-width: 896px) {
  .block_guide .inner .list dl dd {
    width: 100%;
  }
}
.block_guide .footer {
  padding-top: 40px;
  width: 100%;
  text-align: center;
}
.block_guide .footer ul.sns {
  margin-bottom: 40px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_guide .footer ul.sns li {
  margin: 0 10px;
}
.block_guide .footer ul.sns li a {
  border-radius: 100%;
  width: 60px;
  height: 60px;
  background: #2e2f27;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_guide .footer ul.sns li a:hover {
  background: #b7282d;
}
.block_guide .footer ul.sns li a svg {
  fill: #eef2e4;
  width: 20px;
  height: 20px;
}
.block_guide .footer .copyright {
  font-weight: 600;
  font-size: 10px;
}

/*----------------------------------------------------
  .block_news
--------------------------------------------------- */
.block_news {
  position: relative;
  background: #eef2e4;
  padding: 10% 0;
}
.block_news .inner {
  margin: 0 auto;
  padding: 0 10%;
  max-width: 1000px;
}
.block_news .inner .title {
  display: block;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  margin-bottom: 40px;
  color: #d4b572;
}
.block_news .inner .list .column {
  margin-bottom: 20px;
  border-bottom: 1px #987659 dotted;
  padding-bottom: 20px;
}
.block_news .inner .list .column a {
  display: block;
  color: #000;
  transition: all 0.5s 0s ease;
}
.block_news .inner .list .column a:hover {
  opacity: 0.5;
}
.block_news .inner .list .column .in {
  line-height: 1.5;
}
.block_news .inner .list .column .in time {
  display: block;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  margin-bottom: 10px;
  color: #d4b572;
  font-size: 14px;
}
@media (max-width: 896px) {
  .block_news .inner .list .column .in time {
    font-size: 10px;
  }
}
.block_news .inner .list .column .in .c_title {
  color: #000;
  font-size: 16px;
}
@media (max-width: 896px) {
  .block_news .inner .list .column .in .c_title {
    font-size: 12px;
  }
}
.block_news .inner time {
  display: block;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  margin-bottom: 10px;
  color: #d4b572;
  font-size: 14px;
}
@media (max-width: 896px) {
  .block_news .inner time {
    font-size: 10px;
  }
}
.block_news .inner .c_title {
  color: #000;
  font-size: 16px;
}
@media (max-width: 896px) {
  .block_news .inner .c_title {
    font-size: 16px;
  }
}
.block_news .inner .block_entry {
  font-size: 14px;
}
.block_news .inner .block_entry a {
  color: #d4b572;
  text-decoration: underline;
}
.block_news .inner .link {
  margin-top: 40px;
}
.block_news .inner .link a {
  display: inline-block;
  background: #d4b572;
  color: #eef2e4;
  padding: 20px 40px 20px 40px;
  font-family: "Barlow Condensed", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.5s 0s ease;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 896px) {
  .block_news .inner .link a {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.block_news .inner .link a svg {
  fill: #eef2e4;
  position: absolute;
  top: 50%;
  left: 30px;
  width: 30px;
  margin-top: -15px;
  height: 30px;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_news .inner .link a svg {
    left: 20px;
    width: 20px;
    margin-top: -10px;
    height: 20px;
  }
}
.block_news .inner .link a:hover svg {
  fill: #d4b572;
}
.block_news .inner .link a:hover {
  background: #eef2e4;
  color: #d4b572;
}

/*----------------------------------------------------
  .block_contact
--------------------------------------------------- */
.block_contact {
  position: relative;
  padding: 80px 0;
  height: 100svh;
  background: rgba(0, 0, 0, 0.5);
  color: #eef2e4;
}
.block_contact .inner {
  padding: 0 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-bottom: 80px;
  transform: scale3d(1, 1, 1) translate3d(-50%, -50%, 0px);
}
@media (max-width: 896px) {
  .block_contact .inner {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.block_contact .inner .copy {
  font-size: 1.4vw;
  font-weight: 500;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-feature-settings: "vpal";
  letter-spacing: 0.2em;
  line-height: 2;
}
@media (max-width: 896px) {
  .block_contact .inner .copy {
    font-size: 4vw;
  }
}

/*----------------------------------------------------
  .block_modal_artist
--------------------------------------------------- */
.block_modal_artist {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  color: #b7282d;
  visibility: hidden;
  opacity: 0;
  background: rgba(183, 45, 1, 0.8);
  transition: all 0.5s 0s ease;
}
body.artist_modal_view .block_modal_artist {
  visibility: visible;
  opacity: 1;
}

.block_modal_artist .bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/loading.svg) no-repeat center center;
  background-size: 50px auto;
}
.block_modal_artist a.close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: block;
}
@media (max-width: 896px) {
  .block_modal_artist a.close {
    top: 10px;
    right: 10px;
  }
}
.block_modal_artist a.close::before, .block_modal_artist a.close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 27px; /* 棒の高さ */
  background: #b7282d; /* バツ印の色 */
}
.block_modal_artist a.close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.block_modal_artist a.close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.block_modal_artist .area {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  margin-left: -40vw;
  background: #eef2e4;
  transition: all 0.5s 0s ease;
  transform: translate(0, -50%);
  opacity: 0;
  margin-top: 40px;
}
@media (max-width: 896px) {
  .block_modal_artist .area {
    width: 90vw;
    margin-left: -45vw;
  }
}
.block_modal_artist .area .column {
  padding: 60px;
}
@media (max-width: 896px) {
  .block_modal_artist .area .column {
    padding: 60px 20px 20px 20px;
  }
}
.block_modal_artist .area .column .inner {
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 896px) {
  .block_modal_artist .area .column .inner {
    max-height: 90vh;
  }
}
.block_modal_artist .area .column .inner .wrap {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_modal_artist .area .column .inner .wrap {
    flex-direction: column;
  }
}
.block_modal_artist .area .column .inner .wrap figure {
  width: 40%;
}
@media (max-width: 896px) {
  .block_modal_artist .area .column .inner .wrap figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
.block_modal_artist .area .column .inner .wrap .textarea {
  padding-right: 10px;
  width: 55%;
}
@media (max-width: 896px) {
  .block_modal_artist .area .column .inner .wrap .textarea {
    width: 100%;
    padding: 0;
  }
}
.block_modal_artist .area .column .inner .wrap .textarea .entry {
  padding-top: 20px;
  font-size: 14px;
  line-height: 2;
}
.block_modal_artist .area .column .inner .wrap .textarea .sub_title {
  font-weight: 500;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: clamp(8.7111111111px, 0.9722222222vw, 14px);
}
@media (max-width: 896px) {
  .block_modal_artist .area .column .inner .wrap .textarea .sub_title {
    font-size: 2vw;
  }
}
.block_modal_artist .area .column .inner .wrap .textarea .c_title {
  font-weight: 500;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: clamp(16.1777777778px, 1.8055555556vw, 26px);
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_modal_artist .area .column .inner .wrap .textarea .c_title {
    font-size: 3vw;
  }
}
.block_modal_artist .area .column .inner .wrap .textarea .c_title small {
  display: block;
  font-size: clamp(8.7111111111px, 0.9722222222vw, 14px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media (max-width: 896px) {
  .block_modal_artist .area .column .inner .wrap .textarea .c_title small {
    font-size: 2vw;
  }
}
.block_modal_artist .area .column .inner .wrap .textarea time {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  display: block;
}
.block_modal_artist .area .column .inner .wrap .textarea ul.sns {
  letter-spacing: -0.4em;
}
.block_modal_artist .area .column .inner .wrap .textarea ul.sns li {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: normal;
  margin: 0 2px;
}
.block_modal_artist .area .column .inner .wrap .textarea ul.sns li a:hover {
  background: #eef2e4;
}
.block_modal_artist .area .column .inner .wrap .textarea ul.sns li a:hover svg {
  fill: #b7282d;
}
.block_modal_artist .area .column .inner .wrap .textarea ul.sns li a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: #b7282d;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  transition: all 0.5s 0s ease;
}
.block_modal_artist .area .column .inner .wrap .textarea ul.sns li a svg {
  fill: #eef2e4;
  width: 15px;
  height: auto;
}
.block_modal_artist .area .column .inner .wrap .textarea ul.sns li.sp a svg {
  width: 30px;
}
.block_modal_artist .area .column .inner .wrap .textarea p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 14px;
}
.block_modal_artist .area .column .inner .wrap .textarea p a {
  text-decoration: underline;
}
.block_modal_artist .area .column .inner .wrap .textarea .youtube {
  position: relative;
  margin-top: 40px;
  padding-top: 56.25%;
}
.block_modal_artist .area .column .inner .wrap .textarea .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.artist_open .block_modal_artist .area {
  opacity: 1;
  margin-top: 0px;
  transition: all 0.5s 0.2s ease;
}

/*----------------------------------------------------
  .block_entry
--------------------------------------------------- */
.block_entry {
  position: relative;
  padding: 100px 0;
}
.block_entry .inner {
  position: relative;
  margin: 0 200px 0 165px;
}
.block_entry .inner .title {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0em;
  font-size: 64px;
  line-height: 1;
  color: #2e2f27;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.block_entry .inner .category_block {
  position: relative;
  margin-left: 200px;
}
.block_entry .inner .category_block figure {
  margin-bottom: 20px;
}
.block_entry .inner .category_block .sub_title {
  font-size: 12px;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 600;
  letter-spacing: 0em;
  line-height: 1.5;
  margin-bottom: 10px;
}
.block_entry .inner .category_block .c_title {
  font-size: 18px;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 600;
  letter-spacing: 0em;
  line-height: 1.5;
  margin-bottom: 10px;
}
.block_entry .inner .category_block ul.sns {
  letter-spacing: -0.4em;
}
.block_entry .inner .category_block ul.sns li {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: normal;
  margin: 0 2px;
}
.block_entry .inner .category_block ul.sns li.sp a svg {
  width: 30px;
}
.block_entry .inner .category_block ul.sns li a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: #2e2f27;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  transition: all 0.5s 0s ease;
}
.block_entry .inner .category_block ul.sns li a:hover {
  background: #FFF;
}
.block_entry .inner .category_block ul.sns li a:hover svg {
  fill: #2e2f27;
}
.block_entry .inner .category_block ul.sns li a svg {
  fill: #FFF;
  width: 15px;
  height: auto;
}
.block_entry .inner .category_block time {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.block_entry .inner .category_block .entry {
  padding-top: 40px;
  font-size: 14px;
}
.block_entry .inner .category_block .entry .youtube {
  margin-top: 40px;
  position: relative;
  padding-top: 56.25%;
}
.block_entry .inner .category_block .entry .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=common.css.map */