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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

figure {
  margin-bottom: 0;
}

/*
font-family: $en_font;
font-family: "Outfit", sans-serif;
*/
.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}

html, body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0em;
  font-style: normal;
  color: #000;
  background: #FFF;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
}

body.entry_page {
  background: #FFF7F2;
}

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;
} */
/*----------------------------------------------------
 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;
}

.grade_bg {
  background: linear-gradient(90deg, #ffd900 0%, #ffef3f 7%, #c7dc68 14%, #68be8d 21%, #239dda 28%, #5a79ba 35%, #9079ad 42%, #e7609e 49%, #e95464 56%, #ed6d3d 70%, #f49d43 77%, #ffd900 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%;
  }
}
/*----------------------------------------------------
  .wrapper
--------------------------------------------------- */
.wrapper {
  position: relative;
  transition: all 0.8s 0s ease;
  z-index: 3;
}
@media (max-width: 896px) {
  .wrapper {
    overflow: hidden;
  }
}

/*----------------------------------------------------
 color_line
--------------------------------------------------- */
@keyframes move_y {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes move_y2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50%);
  }
}
.color_line_left {
  position: fixed;
  left: 0;
  top: 0;
  width: 4px;
  height: 400vh;
  z-index: 100;
  animation: move_y 18s linear infinite;
}

.color_line_right {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 400vh;
  z-index: 100;
  animation: move_y2 18s linear infinite;
}

/*----------------------------------------------------
 block_loading
--------------------------------------------------- */
.block_loading {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  transform-origin: left center;
}
.block_loading .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fefefe url(../img/common/logo_y.svg) no-repeat center center;
  background-size: 160px;
  transform-origin: left center;
}
body.pageLoad .block_loading {
  opacity: 0;
  visibility: hidden;
  transition: all 1s 0.5s linear;
}

/*----------------------------------------------------
 block_header
--------------------------------------------------- */
.block_header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s 0s ease;
  opacity: 0;
  visibility: hidden;
}
body.page_scroll .block_header,
body.page .block_header {
  visibility: visible;
  opacity: 1;
}

.block_header .logo {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 200px;
  margin-left: -100px;
}
@media (max-width: 896px) {
  .block_header .logo {
    width: 100px;
    margin-left: -50px;
  }
}

/*----------------------------------------------------
 block_menu
--------------------------------------------------- */
.block_menu {
  z-index: 10;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  background: #FFF;
  box-shadow: 0px 10px 10px 0px rgba(51, 51, 51, 0.1);
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  padding-left: 20px;
  border: 1px #eee solid;
}
@media (max-width: 896px) {
  .block_menu {
    bottom: 0px;
    left: 60px;
    width: calc(100% - 60px);
    height: 50px;
  }
}
.block_menu ul.menu {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  line-height: 1;
  width: 500px;
}
@media (max-width: 896px) {
  .block_menu ul.menu {
    display: none;
  }
}
.block_menu ul.menu li {
  position: relative;
}
.block_menu ul.menu li a {
  display: block;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.block_menu ul.menu li a:hover {
  background: #333;
  color: #FFF;
}
.block_menu ul.menu li.on_pop:hover .popup {
  visibility: visible;
}
.block_menu ul.menu li .popup {
  position: absolute;
  left: 0;
  bottom: 40px;
  visibility: hidden;
}
.block_menu ul.menu li .popup::before {
  position: absolute;
  bottom: 0px;
  left: 20px;
  content: "";
  background: #FFF;
  height: 17.3205080757px;
  width: 20px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-180deg);
}
.block_menu ul.menu li .popup ul {
  margin-bottom: 15px;
  background: #FFF;
  border-radius: 20px;
  padding: 20px 10px;
  width: 350px;
  box-shadow: 0px 10px 10px 0px rgba(51, 51, 51, 0.1);
}
.block_menu ul.menu li .popup ul li a {
  display: block;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  padding: 10px 20px;
  line-height: 1;
}
.block_menu ul.menu li .popup ul li a:hover {
  opacity: 0.5;
  background: #FFF;
  color: #000;
}
.block_menu ul.menu li .popup ul li a .t {
  display: inline-block;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
}
.block_menu ul.menu li .popup ul li a .arrow {
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
}
.block_menu ul.menu li .popup ul li a .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}
.block_menu ul.menu li .popup ul li .none {
  display: block;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  padding: 10px 20px;
  line-height: 1;
  opacity: 0.3;
}
.block_menu ul.menu li .popup ul li .none .t {
  display: inline-block;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
}
.block_menu ul.menu li .popup ul li .none .arrow {
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
}
.block_menu ul.menu li .popup ul li .none .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}
.block_menu .news_area {
  width: calc(100% - 500px);
  border-left: 1px #eee solid;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  height: 50px;
}
@media (max-width: 896px) {
  .block_menu .news_area {
    width: 100%;
    border: none;
  }
}
.block_menu .news_area .t {
  width: 100px;
  text-align: center;
  font-size: 11px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media (max-width: 896px) {
  .block_menu .news_area .t {
    font-size: 10px;
    width: 60px;
  }
}
.block_menu .news_area .column {
  width: calc(100% - 100px);
}
@media (max-width: 896px) {
  .block_menu .news_area .column {
    width: calc(100% - 60px);
  }
}
.block_menu .news_area .column a {
  width: 100%;
  display: block;
  line-height: 1;
  overflow: hidden;
}
.block_menu .news_area .column a .in {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  padding-left: 100%;
  white-space: nowrap;
  animation: denkoukeijiban 18s linear infinite;
}
@keyframes denkoukeijiban {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
.block_menu .news_area .column a time {
  font-size: 14px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-right: 10px;
  opacity: 0.5;
}
@media (max-width: 896px) {
  .block_menu .news_area .column a time {
    font-size: 12px;
  }
}
.block_menu .news_area .column a .category {
  margin-right: 10px;
  margin-top: -2px;
}
.block_menu .news_area .column a .category span {
  display: inline-block;
  border-radius: 30px;
  border: 1px #333 solid;
  color: #333;
  font-size: 12px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding: 4px 10px;
}
@media (max-width: 896px) {
  .block_menu .news_area .column a .category span {
    font-size: 10px;
  }
}
.block_menu .news_area .column a .c_title {
  font-size: 14px;
}
@media (max-width: 896px) {
  .block_menu .news_area .column a .c_title {
    font-size: 12px;
  }
}

/*----------------------------------------------------
 block_scroll
--------------------------------------------------- */
.block_scroll {
  text-align: center;
  position: fixed;
  bottom: 80px;
  left: 20px;
  transition: all 0.5s 0s ease;
  perspective: 500px;
  color: #000;
  z-index: 10;
}
@media (max-width: 896px) {
  .block_scroll {
    bottom: 5px;
    left: 10px;
  }
}
.block_scroll a {
  display: block;
  background: #FFF;
  width: 60px;
  height: 60px;
  border-radius: 120px;
  border: 1px #eee solid;
  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 i {
  display: none;
}
.block_scroll a svg {
  fill: #000;
  width: 20px;
  height: 20px;
}
@media (max-width: 896px) {
  .block_scroll a svg {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 896px) {
  .block_scroll a {
    width: 40px;
    height: 40px;
    border-radius: 120px;
  }
}
.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;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  top: 0%;
  left: 0px;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  border: 1px #eee solid;
  background: #FFF;
  box-shadow: 0px 10px 30px 0px rgba(51, 51, 51, 0.1);
  transition: all 0.4s 0s ease;
  display: none;
}
@media (max-width: 896px) {
  .block_navi a {
    display: block;
    visibility: visible;
    opacity: 1;
  }
}
.block_navi a i {
  display: none;
}
.block_navi a .t {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.05em;
}
.block_navi a .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -20px;
  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: 80;
  opacity: 0;
  background: rgba(255, 255, 255, 0.8);
  visibility: hidden;
  transition: all 0.5s 0s ease;
  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%;
  left: 0px;
  width: 100%;
  width: calc(100% - 240px);
  height: 100%;
  z-index: 90;
  opacity: 0;
  transition: all 0.5s 0s ease;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 896px) {
  .block_sp_menu {
    width: 100%;
  }
}

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

.block_sp_menu .inner {
  padding: 80px 20px;
  text-align: left;
  z-index: 2;
}
.block_sp_menu .inner .logo {
  width: 200px;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}
.block_sp_menu .inner ul.menu li a {
  display: block;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.block_sp_menu .inner ul.event {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 40px;
}
.block_sp_menu .inner ul.event li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 4%;
}
.block_sp_menu .inner ul.event li:nth-child(2n) {
  margin-right: 0;
}
.block_sp_menu .inner ul.event li a {
  display: block;
}
.block_sp_menu .inner ul.event li .none {
  opacity: 0.5;
  display: block;
}
.block_sp_menu .inner ul.event li figure {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.block_sp_menu .inner ul.event li figure .img_wrap {
  position: relative;
  padding-top: 75%;
}
.block_sp_menu .inner ul.event li figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.block_sp_menu .inner ul.event li .e_title {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_sp_menu .inner ul.event li .e_title .t {
  font-size: 12px;
  line-height: 1.5;
}
.block_sp_menu .inner ul.event li .e_title .arrow {
  margin-left: 10px;
}
.block_sp_menu .inner ul.event li .e_title .arrow svg {
  width: 15px;
  height: 15px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}
.block_sp_menu .inner .sns_area {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  padding-top: 40px;
}
@media (max-width: 896px) {
  .block_sp_menu .inner .sns_area {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_sp_menu .inner .sns_area .s {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-right: 20px;
}
@media (max-width: 896px) {
  .block_sp_menu .inner .sns_area .s {
    font-size: 12px;
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
.block_sp_menu .inner .sns_area ul {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_sp_menu .inner .sns_area ul li {
  margin-right: 10px;
}
.block_sp_menu .inner .sns_area ul li a {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: #ccc;
}
@media (max-width: 896px) {
  .block_sp_menu .inner .sns_area ul li a {
    width: 40px;
    height: 40px;
    border-radius: 40px;
  }
}
.block_sp_menu .inner .sns_area ul li a svg {
  width: 25px;
  height: 25px;
  fill: #FFF;
}
@media (max-width: 896px) {
  .block_sp_menu .inner .sns_area ul li a svg {
    width: 15px;
    height: 15px;
  }
}
.block_sp_menu .inner .sns_area ul li a.is {
  background: #E05266;
}
.block_sp_menu .inner .sns_area ul li a.tw {
  background: #000;
}
.block_sp_menu .inner .sns_area ul li a.fb {
  background: #3B5796;
}
.block_sp_menu .inner .sns_area ul li a.li {
  background: #45C921;
}
.block_sp_menu .inner .sns_area ul li a.yt {
  background: #FF0000;
}
.block_sp_menu .inner .sns_area ul li a.is:hover, .block_sp_menu .inner .sns_area ul li a.tw:hover, .block_sp_menu .inner .sns_area ul li a.fb:hover, .block_sp_menu .inner .sns_area ul li a.li:hover, .block_sp_menu .inner .sns_area ul li a.yt:hover {
  background: #000;
}

/*----------------------------------------------------
 block_top_bg
--------------------------------------------------- */
.block_top_bg {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #FFF;
}
.block_top_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 3;
  opacity: 0;
  transition: all 1.4s 0s ease;
}
body.page_scroll .block_top_bg:before {
  opacity: 1;
}

.block_top_bg .pallet_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 400vw;
  height: 50vh;
  overflow: hidden;
  display: flex;
}
@media (max-width: 896px) {
  .block_top_bg .pallet_wrap {
    width: 800vw;
  }
}
.block_top_bg .pallet_wrap.pos02 {
  top: 50vh;
  left: auto;
  right: -100vw;
}
@media (max-width: 896px) {
  .block_top_bg .pallet_wrap.pos02 {
    right: -200vw;
  }
}
.block_top_bg .pallet_wrap.pos02 ul.pallet {
  position: absolute;
  left: auto;
  right: 0;
  animation: palletLoop2 30s linear infinite;
}
@media (max-width: 896px) {
  .block_top_bg .pallet_wrap.pos02 ul.pallet {
    animation: palletLoop2_sp 30s linear infinite;
  }
}
.block_top_bg .pallet_wrap.pos02 ul.pallet:nth-child(2) {
  left: auto;
  right: 200vw;
}
@media (max-width: 896px) {
  .block_top_bg .pallet_wrap.pos02 ul.pallet:nth-child(2) {
    right: 400vw;
  }
}
.block_top_bg {
  /* 左に流れる */
}
@keyframes palletLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200vw);
    @media (max-width: 896px) {
      .block_top_bg {
        transform: translateX(-400vw);
      }
    }
  }
}
@keyframes palletLoop_sp {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-400vw);
  }
}
@keyframes palletLoop2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(200vw);
    @media (max-width: 896px) {
      .block_top_bg {
        transform: translateX(400vw);
      }
    }
  }
}
@keyframes palletLoop2_sp {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(400vw);
  }
}
.block_top_bg ul.pallet {
  display: flex;
  animation: palletLoop 30s linear infinite;
  width: 200vw;
  height: 100%;
}
@media (max-width: 896px) {
  .block_top_bg ul.pallet {
    animation: palletLoop_sp 30s linear infinite;
    width: 400vw;
  }
}
.block_top_bg ul.pallet:nth-child(2) {
  left: 200vw;
}
@media (max-width: 896px) {
  .block_top_bg ul.pallet:nth-child(2) {
    left: 400vw;
  }
}
.block_top_bg ul.pallet li {
  position: absolute;
  top: 0;
  left: 0;
  width: 20vw;
  height: 50vh;
}
@media (max-width: 896px) {
  .block_top_bg ul.pallet li {
    width: 40vw;
  }
}
.block_top_bg ul.pallet li figure {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
}
.block_top_bg ul.pallet li figure .img_wrap {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
}
.block_top_bg ul.pallet li figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.block_top_bg ul.pallet li span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_top_bg ul.pallet li:nth-child(1) {
  top: 0;
  left: 0;
}
.block_top_bg ul.pallet li:nth-child(2) {
  top: 0;
  left: 10%;
  height: 25vh;
}
.block_top_bg ul.pallet li:nth-child(3) {
  top: 25vh;
  left: 10%;
  height: 25vh;
}
.block_top_bg ul.pallet li:nth-child(4) {
  top: 0;
  left: 20%;
}
.block_top_bg ul.pallet li:nth-child(5) {
  top: 0;
  left: 30%;
  height: 25vh;
}
.block_top_bg ul.pallet li:nth-child(6) {
  top: 25vh;
  height: 25vh;
  left: 30%;
}
.block_top_bg ul.pallet li:nth-child(7) {
  top: 0;
  left: 40%;
  width: 40vw;
}
@media (max-width: 896px) {
  .block_top_bg ul.pallet li:nth-child(7) {
    width: 80vw;
  }
}
.block_top_bg ul.pallet li:nth-child(8) {
  top: 0;
  left: 60%;
}
.block_top_bg ul.pallet li:nth-child(9) {
  top: 0;
  left: 70%;
  height: 25vh;
}
.block_top_bg ul.pallet li:nth-child(10) {
  top: 25vh;
  left: 70%;
  height: 25vh;
}
.block_top_bg ul.pallet li:nth-child(11) {
  top: 0;
  left: 80%;
}
.block_top_bg ul.pallet li:nth-child(12) {
  top: 0;
  left: 90%;
}
.block_top_bg ul.pallet li:nth-child(13) {
  top: 0;
  left: 80%;
}
.block_top_bg ul.pallet li.color01 span {
  background: #e5243b;
}
.block_top_bg ul.pallet li.color02 span {
  background: #dda63a;
}
.block_top_bg ul.pallet li.color03 span {
  background: #4c9f38;
}
.block_top_bg ul.pallet li.color04 span {
  background: #c5192d;
}
.block_top_bg ul.pallet li.color05 span {
  background: #ff3a21;
}
.block_top_bg ul.pallet li.color06 span {
  background: #26bde2;
}
.block_top_bg ul.pallet li.color07 span {
  background: #fcc30b;
}
.block_top_bg ul.pallet li.color08 span {
  background: #a21942;
}
.block_top_bg ul.pallet li.color09 span {
  background: #dd1367;
}
.block_top_bg ul.pallet li.color10 span {
  background: #fd6925;
}
.block_top_bg ul.pallet li.color11 span {
  background: #fd9d24;
}
.block_top_bg ul.pallet li.color12 span {
  background: #bf8b2e;
}
.block_top_bg ul.pallet li.color13 span {
  background: #3f7e44;
}
.block_top_bg ul.pallet li.color14 span {
  background: #00689d;
}
.block_top_bg .swiper-slide-active .img_wrap span,
.block_top_bg .swiper-slide-duplicate-active .img_wrap span,
.block_top_bg .swiper-slide-prev .img_wrap span {
  animation: zoomUp 7s linear 0s normal both;
}
.block_top_bg .swiper-wrapper {
  transition-timing-function: linear;
}

/*----------------------------------------------------
 block_mainvisual
--------------------------------------------------- */
.block_mainvisual {
  position: relative;
  height: 100vh;
}
.block_mainvisual .textarea {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(1, 1) translate(-50%, -50%);
  padding-bottom: 10vw;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: rgb(255, 255, 255);
  padding: 40px;
  opacity: 0;
  margin-top: 20px;
}
body.pageLoad .block_mainvisual .textarea {
  opacity: 1;
  margin-top: 0px;
  transition: all 0.6s 0s ease;
}

@media (max-width: 896px) {
  .block_mainvisual .textarea {
    flex-direction: column; /* row row-reverse column */
    align-items: flex-start; /* flex-start  center  */
    padding-bottom: 5vw;
  }
}
.block_mainvisual .textarea .title {
  width: 50vh;
}
@media (max-width: 896px) {
  .block_mainvisual .textarea .title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.block_mainvisual .textarea .copy {
  white-space: nowrap;
  margin-left: 5vw;
  font-size: 5.5vh;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-align: left;
}
@media (max-width: 896px) {
  .block_mainvisual .textarea .copy {
    margin-left: 0;
    font-size: 5vw;
    line-height: 1;
    width: 100%;
    margin-top: 10px;
  }
}
.block_mainvisual .textarea .copy span {
  display: inline-block;
  line-height: 1;
  padding: 18px 15px;
  opacity: 0;
  transform: translate(20px, 0%);
  font-weight: 800;
}
@media (max-width: 896px) {
  .block_mainvisual .textarea .copy span {
    padding: 10px 10px;
  }
}
body.pageLoad .block_mainvisual .textarea .copy span.pos01 {
  opacity: 1;
  transform: translate(0px, 0%);
  transition: all 0.6s 0.2s ease;
}

body.pageLoad .block_mainvisual .textarea .copy span.pos02 {
  opacity: 1;
  transform: translate(0px, 0%);
  transition: all 0.6s 0.4s ease;
}

body.pageLoad .block_mainvisual .textarea .copy span.pos03 {
  opacity: 1;
  transform: translate(0px, 0%);
  transition: all 0.6s 0.6s ease;
}

.block_mainvisual .ps {
  position: absolute;
  top: 40px;
  right: 160px;
}
@media (max-width: 896px) {
  .block_mainvisual .ps {
    top: 20px;
    right: 100px;
  }
}
.block_mainvisual .ps a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: #FFF;
  padding: 10px;
  border-radius: 5px;
}
.block_mainvisual .ps a:hover {
  opacity: 0.5;
}
.block_mainvisual .ps a .t {
  font-size: 12px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-right: 10px;
}
@media (max-width: 896px) {
  .block_mainvisual .ps a .t {
    font-size: 10px;
  }
}
.block_mainvisual .ps a img {
  width: 150px;
}
@media (max-width: 896px) {
  .block_mainvisual .ps a img {
    width: 80px;
  }
}
.block_mainvisual .en {
  position: absolute;
  top: 47px;
  right: 40px;
}
@media (max-width: 896px) {
  .block_mainvisual .en {
    top: 27px;
    right: 20px;
  }
}
.block_mainvisual .en a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: #af2534;
  color: #FFF;
  font-size: 14px;
  padding: 4px 20px;
  border-radius: 30px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media (max-width: 896px) {
  .block_mainvisual .en a {
    font-size: 10px;
  }
}
.block_mainvisual .en a:hover {
  background: #FFF;
  color: #af2534;
}

/*----------------------------------------------------
 block_concept
--------------------------------------------------- */
.block_concept {
  position: relative;
  padding-top: 15%;
  padding-bottom: 15%;
}
.block_concept .inner {
  margin: 0 10%;
  position: relative;
}
@media (max-width: 896px) {
  .block_concept .inner {
    margin: 0 20px;
  }
}
.block_concept .inner .youtube_area {
  margin-bottom: 80px;
  position: relative;
}
.block_concept .inner .youtube_area figure {
  position: relative;
}
.block_concept .inner .youtube_area figure .img_wrap {
  padding-top: 56.25%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #FFF;
}
.block_concept .inner .youtube_area figure .img_wrap span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.block_concept .inner .youtube_area figure .img_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.block_concept .inner .youtube_area .coming {
  color: #FFF;
  font-size: 4vw;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_concept .inner .youtube_area .coming {
    font-size: 6vw;
  }
}
.block_concept .inner .title {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 82px;
  margin-bottom: 40px;
  color: #000;
}
@media (max-width: 896px) {
  .block_concept .inner .title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.block_concept .inner p {
  font-size: 2.4vw;
  line-height: 2;
  font-weight: 700;
  color: #000;
}
@media (max-width: 896px) {
  .block_concept .inner p {
    font-size: 16px;
    line-height: 2;
  }
}
.block_concept .inner ul.photo {
  margin-top: 80px;
}
@media (max-width: 896px) {
  .block_concept .inner ul.photo {
    margin-top: 60px;
  }
}
.block_concept .inner ul.photo li .img_wrap {
  position: relative;
  padding-top: 56.25%;
}
.block_concept .inner ul.photo li .img_wrap img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_concept .inner ul.photo li .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_concept .inner ul.photo li.pos01 {
  position: relative;
  width: 80%;
  left: -20%;
}
@media (max-width: 896px) {
  .block_concept .inner ul.photo li.pos01 {
    width: 90%;
    left: -10%;
  }
}
.block_concept .inner ul.photo li.pos02 {
  margin-top: 80px;
  position: relative;
  width: 60%;
  left: 55%;
}
@media (max-width: 896px) {
  .block_concept .inner ul.photo li.pos02 {
    margin-top: 40px;
    width: 55%;
    left: 55%;
  }
}
.block_concept .inner ul.photo li.pos03 {
  margin-top: 80px;
  position: relative;
  width: 120%;
  left: -10%;
}
@media (max-width: 896px) {
  .block_concept .inner ul.photo li.pos03 {
    margin-top: 40px;
    width: 100vw;
    left: -20px;
  }
}
.block_concept .inner .expo {
  margin-top: 80px;
}

/*----------------------------------------------------
 block_news_list
--------------------------------------------------- */
.block_news_list {
  position: relative;
  padding-bottom: 80px;
  padding-top: 80px;
  margin: 0 40px;
  min-height: 250px;
}
@media (max-width: 896px) {
  .block_news_list {
    margin: 0 20px;
    border-radius: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
body.page .block_news_list {
  margin: 140px 40px 80px 40px;
}
@media (max-width: 896px) {
  body.page .block_news_list {
    margin: 80px 20px 40px 20px;
  }
}

.block_news_list .inner {
  margin: 0 80px;
  position: relative;
}
@media (max-width: 896px) {
  .block_news_list .inner {
    margin: 0 0px;
  }
}
.block_news_list .inner .in {
  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 .in {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_news_list .inner .title {
  width: 300px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 82px;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_news_list .inner .title {
    width: 100%;
    font-size: 32px;
    margin-bottom: 0px;
  }
}
.block_news_list .inner .list {
  width: calc(100% - 300px);
  padding-top: 20px;
}
@media (max-width: 896px) {
  .block_news_list .inner .list {
    width: 100%;
  }
}
.block_news_list .inner .list .column {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_news_list .inner .list .column {
    padding-bottom: 10px;
    margin-bottom: 0px;
  }
}
.block_news_list .inner .list .column:last-child {
  border: none;
}
.block_news_list .inner .list .column a {
  display: block;
}
.block_news_list .inner .list .column a:hover {
  opacity: 0.5;
}
@media (max-width: 896px) {
  .block_news_list .inner .list .column a {
    flex-direction: column; /* row row-reverse column */
    align-items: flex-start; /* flex-start  center  */
    position: relative;
  }
}
.block_news_list .inner .list .column a .meta {
  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_news_list .inner .list .column a time {
  font-size: 14px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-right: 10px;
}
@media (max-width: 896px) {
  .block_news_list .inner .list .column a time {
    font-size: 12px;
  }
}
.block_news_list .inner .list .column a .category {
  width: 100px;
  margin-right: 10px;
  padding-bottom: 6px;
}
.block_news_list .inner .list .column a .category span {
  display: inline-block;
  border-radius: 30px;
  border: 1px #333 solid;
  color: #333;
  font-size: 12px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding: 4px 10px;
  line-height: 1;
}
@media (max-width: 896px) {
  .block_news_list .inner .list .column a .category span {
    font-size: 10px;
  }
}
.block_news_list .inner .list .column a .c_title {
  width: 100%;
  font-size: 1.8vw;
  line-height: 1.6;
  font-weight: 700;
}
@media (max-width: 896px) {
  .block_news_list .inner .list .column a .c_title {
    width: 100%;
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.7;
  }
}
.block_news_list .inner .list .column a .c_title span {
  display: inline;
  background: #FFF;
  padding: 5px 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.block_news_list .inner .list .column a .arrow {
  width: 30px;
}
@media (max-width: 896px) {
  .block_news_list .inner .list .column a .arrow {
    display: none;
  }
}
.block_news_list .inner .list .column a .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}
.block_news_list .inner .more {
  position: absolute;
  top: 120px;
  left: 0%;
}
@media (max-width: 896px) {
  .block_news_list .inner .more {
    margin-top: 0px;
    position: relative;
    top: auto;
    left: auto;
  }
}
.block_news_list .inner .more a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #000 solid;
  padding: 10px 20px;
  border-radius: 40px;
}
.block_news_list .inner .more a:hover {
  background: #000;
  color: #FFF;
}
.block_news_list .inner .more a:hover .arrow svg {
  fill: #FFF;
}
.block_news_list .inner .more a .t {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.block_news_list .inner .more a .arrow {
  margin-left: 10px;
}
.block_news_list .inner .more a .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}
.block_news_list .inner .block_entry {
  width: calc(100% - 300px);
  padding-top: 20px;
}
@media (max-width: 896px) {
  .block_news_list .inner .block_entry {
    width: 100%;
  }
}
.block_news_list .inner .block_entry .summary {
  margin-bottom: 40px;
}
.block_news_list .inner .block_entry .summary time {
  width: 100px;
  font-size: 14px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-right: 10px;
}
@media (max-width: 896px) {
  .block_news_list .inner .block_entry .summary .category {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    width: auto;
    line-height: 1;
  }
}
.block_news_list .inner .block_entry .summary .category span {
  display: inline-block;
  background: #333;
  color: #FFF;
  font-size: 12px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding: 4px 10px;
  line-height: 1;
}
@media (max-width: 896px) {
  .block_news_list .inner .block_entry .summary .category span {
    font-size: 10px;
  }
}
.block_news_list .inner .block_entry .summary .c_title {
  font-size: 24px;
  line-height: 1.5;
}
@media (max-width: 896px) {
  .block_news_list .inner .block_entry .summary .c_title {
    width: 100%;
  }
}
.block_news_list .inner .page_back a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #000 solid;
  padding: 10px 20px;
  border-radius: 40px;
  margin-top: 40px;
  text-decoration: none;
}
.block_news_list .inner .page_back a:hover {
  background: #000;
  color: #FFF;
}
.block_news_list .inner .page_back a:hover .arrow svg {
  fill: #FFF;
}
.block_news_list .inner .page_back a .t {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.block_news_list .inner .page_back a .arrow {
  margin-left: 10px;
}
.block_news_list .inner .page_back a .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-270deg);
}

/*----------------------------------------------------
 block_main_event_list
--------------------------------------------------- */
.block_main_event_list {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fcc30b;
  margin: 0 40px;
}
@media (max-width: 896px) {
  .block_main_event_list {
    margin: 0 0px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.block_main_event_list .inner {
  margin: 0 80px;
  position: relative;
}
@media (max-width: 896px) {
  .block_main_event_list .inner {
    margin: 0 0px;
  }
}
.block_main_event_list .inner .title {
  width: 300px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 82px;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .title {
    width: auto;
    margin: 0 20px;
    margin-bottom: 20px;
    font-size: 32px;
  }
}
.block_main_event_list .inner .list .column {
  overflow: hidden;
  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: 40px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column {
    flex-direction: column; /* row row-reverse column */
    margin-bottom: 20px;
  }
}
.block_main_event_list .inner .list .column:nth-child(2n) {
  flex-direction: row-reverse; /* row row-reverse column */
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column:nth-child(2n) {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_main_event_list .inner .list .column:nth-child(2n) .textarea {
  left: 80px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column:nth-child(2n) .textarea {
    left: 0px;
    width: calc(100% - 20px);
  }
}
.block_main_event_list .inner .list .column:nth-child(2n) .textarea time {
  text-align: right;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column:nth-child(2n) .textarea time {
    text-align: left;
  }
}
.block_main_event_list .inner .list .column:nth-child(2n) .textarea .c_title {
  text-align: right;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column:nth-child(2n) .textarea .c_title {
    text-align: left;
  }
}
.block_main_event_list .inner .list .column:nth-child(2n) .textarea p {
  margin-left: 0;
  margin-right: 140px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column:nth-child(2n) .textarea p {
    margin-left: 20px;
    margin-right: 0;
  }
}
.block_main_event_list .inner .list .column:nth-child(2n) .textarea dl {
  margin-left: 0;
  margin-right: 140px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column:nth-child(2n) .textarea dl {
    margin-left: 20px;
    width: 90%;
  }
}
.block_main_event_list .inner .list .column:nth-child(2n) .textarea .more {
  margin-left: 0;
  margin-right: 140px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column:nth-child(2n) .textarea .more {
    margin-left: 20px;
    margin-right: 0;
  }
}
.block_main_event_list .inner .list .column .image_area {
  width: 50%;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column .image_area {
    width: 100%;
  }
}
.block_main_event_list .inner .list .column .image_area .slide .s_column figure {
  overflow: hidden;
}
.block_main_event_list .inner .list .column .image_area .slide .s_column figure .img_wrap {
  position: relative;
  padding-top: 75%;
}
.block_main_event_list .inner .list .column .image_area .slide .s_column figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.block_main_event_list .inner .list .column .textarea {
  width: 50%;
  position: relative;
  top: -20px;
  left: -80px;
  z-index: 1;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column .textarea {
    width: 100%;
    left: 0;
    top: 0;
    width: calc(100% - 20px);
  }
}
.block_main_event_list .inner .list .column .textarea time {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column .textarea time {
    margin-top: -40px;
    font-size: 60px;
    margin-bottom: 0px;
  }
}
.block_main_event_list .inner .list .column .textarea time span.bg {
  background: #FFF;
  display: inline-block;
  padding: 30px 40px 30px 40px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column .textarea time span.bg {
    padding: 10px 20px;
  }
}
.block_main_event_list .inner .list .column .textarea time small {
  font-size: 30px;
  margin-left: 10px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column .textarea time small {
    font-size: 18px;
  }
}
.block_main_event_list .inner .list .column .textarea time .line {
  border-bottom: 1px #000 solid;
  width: 50px;
  display: inline-block;
  margin: 0 10px;
}
.block_main_event_list .inner .list .column .textarea .c_title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column .textarea .c_title {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.block_main_event_list .inner .list .column .textarea .c_title span {
  margin-top: -40px;
  background: #FFF;
  display: inline-block;
  padding: 30px 40px 30px 40px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column .textarea .c_title span {
    margin-top: -15px;
    padding: 10px 20px;
  }
}
.block_main_event_list .inner .list .column .textarea p {
  font-size: 16px;
  margin-left: 140px;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column .textarea p {
    font-size: 14px;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}
.block_main_event_list .inner .list .column .textarea dl {
  margin-left: 140px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 16px;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column .textarea dl {
    font-size: 12px;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}
.block_main_event_list .inner .list .column .textarea dl dt {
  width: 60px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column .textarea dl dt {
    width: 60px;
  }
}
.block_main_event_list .inner .list .column .textarea dl dd {
  width: calc(100% - 60px);
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column .textarea dl dd {
    width: calc(100% - 60px);
  }
}
.block_main_event_list .inner .list .more {
  margin-left: 140px;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .more {
    margin-left: 20px;
  }
}
.block_main_event_list .inner .list .more a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #000 solid;
  padding: 10px 20px;
  border-radius: 40px;
}
.block_main_event_list .inner .list .more a:hover {
  background: #000;
  color: #FFF;
}
.block_main_event_list .inner .list .more a:hover .arrow svg {
  fill: #FFF;
}
.block_main_event_list .inner .list .more a .t {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.block_main_event_list .inner .list .more a .arrow {
  margin-left: 10px;
}
.block_main_event_list .inner .list .more a .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}
.block_main_event_list .inner .list .more .none {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #d2a209 solid;
  background: #d2a209;
  padding: 10px 20px;
  border-radius: 40px;
}
.block_main_event_list .inner .list .more .none .t {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
}
.block_main_event_list .inner .list .more .none .arrow {
  margin-left: 10px;
}
.block_main_event_list .inner .list .more .none .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}
.block_main_event_list .inner .list .column_wide {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column_wide {
    width: auto;
    margin: 0 20px;
    margin-top: 40px;
  }
}
.block_main_event_list .inner .list .column_wide time {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column_wide time {
    font-size: 50px;
  }
}
.block_main_event_list .inner .list .column_wide time small {
  font-size: 30px;
  margin-left: 10px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column_wide time small {
    padding: 0 10px;
    font-size: 18px;
  }
}
.block_main_event_list .inner .list .column_wide time .line {
  border-bottom: 1px #000 solid;
  width: 50px;
  display: inline-block;
  margin: 0 10px;
}
.block_main_event_list .inner .list .column_wide time span {
  background: #FFF;
  padding: 10px 16px;
}
.block_main_event_list .inner .list .column_wide .copy {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.2;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column_wide .copy {
    font-size: 26px;
    line-height: 2;
    margin-bottom: 40px;
  }
}
.block_main_event_list .inner .list .column_wide .copy span {
  background: #FFF;
  display: inline-block;
  padding: 10px 15px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column_wide .copy span {
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
}
.block_main_event_list .inner .list .column_wide .two {
  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_main_event_list .inner .list .column_wide .two {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_main_event_list .inner .list .column_wide .two .w_column {
  width: 48%;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column_wide .two .w_column {
    width: 100%;
    margin-bottom: 40px;
  }
}
.block_main_event_list .inner .list .column_wide .two .w_column figure {
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(0deg, #ffd900 0%, #ffef3f 7%, #c7dc68 14%, #68be8d 21%, #239dda 28%, #5a79ba 35%, #9079ad 42%, #e7609e 49%, #e95464 56%, #ed6d3d 70%, #f49d43 77%, #ffd900 100%);
  background-size: 500% 500%;
  animation-name: gradation_bg;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
.block_main_event_list .inner .list .column_wide .two .w_column figure .img_wrap_src {
  position: relative;
  padding-top: 75%;
}
.block_main_event_list .inner .list .column_wide .two .w_column figure .img_wrap_src img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_main_event_list .inner .list .column_wide .two .w_column figure .img_wrap_src img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.5s ease;
}
.block_main_event_list .inner .list .column_wide .two .w_column figure .img_wrap {
  position: relative;
  padding-top: 75%;
}
.block_main_event_list .inner .list .column_wide .two .w_column figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.block_main_event_list .inner .list .column_wide .two .w_column .w_title {
  position: relative;
  margin-top: -20px;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column_wide .two .w_column .w_title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.block_main_event_list .inner .list .column_wide .two .w_column .w_title span {
  background: #FFF;
  display: inline-block;
  padding: 5px 10px;
}
.block_main_event_list .inner .list .column_wide .two .w_column p {
  font-size: 16px;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_main_event_list .inner .list .column_wide .two .w_column p {
    margin-bottom: 20px;
    font-size: 12px;
  }
}
.block_main_event_list .inner .list .column_wide .two .w_column .more {
  margin: 0;
}

/*----------------------------------------------------
 block_guest_list
--------------------------------------------------- */
.block_guest_list {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #56c02b;
  margin: 0 40px;
}
@media (max-width: 896px) {
  .block_guest_list {
    margin: 0 0px;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
  }
}
body.page .block_guest_list {
  padding-top: 80px;
}
body.page .block_guest_list .inner .title_area {
  width: 380px;
}
@media (max-width: 896px) {
  body.page .block_guest_list .inner .title_area {
    width: 100%;
  }
}
body.page .block_guest_list .inner .title_area .title {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 42px;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  body.page .block_guest_list .inner .title_area .title {
    margin-bottom: 20px;
    font-size: 32px;
  }
}
body.page .block_guest_list .inner .block_textarea {
  width: calc(100% - 400px);
}
@media (max-width: 896px) {
  body.page .block_guest_list .inner .block_textarea {
    width: 100%;
  }
}

@media (max-width: 896px) {
  .block_guest_list.detail .inner .title_area {
    display: none;
  }
}
.block_guest_list .inner {
  margin: 0 40px;
  position: relative;
}
@media (max-width: 896px) {
  .block_guest_list .inner {
    margin: 0 20px;
  }
}
.block_guest_list .inner {
  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_guest_list .inner {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_guest_list .inner .title_area {
  position: sticky;
  top: 0px;
  z-index: 100;
  width: 640px;
  padding-top: 40px;
}
@media (max-width: 896px) {
  .block_guest_list .inner .title_area {
    width: 100%;
    padding-top: 0px;
  }
}
.block_guest_list .inner .title_area .title {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 82px;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_guest_list .inner .title_area .title {
    margin-bottom: 20px;
    font-size: 32px;
  }
}
@media (max-width: 896px) {
  .block_guest_list .inner .title_area .navi_wrap {
    position: relative;
    left: -20px;
    width: 100vw;
  }
}
.block_guest_list .inner .title_area .navi_wrap ul {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 896px) {
  .block_guest_list .inner .title_area .navi_wrap ul {
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    flex-wrap: nowrap;
    width: auto;
    overflow-x: scroll;
  }
}
.block_guest_list .inner .title_area .navi_wrap ul li {
  margin-right: 10px;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_guest_list .inner .title_area .navi_wrap ul li {
    margin-right: 5px;
    margin-bottom: 0px;
  }
}
.block_guest_list .inner .title_area .navi_wrap ul li a {
  display: inline-block;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #000 solid;
  padding: 5px 10px 10px 10px;
  border-radius: 40px;
  line-height: 1;
}
.block_guest_list .inner .title_area .navi_wrap ul li a:hover, .block_guest_list .inner .title_area .navi_wrap ul li a.active {
  background: #000;
  color: #FFF;
}
.block_guest_list .inner .title_area .navi_wrap ul li a:hover .arrow svg, .block_guest_list .inner .title_area .navi_wrap ul li a.active .arrow svg {
  fill: #FFF;
}
.block_guest_list .inner .title_area .navi_wrap ul li a .t {
  display: inline-block;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}
.block_guest_list .inner .title_area .navi_wrap ul li a .arrow {
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
}
@media (max-width: 896px) {
  .block_guest_list .inner .title_area .navi_wrap ul li a .arrow {
    margin-right: 20px;
  }
}
.block_guest_list .inner .title_area .navi_wrap ul li a .arrow svg {
  width: 15px;
  height: 15px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}
.block_guest_list .inner .title_area .sub_title {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_guest_list .inner .title_area .sub_title {
    margin-bottom: 5px;
    font-size: 12px;
  }
}
.block_guest_list .inner .title_area .sub_title.ac_active svg {
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-180deg);
}
.block_guest_list .inner .title_area .sub_title svg {
  display: none;
}
@media (max-width: 896px) {
  .block_guest_list .inner .title_area .sub_title svg {
    display: block;
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
  }
}
.block_guest_list .inner .block_textarea {
  position: relative;
  width: calc(100% - 640px);
  padding-top: 40px;
}
@media (max-width: 896px) {
  .block_guest_list .inner .block_textarea {
    width: 100%;
    padding-top: 0px;
  }
}
.block_guest_list .inner .block_textarea .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 896px) {
  .block_guest_list .inner .block_textarea .list {
    margin-bottom: 10px;
  }
}
.block_guest_list .inner .block_textarea .list .no_entry {
  font-size: 14px;
}
.block_guest_list .inner .block_textarea .list .column {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 5%;
}
.block_guest_list .inner .block_textarea .list .column:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 896px) {
  .block_guest_list .inner .block_textarea .list .column {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .block_guest_list .inner .block_textarea .list .column:nth-child(3n) {
    margin-right: 4%;
  }
  .block_guest_list .inner .block_textarea .list .column:nth-child(2n) {
    margin-right: 0%;
  }
}
.block_guest_list .inner .block_textarea .list .column a {
  display: block;
  position: relative;
}
.block_guest_list .inner .block_textarea .list .column a:hover figure .img_wrap {
  transform: scale3d(1.1, 1.1, 1.1);
}
.block_guest_list .inner .block_textarea .list .column a:hover .name span {
  background: #000;
  color: #FFF;
}
.block_guest_list .inner .block_textarea .list .column a figure {
  overflow: hidden;
  background: linear-gradient(0deg, #ffd900 0%, #ffef3f 7%, #c7dc68 14%, #68be8d 21%, #239dda 28%, #5a79ba 35%, #9079ad 42%, #e7609e 49%, #e95464 56%, #ed6d3d 70%, #f49d43 77%, #ffd900 100%);
  background-size: 500% 500%;
  animation-name: gradation_bg;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
.block_guest_list .inner .block_textarea .list .column a figure .img_wrap_src {
  position: relative;
  padding-top: 100%;
}
.block_guest_list .inner .block_textarea .list .column a figure .img_wrap_src img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_guest_list .inner .block_textarea .list .column a figure .img_wrap_src img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.5s ease;
}
.block_guest_list .inner .block_textarea .list .column a figure .img_wrap {
  position: relative;
  padding-top: 100%;
  transition: all 0.6s 0s ease;
}
.block_guest_list .inner .block_textarea .list .column a figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
}
.block_guest_list .inner .block_textarea .list .column a figure .img_wrap span.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.5s ease;
}
.block_guest_list .inner .block_textarea .list .column a .name {
  position: absolute;
  bottom: -10px;
  right: -10px;
}
@media (max-width: 896px) {
  .block_guest_list .inner .block_textarea .list .column a .name {
    right: -4px;
  }
}
.block_guest_list .inner .block_textarea .list .column a .name span {
  display: inline-block;
  line-height: 1.5;
  padding: 10px 20px;
  background: #FFF;
  font-size: 14px;
}
@media (max-width: 896px) {
  .block_guest_list .inner .block_textarea .list .column a .name span {
    padding: 5px 10px;
    font-size: 10px;
  }
}
.block_guest_list .inner .block_textarea .more a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #000 solid;
  padding: 10px 20px;
  border-radius: 40px;
}
.block_guest_list .inner .block_textarea .more a:hover {
  background: #000;
  color: #FFF;
}
.block_guest_list .inner .block_textarea .more a:hover .arrow svg {
  fill: #FFF;
}
.block_guest_list .inner .block_textarea .more a .t {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.block_guest_list .inner .block_textarea .more a .arrow {
  margin-left: 10px;
}
.block_guest_list .inner .block_textarea .more a .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}
.block_guest_list .inner .block_textarea .block_entry .summary {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_guest_list .inner .block_textarea .block_entry .summary {
    flex-direction: column; /* row row-reverse column */
    margin-bottom: 40px;
  }
}
.block_guest_list .inner .block_textarea .block_entry .summary figure {
  width: 48%;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 896px) {
  .block_guest_list .inner .block_textarea .block_entry .summary figure {
    margin-bottom: 20px;
    position: relative;
    left: 0px;
    width: 100vw;
  }
}
.block_guest_list .inner .block_textarea .block_entry .summary .s_title_area {
  width: 48%;
}
@media (max-width: 896px) {
  .block_guest_list .inner .block_textarea .block_entry .summary .s_title_area {
    width: 100%;
  }
}
.block_guest_list .inner .block_textarea .block_entry .summary .s_title_area time {
  display: block;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.block_guest_list .inner .block_textarea .block_entry .summary .s_title_area .sub {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.block_guest_list .inner .block_textarea .block_entry .summary .s_title_area .c_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_guest_list .inner .block_textarea .block_entry .summary .s_title_area .c_title {
    font-size: 24px;
  }
}
.block_guest_list .inner .block_textarea .block_entry .summary .s_title_area ul.tag li {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
}
.block_guest_list .inner .block_textarea .block_entry .summary .s_title_area ul.tag li span {
  display: inline-block;
  background: #333;
  color: #FFF;
  font-size: 12px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding: 4px 10px;
  line-height: 1;
}
@media (max-width: 896px) {
  .block_guest_list .inner .block_textarea .block_entry .summary .s_title_area ul.tag li span {
    font-size: 10px;
  }
}
.block_guest_list .inner .block_textarea .page_back a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #000 solid;
  padding: 10px 20px;
  border-radius: 40px;
}
.block_guest_list .inner .block_textarea .page_back a:hover {
  background: #000;
  color: #FFF;
}
.block_guest_list .inner .block_textarea .page_back a:hover .arrow svg {
  fill: #FFF;
}
.block_guest_list .inner .block_textarea .page_back a .t {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.block_guest_list .inner .block_textarea .page_back a .arrow {
  margin-left: 10px;
}
.block_guest_list .inner .block_textarea .page_back a .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-270deg);
}

/*----------------------------------------------------
 block_comment_list
--------------------------------------------------- */
.block_comment_list {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_comment_list {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.block_comment_list .inner {
  margin: 0 40px;
  position: relative;
}
@media (max-width: 896px) {
  .block_comment_list .inner {
    margin: 0 20px;
  }
}
.block_comment_list .inner .title {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 82px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_comment_list .inner .title {
    font-size: 42px;
    margin-bottom: 20px;
  }
}
.block_comment_list .inner .slide {
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_comment_list .inner .slide {
    margin-bottom: 20px;
  }
}
.block_comment_list .inner .s_column {
  border: 1px #000 solid;
  padding: 40px;
  background: #FFF;
}
body.page .block_comment_list .inner .s_column {
  margin-bottom: 40px;
}

@media (max-width: 896px) {
  .block_comment_list .inner .s_column {
    padding: 20px;
  }
}
.block_comment_list .inner .s_column .comment {
  font-size: 16px;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_comment_list .inner .s_column .comment {
    font-size: 14px;
  }
}
.block_comment_list .inner .s_column .profile {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_comment_list .inner .s_column .profile {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_comment_list .inner .s_column .profile figure {
  width: 100px;
}
.block_comment_list .inner .s_column .profile figure .img_wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 100%;
}
.block_comment_list .inner .s_column .profile figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.block_comment_list .inner .s_column .profile .textarea {
  width: calc(100% - 120px);
}
@media (max-width: 896px) {
  .block_comment_list .inner .s_column .profile .textarea {
    width: 100%;
    padding-top: 20px;
    text-align: center;
  }
}
.block_comment_list .inner .s_column .profile .textarea {
  line-height: 1.5;
}
.block_comment_list .inner .s_column .profile .textarea .sub {
  font-size: 15px;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_comment_list .inner .s_column .profile .textarea .sub {
    font-size: 10px;
  }
}
.block_comment_list .inner .s_column .profile .textarea .name {
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 896px) {
  .block_comment_list .inner .s_column .profile .textarea .name {
    font-size: 15px;
  }
}
.block_comment_list .inner .more {
  display: inline-block;
}
@media (max-width: 896px) {
  .block_comment_list .inner .more {
    width: 100%;
  }
}
.block_comment_list .inner .more a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #000 solid;
  padding: 10px 20px;
  border-radius: 40px;
}
.block_comment_list .inner .more a:hover {
  background: #000;
  color: #FFF;
}
.block_comment_list .inner .more a:hover .arrow svg {
  fill: #FFF;
}
.block_comment_list .inner .more a .t {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.block_comment_list .inner .more a .arrow {
  margin-left: 10px;
}
.block_comment_list .inner .more a .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}

/*----------------------------------------------------
 block_donation
--------------------------------------------------- */
.block_donation {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ff3a21;
  overflow: hidden;
  margin: 0 40px;
}
@media (max-width: 896px) {
  .block_donation {
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0 0px;
  }
}
.block_donation .inner {
  margin: 0 80px;
  position: relative;
}
@media (max-width: 896px) {
  .block_donation .inner {
    margin: 0 20px;
  }
}
.block_donation .inner .title {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 82px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_donation .inner .title {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
.block_donation .inner .wrap p {
  font-size: 16px;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_donation .inner .wrap p {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.block_donation .inner .more {
  display: inline-block;
}
@media (max-width: 896px) {
  .block_donation .inner .more {
    width: 100%;
  }
}
.block_donation .inner .more a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #000 solid;
  padding: 10px 20px;
  border-radius: 40px;
}
.block_donation .inner .more a:hover {
  background: #000;
  color: #FFF;
}
.block_donation .inner .more a:hover .arrow svg {
  fill: #FFF;
}
.block_donation .inner .more a .t {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.block_donation .inner .more a .arrow {
  margin-left: 10px;
}
.block_donation .inner .more a .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}

/*----------------------------------------------------
 block_mailmagazine
--------------------------------------------------- */
.block_mailmagazine {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fd9d24;
  overflow: hidden;
  margin: 0 40px;
}
@media (max-width: 896px) {
  .block_mailmagazine {
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0 0px;
  }
}
.block_mailmagazine .inner {
  margin: 0 80px;
  position: relative;
}
@media (max-width: 896px) {
  .block_mailmagazine .inner {
    margin: 0 20px;
  }
}
.block_mailmagazine .inner .title {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 82px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_mailmagazine .inner .title {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
.block_mailmagazine .inner .wrap p {
  font-size: 16px;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_mailmagazine .inner .wrap p {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.block_mailmagazine .inner .more {
  display: inline-block;
}
@media (max-width: 896px) {
  .block_mailmagazine .inner .more {
    width: 100%;
  }
}
.block_mailmagazine .inner .more a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #000 solid;
  padding: 10px 20px;
  border-radius: 40px;
}
.block_mailmagazine .inner .more a:hover {
  background: #000;
  color: #FFF;
}
.block_mailmagazine .inner .more a:hover .arrow svg {
  fill: #FFF;
}
.block_mailmagazine .inner .more a .t {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.block_mailmagazine .inner .more a .arrow {
  margin-left: 10px;
}
.block_mailmagazine .inner .more a .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}

/*----------------------------------------------------
 block_support
--------------------------------------------------- */
.block_support {
  position: relative;
  margin: 0 40px;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #FFF;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_support {
    margin: 0 0px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.block_support .inner {
  margin: 0 80px;
  position: relative;
}
@media (max-width: 896px) {
  .block_support .inner {
    margin: 0 20px;
  }
}
.block_support .inner .title {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 82px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_support .inner .title {
    font-size: 42px;
  }
}
.block_support .inner .group {
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_support .inner .group {
    margin-bottom: 10px;
  }
}
.block_support .inner .group .g_title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-left: 20px;
}
@media (max-width: 896px) {
  .block_support .inner .group .g_title {
    margin-left: 3vw;
    font-size: 14px;
  }
}
.block_support .inner .group ul li {
  display: inline-block;
  margin: 0 10px 20px 10px;
  width: 150px;
}
@media (max-width: 896px) {
  .block_support .inner .group ul li {
    margin: 0 2vw 10px 2vw;
    width: 24vw;
  }
}

/*----------------------------------------------------
 block_breadcrumb
--------------------------------------------------- */
.block_breadcrumb {
  background: #e1e1e1;
  padding: 20px 0;
}
.block_breadcrumb ol {
  display: flex;
  margin: 0 40px;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  white-space: nowrap;
}
@media (max-width: 896px) {
  .block_breadcrumb ol {
    margin: 0 0px;
    padding: 0 20px;
    overflow-x: scroll;
  }
}
.block_breadcrumb ol {
  list-style: none;
  font-size: 12px;
}
.block_breadcrumb ol li:not(:last-of-type)::after {
  content: "-";
  margin: 0 0.6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}
.block_breadcrumb ol li a {
  display: inline-block;
}
.block_breadcrumb ol li a:hover {
  opacity: 0.5;
}

/*----------------------------------------------------
 block_footer
--------------------------------------------------- */
.block_footer {
  position: relative;
  padding-top: 40px;
  padding-bottom: 10%;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_footer {
    padding: 20px 0 80px 0;
  }
}
.block_footer .inner {
  margin: 0 40px;
  position: relative;
}
@media (max-width: 896px) {
  .block_footer .inner {
    margin: 0 10px;
  }
}
.block_footer .inner .sns_area {
  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_footer .inner .sns_area {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_footer .inner .sns_area .s {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-right: 20px;
}
@media (max-width: 896px) {
  .block_footer .inner .sns_area .s {
    font-size: 12px;
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
.block_footer .inner .sns_area ul {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_footer .inner .sns_area ul li {
  margin-right: 10px;
}
.block_footer .inner .sns_area ul li a {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: #ccc;
}
@media (max-width: 896px) {
  .block_footer .inner .sns_area ul li a {
    width: 40px;
    height: 40px;
    border-radius: 40px;
  }
}
.block_footer .inner .sns_area ul li a svg {
  width: 25px;
  height: 25px;
  fill: #FFF;
}
@media (max-width: 896px) {
  .block_footer .inner .sns_area ul li a svg {
    width: 15px;
    height: 15px;
  }
}
.block_footer .inner .sns_area ul li a.is {
  background: #E05266;
}
.block_footer .inner .sns_area ul li a.tw {
  background: #000;
}
.block_footer .inner .sns_area ul li a.fb {
  background: #3B5796;
}
.block_footer .inner .sns_area ul li a.li {
  background: #45C921;
}
.block_footer .inner .sns_area ul li a.yt {
  background: #FF0000;
}
.block_footer .inner .sns_area ul li a.is:hover, .block_footer .inner .sns_area ul li a.tw:hover, .block_footer .inner .sns_area ul li a.fb:hover, .block_footer .inner .sns_area ul li a.li:hover, .block_footer .inner .sns_area ul li a.yt:hover {
  background: #000;
}
.block_footer .inner .archive_area {
  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_footer .inner .archive_area {
    flex-direction: column; /* row row-reverse column */
    margin-bottom: 20px;
  }
}
.block_footer .inner .archive_area .s {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-right: 20px;
}
@media (max-width: 896px) {
  .block_footer .inner .archive_area .s {
    font-size: 12px;
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
.block_footer .inner .archive_area ul {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_footer .inner .archive_area ul li {
  margin-right: 20px;
}
@media (max-width: 896px) {
  .block_footer .inner .archive_area ul li {
    margin: 0px 5px;
  }
}
.block_footer .inner .archive_area ul li a {
  font-size: 44px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  color: #000;
}
@media (max-width: 896px) {
  .block_footer .inner .archive_area ul li a {
    font-size: 13px;
  }
}
.block_footer .inner .copyright {
  margin-top: 40px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
}
@media (max-width: 896px) {
  .block_footer .inner .copyright {
    margin-top: 20px;
    text-align: center;
  }
}

/*----------------------------------------------------
 block_event_list
--------------------------------------------------- */
.block_event_list {
  position: relative;
  padding-top: 80px;
  padding-bottom: 10%;
}
@media (max-width: 896px) {
  .block_event_list.detail .inner .title_area {
    display: none;
  }
  .block_event_list.detail .inner .block_textarea {
    padding-top: 0;
  }
}
.block_event_list .inner {
  margin: 0 80px;
  position: relative;
}
@media (max-width: 896px) {
  .block_event_list .inner {
    margin: 0 20px;
  }
}
.block_event_list .inner {
  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_event_list .inner {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_event_list .inner .title_area {
  position: sticky;
  top: 0px;
  z-index: 100;
  width: 380px;
  padding-top: 40px;
}
@media (max-width: 896px) {
  .block_event_list .inner .title_area {
    width: 100%;
    padding-top: 20px;
  }
}
.block_event_list .inner .title_area .title {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 42px;
  margin-bottom: 20px;
}
.block_event_list .inner .title_area .sub_title {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_event_list .inner .title_area .sub_title {
    margin-bottom: 5px;
    font-size: 12px;
  }
}
.block_event_list .inner .title_area .sub_title.ac_active svg {
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-180deg);
}
.block_event_list .inner .title_area .sub_title svg {
  display: none;
}
@media (max-width: 896px) {
  .block_event_list .inner .title_area .sub_title svg {
    display: block;
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
  }
}
@media (max-width: 896px) {
  .block_event_list .inner .title_area .navi_wrap {
    position: relative;
    left: -20px;
    width: 100vw;
  }
}
.block_event_list .inner .title_area ul {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 896px) {
  .block_event_list .inner .title_area ul {
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    flex-wrap: nowrap;
    width: auto;
    overflow-x: scroll;
  }
}
.block_event_list .inner .title_area ul li {
  margin-right: 10px;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_event_list .inner .title_area ul li {
    margin-right: 5px;
    margin-bottom: 0px;
  }
}
.block_event_list .inner .title_area ul li a {
  display: inline-block;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #000 solid;
  padding: 5px 10px 10px 10px;
  border-radius: 40px;
  line-height: 1;
}
.block_event_list .inner .title_area ul li a:hover, .block_event_list .inner .title_area ul li a.active {
  background: #000;
  color: #FFF;
}
.block_event_list .inner .title_area ul li a:hover .arrow svg, .block_event_list .inner .title_area ul li a.active .arrow svg {
  fill: #FFF;
}
.block_event_list .inner .title_area ul li a .t {
  display: inline-block;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}
.block_event_list .inner .title_area ul li a .arrow {
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
}
@media (max-width: 896px) {
  .block_event_list .inner .title_area ul li a .arrow {
    margin-right: 20px;
  }
}
.block_event_list .inner .title_area ul li a .arrow svg {
  width: 15px;
  height: 15px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}
.block_event_list .inner .block_textarea {
  position: relative;
  width: calc(100% - 400px);
  padding-top: 40px;
}
@media (max-width: 896px) {
  .block_event_list .inner .block_textarea {
    width: 100%;
  }
}
.block_event_list .inner .block_textarea .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 896px) {
  .block_event_list .inner .block_textarea .list {
    margin-bottom: 40px;
  }
}
.block_event_list .inner .block_textarea .list .no_entry {
  font-size: 14px;
}
.block_event_list .inner .block_textarea .list .column {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 5%;
}
.block_event_list .inner .block_textarea .list .column:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 896px) {
  .block_event_list .inner .block_textarea .list .column {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 40px;
  }
  .block_event_list .inner .block_textarea .list .column:nth-child(3n) {
    margin-right: 0%;
  }
}
.block_event_list .inner .block_textarea .list .column a {
  display: block;
  position: relative;
  line-height: 1;
}
.block_event_list .inner .block_textarea .list .column a:hover figure .img_wrap {
  opacity: 0.5;
}
.block_event_list .inner .block_textarea .list .column a:hover .name span {
  background: #000;
  color: #FFF;
}
.block_event_list .inner .block_textarea .list .column a figure {
  margin-bottom: 20px;
  overflow: hidden;
}
.block_event_list .inner .block_textarea .list .column a figure .img_wrap {
  position: relative;
  padding-top: 100%;
  transition: all 0.6s 0s ease;
}
.block_event_list .inner .block_textarea .list .column a figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  opacity: 0;
}
.block_event_list .inner .block_textarea .list .column a figure .img_wrap span.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.2s ease;
}
.block_event_list .inner .block_textarea .list .column a figure img {
  opacity: 0;
}
.block_event_list .inner .block_textarea .list .column a figure img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.2s ease;
}
.block_event_list .inner .block_textarea .list .column a time {
  display: block;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.block_event_list .inner .block_textarea .list .column a .c_title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.block_event_list .inner .block_textarea .list .column a ul.tag li {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
}
.block_event_list .inner .block_textarea .more a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #000 solid;
  padding: 10px 20px;
  border-radius: 40px;
}
.block_event_list .inner .block_textarea .more a:hover {
  background: #000;
  color: #FFF;
}
.block_event_list .inner .block_textarea .more a:hover .arrow svg {
  fill: #FFF;
}
.block_event_list .inner .block_textarea .more a .t {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.block_event_list .inner .block_textarea .more a .arrow {
  margin-left: 10px;
}
.block_event_list .inner .block_textarea .more a .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-90deg);
}
.block_event_list .inner .block_textarea .block_entry .summary {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_event_list .inner .block_textarea .block_entry .summary {
    flex-direction: column; /* row row-reverse column */
    margin-bottom: 40px;
  }
}
.block_event_list .inner .block_textarea .block_entry .summary figure {
  width: 48%;
}
@media (max-width: 896px) {
  .block_event_list .inner .block_textarea .block_entry .summary figure {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    left: 0px;
    width: 100vw;
  }
}
.block_event_list .inner .block_textarea .block_entry .summary .s_title_area {
  width: 48%;
}
@media (max-width: 896px) {
  .block_event_list .inner .block_textarea .block_entry .summary .s_title_area {
    width: 100%;
  }
}
.block_event_list .inner .block_textarea .block_entry .summary .s_title_area time {
  display: block;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.block_event_list .inner .block_textarea .block_entry .summary .s_title_area .c_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_event_list .inner .block_textarea .block_entry .summary .s_title_area .c_title {
    font-size: 24px;
  }
}
.block_event_list .inner .block_textarea .block_entry .summary .s_title_area ul.tag li {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
  line-height: 1;
}
.block_event_list .inner .block_textarea .block_entry .summary .s_title_area ul.tag li span {
  display: inline-block;
  background: #333;
  color: #FFF;
  font-size: 12px;
  padding: 4px 6px;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.block_event_list .inner .block_textarea .page_back a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border: 1px #000 solid;
  padding: 10px 20px;
  border-radius: 40px;
}
.block_event_list .inner .block_textarea .page_back a:hover {
  background: #000;
  color: #FFF;
}
.block_event_list .inner .block_textarea .page_back a:hover .arrow svg {
  fill: #FFF;
}
.block_event_list .inner .block_textarea .page_back a .t {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.block_event_list .inner .block_textarea .page_back a .arrow {
  margin-left: 10px;
}
.block_event_list .inner .block_textarea .page_back a .arrow svg {
  width: 20px;
  height: 20px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-270deg);
}

/*----------------------------------------------------
.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: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  background: #FFF;
  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: #000;
  color: #FFF;
}
.block_pager .page-numbers.dots {
  border: none;
  background: none;
  color: #000;
}
.block_pager .page-numbers:hover {
  background: #000;
  color: #FFF;
}
.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: #000;
  transition: all 0.5s 0s ease;
  text-indent: -9999px;
  background: #FFF url(../img/common/arrow_prev.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: #FFF url(../img/common/arrow_prev.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.prev:hover,
.block_pager .prev a:hover {
  background: #000 url(../img/common/arrow_prev_w.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: #FFF 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: #FFF url(../img/common/arrow_next.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: #FFF url(../img/common/arrow_next.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.next:hover,
.block_pager .next a:hover {
  background: #000 url(../img/common/arrow_next_w.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: #FFF 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: #FFF;
  border-radius: 50px;
  margin: 0 10px;
  color: #000;
  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: #FFF;
}
.block_pager a.list:hover {
  background: #000;
  color: #FFF;
}

/*----------------------------------------------------
 block_main_event_detail
--------------------------------------------------- */
.block_main_event_detail {
  position: relative;
  padding-top: 10%;
  padding-bottom: 10%;
  background: #FFF;
}
.block_main_event_detail .header {
  margin-bottom: 80px;
}
@media (max-width: 896px) {
  .block_main_event_detail .header {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column; /* row row-reverse column */
    margin-bottom: 40px;
    padding-top: 40px;
  }
}
.block_main_event_detail .header .image_area {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_main_event_detail .header .image_area {
    width: 100%;
  }
}
.block_main_event_detail .header .image_area .slide .s_column figure {
  overflow: hidden;
}
.block_main_event_detail .header .image_area .slide .s_column figure .img_wrap {
  position: relative;
  padding-top: 75%;
}
.block_main_event_detail .header .image_area .slide .s_column figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.block_main_event_detail .header .textarea {
  margin: 0 20%;
  position: relative;
  z-index: 1;
}
@media (max-width: 896px) {
  .block_main_event_detail .header .textarea {
    width: 100%;
    left: 0;
    top: 0;
    margin: 0 20px;
    padding-top: 0px;
    padding-right: 0%;
  }
}
.block_main_event_detail .header .textarea time {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
@media (max-width: 896px) {
  .block_main_event_detail .header .textarea time {
    font-size: 60px;
    margin-bottom: 0px;
  }
}
.block_main_event_detail .header .textarea time span.bg {
  background: #FFF;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 10px;
}
@media (max-width: 896px) {
  .block_main_event_detail .header .textarea time span.bg {
    padding: 0 20px;
  }
}
.block_main_event_detail .header .textarea time small {
  font-size: 30px;
  margin-left: 10px;
}
@media (max-width: 896px) {
  .block_main_event_detail .header .textarea time small {
    font-size: 18px;
  }
}
.block_main_event_detail .header .textarea time .line {
  border-bottom: 1px #000 solid;
  width: 50px;
  display: inline-block;
  margin: 0 10px;
}
.block_main_event_detail .header .textarea .c_title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 896px) {
  .block_main_event_detail .header .textarea .c_title {
    font-size: 28px;
    line-height: 1.5;
  }
}
.block_main_event_detail .header .textarea .c_title span {
  background: #FFF;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 10px;
}
@media (max-width: 896px) {
  .block_main_event_detail .header .textarea .c_title span {
    padding: 0 20px;
  }
}
.block_main_event_detail .inner {
  margin: 0 20%;
  position: relative;
}
@media (max-width: 896px) {
  .block_main_event_detail .inner {
    margin: 0 20px;
  }
}
.block_main_event_detail .inner .guest_list {
  margin-bottom: 20px;
  margin-top: 80px;
}
@media (max-width: 896px) {
  .block_main_event_detail .inner .guest_list {
    margin-top: 40px;
  }
}
.block_main_event_detail .inner .guest_list .g_title {
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 42px;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_main_event_detail .inner .guest_list .g_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.block_main_event_detail .inner .guest_list .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 896px) {
  .block_main_event_detail .inner .guest_list .list {
    margin-bottom: 40px;
  }
}
.block_main_event_detail .inner .guest_list .list .no_entry {
  font-size: 14px;
}
.block_main_event_detail .inner .guest_list .list .column {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 5%;
}
.block_main_event_detail .inner .guest_list .list .column:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 896px) {
  .block_main_event_detail .inner .guest_list .list .column {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .block_main_event_detail .inner .guest_list .list .column:nth-child(3n) {
    margin-right: 4%;
  }
  .block_main_event_detail .inner .guest_list .list .column:nth-child(2n) {
    margin-right: 0%;
  }
}
.block_main_event_detail .inner .guest_list .list .column a {
  display: block;
  position: relative;
}
.block_main_event_detail .inner .guest_list .list .column a:hover figure .img_wrap {
  transform: scale3d(1.1, 1.1, 1.1);
}
.block_main_event_detail .inner .guest_list .list .column a:hover .name span {
  background: #000;
  color: #FFF;
}
.block_main_event_detail .inner .guest_list .list .column a figure {
  overflow: hidden;
  background: linear-gradient(0deg, #ffd900 0%, #ffef3f 7%, #c7dc68 14%, #68be8d 21%, #239dda 28%, #5a79ba 35%, #9079ad 42%, #e7609e 49%, #e95464 56%, #ed6d3d 70%, #f49d43 77%, #ffd900 100%);
  background-size: 500% 500%;
  animation-name: gradation_bg;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
.block_main_event_detail .inner .guest_list .list .column a figure .img_wrap_src {
  position: relative;
  padding-top: 100%;
}
.block_main_event_detail .inner .guest_list .list .column a figure .img_wrap_src img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_main_event_detail .inner .guest_list .list .column a figure .img_wrap_src img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.5s ease;
}
.block_main_event_detail .inner .guest_list .list .column a figure .img_wrap {
  position: relative;
  padding-top: 100%;
  transition: all 0.6s 0s ease;
}
.block_main_event_detail .inner .guest_list .list .column a figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
}
.block_main_event_detail .inner .guest_list .list .column a figure .img_wrap span.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.5s ease;
}
.block_main_event_detail .inner .guest_list .list .column a .name {
  position: absolute;
  bottom: -10px;
  right: -10px;
}
.block_main_event_detail .inner .guest_list .list .column a .name span {
  display: inline-block;
  line-height: 1.5;
  padding: 10px 20px;
  border: 1px #000 solid;
  background: #FFF;
  font-size: 14px;
}
@media (max-width: 896px) {
  .block_main_event_detail .inner .guest_list .list .column a .name span {
    padding: 5px 10px;
    font-size: 10px;
  }
}

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

.block_modal .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_modal .area {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50vw;
  margin-left: -25vw;
  background: #FFF;
  transition: all 0.5s 0s ease;
  transform: translate(0, -50%);
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_modal .area {
    width: 90vw;
    margin-left: -45vw;
  }
}
.block_modal .area .column {
  padding: 60px;
}
@media (max-width: 896px) {
  .block_modal .area .column {
    padding: 60px 20px 20px 20px;
  }
}
.block_modal .area .column.view {
  display: block;
}
.block_modal .area .column {
  position: relative;
}
.block_modal .area .column::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgb(228, 223, 197);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
@media (max-width: 896px) {
  .block_modal .area .column::after {
    bottom: 20px;
  }
}
.block_modal .area .column .inner {
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.block_modal .area .column .inner figure {
  margin-bottom: 20px;
  overflow: hidden;
}
.block_modal .area .column .inner .textarea {
  font-size: 14px;
  padding-bottom: 100px;
}
@media (max-width: 896px) {
  .block_modal .area .column .inner .textarea {
    font-size: 12px;
  }
}
.block_modal .area .column .inner .textarea .c_title {
  font-size: 24px;
  margin-bottom: 20px;
}
.block_modal .area .column .inner .textarea ul.sns {
  letter-spacing: -0.4em;
  margin-bottom: 20px;
}
.block_modal .area .column .inner .textarea ul.sns li {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: normal;
  margin: 0 2px;
}
.block_modal .area .column .inner .textarea ul.sns li a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: #ed726b;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  transition: all 0.5s 0s ease;
}
.block_modal .area .column .inner .textarea ul.sns li a svg {
  fill: #FFF;
  width: 15px;
  height: auto;
}
.block_modal .area .column .inner .textarea ul.sns li a:hover {
  background: #FFF;
}
.block_modal .area .column .inner .textarea ul.sns li a:hover svg {
  fill: #ed726b;
}
.block_modal a.close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: block;
  z-index: 2;
}
@media (max-width: 896px) {
  .block_modal a.close {
    top: 10px;
  }
}
.block_modal a.close::before, .block_modal a.close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 27px; /* 棒の高さ */
  background: #0a97d9; /* バツ印の色 */
}
.block_modal a.close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.block_modal a.close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*----------------------------------------------------
 block_booth
--------------------------------------------------- */
.block_booth {
  position: relative;
  padding-top: 10%;
  padding-bottom: 10%;
  background: #eee;
}
.block_booth .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}
@media (max-width: 896px) {
  .block_booth .inner {
    padding: 0 20px;
  }
}
.block_booth .inner figure {
  margin-bottom: 20px;
}
.block_booth .inner .c_title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.block_booth .inner .entry {
  font-size: 16px;
  letter-spacing: 0.05em;
}

/*----------------------------------------------------
 block_youtube_stream
--------------------------------------------------- */
.block_youtube_stream {
  position: relative;
  padding-bottom: 15%;
}
.block_youtube_stream .inner {
  margin: 0 20%;
  position: relative;
}
@media (max-width: 896px) {
  .block_youtube_stream .inner {
    margin: 0 20px;
  }
}
.block_youtube_stream .inner .in {
  background: #FFF;
  border-radius: 40px;
  padding: 40px;
}
@media (max-width: 896px) {
  .block_youtube_stream .inner .in {
    padding: 20px;
  }
}
.block_youtube_stream .inner .in p {
  display: block;
  font-size: 16px;
  padding-top: 10px;
}
.block_youtube_stream .inner .in .movie_area {
  position: relative;
  padding-top: 56.25%;
}
.block_youtube_stream .inner .in .movie_area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.coming {
  font-size: 26px;
  font-weight: 700;
  font-family: "DM Sans", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media (max-width: 896px) {
  .coming {
    font-size: 16px;
  }
}/*# sourceMappingURL=common.css.map */