@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: 7;
  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;
}

/*
font-family: $en_font;
font-family: 'IBM Plex Sans JP', sans-serif;
 "source-han-sans-japanese"

Source Han Serif JP Light
font-family: "source-han-serif-jp-subset", sans-serif;
font-weight: 300;
font-style: normal;
Source Han Serif JP Regular
font-family: "source-han-serif-jp-subset", sans-serif;
font-weight: 400;
font-style: normal;
Source Han Serif JP Bold
font-family: "source-han-serif-jp-subset", sans-serif;
font-weight: 700;
font-style: normal;

*/
figure {
  margin: 0;
}

html {
  scroll-padding-top: 160px;
}

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: #666;
  background: #FFF;
  -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;
}

::-moz-selection {
  background: #333333;
  color: #fff;
}

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

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

body.menu_open {
  overflow: hidden;
}

@media (max-width: 896px) {
  .cookie-notice-container #cn-notice-buttons,
  .cookie-notice-container #cn-notice-text {
    display: block;
    text-align: left;
  }
}
/*----------------------------------------------------
 link
--------------------------------------------------- */
a:link, a:visited, a:active {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: none;
}

@keyframes btn_arrow_hb {
  0% {
    transform: translate(0%, 0px);
  }
  50% {
    transform: translate(200%, 0px);
  }
  50.1% {
    transform: translate(-200%, 0px);
  }
  100% {
    transform: translate(0%, 0px);
  }
}
/*----------------------------------------------------
  .scrollview
--------------------------------------------------- */
.scrollview, .fade_up {
  opacity: 0;
  transition: all 0.6s 0s ease;
  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_header
--------------------------------------------------- */
.block_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_header {
    mix-blend-mode: normal;
  }
}
.block_header {
  color: #666;
  line-height: 1;
}
.block_header .title {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translate(-50%, 0%);
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 100;
  font-size: 16px;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_header .title {
    font-size: 3vw;
    top: 30px;
    left: 30px;
    transform: translate(0%, 0%);
  }
}
.block_header .date {
  position: absolute;
  top: 40px;
  left: 40px;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 100;
  font-size: 16px;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_header .date {
    font-size: 3vw;
    top: 30px;
    right: 30px;
    left: auto;
  }
}
.block_header .act {
  position: absolute;
  top: 40px;
  left: 40px;
  overflow: hidden;
  width: 60vw;
  max-width: 800px;
  transition: all 0.5s 0s ease;
}
.block_header .act svg {
  fill: #FFF;
}
body.page_scroll .block_header .act {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 896px) {
  .block_header .act {
    top: 5vw;
    left: 5vw;
    width: 90vw;
  }
}
.block_header .sns_area {
  position: absolute;
  top: 40px;
  right: 40px;
  overflow: hidden;
}
.block_header 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  */
}
@media (max-width: 896px) {
  .block_header ul.sns {
    display: none;
  }
}
.block_header ul.sns .header-title3 {
  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_header ul.sns li {
  margin-left: 14px;
}
.block_header ul.sns li.tw a svg {
  width: 25px;
  height: 25px;
}
.block_header ul.sns li a {
  display: block;
}
.block_header ul.sns li a svg {
  width: 20px;
  height: 20px;
  fill: #666;
}

/*----------------------------------------------------
  .block_pagetop
--------------------------------------------------- */
.block_pagetop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 50;
  transition: all 0.5s 0s ease;
  mix-blend-mode: difference;
  will-change: opacity, visibility, color;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
}
body.page_scroll .block_pagetop {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 896px) {
  body.page_scroll .block_pagetop {
    mix-blend-mode: normal;
  }
}

@media (max-width: 896px) {
  .block_pagetop {
    bottom: 25px;
    right: 20px;
  }
}
.block_pagetop a {
  display: block;
  color: #666;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 100;
  font-size: 16px;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_pagetop a {
    mix-blend-mode: normal;
    font-size: 12px;
  }
}

/*----------------------------------------------------
  .sp_menu
--------------------------------------------------- */
.block_navi a {
  position: fixed;
  display: none;
  z-index: 60;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  border: 3px #000 solid;
  background: #fdd000;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.2);
}
.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.l1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-top: -6px;
  margin-left: -15px;
  background: #000;
  transform-origin: center center;
}
.block_navi a span.l2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-top: 0px;
  margin-left: -15px;
  background: #000;
  transform-origin: center center;
}
.block_navi a span.l3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-top: 6px;
  margin-left: -15px;
  background: #000;
  transform-origin: center center;
}

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: 40;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(3px);
  display: none;
}

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

.block_sp_menu {
  display: block;
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  opacity: 0;
  background: #fdd000;
  visibility: hidden;
  transition: all 0.4s 0s ease;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body.menu_open .block_sp_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0px);
}

.block_sp_menu .inner {
  padding: 10px 5vw 50px 5vw;
}
.block_sp_menu .inner .logo {
  width: 160px;
  margin-bottom: 20px;
}
.block_sp_menu .inner ul.menu > li {
  display: block;
  position: relative;
  border-bottom: 1px #000 solid;
}
.block_sp_menu .inner ul.menu > li > a {
  display: block;
  padding: 24px 0 24px 0;
  transition: all 0.4s 0s ease;
  color: #000;
  line-height: 1;
  letter-spacing: 0.05em;
  background: url(../img/common/arrow_next2.svg) no-repeat 95% center;
  background-size: 15px;
}
.block_sp_menu .inner ul.menu > li > a span {
  display: block;
}
.block_sp_menu .inner ul.menu > li > a span.t {
  font-size: 16px;
  font-family: "M PLUS Rounded 1c", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu {
  padding-left: 20px;
  padding-bottom: 10px;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li {
  padding: 5px 0;
  border-top: 1px #000 dotted;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li:last-child {
  border-bottom: none;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a {
  display: block;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.2s 0s ease;
  padding: 5px 0px;
  background: url(../img/common/arrow_next2.svg) no-repeat 95% center;
  background-size: 15px;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a .date {
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 15px;
  margin-right: 10px;
  font-weight: 700;
  display: inline-block;
  color: #009a53;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a .place {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li .none {
  display: block;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.2s 0s ease;
  padding: 5px 0px;
  opacity: 0.5;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li .none .date {
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 15px;
  margin-right: 10px;
  font-weight: 700;
  display: inline-block;
  color: #000;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li .none .place {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
}
.block_sp_menu .inner ul.sns {
  margin-top: 20px;
  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  */
}
.block_sp_menu .inner ul.sns li {
  margin-right: 4px;
}
.block_sp_menu .inner ul.sns li:last-child {
  margin-right: 0px;
}
.block_sp_menu .inner ul.sns li.is a {
  background: #CF2E92;
}
.block_sp_menu .inner ul.sns li.is a svg {
  fill: #FFF;
}
.block_sp_menu .inner ul.sns li.fb a {
  background: #1877f2;
}
.block_sp_menu .inner ul.sns li.fb a svg {
  fill: #FFF;
}
.block_sp_menu .inner ul.sns li.tw a {
  background: #000;
}
.block_sp_menu .inner ul.sns li.tw a svg {
  fill: #FFF;
  width: 20px;
}
.block_sp_menu .inner ul.sns li a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* center  center  space-between */
  align-items: center; /* flex-start  center  */
  width: 35px;
  height: 35px;
  border-radius: 35px;
  background: #009a53;
  transition: all 0.2s 0s ease;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2);
}
.block_sp_menu .inner ul.sns li a svg {
  width: 15px;
  height: auto;
  fill: #000;
}
.block_sp_menu .inner ul.sns li a:hover {
  background: #fdd000;
}

/*----------------------------------------------------
  .wrapper
--------------------------------------------------- */
.wrapper {
  position: relative;
}
/*----------------------------------------------------
  .block_loading
--------------------------------------------------- */
.block_loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: #FFF;
}
body.loadStart .block_loading .title span {
  opacity: 1;
  transition: opacity 0.4s 0s ease;
}

body.pageLoad .block_loading .title {
  opacity: 0;
  transition: all 0.4s 0.8s cubic-bezier(0.66, 0, 0.34, 1);
  margin-top: 10px;
}

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

.block_loading .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(1, 1) translate(-50%, -50%);
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0;
  font-weight: 100;
  font-size: 2vw;
  width: 20vw;
}
@media (max-width: 896px) {
  .block_loading .title {
    width: 50vw;
    font-size: 5vw;
  }
}
.block_loading .title span {
  display: block;
  opacity: 0;
}

.panel {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}
@media (max-width: 896px) {
  .panel {
    position: sticky !important;
    top: 0;
  }
}

.panel__inner {
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/*----------------------------------------------------
  .block_mainvisual
--------------------------------------------------- */
.block_mainvisual {
  position: relative;
  height: 100dvh;
  color: #FFF;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_mainvisual {
    height: 150vw;
  }
}
.block_mainvisual figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 896px) {
  .block_mainvisual figure {
    position: static;
  }
}
.block_mainvisual figure .img_wrap img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 70%;
     object-position: center 70%;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_mainvisual figure .img_wrap img {
    height: 100%;
    -o-object-position: center 50%;
       object-position: center 50%;
  }
}
.block_mainvisual .title_area {
  position: absolute;
  top: 40%;
  left: 60%;
  width: 50%;
  transform: scale(1, 1) translate(0%, -50%);
}
.block_mainvisual .title_area .ani {
  width: 27vw;
  width: clamp(220px, min(27vw, 38vh), 520px);
  width: 320px;
  margin-bottom: min(2vw, 2vh);
  margin-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_mainvisual .title_area .ani {
    width: 30vw;
  }
}
.block_mainvisual .title_area .title {
  overflow: hidden;
  width: 25vw;
  width: clamp(220px, min(25vw, 40vh), 520px);
  width: 320px;
}
@media (max-width: 896px) {
  .block_mainvisual .title_area .title {
    width: 30vw;
  }
}
.block_mainvisual .title_area .with {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 205px;
  margin-left: 155px;
  margin-top: -25px;
}
@media (max-width: 896px) {
  .block_mainvisual .title_area .with {
    width: 20vw;
    margin-left: 13vw;
    margin-top: -2.2vw;
  }
}
.block_mainvisual .info {
  position: absolute;
  bottom: 5%;
  right: 5%;
  line-height: 1.2;
  text-align: right;
}
@media (max-width: 896px) {
  .block_mainvisual .info {
    bottom: auto;
    top: 140vw;
    left: auto;
    right: 8%;
    text-align: right;
  }
}
.block_mainvisual .info .date {
  font-size: 3.5vw;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  font-family: "Jost", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0;
  font-weight: 300;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_mainvisual .info .date {
    font-size: 5vw;
  }
}
.block_mainvisual .info .date small {
  font-size: 3vw;
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
}
@media (max-width: 896px) {
  .block_mainvisual .info .date small {
    font-size: 4vw;
  }
}
.block_mainvisual .info .place {
  font-size: 3.5vw;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  font-family: "Jost", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0;
  font-weight: 300;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_mainvisual .info .place {
    font-size: 5vw;
  }
}
.block_mainvisual .info .place small {
  font-size: 3vw;
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
}
@media (max-width: 896px) {
  .block_mainvisual .info .place small {
    font-size: 4vw;
  }
}

/*----------------------------------------------------
  .block_outline
--------------------------------------------------- */
.block_outline {
  position: relative;
  background: #FFF;
  padding: 10% 0 30vh;
  text-align: center;
  height: auto;
}
@media (max-width: 896px) {
  .block_outline {
    position: relative !important;
    padding: 30vw 0 20vw;
  }
}
.block_outline .panel__inner {
  width: 100%;
}
.block_outline .date {
  font-size: 8.5vw;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0;
  font-weight: 200;
  line-height: 1.2;
}
@media (max-width: 896px) {
  .block_outline .date {
    font-size: 14vw;
  }
}
.block_outline .date small {
  font-size: 4vw;
  display: block;
  margin-top: 3vw;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media (max-width: 896px) {
  .block_outline .date small {
    margin-top: 6vw;
    font-size: 6vw;
  }
}
.block_outline .date .in {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  overflow: hidden;
}
.block_outline time {
  font-size: 3.3vw;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0;
  font-weight: 200;
  overflow: hidden;
  line-height: 1;
  display: block;
  margin-top: 2vw;
}
@media (max-width: 896px) {
  .block_outline time {
    font-size: 5vw;
    margin-top: 3vw;
  }
}
.block_outline .sub_title {
  margin-top: 2vw;
  font-size: 2.5vw;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 200;
  overflow: hidden;
}
.block_outline .type {
  margin-top: 4vw;
  font-size: 4.5vw;
  letter-spacing: 0.02em;
  font-weight: 200;
  line-height: 1;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_outline .type {
    margin-top: 8vw;
    font-size: 5vw;
  }
}
.block_outline .day {
  font-size: 2.5vw;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 200;
  line-height: 1;
  overflow: hidden;
  margin-top: 2vw;
}
@media (max-width: 896px) {
  .block_outline .day {
    margin-top: 4vw;
    font-size: 4vw;
  }
}
.block_outline .btn {
  margin-top: 4vw;
}
@media (max-width: 896px) {
  .block_outline .btn {
    margin-top: 8vw;
  }
}
.block_outline .btn a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  width: 90%;
  margin: 0 auto;
  background: #666;
  color: #FFF;
  height: 15vw;
  font-size: 5.5vw;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 200;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_outline .btn a {
    height: 20vw;
    font-size: 8.5vw;
  }
}
.block_outline .btn a:hover {
  background: #FFF;
  color: #666;
}
.block_outline .en_type {
  margin-top: 8vw;
  font-size: 2.5vw;
  letter-spacing: 0.02em;
  font-weight: 200;
  line-height: 1;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_outline .en_type {
    margin-top: 8vw;
    font-size: 4vw;
  }
}
.block_outline .en_day {
  font-size: 1.5vw;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 200;
  line-height: 1;
  overflow: hidden;
  margin-top: 2vw;
}
@media (max-width: 896px) {
  .block_outline .en_day {
    margin-top: 4vw;
    font-size: 3vw;
  }
}
.block_outline .en_btn {
  margin-top: 4vw;
}
@media (max-width: 896px) {
  .block_outline .en_btn {
    margin-top: 6vw;
  }
}
.block_outline .en_btn a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  width: 60%;
  margin: 0 auto;
  background: #666;
  color: #FFF;
  height: 8vw;
  font-size: 3.5vw;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 200;
  transition: all 0.5s 0s ease;
}
.block_outline .en_btn a small {
  margin-left: 10px;
  font-size: 1.5vw;
}
@media (max-width: 896px) {
  .block_outline .en_btn a small {
    font-size: 3.5vw;
  }
}
@media (max-width: 896px) {
  .block_outline .en_btn a {
    width: 90%;
    height: 15vw;
    font-size: 6.5vw;
  }
}
.block_outline .en_btn a:hover {
  background: #FFF;
  color: #666;
}

/*----------------------------------------------------
  .block_with
--------------------------------------------------- */
ul.with_photo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
ul.with_photo li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s 0s ease;
}
ul.with_photo li.is-active {
  opacity: 1;
  visibility: visible;
}
ul.with_photo li .img_wrap img {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  max-width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.block_with {
  position: relative;
  background: #e5f6ff;
  padding: 50vh 0 0vh;
  text-align: center;
  height: auto;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_with {
    padding: 20vw 0 0vw;
  }
}
.block_with.is-active {
  background: none;
}
.block_with.is-active .more {
  opacity: 0.2;
}
.block_with .panel__inner {
  width: 100%;
}
.block_with .title {
  font-size: 6.5vw;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 200;
  overflow: hidden;
  line-height: 1.2;
}
@media (max-width: 896px) {
  .block_with .title {
    font-size: 8vw;
  }
}
.block_with .list {
  margin-top: 5vw;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 896px) {
  .block_with .list {
    width: 95%;
    margin: 0 auto;
    margin-top: 10vw;
  }
}
.block_with .list:hover .column a {
  opacity: 0.2;
}
@media (max-width: 896px) {
  .block_with .list:hover .column a {
    opacity: 1;
  }
}
.block_with .list .column {
  width: 48%;
  margin-right: 4%;
  text-align: right;
  margin-bottom: 2%;
}
@media (max-width: 896px) {
  .block_with .list .column {
    text-align: left;
  }
}
.block_with .list .column:nth-child(2n) {
  margin-right: 0;
  text-align: left;
}
.block_with .list .column {
  overflow: hidden;
  font-size: 3.5vw;
  line-height: 1.5;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 100;
}
@media (max-width: 896px) {
  .block_with .list .column {
    font-size: 6.5vw;
  }
}
.block_with .list .column i {
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 896px) {
  .block_with .list .column figure .img_wrap {
    position: relative;
    padding-top: 100%;
  }
  .block_with .list .column figure .img_wrap.pos_top img {
    -o-object-position: center top;
       object-position: center top;
  }
  .block_with .list .column figure .img_wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
.block_with .list .column a {
  transition: all 0.5s 0s ease;
  display: inline-block;
}
@media (max-width: 896px) {
  .block_with .list .column a {
    cursor: default;
    pointer-events: none;
  }
}
.block_with .list .column a:hover {
  opacity: 1;
}
.block_with .more {
  transition: all 0.5s 0s ease;
  margin-top: 3vw;
  font-size: 3.5vw;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 200;
}
@media (max-width: 896px) {
  .block_with .more {
    margin-top: 10vw;
    font-size: 6vw;
  }
}

/*----------------------------------------------------
  .block_about
--------------------------------------------------- */
.block_about {
  position: relative;
  background: #FFF;
  padding: 10% 0;
  height: auto;
  margin-top: 10vw;
}
@media (max-width: 896px) {
  .block_about {
    padding: 20vw 0 30vw;
    margin-top: 20vw;
  }
}
.block_about .inner {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
.block_about .inner .textarea {
  font-size: 1.5vw;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 5%;
  color: 333;
}
@media (max-width: 896px) {
  .block_about .inner .textarea {
    font-weight: 400;
    font-size: 3.5vw;
    margin-bottom: 15%;
  }
}
.block_about .inner .textarea.pos01 {
  width: 50%;
  margin-left: 10%;
}
@media (max-width: 896px) {
  .block_about .inner .textarea.pos01 {
    margin-left: 20%;
    width: 80%;
  }
}
.block_about .inner .textarea.pos02 {
  width: 50%;
  margin-left: 10%;
}
@media (max-width: 896px) {
  .block_about .inner .textarea.pos02 {
    margin-left: 20%;
    width: 80%;
  }
}
.block_about .inner .textarea.pos03 {
  width: 75%;
  margin-left: 25%;
}
@media (max-width: 896px) {
  .block_about .inner .textarea.pos03 {
    margin-left: 0%;
    width: 100%;
  }
}
.block_about .inner .textarea.pos04 {
  text-align: center;
  margin-bottom: 5%;
}
.block_about .inner .textarea.pos05 {
  text-align: center;
  margin-bottom: 5%;
}
.block_about .inner .textarea.pos06 {
  text-align: center;
}
.block_about .inner .textarea.pos07 {
  width: 75%;
  margin-left: 25%;
}
.block_about .inner .textarea.pos08 {
  margin-bottom: 15%;
}
.block_about .inner .textarea.pos09 {
  text-align: center;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.block_about .inner .textarea.pos09 p {
  font-size: 1.5vw;
  margin-bottom: 3%;
}
.block_about .inner .textarea.pos09 p span {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media (max-width: 896px) {
  .block_about .inner .textarea.pos09 p {
    font-weight: 400;
    font-size: 3vw;
  }
}
.block_about .inner .logo {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 10%;
}
@media (max-width: 896px) {
  .block_about .inner .logo {
    width: 80%;
  }
}
.block_about .inner .sub_title {
  text-align: center;
  font-size: 3.5vw;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 200;
  margin-bottom: 3%;
}
@media (max-width: 896px) {
  .block_about .inner .sub_title {
    font-size: 6.5vw;
  }
}
.block_about .inner .info_t {
  text-align: center;
  font-size: 2.2vw;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 200;
  line-height: 1.5;
  margin-bottom: 3%;
}
@media (max-width: 896px) {
  .block_about .inner .info_t {
    line-height: 2;
    font-size: 3.5vw;
  }
}
.block_about .inner .info_t small {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.block_about .inner .info_t a {
  text-decoration: underline;
}
.block_about .inner .attention {
  background: #eee;
  padding: 40px;
  margin-top: 5vw;
  font-size: 1.2vw;
}
@media (max-width: 896px) {
  .block_about .inner .attention {
    margin-top: 10vw;
    padding: 20px;
    font-size: 3vw;
  }
}
.block_about .inner .attention p {
  margin-bottom: 10px;
}
.block_about .inner .attention p:last-child {
  margin-bottom: 0;
}
.block_about .inner .copyright {
  margin-top: 5vw;
  text-align: center;
  font-size: 12px;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 200;
  line-height: 1.5;
}

/*----------------------------------------------------
  .block_footer_bottom
--------------------------------------------------- */
.block_footer_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  line-height: 1;
}
body.page_scroll .block_footer_bottom .inner .text {
  color: #666;
}
body.page_scroll .block_footer_bottom .inner .btn a {
  height: 60px;
  background: #666;
  color: #FFF;
}
body.page_scroll .block_footer_bottom .inner .btn a:hover {
  background: #FFF;
  color: #666;
}

.block_footer_bottom .inner {
  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_footer_bottom .inner .text {
  font-size: 18px;
  padding-left: 40px;
  color: #FFF;
}
@media (max-width: 896px) {
  .block_footer_bottom .inner .text {
    color: #666;
    font-size: 4vw;
    padding-left: 5vw;
  }
}
.block_footer_bottom .inner .btn {
  width: 300px;
}
@media (max-width: 896px) {
  .block_footer_bottom .inner .btn {
    width: 30vw;
  }
}
.block_footer_bottom .inner .btn a {
  height: 100px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: #FFF;
  color: #666;
  font-size: 24px;
  font-family: "Antonio", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 200;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_footer_bottom .inner .btn a {
    height: 80px;
    font-size: 4vw;
    background: #666;
    color: #FFF;
  }
}
.block_footer_bottom .inner .btn a:hover {
  background: #666;
  color: #FFF;
}/*# sourceMappingURL=common.css.map */