@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)) {
  -webkit-clip-path: inset(50%) !important;
          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-bottom: 0;
}

/*
font-family: 'Montserrat', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Poppins', 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: #000;
  background: #f0f0f0;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
}

body.lang-jp .lang_jp {
  display: block;
}
body.lang-jp .lang_en {
  display: none;
}
body.lang-en .lang_jp {
  display: none;
}
body.lang-en .lang_en {
  display: block;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media only screen and (max-width: 896px) {
  html, body {
    cursor: auto;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  body.page {
    padding-top: 0vw;
  }
}
img {
  width: 100%;
  height: auto;
}

/* ::selection {
  background: #333333;
  color: #fff;
}

::-moz-selection {
  background: #ccc;
  color: #fff;
} */
/*----------------------------------------------------
  .grade_bg
--------------------------------------------------- */
.grade_bg {
  background: linear-gradient(90deg, #009fc0 0%, #e7380d 100%);
  background-size: 500% 500%;
  animation-name: gradation_bg;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}

@keyframes gradation_bg {
  0% {
    background-position: 250% 250%;
  }
  100% {
    background-position: 0% 0%;
  }
}
/*----------------------------------------------------
 swiper
--------------------------------------------------- */
.swiper-wrapper {
  transition-timing-function: ease;
}

/*----------------------------------------------------
 link
--------------------------------------------------- */
a:link, a:visited, a:active {
  color: #333;
  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%, 10px);
}

.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 {
  opacity: 0;
}
.lazyload_set span.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}

/*----------------------------------------------------
  .block_bg
--------------------------------------------------- */
.block_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
body.page .block_bg {
  display: none;
}

.block_bg .bg {
  position: fixed;
  top: 0;
  left: 0%;
  width: 100%;
  height: 141vw;
  height: 100vw;
  background: url(../img/common/bg.jpg) no-repeat center 20%;
  background-size: cover;
}
@media (max-width: 896px) {
  .block_bg .bg {
    left: 0;
    width: 100%;
    height: 220vw;
  }
}
.block_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0);
  transition: all 1.5s 0s ease;
}
body.page_scroll .block_bg::after {
  background: rgba(255, 255, 255, 0.8);
}

body.page .block_bg::after {
  background: rgba(255, 255, 255, 0.8);
}

/*----------------------------------------------------
  .wrapper
--------------------------------------------------- */
.wrapper {
  overflow: hidden;
  position: relative;
  transition: all 0.8s 0s ease;
  z-index: 3;
}

body.page .wrapper {
  padding-top: 60px;
}

@media only screen and (max-width: 896px) {
  body.page .wrapper {
    padding-top: 30px;
  }
}
/*----------------------------------------------------
 block_header
--------------------------------------------------- */
.block_loading {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
}
body.pageLoad .block_loading {
  opacity: 0;
  visibility: hidden;
  transition: all 0s 1.3s ease;
}

.block_loading .bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #009fc0;
}
body.pageLoad .block_loading .bg {
  opacity: 0;
  transition: all 0.8s 0.5s linear;
}

.block_loading .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/logo.png) no-repeat center center;
  background-size: 150px;
}
body.pageLoad .block_loading .icon {
  opacity: 0;
  transition: all 0.8s 0.5s ease;
}

/*----------------------------------------------------
 block_header
--------------------------------------------------- */
.block_header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #FFF;
  background: #e7380d;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_header {
    height: 40px;
  }
}
.block_header .eatori {
  position: absolute;
  top: 2px;
  left: 20px;
  width: 180px;
}
@media (max-width: 896px) {
  .block_header .eatori {
    top: 4px;
    left: 10px;
    width: 100px;
  }
}
.block_header .logo {
  position: absolute;
  top: 13px;
  left: 207px;
  width: 180px;
}
@media (max-width: 896px) {
  .block_header .logo {
    top: 7px;
    left: 118px;
    width: 140px;
  }
}
.block_header .logo svg {
  fill: #009fc0;
  fill: #FFF;
}
.block_header ul.menu {
  position: absolute;
  top: 0px;
  left: 430px;
  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_header ul.menu {
    display: none;
  }
}
.block_header ul.menu li a {
  display: block;
  height: 60px;
  line-height: 60px;
  padding: 0 1.3vw;
  color: #009fc0;
  font-size: 1.1vw;
  font-size: 16px;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  color: #FFF;
}
.block_header ul.menu li a:hover {
  background: #FFF;
  color: #e7380d;
}

/*----------------------------------------------------
 block_scroll
--------------------------------------------------- */
.block_scroll {
  text-align: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 600;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  transition: all 0.5s 0s ease;
  perspective: 500px;
  color: #000;
  z-index: 10;
}
@media (max-width: 896px) {
  .block_scroll {
    bottom: 20px;
    right: 20px;
    z-index: 20;
  }
}
.block_scroll a {
  display: block;
  background: #009fc0;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  animation: rotate-anime-3d 3s cubic-bezier(0.875, 0.005, 0.09, 0.99) infinite;
}
.block_scroll a svg {
  fill: #FFF;
  width: 30px;
  height: 30px;
}
@media (max-width: 896px) {
  .block_scroll a svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 896px) {
  .block_scroll a {
    width: 40px;
    height: 40px;
  }
}
.block_scroll span {
  transition: all 0.8s 0s cubic-bezier(0.875, 0.005, 0.09, 0.99);
}
body.page_scroll .block_scroll span {
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-180deg);
}

@keyframes rotate-anime-3d {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*----------------------------------------------------
  .sp_menu
--------------------------------------------------- */
.block_navi a {
  position: fixed;
  display: block;
  z-index: 100;
  top: 0%;
  right: 0px;
  width: 120px;
  height: 120px;
  background: #009fc0;
  box-shadow: 0px 10px 30px 0px rgba(51, 51, 51, 0.1);
  border-bottom-left-radius: 10px;
}
@media (max-width: 896px) {
  .block_navi a {
    width: 70px;
    height: 50px;
  }
}
.block_navi a:hover {
  background: #FFF;
}
.block_navi a .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  overflow: hidden;
  transition: all 0.4s 0s ease;
}
.block_navi a span {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #FFF;
  transform-origin: center center;
}
.block_navi a span.l1 {
  width: 30px;
  height: 2px;
  margin-top: -6px;
  margin-left: -15px;
}
.block_navi a span.l2 {
  width: 30px;
  height: 2px;
  margin-top: 0px;
  margin-left: -15px;
}
.block_navi a span.l3 {
  width: 30px;
  height: 2px;
  margin-top: 6px;
  margin-left: -15px;
}
.block_navi a:hover span.l1, .block_navi a:hover span.l2, .block_navi a:hover span.l3 {
  background: #009fc0;
}

body.menu_open .block_navi a span.l1 {
  margin-top: 0px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(45deg);
}
body.menu_open .block_navi a span.l2 {
  margin-top: 0px;
  transform: scale3d(0, 1, 1) translate(0px, 0px) rotate(0deg);
}
body.menu_open .block_navi a span.l3 {
  margin-top: 0px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-45deg);
}

/*----------------------------------------------------
  .block_sp_menu
--------------------------------------------------- */
.menu_bg {
  display: block;
  position: fixed;
  top: 0%;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 63, 135, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s 0s ease;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

body.menu_open .menu_bg {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0%);
}

.block_sp_menu {
  display: block;
  position: fixed;
  top: 0%;
  right: 0px;
  width: 260px;
  height: 100%;
  z-index: 90;
  background: #009fc0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s 0s ease;
  transform: translate(110%, 0px);
}

body.menu_open .block_sp_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0px);
}

.block_sp_menu .inner {
  padding: 35px 0 35px 35px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0%, -50%);
}
.block_sp_menu .inner ul.menu > li {
  position: relative;
  margin-bottom: 20px;
}
.block_sp_menu .inner ul.menu > li > a {
  display: block;
  line-height: 1;
  font-size: 24px;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  color: #FFF;
}
.block_sp_menu .inner ul.menu > li > a:hover {
  background: #FFF;
  color: #009fc0;
}
.block_sp_menu .inner .omatsuri {
  padding-top: 20px;
  margin-right: 35px;
}
.block_sp_menu .inner .omatsuri a svg {
  fill: #FFF;
}
.block_sp_menu .inner ul.sns {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  padding-top: 20px;
}
.block_sp_menu .inner ul.sns li {
  height: 100%;
  display: flex;
}
.block_sp_menu .inner ul.sns li a {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
  transition: all 0.5s 0s ease;
}
.block_sp_menu .inner ul.sns li a:hover {
  opacity: 0.5;
}
.block_sp_menu .inner ul.sns li a svg {
  width: 20px;
  height: 20px;
  fill: #505050;
}
.block_sp_menu .inner ul.sns li:nth-child(2) a svg {
  width: 24px;
  height: 24px;
}

/*----------------------------------------------------
 block_side
--------------------------------------------------- */
.block_side {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 100;
  transform: translate(0%, -50%);
  line-height: 1;
  color: #FFF;
  transition: all 0.6s 0s ease;
}
@media (max-width: 896px) {
  .block_side {
    top: auto;
    bottom: 0;
    transform: translate(0%, 0%);
  }
  body.page .block_side {
    display: none;
  }
  body.page_scroll .block_side {
    transform: translate(-110%, 0%);
  }
}
.block_side .in {
  transform: translate(-110%, 0%);
}
body.pageLoad .block_side .in {
  transform: translate(0%, 0%);
  transition: all 0.6s 0.2s cubic-bezier(0.875, 0.005, 0.09, 0.99);
}

.block_side ul.sns {
  background: #009fc0;
  width: 50px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (max-width: 896px) {
  .block_side ul.sns {
    width: 30px;
  }
}
.block_side ul.sns li .t {
  width: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 700;
  writing-mode: vertical-rl;
}
@media (max-width: 896px) {
  .block_side ul.sns li .t {
    font-size: 10px;
  }
}
.block_side ul.sns li a {
  width: 50px;
  height: 50px;
  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_side ul.sns li a {
    width: 30px;
    height: 30px;
  }
}
.block_side ul.sns li a svg {
  width: 20px;
  height: 20px;
  fill: #FFF;
}
.block_side ul.sns li a svg.tw {
  width: 30px;
  height: 30px;
}
@media (max-width: 896px) {
  .block_side ul.sns li a svg {
    width: 15px;
    height: 15px;
  }
  .block_side ul.sns li a svg.tw {
    width: 30px;
    height: 30px;
  }
}
.block_side ul.sns li a:hover {
  background: #FFF;
}
.block_side ul.sns li a:hover svg {
  fill: #009fc0;
}

/*----------------------------------------------------
 block_mainvisual
--------------------------------------------------- */
.block_mainvisual {
  position: relative;
  height: 100vh;
  margin-top: 60px;
  margin-bottom: 15%;
}
@media (max-width: 896px) {
  .block_mainvisual {
    margin-top: 0;
  }
}
.block_mainvisual .inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0%, -50%);
  text-align: center;
  color: #009fc0;
  line-height: 1;
}
.block_mainvisual .inner .title {
  width: 45vh;
  margin: 0 auto;
  margin-bottom: 20vh;
}
@media (max-width: 896px) {
  .block_mainvisual .inner .title {
    width: 60vw;
    margin-bottom: 20vh;
  }
}
.block_mainvisual .inner .place span {
  display: inline-block;
  background: #009fc0;
  color: #FFF;
  font-size: 5vh;
  font-weight: 800;
  padding: 1vh 2vh;
}
@media (max-width: 896px) {
  .block_mainvisual .inner .place span {
    font-size: 4.5vw;
    padding: 2vw 4vw;
  }
}
.block_mainvisual .inner .day .year span {
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  display: inline-block;
  background: #009fc0;
  color: #FFF;
  font-size: 2vh;
  font-weight: 800;
  padding: 1vh 2vh;
}
@media (max-width: 896px) {
  .block_mainvisual .inner .day .year span {
    font-size: 3.5vw;
    padding: 2vw 4vw;
  }
}
.block_mainvisual .inner .day .date span {
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  display: inline-block;
  background: #009fc0;
  color: #FFF;
  font-size: 8vh;
  font-weight: 800;
  padding: 1vh 2vh;
}
@media (max-width: 896px) {
  .block_mainvisual .inner .day .date span {
    font-size: 9.5vw;
    padding: 2vw 4vw;
  }
}

/*----------------------------------------------------
 block_about
--------------------------------------------------- */
.block_about {
  position: relative;
  margin-bottom: 15%;
}
.block_about .inner {
  padding: 0 12vw;
  text-align: left;
  position: relative;
  margin-left: 5vw;
}
@media (max-width: 896px) {
  .block_about .inner {
    padding: 0 20px;
    margin-left: 14vw;
  }
}
.block_about .inner .title {
  position: absolute;
  top: 0;
  left: 5vw;
  height: 100vw;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 42px;
  line-height: 1.2;
  color: #e7380d;
  writing-mode: vertical-rl;
}
@media (max-width: 896px) {
  .block_about .inner .title {
    top: 0;
    left: -10vw;
    font-size: 34px;
  }
}
.block_about .inner .copy_en {
  color: #e7380d;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 5vw;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-bottom: 1vw;
}
@media (max-width: 896px) {
  .block_about .inner .copy_en {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}
.block_about .inner .copy {
  color: #e7380d;
  font-size: 3vw;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 3vw;
}
@media (max-width: 896px) {
  .block_about .inner .copy {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.block_about .inner .place {
  margin-bottom: 3vw;
}
.block_about .inner .place span {
  display: inline-block;
  background: #e7380d;
  color: #FFF;
  font-size: 3vw;
  font-weight: 800;
  padding: 1vw 2vw;
  line-height: 1.45;
}
.block_about .inner .place span small {
  display: block;
  font-size: 1.3vw;
}
@media (max-width: 896px) {
  .block_about .inner .place span small {
    font-size: 12px;
  }
}
@media (max-width: 896px) {
  .block_about .inner .place span {
    font-size: 20px;
    padding: 2vw 4vw;
    margin-bottom: 20px;
  }
}
.block_about .inner .exp {
  margin-bottom: 5%;
  letter-spacing: 0.05em;
}
.block_about .inner .exp p {
  font-size: 18px;
  font-weight: 800;
}
@media (max-width: 896px) {
  .block_about .inner .exp p {
    font-size: 14px;
  }
}
.block_about .inner .btn a {
  display: inline-block;
  background: #009fc0;
  color: #FFF;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  font-weight: 800;
  padding: 20px 80px;
  border-radius: 200px;
}
.block_about .inner .btn a:hover {
  background: #FFF;
  color: #009fc0;
}
.block_about .inner ul.archive {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.block_about .inner ul.archive li {
  margin: 0 10px 10px 0;
}
.block_about .inner ul.archive li a {
  display: inline-block;
  background: #009fc0;
  color: #FFF;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  font-weight: 800;
  padding: 10px 40px;
  border-radius: 200px;
}
.block_about .inner ul.archive li a:hover {
  background: #FFF;
  color: #009fc0;
}

/*----------------------------------------------------
 block_news_list
--------------------------------------------------- */
.block_news_list {
  position: relative;
  padding: 10% 0;
  background: #e7380d;
}
@media (max-width: 896px) {
  .block_news_list {
    padding: 20% 0;
  }
  body.page .block_news_list {
    padding: 10% 0;
  }
}
.block_news_list .inner {
  padding: 0 12vw;
  text-align: left;
  position: relative;
  margin-left: 5vw;
}
@media (max-width: 896px) {
  .block_news_list .inner {
    padding: 0 20px;
    margin-left: 14vw;
  }
}
.block_news_list .inner .title {
  position: absolute;
  top: 0vw;
  left: 5vw;
  height: 100vw;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 42px;
  line-height: 1.2;
  color: #FFF;
  writing-mode: vertical-rl;
}
@media (max-width: 896px) {
  .block_news_list .inner .title {
    font-size: 34px;
    left: -10vw;
    top: 8px;
  }
}
.block_news_list .inner .list {
  margin-bottom: 50px;
}
@media (max-width: 896px) {
  .block_news_list .inner .list {
    margin-bottom: 30px;
  }
}
.block_news_list .inner .list .column {
  border-bottom: 1px #FFF solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.block_news_list .inner .list .column a {
  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_news_list .inner .list .column a {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_news_list .inner .list .column a time {
  display: block;
  width: 200px;
  font-size: 18px;
  line-height: 1.7;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  color: #FFF;
}
@media (max-width: 896px) {
  .block_news_list .inner .list .column a time {
    width: 100%;
    font-size: 14px;
  }
}
.block_news_list .inner .list .column a .c_title {
  width: calc(100% - 200px);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.7;
  color: #FFF;
}
@media (max-width: 896px) {
  .block_news_list .inner .list .column a .c_title {
    width: 100%;
    font-size: 14px;
  }
}
.block_news_list .inner .list .column a:hover {
  opacity: 0.5;
}
.block_news_list .inner .btn a {
  display: inline-block;
  background: #FFF;
  color: #e7380d;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  font-weight: 800;
  padding: 20px 80px;
  border-radius: 200px;
}
@media (max-width: 896px) {
  .block_news_list .inner .btn a {
    font-size: 14px;
    padding: 10px 40px;
  }
}
.block_news_list .inner .btn a:hover {
  background: #e7380d;
  color: #FFF;
}

/*----------------------------------------------------
 block_artist_list
--------------------------------------------------- */
.block_artist_list {
  position: relative;
  padding: 10% 0;
  background: #FFF;
}
body.page .block_artist_list {
  padding: 7% 0;
}
@media (max-width: 896px) {
  body.page .block_artist_list {
    padding: 10% 0;
  }
}

.block_artist_list .inner {
  padding: 0 12vw;
  text-align: left;
  position: relative;
  margin-left: 5vw;
}
body.page .block_artist_list .inner {
  margin-left: 0;
}

@media (max-width: 896px) {
  .block_artist_list .inner {
    padding: 0 20px;
    margin-left: 0;
  }
}
.block_artist_list .inner .title {
  position: absolute;
  top: 0vw;
  left: 5vw;
  height: 100vw;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 42px;
  line-height: 1.2;
  color: #009fc0;
  writing-mode: vertical-rl;
}
@media (max-width: 896px) {
  .block_artist_list .inner .title {
    position: relative;
    left: 0;
    height: auto;
    font-size: 34px;
    writing-mode: horizontal-tb;
    margin-bottom: 40px;
  }
}
body.page .block_artist_list .inner .title {
  position: relative;
  left: 0;
  height: auto;
  font-size: 52px;
  writing-mode: horizontal-tb;
  margin-bottom: 10%;
}
@media (max-width: 896px) {
  body.page .block_artist_list .inner .title {
    font-size: 34px;
    margin-bottom: 40px;
  }
}

.block_artist_list .inner .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 20px;
}
.block_artist_list .inner .list .column {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 8%;
}
.block_artist_list .inner .list .column:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 80px;
  }
}
.block_artist_list .inner .list .column a:hover figure {
  transform: scale(0.9, 0.9);
}
.block_artist_list .inner .list .column a, .block_artist_list .inner .list .column .coming {
  display: block;
  position: relative;
  transition: all 0.5s 0s ease;
}
.block_artist_list .inner .list .column a .new, .block_artist_list .inner .list .column .coming .new {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #e7380d;
  color: #FFF;
  line-height: 1;
  z-index: 1;
  font-size: 11px;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  padding: 10px 10px;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .new, .block_artist_list .inner .list .column .coming .new {
    font-size: 10px;
    padding: 5px 10px;
    text-align: center;
    right: 0px;
    top: 0px;
  }
}
.block_artist_list .inner .list .column a .sold, .block_artist_list .inner .list .column .coming .sold {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #e7380d;
  color: #FFF;
  line-height: 1;
  z-index: 1;
  font-size: 11px;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  padding: 10px 10px;
  border-bottom-left-radius: 10px;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .sold, .block_artist_list .inner .list .column .coming .sold {
    font-size: 10px;
    padding: 5px 10px;
  }
}
.block_artist_list .inner .list .column a .date, .block_artist_list .inner .list .column .coming .date {
  position: absolute;
  top: -40px;
  left: -20px;
  width: 80px;
  height: 80px;
  display: flex;
  z-index: 2;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  background: #009fc0;
  line-height: 1;
  color: #FFF;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .date, .block_artist_list .inner .list .column .coming .date {
    top: -45px;
    left: -20px;
    width: 60px;
    height: 60px;
  }
}
.block_artist_list .inner .list .column a .date::before, .block_artist_list .inner .list .column .coming .date::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 15px;
  width: 30px;
  height: 1px;
  background: #FFF;
  transform: rotate(-45deg);
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .date::before, .block_artist_list .inner .list .column .coming .date::before {
    top: 20px;
    left: 10px;
  }
}
.block_artist_list .inner .list .column a .date .month, .block_artist_list .inner .list .column .coming .date .month {
  margin-left: 10px;
  font-size: 18px;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .date .month, .block_artist_list .inner .list .column .coming .date .month {
    margin-left: 10px;
    font-size: 14px;
  }
}
.block_artist_list .inner .list .column a .date .day, .block_artist_list .inner .list .column .coming .date .day {
  margin-left: 40px;
  font-size: 24px;
  margin-top: -5px;
  font-weight: 800;
  width: 30px;
  text-align: right;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .date .day, .block_artist_list .inner .list .column .coming .date .day {
    margin-left: 32px;
    font-size: 18px;
    margin-top: -5px;
    width: 22px;
  }
}
.block_artist_list .inner .list .column a .date .w, .block_artist_list .inner .list .column .coming .date .w {
  margin-left: 10px;
  padding-top: 5px;
  font-size: 12px;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .date .w, .block_artist_list .inner .list .column .coming .date .w {
    margin-left: 10px;
    padding-top: 8px;
    font-size: 10px;
  }
}
.block_artist_list .inner .list .column a .sub_title, .block_artist_list .inner .list .column .coming .sub_title {
  position: absolute;
  top: -40px;
  left: 60px;
  display: block;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .sub_title, .block_artist_list .inner .list .column .coming .sub_title {
    top: -45px;
    left: 40px;
  }
}
.block_artist_list .inner .list .column a .sub_title span, .block_artist_list .inner .list .column .coming .sub_title span {
  background: #009fc0;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  color: #FFF;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  padding: 0px 10px;
  height: 40px;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .sub_title span, .block_artist_list .inner .list .column .coming .sub_title span {
    font-size: 10px;
    height: 45px;
  }
}
.block_artist_list .inner .list .column a figure, .block_artist_list .inner .list .column .coming figure {
  overflow: hidden;
  transition: all 0.5s 0s ease;
}
.block_artist_list .inner .list .column a figure .img_wrap, .block_artist_list .inner .list .column .coming figure .img_wrap {
  position: relative;
  padding-top: 56.25%;
  padding-top: 50.25%;
  transition: all 0.5s 0s ease;
  background: #000;
  background: linear-gradient(0deg, #009fc0 0%, #e7380d 49%, #e7380d 56%, #009fc0 100%);
  background-size: 500% 500%;
  animation-name: gradation_bg;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
.block_artist_list .inner .list .column a figure .img_wrap span, .block_artist_list .inner .list .column .coming figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
}
.block_artist_list .inner .list .column a figure .img_wrap span.lazyloaded, .block_artist_list .inner .list .column .coming figure .img_wrap span.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_artist_list .inner .list .column a .c_title, .block_artist_list .inner .list .column .coming .c_title {
  display: block;
  margin-top: -20px;
  position: relative;
  left: -10px;
  line-height: 1.8;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .c_title, .block_artist_list .inner .list .column .coming .c_title {
    margin-top: -10px;
    line-height: 1.5;
  }
}
.block_artist_list .inner .list .column a .c_title span, .block_artist_list .inner .list .column .coming .c_title span {
  background: #009fc0;
  background: linear-gradient(transparent 0%, #009fc0 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #FFF;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  padding: 4px 10px;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .c_title span, .block_artist_list .inner .list .column .coming .c_title span {
    font-size: 16px;
    padding: 2px 5px;
  }
}
.block_artist_list .inner .list .column a .opening, .block_artist_list .inner .list .column .coming .opening {
  display: block;
  margin-top: -7px;
  position: relative;
  left: -10px;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .opening, .block_artist_list .inner .list .column .coming .opening {
    margin-top: -10px;
  }
}
.block_artist_list .inner .list .column a .opening span, .block_artist_list .inner .list .column .coming .opening span {
  background: #009fc0;
  display: inline-block;
  color: #FFF;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  padding: 5px 10px;
}
@media (max-width: 896px) {
  .block_artist_list .inner .list .column a .opening span, .block_artist_list .inner .list .column .coming .opening span {
    font-size: 10px;
  }
}
/*----------------------------------------------------
 block_ticket
--------------------------------------------------- */
.block_ticket {
  position: relative;
  background: #e7380d;
  color: #FFF;
  padding: 10% 0;
}
@media (max-width: 896px) {
  .block_ticket {
    padding: 15% 0;
  }
}
.block_ticket .inner {
  padding: 0 12vw;
  text-align: left;
  position: relative;
}
@media (max-width: 896px) {
  .block_ticket .inner {
    padding: 0 20px;
  }
}
.block_ticket .inner .title {
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 42px;
  line-height: 1.2;
  color: #FFF;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_ticket .inner .title {
    font-size: 34px;
    margin-bottom: 20px;
  }
}
.block_ticket .inner p {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.8;
}
@media (max-width: 896px) {
  .block_ticket .inner p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
}
.block_ticket .inner .btn a {
  display: inline-block;
  background: #FFF;
  color: #e7380d;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  font-weight: 800;
  padding: 20px 80px;
  border-radius: 200px;
}
@media (max-width: 896px) {
  .block_ticket .inner .btn a {
    font-size: 14px;
    padding: 10px 40px;
    line-height: 1.5;
  }
}
.block_ticket .inner .btn a:hover {
  background: #e7380d;
  color: #FFF;
}

/*----------------------------------------------------
 block_access
--------------------------------------------------- */
.block_access {
  position: relative;
  background: #FFF;
  padding: 10% 0;
}
@media (max-width: 896px) {
  .block_access {
    padding: 15% 0;
  }
}
.block_access .inner {
  padding: 0 12vw;
  text-align: left;
  position: relative;
}
@media (max-width: 896px) {
  .block_access .inner {
    padding: 0 20px;
  }
}
.block_access .inner .title {
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 42px;
  line-height: 1.2;
  color: #e7380d;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_access .inner .title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.block_access .inner .place {
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 42px;
  line-height: 1.4;
  color: #e7380d;
  margin-bottom: 2%;
}
.block_access .inner .place small {
  display: block;
  font-size: 1.3vw;
}
@media (max-width: 896px) {
  .block_access .inner .place small {
    font-size: 12px;
  }
}
@media (max-width: 896px) {
  .block_access .inner .place {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.block_access .inner .address {
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_access .inner .address {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.block_access .inner .btn {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_access .inner .btn {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_access .inner .btn li {
  margin-right: 10px;
}
@media (max-width: 896px) {
  .block_access .inner .btn li {
    margin-bottom: 10px;
  }
}
.block_access .inner .btn a {
  display: inline-block;
  background: #e7380d;
  color: #FFF;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  font-weight: 800;
  padding: 20px 80px;
  border-radius: 200px;
}
@media (max-width: 896px) {
  .block_access .inner .btn a {
    font-size: 14px;
    padding: 10px 40px;
  }
}
.block_access .inner .btn a:hover {
  background: #FFF;
  color: #e7380d;
}

/*----------------------------------------------------
 block_q_and_a
--------------------------------------------------- */
.block_q_and_a {
  position: relative;
  background: #eee;
  padding: 10% 0;
}
@media (max-width: 896px) {
  .block_q_and_a {
    padding: 15% 0;
  }
}
.block_q_and_a .inner {
  padding: 0 12vw;
  text-align: left;
  position: relative;
}
@media (max-width: 896px) {
  .block_q_and_a .inner {
    padding: 0 20px;
  }
}
.block_q_and_a .inner .title {
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 42px;
  line-height: 1.2;
  color: #e7380d;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_q_and_a .inner .title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.block_q_and_a .inner .list .column {
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_q_and_a .inner .list .column {
    margin-bottom: 20px;
  }
}
.block_q_and_a .inner .list .column .q {
  background: #ccc;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  padding: 10px 20px;
}
@media (max-width: 896px) {
  .block_q_and_a .inner .list .column .q {
    font-size: 14px;
    margin-bottom: 10px;
    padding: 5px 10px;
  }
}
.block_q_and_a .inner .list .column .q span {
  color: #e7380d;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-right: 10px;
}
@media (max-width: 896px) {
  .block_q_and_a .inner .list .column .q span {
    font-size: 24px;
  }
}
.block_q_and_a .inner .list .column .ans {
  font-size: 18px;
  padding: 10px 20px;
}
@media (max-width: 896px) {
  .block_q_and_a .inner .list .column .ans {
    font-size: 12px;
    line-height: 1.7;
    padding: 5px 10px;
  }
}
.block_q_and_a .inner .list .column .ans a {
  color: #e7380d;
  text-decoration: underline;
}

/*----------------------------------------------------
 block_footer
--------------------------------------------------- */
.block_footer {
  position: relative;
  padding: 10% 0 0 0;
  background: #FFF;
}
.block_footer a {
  color: #FFF;
  text-decoration: underline;
}
body.page .block_footer {
  padding: 5% 0 0 0;
}

.block_footer .inner {
  padding: 0 12vw;
  text-align: left;
  position: relative;
}
.block_footer .inner.bottom {
  background: #009fc0;
  color: #FFF;
  padding: 5% 12vw;
}
@media (max-width: 896px) {
  .block_footer .inner {
    padding: 0 20px;
  }
  .block_footer .inner.bottom {
    padding: 40px 20px;
  }
}
.block_footer .inner .sub_title {
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 42px;
  line-height: 1.2;
  color: #e7380d;
  margin-bottom: 2%;
  text-align: center;
}
@media (max-width: 896px) {
  .block_footer .inner .sub_title {
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
  }
}
.block_footer .inner ul.list {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_footer .inner ul.list {
    flex-direction: column; /* row row-reverse column */
  }
}
@media (max-width: 896px) {
  .block_footer .inner ul.list {
    margin-bottom: 30px;
  }
}
.block_footer .inner ul.list li {
  width: 32%;
}
@media (max-width: 896px) {
  .block_footer .inner ul.list li {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
.block_footer .inner .link_area {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  margin-bottom: 80px;
}
@media (max-width: 896px) {
  .block_footer .inner .link_area {
    padding-top: 40px;
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.block_footer .inner .link_area li {
  width: 200px;
  margin: 0 20px;
}
@media (max-width: 896px) {
  .block_footer .inner .link_area li {
    width: 220px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.block_footer .inner .link_area li a {
  display: block;
}
.block_footer .inner .link_area li a:hover {
  opacity: 0.5;
}
.block_footer .inner .link_area li a svg {
  fill: #FFF;
}
.block_footer .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  */
  margin-bottom: 2%;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_footer .inner .wrap ul.outline {
  font-size: 14px;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap ul.outline {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.block_footer .inner .wrap ul.link {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap ul.link {
    margin-bottom: 20px;
  }
}
.block_footer .inner .wrap ul.link li {
  width: 100px;
  margin-left: 20px;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap ul.link li {
    width: 60px;
  }
}
.block_footer .inner .copyright {
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
}
@media (max-width: 896px) {
  .block_footer .inner .copyright {
    font-size: 10px;
  }
}

/*----------------------------------------------------
.block_pager
--------------------------------------------------- */
.block_pager {
  text-align: center;
  margin-top: 40px;
  padding-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_pager .page-numbers {
  width: 50px;
  height: 50px;
  margin: 0 10px;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FFF;
  background: #e7380d;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  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_pager .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
.block_pager .page-numbers.current {
  background: #FFF;
  color: #e7380d;
}
.block_pager .page-numbers.dots {
  border: none;
  background: none;
  color: #FFF;
}
.block_pager .page-numbers:hover {
  background: #FFF;
  color: #e7380d;
}
.block_pager a.prev,
.block_pager .prev a {
  margin: 0 10px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border-radius: 50px;
  background: #FFF;
  transition: all 0.5s 0s ease;
  text-indent: -9999px;
  background: #e7380d url(../img/common/arrow_prev_w.svg) no-repeat center center;
  background-size: 20px;
}
@media (max-width: 896px) {
  .block_pager a.prev,
  .block_pager .prev a {
    width: 30px;
    height: 30px;
    background: #e7380d url(../img/common/arrow_prev_w.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.prev:hover,
.block_pager .prev a:hover {
  background: #FFF url(../img/common/arrow_prev.svg) no-repeat center center;
  background-size: 20px;
}
@media (max-width: 896px) {
  .block_pager a.prev:hover,
  .block_pager .prev a:hover {
    width: 30px;
    height: 30px;
    background: #e7380d url(../img/common/arrow_prev.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.next,
.block_pager .next a {
  margin: 0 10px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border-radius: 50px;
  transition: all 0.5s 0s ease;
  text-indent: -9999px;
  background: #e7380d url(../img/common/arrow_next_w.svg) no-repeat center center;
  background-size: 20px;
}
@media (max-width: 896px) {
  .block_pager a.next,
  .block_pager .next a {
    width: 30px;
    height: 30px;
    background: #e7380d url(../img/common/arrow_next_w.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.next:hover,
.block_pager .next a:hover {
  background: #FFF url(../img/common/arrow_next.svg) no-repeat center center;
  background-size: 20px;
}
@media (max-width: 896px) {
  .block_pager a.next:hover,
  .block_pager .next a:hover {
    width: 30px;
    height: 30px;
    background: #e7380d url(../img/common/arrow_next.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.list {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: #e7380d;
  border-radius: 50px;
  margin: 0 10px;
  color: #FFF;
  padding: 0 20px;
  width: auto;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-style: normal;
  transition: all 0.5s 0s ease;
  background: #e7380d;
}
.news_page .block_pager a.list {
  background: #FFF;
  color: #e7380d;
}
.news_page .block_pager a.list:hover {
  background: #e7380d;
  color: #FFF;
}

.block_pager a.list:hover {
  background: #FFF;
  color: #e7380d;
}

/*----------------------------------------------------
 block_entry
--------------------------------------------------- */
.block_entry {
  position: relative;
  margin-bottom: 15%;
  padding: 10% 0;
  background: #FFF;
}
.block_entry.news_page {
  background: #e7380d;
  color: #FFF;
}
.block_entry.news_page .inner .page_title {
  color: #FFF;
}
body.page .block_entry {
  padding: 10% 0 0;
  margin-bottom: 0%;
}

@media (max-width: 896px) {
  .block_entry {
    padding: 20% 0;
  }
  body.page .block_entry {
    padding: 30px 0 0;
    margin-bottom: 0%;
  }
}
.block_entry .inner {
  padding: 0 12vw;
  text-align: left;
  position: relative;
  margin-left: 5vw;
}
@media (max-width: 896px) {
  .block_entry .inner {
    padding: 0 20px;
    margin-left: 0px;
  }
}
.block_entry .inner .page_title {
  position: absolute;
  top: 0vw;
  left: 5vw;
  height: 100vw;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 42px;
  line-height: 1.2;
  color: #e7380d;
  writing-mode: vertical-rl;
}
@media (max-width: 896px) {
  .block_entry .inner .page_title {
    font-size: 32px;
    left: -28px;
    top: 8px;
    display: none;
  }
}
.block_entry .inner .summary {
  margin-bottom: 3vw;
}
@media (max-width: 896px) {
  .block_entry .inner .summary {
    margin-bottom: 5%;
  }
}
.block_entry .inner .summary figure.mainvisual .img_wrap {
  position: relative;
  padding-top: 56.25%;
}
.block_entry .inner .summary figure.mainvisual .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.block_entry .inner .summary figure.mainvisual.mt {
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_entry .inner .summary figure.mainvisual.mt {
    margin-bottom: 20px;
  }
}
@media (max-width: 896px) {
  .block_entry .inner .summary figure.mainvisual {
    position: relative;
    left: -20px;
    width: 100vw;
    margin-top: -20px;
  }
}
.block_entry .inner .summary .date_area {
  position: relative;
}
@media (max-width: 896px) {
  .block_entry .inner .summary .date_area {
    left: -20px;
    width: 100vw;
  }
}
.block_entry .inner .summary .date_area .date {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  z-index: 2;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  background: #009fc0;
  line-height: 1;
  color: #FFF;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_entry .inner .summary .date_area .date {
    top: 0px;
    left: 0px;
    width: 60px;
    height: 60px;
  }
}
.block_entry .inner .summary .date_area .date::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 20px;
  width: 50px;
  height: 1px;
  background: #FFF;
  transform: rotate(-45deg);
}
@media (max-width: 896px) {
  .block_entry .inner .summary .date_area .date::before {
    top: 20px;
    left: 8px;
    width: 30px;
  }
}
.block_entry .inner .summary .date_area .date .month {
  margin-left: 20px;
  font-size: 23px;
}
@media (max-width: 896px) {
  .block_entry .inner .summary .date_area .date .month {
    margin-left: 10px;
    font-size: 14px;
  }
}
.block_entry .inner .summary .date_area .date .day {
  margin-left: 55px;
  font-size: 34px;
  margin-top: 4px;
  font-weight: 800;
  width: 50px;
  text-align: right;
}
@media (max-width: 896px) {
  .block_entry .inner .summary .date_area .date .day {
    margin-left: 28px;
    font-size: 18px;
    margin-top: -5px;
    width: 22px;
  }
}
.block_entry .inner .summary .date_area .date .w {
  margin-left: 20px;
  padding-top: 5px;
  font-size: 22px;
}
@media (max-width: 896px) {
  .block_entry .inner .summary .date_area .date .w {
    margin-left: 10px;
    padding-top: 8px;
    font-size: 10px;
  }
}
.block_entry .inner .summary .date_area .sub_title {
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
}
@media (max-width: 896px) {
  .block_entry .inner .summary .date_area .sub_title {
    left: 60px;
  }
}
.block_entry .inner .summary .date_area .sub_title span {
  background: #009fc0;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  color: #FFF;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  padding: 0px 10px;
  height: 30px;
}
@media (max-width: 896px) {
  .block_entry .inner .summary .date_area .sub_title span {
    font-size: 10px;
  }
}
.block_entry .inner .summary .date_area .open_start {
  position: absolute;
  top: 90px;
  left: 120px;
  width: calc(100% - 120px);
  display: block;
}
@media (max-width: 896px) {
  .block_entry .inner .summary .date_area .open_start {
    top: 0;
    left: 0;
    width: 100%;
    position: relative;
    margin-top: -10px;
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.block_entry .inner .summary .date_area .open_start span {
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 800;
  line-height: 1.8;
  padding: 0px 20px;
  color: #009fc0;
  display: block;
}
@media (max-width: 896px) {
  .block_entry .inner .summary .date_area .open_start span {
    font-size: 14px;
    padding: 0px 0px;
  }
}
.block_entry .inner .summary .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 2%;
}
@media (max-width: 896px) {
  .block_entry .inner .summary .title {
    font-size: 18px;
    line-height: 1.8;
  }
}
.block_entry .inner .summary time {
  display: block;
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5%;
  margin-top: -1%;
}
@media (max-width: 896px) {
  .block_entry .inner .summary time {
    font-size: 14px;
  }
}
.block_entry .inner .summary .opening {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_entry .inner .summary .opening {
    font-size: 12px;
  }
}
.block_entry .inner .entry {
  padding: 0 5%;
  margin-bottom: 5%;
  font-size: 14px;
}
@media (max-width: 896px) {
  .block_entry .inner .entry {
    padding: 0 0px;
    margin-bottom: 15%;
  }
}
.block_entry .inner .block_price {
  position: relative;
  left: -17vw;
  width: 100vw;
  background: #009fc0;
  padding: 10% 0;
}
@media (max-width: 896px) {
  .block_entry .inner .block_price {
    left: -20px;
    width: 100vw;
  }
}
.block_entry .inner .block_price .in {
  padding: 0 17vw;
}
@media (max-width: 896px) {
  .block_entry .inner .block_price .in {
    padding: 0 20px;
  }
}
.block_entry .inner .block_price .in .p_title {
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF;
}
@media (max-width: 896px) {
  .block_entry .inner .block_price .in .p_title {
    font-size: 32px;
  }
}
.block_entry .inner .block_price .in .textarea {
  font-size: 16px;
  margin-bottom: 40px;
  color: #FFF;
}
@media (max-width: 896px) {
  .block_entry .inner .block_price .in .textarea {
    font-size: 14px;
  }
}
.block_entry .inner .block_price .in .reserved {
  font-size: 16px;
  margin-bottom: 40px;
  background: #e7380d;
  padding: 20px 30px;
  border-radius: 20px;
  color: #FFF;
}
@media (max-width: 896px) {
  .block_entry .inner .block_price .in .reserved {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 10px 15px;
  }
}
.block_entry .inner .block_price .in .reserved .r_title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFF;
}
@media (max-width: 896px) {
  .block_entry .inner .block_price .in .reserved .r_title {
    font-size: 20px;
  }
}
.block_entry .inner .block_price .in .reserved a {
  text-decoration: underline;
  color: #fff000;
  font-weight: 800;
}
.block_entry .inner .block_price .in .reserved a:hover {
  text-decoration: none;
}
.block_entry .inner .block_price .in .info {
  font-size: 16px;
  margin-bottom: 40px;
  color: #009fc0;
  background: #FFF;
  padding: 20px 30px;
  border-radius: 20px;
}
@media (max-width: 896px) {
  .block_entry .inner .block_price .in .info {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 10px 15px;
  }
}
.block_entry .inner .block_price .in .info .r_title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #e7380d;
}
@media (max-width: 896px) {
  .block_entry .inner .block_price .in .info .r_title {
    font-size: 20px;
  }
}
.block_entry .inner .block_price .in .info a {
  text-decoration: underline;
  color: #e7380d;
  font-weight: 800;
}
.block_entry .inner .block_price .in .info a:hover {
  text-decoration: none;
}
.block_entry .inner .block_artist_detail {
  position: relative;
  left: -17vw;
  width: 100vw;
  background: #e7380d;
  color: #FFF;
  padding: 10% 0;
}
@media (max-width: 896px) {
  .block_entry .inner .block_artist_detail {
    left: -20px;
    width: 100vw;
  }
}
.block_entry .inner .block_artist_detail .in {
  padding: 0 17vw;
}
@media (max-width: 896px) {
  .block_entry .inner .block_artist_detail .in {
    padding: 0 20px;
  }
}
.block_entry .inner .block_artist_detail .in .p_title {
  font-family: "Poppins", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_entry .inner .block_artist_detail .in .p_title {
    font-size: 32px;
  }
}
.block_entry .inner .block_artist_detail .in .list .column {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px #FFF solid;
}
.block_entry .inner .block_artist_detail .in .list .column:last-child {
  border: none;
}
.block_entry .inner .block_artist_detail .in .list .column .name {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_entry .inner .block_artist_detail .in .list .column .name {
    font-size: 18px;
  }
}
.block_entry .inner .block_artist_detail .in .list .column .c_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_entry .inner .block_artist_detail .in .list .column .c_wrap {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_entry .inner .block_artist_detail .in .list .column .summary {
  width: 48%;
}
@media (max-width: 896px) {
  .block_entry .inner .block_artist_detail .in .list .column .summary {
    width: 100%;
    margin-bottom: 20px;
  }
}
.block_entry .inner .block_artist_detail .in .list .column .summary figure {
  margin: 0;
  margin-bottom: 20px;
}
.block_entry .inner .block_artist_detail .in .list .column .summary 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  */
  margin-bottom: 10px;
}
.block_entry .inner .block_artist_detail .in .list .column .summary ul.sns li {
  margin-right: 20px;
}
.block_entry .inner .block_artist_detail .in .list .column .summary ul.sns li.text {
  font-size: 12px;
  line-height: 1;
}
.block_entry .inner .block_artist_detail .in .list .column .summary ul.sns li a {
  fill: #FFF;
  display: block;
  line-height: 1;
  border: 1px #FFF solid;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  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_entry .inner .block_artist_detail .in .list .column .summary ul.sns li a {
    width: 40px;
    height: 40px;
  }
}
.block_entry .inner .block_artist_detail .in .list .column .summary ul.sns li a:hover {
  fill: #e7380d;
  background: #FFF;
  border: 1px #FFF solid;
}
.block_entry .inner .block_artist_detail .in .list .column .summary ul.sns li a svg {
  width: 24px;
  height: 24px;
}
.block_entry .inner .block_artist_detail .in .list .column .summary ul.sns li.tw a svg {
  width: 24px;
  height: 24px;
}
.block_entry .inner .block_artist_detail .in .list .column .textarea {
  width: 48%;
  font-size: 14px;
}
.block_entry .inner .block_artist_detail .in .list .column .textarea a {
  color: #FFF;
  text-decoration: underline;
}
@media (max-width: 896px) {
  .block_entry .inner .block_artist_detail .in .list .column .textarea {
    width: 100%;
    font-size: 12px;
  }
}
.block_entry .inner .block_artist_detail .in .list .column .textarea .youtube {
  padding-top: 20px;
}
.block_entry .inner .block_artist_detail .in .list .column .textarea .youtube .emb {
  position: relative;
  padding-top: 56.25%;
}
.block_entry .inner .block_artist_detail .in .list .column .textarea .youtube .emb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=common.css.map */