@charset "UTF-8";
/* ========================================
リセットCSS
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

span {
  font: inherit;
  letter-spacing: inherit;
}

ul,
ol {
  list-style: none;
}

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

address {
  font: inherit;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  vertical-align: middle;
}

button {
  appearance: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* ========================================
変数・関数
======================================== */
:root {
  --color-black: #050505;
  --color-white: #fafafa;
  --color-red: #FF001C;
  --color-yellow: #FFFF00;
  --color-blue: #0000FF;
  --font-ja-400: TazuganeGothicStdN-Regular, sans-serif;
  --font-ja-500: TazuganeGothicStdN-Medium, sans-serif;
  --font-ja-700: TazuganeGothicStdN-Bold, sans-serif;
  --font-en-400: HelveticaNowText-Regular, TazuganeGothicStdN-Regular, sans-serif;
  --font-en-500: HelveticaNowText-Medium, TazuganeGothicStdN-Medium, sans-serif;
  --font-en-700: HelveticaNowText-Bold, TazuganeGothicStdN-Bold, sans-serif;
  --font-en-400-it: HelveticaNowText-It, TazuganeGothicStdN-Regular, sans-serif;
  --font-en-500-it: HelveticaNowText-MdIt, TazuganeGothicStdN-Medium, sans-serif;
  --font-en-700-it: HelveticaNowText-BdIt, TazuganeGothicStdN-Bold sans-serif;
  --z-index-menubtn: 11;
  --z-index-menu: 10;
  --z-index-menuFixBottom: 9;
  --z-index-revieModal: 12;
  --pc-mg: 64px;
  --pc-mg-half: 32px;
  --sp-mg: 24px;
  --sp-mg-half: 12px;
}

/* ========================================
mixin
======================================== */
/* ========================================
ベースCSS
======================================== */
body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: sans-serif;
  font-size: 16px;
  text-size-adjust: 100%;
}
body:not(.home) {
  opacity: 0;
  animation: pageFadein 1.6s forwards;
}

@keyframes pageFadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.ja {
  font-family: var(--font-ja-400);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .ja {
    font-size: 15px;
  }
}
.ja *,
.ja *::before,
.ja *::after {
  letter-spacing: 0.025em;
}

.en {
  font-family: var(--font-en-400);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

/* CLEAR-FIX */
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* ========================================
モジュール・パーツ m-
======================================== */
.m-inner {
  width: calc(100% - var(--pc-mg) * 2);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .m-inner {
    width: calc(100% - var(--sp-mg) * 2);
  }
}

.m-textBox p + p {
  margin-top: 1.5em;
}

@media (hover: hover) {
  .m-hover-opacityBox a {
    transition: opacity 0.3s;
  }
  .m-hover-opacityBox a:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .m-hover-opacity {
    transition: opacity 0.3s;
  }
  .m-hover-opacity:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .en .m-firstCont-baseText {
    margin-top: -0.25em;
  }
  .ja .m-firstCont-baseText {
    margin-top: -0.38em;
  }
}
.m-firstCont-025 {
  margin-top: -0.25em;
}

.m-mt-title_text {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .m-mt-title_text {
    margin-top: 30px;
  }
}

.m-overflow-hidden {
  overflow: hidden;
}

.m-boderFull {
  position: relative;
}
.m-boderFull::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
}

.m-link-arrow {
  display: inline-flex;
  padding-left: 34px;
  min-height: 18px;
  line-height: 1;
  background: url(../image/common/icon/arrow_right.svg) center left/auto no-repeat;
}
@media screen and (max-width: 767px) {
  .m-link-arrow {
    padding-left: 30px;
    padding-bottom: 1px;
    background-size: auto 15px;
  }
}
@media (hover: hover) {
  .m-link-arrow {
    transition: background 0.3s;
  }
  .m-link-arrow:hover {
    background-position: center left 3px;
  }
}
@media screen and (max-width: 767px) {
  .m-link-arrow-bassOut img {
    transform: translateY(2px);
  }
}

.m-link-underLine {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (hover: hover) {
  .m-link-underLine:hover {
    text-decoration: none;
  }
}

.m-link-underLineBox a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (hover: hover) {
  .m-link-underLineBox a:hover {
    text-decoration: none;
  }
}

.m-btn-border {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  border: 1px solid var(--color-white);
  text-align: center;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .m-btn-border {
    height: 48px;
  }
}
.en .m-btn-border {
  font-family: var(--font-en-500);
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .en .m-btn-border {
    font-size: 18px;
  }
}
.ja .m-btn-border {
  font-family: var(--font-ja-500);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .ja .m-btn-border {
    font-size: 18px;
  }
}
.m-btn-border::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--color-white);
  transform-origin: left center;
  transform: scale(0, 1);
  transition: 0.2s ease;
}
@media screen and (max-width: 767px) {
  .m-btn-border img {
    transform: scale(0.75);
  }
}
.m-btn-border:hover {
  color: var(--color-black);
}
.m-btn-border:hover::after {
  transform: scale(1, 1);
}
@media screen and (min-width: 768px) {
  .m-btn-border-middle {
    height: 52px;
  }
}
.m-btn-border-min {
  height: 48px;
}
.en .m-btn-border-min {
  font-size: 18px;
}
.ja .m-btn-border-min {
  font-size: 18px;
}
.m-btn-border-imgBottom img {
  transform: translateY(5%);
}
@media screen and (max-width: 767px) {
  .m-btn-border-imgBottom img {
    transform: translateY(5%) scale(0.75);
  }
}
.m-btn-white {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  border: 1px solid var(--color-white);
  color: var(--color-black);
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .m-btn-white {
    height: 48px;
  }
}
.en .m-btn-white {
  font-family: var(--font-en-500);
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .en .m-btn-white {
    font-size: 18px;
  }
}
.ja .m-btn-white {
  font-family: var(--font-ja-500);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .ja .m-btn-white {
    font-size: 18px;
  }
}
.m-btn-white::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.m-btn-white::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--color-black);
  transform-origin: left center;
  transform: scale(0, 1);
  transition: 0.2s ease;
}
.m-btn-white:hover {
  color: var(--color-white);
}
.m-btn-white:hover::after {
  transform: scale(1, 1);
}
@media screen and (min-width: 768px) {
  .m-btn-white-middle {
    height: 52px;
  }
}
.m-btn-white-min {
  height: 48px;
}
.en .m-btn-white-min {
  font-size: 18px;
}
.ja .m-btn-white-min {
  font-size: 18px;
}
.m-btn-white-imgBottom img {
  transform: translateY(5%);
}
@media screen and (max-width: 767px) {
  .m-btn-white-imgBottom img {
    transform: translateY(5%) scale(0.75);
  }
}
.m-btn_icon {
  margin-right: 11px;
  vertical-align: middle;
}

.m-heightFull {
  height: 100vh;
}
@media (hover: hover) {
  .m-heightFull {
    height: 100vh !important;
  }
}

.m-horizontalScroll {
  display: flex;
  align-items: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.m-horizontalScroll > * {
  display: inline-flex;
  align-items: center;
  animation: horizontalScroll 50s linear infinite;
}
@media screen and (max-width: 767px) {
  .m-horizontalScroll > * {
    animation-duration: 30s;
  }
}
.m-horizontalScroll img {
  max-width: none;
}

@keyframes horizontalScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.m-list-boder li {
  padding-left: 22px;
  position: relative;
}
.m-list-boder li + li {
  margin-top: 1em;
}
.m-list-boder li::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  left: 0;
}
.en .m-list-boder li::before {
  top: 12px;
}
.ja .m-list-boder li::before {
  top: 13px;
}
@media screen and (max-width: 767px) {
  .ja .m-list-boder li::before {
    top: 12px;
  }
}
@media screen and (min-width: 768px) {
  .m-list-boder-marginMin li + li {
    margin-top: 0.5em;
  }
}

.m-caption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
}

.m-moreTextBox {
  display: block !important;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .en .m-moreTextBox.is-hide {
    height: 120px;
    min-height: 120px;
  }
  .ja .m-moreTextBox.is-hide {
    height: 132px;
    min-height: 132px;
  }
}
@media screen and (max-width: 767px) {
  .en .m-moreTextBox-large.is-hide {
    height: 240px;
    min-height: 240px;
  }
  .ja .m-moreTextBox-large.is-hide {
    height: 264px;
    min-height: 264px;
  }
}

.m-moreTextBtn {
  display: inline-flex;
  margin-top: 10px;
  padding-left: 23px;
  min-height: 18px;
  line-height: 1;
  position: relative;
}
.m-moreTextBtn::before, .m-moreTextBtn::after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .m-moreTextBtn::before, .m-moreTextBtn::after {
    top: calc(50% - 2px);
  }
}
.m-moreTextBtn::after {
  transform: rotate(90deg);
}

.ja .m-jaTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  padding: 2px 3px 0 4px;
  margin-top: 12px;
  max-inline-size: max-content;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ja-500);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.0025em;
}
@media screen and (max-width: 767px) {
  .ja .m-jaTitle {
    height: 20px;
    margin-top: 8px;
    font-size: 12px;
  }
}
.ja .m-jaTitle-mtlarge {
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .ja .m-jaTitle-mtlarge {
    margin-top: 12px;
  }
}
.ja .m-jaTitleSide, .ja .m-jaTitleSide-largeMt {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  padding: 2px 3px 0 3px;
  margin-top: 15px;
  margin-left: 12px;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ja-500);
  font-size: 14px;
  line-height: 1;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .ja .m-jaTitleSide, .ja .m-jaTitleSide-largeMt {
    display: flex;
    height: 20px;
    max-inline-size: max-content;
    margin-top: 12px;
    margin-left: 0;
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .ja .m-jaTitleSide-largeMt {
    margin-top: 20px;
  }
}
.ja .m-jaMainTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  padding: 3px 4px 0 4px;
  margin-top: 14px;
  max-inline-size: max-content;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ja-500);
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .ja .m-jaMainTitle {
    height: 22px;
    margin-top: 8px;
    font-size: 14px;
  }
}

.m-imgView {
  position: relative;
  background: #333;
  overflow: hidden;
}
.m-imgView::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #666;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  transform-origin: left center;
  transform: scale(0, 1);
}
@keyframes imgFadeIn {
  0% {
    transform: scale(0, 1);
    transform-origin: left center;
  }
  38% {
    transform: scale(1, 1);
    transform-origin: left center;
  }
  62% {
    transform: scale(1, 1);
    transform-origin: right center;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: right center;
  }
}
.m-imgView img {
  opacity: 0;
  transform-origin: right top;
  transform: scale(1.2);
}
@keyframes imgFadeIn_img {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.m-imgView.is-on::before {
  animation: imgFadeIn 0.6s 0.4s linear 1 forwards;
}
.m-imgView.is-on img {
  animation: imgFadeIn_img 0.8s 0.4s linear 1 forwards;
}
.m-imgView + .m-caption {
  opacity: 0;
  animation: captionFadeIn 0.1s 0.5s forwards;
}
@keyframes captionFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.m-footBack {
  margin-top: 84px;
}
@media screen and (max-width: 767px) {
  .m-footBack {
    margin-top: 44px;
  }
}
.m-footBack a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .m-footBack a {
    height: 48px;
  }
}
@media screen and (max-width: 767px) {
  .m-footBack img {
    transform: scale(0.64285);
  }
}

.m-col2ContWidth {
  width: calc((100% - 48px) / 2);
}
@media screen and (max-width: 767px) {
  .m-col2ContWidth {
    width: 100%;
  }
}

.m-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.m-verticalImg {
  padding-top: 66.5757162347%;
  position: relative;
}
.m-verticalImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.m-verticalImg-left {
  padding-top: 66.5757162347%;
  position: relative;
}
.m-verticalImg-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  object-position: left top;
}

.m-verticalImg-right {
  padding-top: 66.5757162347%;
  position: relative;
}
.m-verticalImg-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  object-position: right top;
}

/* ========================================
補助的に使用 u-
======================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (min-width: 1001px) {
  .u-spTb {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

@media screen and (max-width: 1000px) {
  .u-pcTb {
    display: none !important;
  }
}

.u-ib {
  display: inline-block !important;
}

.u-text-center {
  text-align: center !important;
}
.u-text-left {
  text-align: left !important;
}
.u-text-right {
  text-align: right !important;
}

.u-color-black {
  color: var(--color-black) !important;
}
.u-color-white {
  color: var(--color-white) !important;
}

.u-font-en {
  font-family: var(--font-en-400) !important;
}
.u-font-ja {
  font-family: var(--font-ja-400) !important;
}
.en .u-font-bold {
  font-family: var(--font-en-500) !important;
}
.ja .u-font-bold {
  font-family: var(--font-ja-500) !important;
}

.u-w100p {
  width: 100%;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.en .u-bold500 {
  font-family: var(--font-en-500) !important;
}
.ja .u-bold500 {
  font-family: var(--font-ja-500) !important;
}

.en .u-bold700 {
  font-family: var(--font-en-700) !important;
}
.ja .u-bold700 {
  font-family: var(--font-ja-700) !important;
}

.u-italic400 {
  font-family: var(--font-en-400-it) !important;
}

.u-italic500 {
  font-family: var(--font-en-500-it) !important;
}

.u-italic700 {
  font-family: var(--font-en-700-it) !important;
}

.u-underLine {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーー
ヘッダー header
メニュー menu
ーーーーーーーーーーーーーーーーーーーーーーーーー */
/* ========================================
ヘッダー header
======================================== */
.header_logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.header_logo::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  animation: header_logo 0.2s 0.6s linear 1 forwards;
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: right center;
}
@keyframes header_logo {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0, 1);
  }
}
.header_logo img {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .header_logo img {
    width: 133px;
  }
}
.header_bottomFix {
  display: flex;
  width: 100%;
  height: 64px;
  background: var(--color-black);
  border-top: 1px solid var(--color-white);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: var(--z-index-menuFixBottom);
  transform: translateY(100%);
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .header_bottomFix {
    height: 48px;
  }
}
.header_bottomFix.is-show {
  transform: translateY(0);
}
.header_bottomFix > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.3333333333%;
  height: 100%;
  padding-top: 6px;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header_bottomFix > a {
    padding-top: 3px;
  }
  .header_bottomFix > a + a {
    border-left: 1px solid var(--color-white);
  }
  .header_bottomFix > a img {
    width: auto;
    height: 18px;
  }
}
@media (hover: hover) {
  .header_bottomFix > a {
    transition: 0.3s;
  }
  .header_bottomFix > a:hover {
    background-color: var(--color-white);
  }
}

/* ========================================
メニュー menu
======================================== */
.menuBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px 0;
  width: 84px;
  height: 84px;
  background: var(--color-black);
  border-left: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-index-menubtn);
}
@media screen and (max-width: 767px) {
  .menuBtn {
    width: 56px;
    height: 56px;
    gap: 5px 0;
  }
}
@media (hover: hover) {
  .menuBtn {
    transition: 0.3s;
  }
  .menuBtn:hover {
    background-color: var(--color-white) !important;
  }
  .is-menuActive .menuBtn:hover {
    background-color: var(--color-black) !important;
  }
  .menuBtn:hover span {
    background-color: var(--color-black) !important;
  }
  .is-menuActive .menuBtn:hover span {
    background-color: var(--color-white) !important;
  }
}
.menuBtn span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-white);
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .menuBtn span {
    width: 18px;
  }
}
.is-menuActive .menuBtn {
  border-color: var(--color-black);
  background: var(--color-white);
}
.is-menuActive .menuBtn span {
  background: var(--color-black);
}
.is-menuActive .menuBtn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .is-menuActive .menuBtn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
}
.is-menuActive .menuBtn span:nth-child(2) {
  opacity: 0;
}
.is-menuActive .menuBtn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .is-menuActive .menuBtn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.menu {
  width: 100%;
  height: 100%;
  background: var(--color-white);
  position: fixed;
  bottom: calc(100% + 100px);
  left: 0;
  z-index: var(--z-index-menu);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: transform 0.4s;
}
.menu::-webkit-scrollbar {
  display: none;
}
.is-menuActive .menu {
  transform: translateY(calc(100% + 100px));
}
.menu::before {
  content: "";
  display: block;
  height: 37.5555555556%;
  background: url(../image/common/menu/menu_mesh.svg) center bottom/auto repeat;
}
@media screen and (max-width: 1000px) {
  .menu::before {
    height: 21.897810219%;
  }
}
@media screen and (max-width: 767px) {
  .menu::before {
    background-size: 975px auto;
  }
}
.menu_language {
  display: flex;
  align-items: center;
  gap: 0 10px;
  padding: 0 5px;
  height: 32px;
  background: var(--color-black);
  border: 1px solid #707070;
  line-height: 1;
  position: absolute;
  top: 25px;
  left: var(--pc-mg-half);
}
@media screen and (max-width: 767px) {
  .menu_language {
    height: 25px;
    padding: 0 4px 1px;
    border: 0;
    top: 15px;
    left: 20px;
  }
}
.menu_language * {
  display: block;
}
.menu_language *:nth-child(1) {
  order: 1;
}
.menu_language *:nth-child(2) {
  order: 3;
}
.menu_language::before {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: var(--color-white);
  order: 2;
}
@media screen and (max-width: 767px) {
  .menu_language::before {
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .menu_language img {
    height: 16px;
  }
}
.menu_container {
  display: flex;
  flex-direction: column;
  min-height: 62.4444444444%;
  padding: 32px var(--pc-mg-half) 36px;
}
@media screen and (max-width: 1000px) {
  .menu_container {
    min-height: 78.102189781%;
    padding: 28px 20px 24px;
  }
}
.menu_primaryNav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .menu_primaryNav {
    margin-bottom: 0;
    gap: 15px 20px;
  }
}
.menu_primaryNav a {
  display: flex;
  align-items: flex-start;
  gap: 0 8px;
  height: 52px;
}
@media screen and (max-width: 767px) {
  .menu_primaryNav a {
    height: 33px;
    gap: 0 6px;
  }
}
.menu_primaryNav a path {
  transition: 0.3s;
}
.menu_primaryNav a:hover path {
  fill: var(--color-black);
}
.en .menu_primaryNav {
  max-width: 1120px;
}
.ja .menu_primaryNav {
  max-width: 1280px;
}
.menu_primaryNav ._jaText {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  padding: 2px 5px 0 4px;
  background: var(--color-black);
  letter-spacing: 0;
  transform: translateY(21px);
  font-family: var(--font-ja-500);
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .menu_primaryNav ._jaText {
    height: 22px;
    font-size: 10px;
    line-height: 0.9;
    transform: translateY(4px);
  }
}
.menu_secondaryNav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px 41px;
  max-width: 540px;
  margin-top: auto;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .menu_secondaryNav {
    gap: 18px 35px;
    margin-top: 60px;
  }
}
.menu_secondaryNav a {
  display: inline-block;
  line-height: 1;
}
.ja .menu_secondaryNav a {
  color: var(--color-black);
  font-family: var(--font-ja-500);
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .menu_secondaryNav li:not(:nth-last-child(2), :nth-last-child(1)) {
    width: 100%;
  }
  .menu_secondaryNav li:first-child img {
    height: 28.4px;
  }
  .menu_secondaryNav li:not(:first-child) img {
    height: 20px;
  }
}
.ja .menu_secondaryNav li:nth-child(1) a {
  font-size: 24px;
}
.menu_secondaryNav li:nth-child(3), .menu_secondaryNav li:nth-child(5) {
  position: relative;
}
.menu_secondaryNav li:nth-child(3)::before, .menu_secondaryNav li:nth-child(5)::before {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: var(--color-black);
  position: absolute;
  top: 0;
  right: calc(100% + 20px);
}
@media screen and (max-width: 767px) {
  .menu_secondaryNav li:nth-child(3)::before, .menu_secondaryNav li:nth-child(5)::before {
    height: 16px;
    right: calc(100% + 16px);
  }
}
@media screen and (min-width: 768px) {
  .ja .menu_secondaryNav li:nth-child(3)::before, .ja .menu_secondaryNav li:nth-child(5)::before {
    top: -2px;
  }
}
@media screen and (max-width: 767px) {
  .menu_secondaryNav li:nth-child(3)::before {
    display: none;
  }
}
.menu_sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 20px;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .menu_sns {
    margin-top: 19px;
  }
}
.menu_links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 50px;
  position: absolute;
  right: 32px;
  bottom: 36px;
}
@media screen and (max-width: 1000px) {
  .menu_links {
    gap: 0 28px;
    margin-top: 64px;
    position: static;
  }
  .menu_links li:nth-child(1) img {
    width: auto;
    height: 76px;
  }
  .menu_links li:nth-child(2) img {
    width: auto;
    height: 55px;
  }
  .menu_links li:nth-child(3) img {
    width: auto;
    height: 30px;
  }
}

/* ========================================
footer
======================================== */
.footer {
  margin-top: 84px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 16px;
  }
}
.footer_newsLettre {
  border-top: 1px solid var(--color-white);
  padding-top: 84px;
}
@media screen and (max-width: 767px) {
  .footer_newsLettre {
    padding-top: 40px;
  }
}
.footer_newsLettre_read {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .footer_newsLettre_read {
    margin-top: 24px;
  }
}
.footer_newsLettre_form {
  display: flex;
  gap: 0 16px;
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .footer_newsLettre_form {
    margin-top: 30px;
    gap: 0 8px;
  }
}
.footer_newsLettre_form input {
  width: 464px;
  height: 56px;
  padding: 0px 24px;
  border: 1px solid var(--color-white);
  background: none;
  color: var(--color-white);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .footer_newsLettre_form input {
    flex: 1;
    height: 40px;
    padding: 0 13px;
    font-size: 14px;
  }
}
.footer_newsLettre_form input::placeholder {
  color: var(--color-white);
}
.footer_newsLettre_form button[type=submit] {
  width: 168px;
  height: 56px;
  padding-bottom: 2px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .footer_newsLettre_form button[type=submit] {
    width: 80px;
    height: 40px;
  }
  .footer_newsLettre_form button[type=submit] img {
    width: auto;
    height: 15px;
  }
}
.footer_newsLettre_form button[type=submit]:hover {
  background-color: transparent;
}
.footer_container {
  border-top: 1px solid var(--color-white);
  margin: 84px 0 90px;
  padding-top: 84px;
}
@media screen and (max-width: 767px) {
  .footer_container {
    margin: 43px 0 44px;
    padding-top: 40px;
  }
}
.footer_container > .m-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 44px 0;
}
@media screen and (min-width: 768px) {
  .footer_container > .m-inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer_container > .m-inner {
    gap: 46px 0;
  }
}
.footer_logo {
  transform: translateX(calc(var(--pc-mg) * -1));
}
@media screen and (max-width: 767px) {
  .footer_logo {
    width: 182px;
    transform: translateX(calc(var(--sp-mg) * -1));
  }
}
.footer_box1 {
  flex: 1;
  max-width: 864px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 34px 40px;
}
@media screen and (max-width: 1200px) {
  .footer_box1 {
    flex-direction: column;
    flex: none;
  }
}
@media screen and (max-width: 767px) {
  .footer_box1 {
    width: 100%;
  }
}
.footer_nav {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .footer_nav {
    width: 100%;
  }
}
.footer_navPrimary {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
@media screen and (max-width: 767px) {
  .footer_navPrimary {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px 35px;
  }
}
.en .footer_navPrimary li {
  line-height: 0;
}
.ja .footer_navPrimary li {
  font-family: var(--font-en-500);
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .ja .footer_navPrimary li {
    font-size: 16px;
  }
}
.footer_navPrimary li:nth-child(1) {
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .footer_navPrimary li:nth-child(1) {
    width: 100%;
    margin-bottom: 0;
  }
}
.en .footer_navPrimary li:nth-child(1) img {
  width: auto;
  height: 28px;
}
.ja .footer_navPrimary li:nth-child(1) {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .ja .footer_navPrimary li:nth-child(1) {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer_navPrimary li:nth-child(2) img {
    width: auto;
    height: 16.4px;
  }
}
@media screen and (max-width: 767px) {
  .footer_navPrimary li:nth-child(3) {
    position: relative;
  }
  .footer_navPrimary li:nth-child(3)::before {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: var(--color-white);
    position: absolute;
    top: 0;
    left: -16px;
  }
}
@media screen and (max-width: 767px) {
  .footer_navPrimary li:nth-child(3) img {
    width: auto;
    height: 20.2px;
  }
}
.footer_snsTtl {
  margin: 40px 0 15px;
  font-family: var(--font-en-500);
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer_snsTtl {
    margin: 37px 0 9px;
    font-size: 14px;
  }
}
.footer_sns {
  display: flex;
  align-items: center;
  gap: 0 24px;
}
@media screen and (max-width: 767px) {
  .footer_sns {
    gap: 0 20px;
  }
  .footer_sns img {
    width: auto;
    height: 28px;
  }
}
.footer_box2 {
  display: flex;
  flex-direction: column;
  gap: 36px 0;
  width: 416px;
}
@media screen and (max-width: 767px) {
  .footer_box2 {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer_notes {
    font-size: 14px;
  }
}
.footer_links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 50px;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .footer_links {
    gap: 0 28px;
    margin-top: 30px;
  }
  .footer_links li:nth-child(1) img {
    width: auto;
    height: 76px;
  }
  .footer_links li:nth-child(2) img {
    width: auto;
    height: 55px;
  }
  .footer_links li:nth-child(3) img {
    width: auto;
    height: 30px;
  }
}
.footer_copyright {
  display: block;
  font-family: var(--font-en-400);
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    margin-top: 18px;
    font-size: 14px;
  }
}

/* ========================================
共通で使うレイアウト l-
======================================== */
.l-col2 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 48px;
}
.l-col2 > * {
  width: calc((100% - 48px) / 2);
}
@media screen and (max-width: 767px) {
  .l-col2 > * {
    width: 100%;
  }
}

.l-col2-typeB {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 48px;
}
.l-col2-typeB > * {
  width: calc((100% - 48px) / 2);
}
.l-col2-typeB > *:nth-child(1) {
  flex: 1;
}
.l-col2-typeB > *:nth-child(2) {
  width: 51.8292682927%;
}
@media screen and (max-width: 767px) {
  .l-col2-typeB > *:nth-child(2) {
    width: 100%;
  }
}

.l-programList {
  opacity: 0;
  animation: pageFadein 0.1s 0.8s forwards;
}
@keyframes pageFadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.l-programList a {
  display: block;
}
@media (hover: hover) {
  .l-programList a .l-programList_imgBox img {
    transition: 0.3s;
  }
  .l-programList a:hover .l-programList_img img {
    transform: scale(1.06);
  }
}
.l-programList_imgBox {
  position: relative;
}
.l-programList_img {
  text-align: center;
  overflow: hidden;
}
.l-programList_img img {
  width: 100%;
}
.l-programList_img.-vertical {
  width: 65%;
  margin: 0 auto;
}
.l-programList_num {
  line-height: 1;
  position: absolute;
  right: 16px;
  bottom: 0;
  z-index: 2;
  transform: translateY(50%);
}
.l-programList_num img {
  width: auto;
  height: min(4.1666666667vw, 60px);
}
@media screen and (max-width: 767px) {
  .l-programList_num img {
    height: min(12.5333333333vw, 56px);
  }
}
.l-programList_contTtlEn {
  margin-top: 35px;
  font-family: var(--font-en-500);
  font-size: 36px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-programList_contTtlEn {
    margin-top: 25px;
  }
}
.l-programList_contTtlJa {
  display: block;
  margin-top: 8px;
  font-family: var(--font-ja-500);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-programList_contTtlJa {
    margin-top: 0px;
    font-size: 16px;
  }
}
.l-programList_thema {
  margin-top: 5px;
  font-family: var(--font-en-500-it);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-programList_thema {
    margin-bottom: 14px;
  }
}
.l-programList_venues {
  margin-top: 18px;
  padding-left: 20px;
  background: url(../image/common/icon/icon_venues.svg) left top 4px/auto no-repeat;
  font-size: 18px;
  line-height: 1.5;
}
.en .l-programList_venues {
  margin-top: 28px;
  font-family: var(--font-en-500);
}
@media screen and (max-width: 767px) {
  .en .l-programList_venues {
    margin-top: 24px;
  }
}
.ja .l-programList_venues {
  margin-top: 20px;
  font-family: var(--font-ja-500);
  background-position: left top 2px;
}
@media screen and (max-width: 767px) {
  .ja .l-programList_venues {
    margin-top: 24px;
    background-position: left top 1px;
    font-size: 16px;
  }
}
.l-programList_presented {
  font-family: var(--font-en-400);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}
.en .l-programList_presented {
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .en .l-programList_presented {
    margin-top: 7px;
  }
}
.ja .l-programList_presented {
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .ja .l-programList_presented {
    margin-top: 7px;
  }
}
.l-programList_type {
  margin-top: 20px;
  font-family: var(--font-en-400);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}
.l-programList_type::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background: #eee;
  border-radius: 50%;
  vertical-align: baseline;
  animation: typeFlashing 2.8s ease infinite forwards;
}
@keyframes typeFlashing {
  0%, 10% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  90%, 100% {
    opacity: 1;
  }
}
.l-programList_type.-closedToday::before {
  background: var(--color-red);
}
.l-programList_type.-crowded::before {
  background: var(--color-yellow);
}
.l-programList_type.-empty::before {
  background: var(--color-blue);
}

.l-programList02 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
}
@media screen and (max-width: 767px) {
  .l-programList02 {
    gap: 32px 12px;
  }
}
.l-programList02 > * {
  width: calc((100% - 48px) / 4);
}
@media screen and (max-width: 767px) {
  .l-programList02 > * {
    width: calc((100% - 12px) / 2);
  }
}
.l-programList02 a {
  display: block;
}
@media (hover: hover) {
  .l-programList02 a .l-programList02_imgBox img {
    transition: 0.3s;
  }
  .l-programList02 a:hover .l-programList02_imgBox img {
    transform: scale(1.06);
  }
}
.l-programList02_imgBox {
  width: 100%;
  padding-top: 66.6666666667%;
  position: relative;
  overflow: hidden;
  background: #333;
}
.l-programList02_imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.l-programList02_num {
  margin-top: 26px;
  line-height: 1;
}
.l-programList02_num img {
  width: auto;
  height: 23px;
}
@media screen and (max-width: 767px) {
  .l-programList02_num {
    margin-top: 18px;
  }
  .l-programList02_num img {
    height: 18px;
  }
}
.l-programList02_contTtl {
  margin-top: 18px;
  font-family: var(--font-en-500);
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .l-programList02_contTtl {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .ja .l-programList02_contTtl {
    margin-top: 15px;
  }
}
.l-programList02_contTtl ._jaTtl {
  display: block;
  margin-top: 6px;
  font-family: var(--font-ja-500);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-programList02_contTtl ._jaTtl {
    margin-top: 1px;
    font-size: 14px;
  }
}
.l-programList02_theme {
  font-size: 18px;
  margin-top: 5px;
  font-family: var(--font-en-500-it);
}
@media screen and (max-width: 767px) {
  .l-programList02_theme {
    font-size: 14px;
  }
}
.ja .l-programList02_theme {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .ja .l-programList02_theme {
    margin-top: 7px;
  }
}
.l-programList02_venues {
  margin-top: 10px;
  padding-left: 20px;
  background: url(../image/common/icon/icon_venues.svg) left top 4px/auto no-repeat;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-programList02_venues {
    font-size: 14px;
    background-size: auto 14px;
  }
}
.en .l-programList02_venues {
  letter-spacing: 0;
}
.ja .l-programList02_venues {
  background-position: left top 2px;
}
@media screen and (max-width: 767px) {
  .ja .l-programList02_venues {
    background-position: left top 1px;
  }
}
.l-programList02_program {
  margin-top: 20px;
  font-family: var(--font-en-400);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .l-programList02_program {
    margin: 12px 0;
    font-size: 14px;
  }
}
.l-programList02_program ._theme {
  font-family: var(--font-en-400-it);
}

.l-eventSlider_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 20px;
}
@media screen and (max-width: 767px) {
  .l-eventSlider_head {
    display: block;
  }
}
.l-eventSlider_headCont {
  flex: 1;
}
.l-eventSlider_headOther {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .l-eventSlider_headOther {
    margin-top: 10px;
  }
}
.l-eventSlider_read {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .l-eventSlider_read {
    margin-top: 22px;
  }
}
.l-eventSlider .splide__track {
  overflow: visible;
}
.l-eventSlider .splide__arrows {
  display: flex;
  justify-content: flex-end;
  gap: 0 14px;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .l-eventSlider .splide__arrows {
    gap: 0 12px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .l-eventSlider .splide__arrows.-spArrowTop2 {
    top: 14px;
  }
}
@media screen and (max-width: 767px) {
  .l-eventSlider .splide__arrows img {
    height: 15px;
  }
}
.l-eventSlider .splide__arrow[disabled] {
  opacity: 0;
}
.l-eventSlider .splide__arrow--prev img {
  transition: 0.3s;
}
.l-eventSlider .splide__arrow--prev:hover img {
  transform: translateX(-5px);
}
.l-eventSlider .splide__arrow--next img {
  transition: 0.3s;
}
.l-eventSlider .splide__arrow--next:hover img {
  transform: translateX(5px);
}

.l-eventsList a {
  display: block;
}
@media (hover: hover) {
  .l-eventsList a .l-eventsList_image img {
    transition: 0.3s;
  }
  .l-eventsList a:hover .l-eventsList_image img {
    transform: scale(1.1);
  }
}
.l-eventsList .-closed .l-eventsList_image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.l-eventsList .-closed .l-eventsList_image::after {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-white);
  padding: 0 4px;
  color: var(--color-black);
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
.en .l-eventsList .-closed .l-eventsList_image::after {
  content: "CLOSED";
  height: 24px;
  font-family: var(--font-en-500);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .en .l-eventsList .-closed .l-eventsList_image::after {
    height: 20px;
    font-size: 14px;
  }
}
.ja .l-eventsList .-closed .l-eventsList_image::after {
  content: "閉館";
  height: 25px;
  font-family: var(--font-ja-500);
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .ja .l-eventsList .-closed .l-eventsList_image::after {
    font-size: 12px;
    height: 20px;
  }
}
.l-eventsList_image {
  width: 100%;
  padding-top: 66.6666666667%;
  position: relative;
  overflow: hidden;
  background: #333;
}
.l-eventsList_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.l-eventsList_kyotophonie {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .l-eventsList_kyotophonie {
    margin-top: 20px;
  }
}
.l-eventsList_day {
  margin-top: 21px;
  font-family: var(--font-en-400);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-eventsList_day {
    margin-top: 18px;
    font-size: 14px;
  }
}
.l-eventsList_contTtl {
  margin-top: 3px;
}
.en .l-eventsList_contTtl {
  font-family: var(--font-en-500);
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .en .l-eventsList_contTtl {
    font-size: 18px;
  }
}
.ja .l-eventsList_contTtl {
  font-family: var(--font-ja-500);
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .l-eventsList_contTtl {
    font-size: 16px;
    letter-spacing: 0.025em;
  }
}
.l-eventsList_venues {
  margin-top: 18px;
  padding-left: 20px;
  background: url(../image/common/icon/icon_venues.svg) left top 4px/auto no-repeat;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-eventsList_venues {
    margin-top: 15px;
    padding-left: 16px;
    font-size: 14px;
    background-size: auto 14px;
  }
}
.en .l-eventsList_venues {
  letter-spacing: 0;
}
.ja .l-eventsList_venues {
  background-position: left top 2px;
}
@media screen and (max-width: 767px) {
  .ja .l-eventsList_venues {
    background-position: left top 1px;
  }
}
.l-eventsList .-soldOut .l-programWeek_image::before, .l-eventsList .-soldOut .l-programWeek_image::after,
.l-eventsList .-end .l-programWeek_image::before,
.l-eventsList .-end .l-programWeek_image::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.l-eventsList .-soldOut .l-programWeek_image::before,
.l-eventsList .-end .l-programWeek_image::before {
  height: 100%;
  background: var(--color-black);
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.l-eventsList .-soldOut .l-programWeek_image::after,
.l-eventsList .-end .l-programWeek_image::after {
  height: 30px;
  border-top: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .l-eventsList .-soldOut .l-programWeek_image::after,
  .l-eventsList .-end .l-programWeek_image::after {
    height: 20px;
  }
}
.l-eventsList .-soldOut .l-programWeek_image::after {
  background: url(../image/program/program_soldout.svg) center/auto no-repeat;
}
@media screen and (max-width: 767px) {
  .l-eventsList .-soldOut .l-programWeek_image::after {
    background-size: auto 10px;
  }
}
.l-eventsList .-end .l-programWeek_image::after {
  background: url(../image/program/program_end.svg) center/auto no-repeat;
}
@media screen and (max-width: 767px) {
  .l-eventsList .-end .l-programWeek_image::after {
    background-size: auto 10px;
  }
}

.l-eventsList-column {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
}
@media screen and (max-width: 767px) {
  .l-eventsList-column {
    gap: 32px 12px;
  }
}
.l-eventsList-column > * {
  width: calc((100% - 48px) / 4);
}
@media screen and (max-width: 767px) {
  .l-eventsList-column > * {
    width: calc((100% - 12px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .l-eventsList-column .l-eventsList_contTtl {
    margin-top: 3px;
    font-size: 16px;
  }
}

.l-eventsListWrap-spSlider + .l-eventsListWrap-spSlider {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .l-eventsListWrap-spSlider + .l-eventsListWrap-spSlider {
    margin-top: 58px;
  }
}
.l-eventsListWrap-spSlider .l-eventSlider_head {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .l-eventsListWrap-spSlider .l-eventSlider_head {
    margin-bottom: 38px;
  }
}

.l-eventsListWrap-week {
  position: relative;
}
.l-eventsListWrap-week .l-eventSlider_head {
  margin-bottom: 44px;
}
@media screen and (max-width: 767px) {
  .l-eventsListWrap-week .l-eventSlider_head {
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 767px) {
  .l-eventsListWrap-week .splide__arrows {
    top: 21px;
  }
}
.l-eventsListWrap-week_period {
  font-family: var(--font-en-500);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .l-eventsListWrap-week_period {
    margin-top: 20px;
    font-size: 18px;
  }
}
.l-eventsListWrap-week .l-eventsList_image {
  padding-top: 66.4%;
}
.l-eventsListWrap-week .l-eventsList_day {
  margin-top: 12px;
  font-family: var(--font-en-400);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-eventsListWrap-week .l-eventsList_day {
    margin-top: 15px;
    font-size: 14px;
  }
}
.l-eventsListWrap-week .l-eventsList_contTtl {
  margin-top: 2px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .l-eventsListWrap-week .l-eventsList_contTtl {
    margin-top: 4px;
    font-size: 14px;
  }
}
.en .l-eventsListWrap-week .l-eventsList_contTtl {
  font-family: var(--font-en-500);
}
.ja .l-eventsListWrap-week .l-eventsList_contTtl {
  font-family: var(--font-ja-500);
}

.l-network_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  margin-top: 62px;
}
@media screen and (max-width: 767px) {
  .l-network_list {
    margin-top: 40px;
    gap: 36px 0;
  }
}
.l-network_list > li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .l-network_list > li {
    width: 100%;
  }
}
.l-network_list a {
  display: block;
}
@media (hover: hover) {
  .l-network_list a .l-network_image img {
    transition: 0.3s;
  }
  .l-network_list a:hover .l-network_image img {
    transform: scale(1.06);
  }
  .l-network_list a:hover .m-link-arrow {
    background-position: center left 3px;
  }
}
.l-network_image {
  width: 100%;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
  background: #333;
}
.l-network_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.l-network_contTtl {
  height: 33px;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .l-network_contTtl {
    height: auto;
    margin-top: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .l-network_contTtl img {
    width: auto;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .l-network_contTtl img {
    height: auto;
  }
}
.l-network_text {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .l-network_text {
    margin-top: 14px;
  }
}
.l-network_link {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .l-network_link {
    margin-top: 14px;
  }
}

.l-scrollBorder > div {
  animation-duration: 160s;
}
@media screen and (max-width: 767px) {
  .l-scrollBorder > div {
    animation-duration: 40s;
  }
}
.l-scrollBorder img {
  margin-right: 68px;
}
@media screen and (max-width: 767px) {
  .l-scrollBorder img {
    margin-right: 20px;
    height: 85px;
  }
}

.l-sponsorScroll {
  padding: 20px 0;
  background: var(--color-white);
  min-height: 120px;
}
@media screen and (max-width: 767px) {
  .l-sponsorScroll {
    min-height: 80px;
    padding: 0;
  }
}
.l-sponsorScroll > * {
  animation-duration: 40s;
}
@media screen and (max-width: 767px) {
  .l-sponsorScroll > * {
    animation-duration: 15s;
  }
}
.l-sponsorScroll p {
  background: var(--color-black);
  padding: 5px;
  margin: 0 34px 0 84px;
  color: var(--color-white);
  font-family: var(--font-en-500);
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-sponsorScroll p {
    margin: 0 0 0 20px;
  }
}
.l-sponsorScroll img {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .l-sponsorScroll img {
    transform: scale(0.575);
    margin-right: 0;
  }
}

.l-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 370px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .l-head {
    height: 230px;
    padding-top: 76px;
  }
}
.l-head_mainTtl {
  position: relative;
}
.l-head_mainTtl::before {
  content: "";
  display: block;
  width: calc(100% + 1px);
  height: calc(100% + 2px);
  background: var(--color-black);
  animation: header_logo 0.2s 0.8s linear 1 forwards;
  position: absolute;
  top: -1px;
  right: 0;
  transform-origin: right center;
}
@keyframes header_logo {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0, 1);
  }
}
.l-head_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  padding-bottom: 2px;
  border: 1px solid var(--color-white);
  width: 208px;
  height: 52px;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .l-head_link {
    width: 128px;
    height: 32px;
  }
}
.l-head_link:hover {
  background: var(--color-white);
}

.l-introBox_read {
  margin-top: -0.2em;
  font-size: 32px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-introBox_read {
    font-size: 28px;
  }
}
.en .l-introBox_read {
  font-family: var(--font-en-500);
}
.ja .l-introBox_read {
  font-family: var(--font-ja-500);
}
.l-introBox_read + * {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .l-introBox_read + * {
    margin-top: 22px;
  }
}

.l-pagenatioon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px 16px;
  margin-top: 30px;
  position: relative;
  font-family: var(--font-en-400);
  font-size: 16px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-pagenatioon {
    margin-top: 14px;
  }
}
.l-pagenatioon .current {
  font-family: var(--font-en-500);
}
.l-pagenatioon .prev,
.l-pagenatioon .next {
  position: absolute;
  top: calc(50% - 2px);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-pagenatioon .prev img,
  .l-pagenatioon .next img {
    width: 16px;
  }
}
.l-pagenatioon .prev {
  left: 0;
}
.l-pagenatioon .next {
  right: 0;
}
@media (hover: hover) {
  .l-pagenatioon a:hover {
    font-family: var(--font-en-500);
  }
}

.l-col2Cont {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-col2Cont {
    display: block;
  }
}
.l-col2Cont.is-bottom {
  align-items: flex-end;
}
.l-col2Cont.is-bottom .l-col2Cont_aside {
  top: auto;
  bottom: 93px;
}
.l-col2Cont_aside {
  flex: 1;
  padding-right: 48px;
  position: sticky;
  top: 40px;
}
@media screen and (max-width: 767px) {
  .l-col2Cont_aside {
    width: 100%;
    min-height: 0;
    padding-right: 0;
    position: static;
  }
}
.l-col2Cont_main {
  width: 51.8292682927%;
  min-height: calc(100vh - 63px);
}
@media screen and (max-width: 767px) {
  .l-col2Cont_main {
    width: 100%;
    min-height: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-col2Cont_main-large {
    width: 59.9847560976%;
  }
}

.l-commonSlider.is-none {
  pointer-events: none;
}
.l-commonSlider_imgBox {
  position: relative;
  padding-top: 66.6139240506%;
}
.l-commonSlider_imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.l-commonSlider_imgBox.-vertical img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.l-commonSlider_imgBox.-vertical-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  object-position: left top;
}
.l-commonSlider_imgBox.-vertical-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  object-position: right top;
}
.l-commonSlider p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
}
.l-commonSlider .splide__pagination {
  display: flex;
  justify-content: center;
  gap: 0 8px;
  width: 100%;
  line-height: 1;
  padding-top: calc(min(66.6139240506%, 516px) - 22px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.l-commonSlider .splide__pagination li {
  line-height: 0;
  position: relative;
}
.l-commonSlider .splide__pagination button {
  width: 10px;
  height: 10px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
}
.l-commonSlider .splide__pagination button.is-active {
  background: var(--color-white);
}

.l-iconList {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
}
@media screen and (max-width: 767px) {
  .l-iconList {
    gap: 16px 24px;
  }
}
.l-iconList li {
  display: flex;
  gap: 0 12px;
  font-family: var(--font-en-400);
  font-size: 18px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .l-iconList li {
    gap: 0 9px;
    font-size: 14px;
    line-height: 20px;
  }
}
.l-iconList ._icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-iconList ._icon {
    width: 20px;
    height: 20px;
  }
}
.l-iconList ._icon img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  position: absolute;
  top: 0;
  left: 0;
}

.l-linkBox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .l-linkBox {
    grid-template-columns: 1fr;
    gap: 13px 0;
  }
}

.l-asideNav {
  line-height: 1;
}
.l-asideNav li + li {
  margin-top: 31px;
}
@media screen and (max-width: 767px) {
  .l-asideNav li + li {
    margin-top: 0;
  }
}
.ja .l-asideNav a {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 10px;
}
.l-asideNav ._imgText {
  display: inline-block;
  height: 25px;
}
.l-asideNav ._jaText {
  display: inline-block;
  font-family: var(--font-en-500);
  font-size: 14px;
  line-height: 1;
  vertical-align: top;
  padding-top: 5px;
}

.l-toggleList > dl {
  border-bottom: 1px solid var(--color-white);
  position: relative;
  counter-increment: number 1;
}
.l-toggleList > dl:first-child {
  border-top: 1px solid var(--color-white);
}
.l-toggleList > dl::before, .l-toggleList > dl::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 44px;
  right: 15px;
}
@media screen and (max-width: 767px) {
  .l-toggleList > dl::before, .l-toggleList > dl::after {
    width: 14px;
    top: 28px;
    right: 9px;
  }
}
.l-toggleList > dl::after {
  transition: 0.35s;
  transform: rotate(-90deg);
}
.l-toggleList > dl.is-active::after {
  transform: rotate(0deg);
}
.l-toggleList > dl > dt,
.l-toggleList > dl > dd {
  position: relative;
  padding-left: 45px;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .l-toggleList > dl > dt,
  .l-toggleList > dl > dd {
    padding-left: 35px;
    padding-right: 30px;
  }
}
.l-toggleList > dl > dt::before,
.l-toggleList > dl > dd::before {
  display: block;
  font-family: var(--font-en-500);
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-toggleList > dl > dt::before,
  .l-toggleList > dl > dd::before {
    font-size: 18px;
  }
}
.l-toggleList > dl > dt {
  padding-top: 30px;
  padding-bottom: 30px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-toggleList > dl > dt {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.en .l-toggleList > dl > dt {
  font-family: var(--font-en-500);
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .en .l-toggleList > dl > dt {
    font-size: 16px;
  }
}
.ja .l-toggleList > dl > dt {
  font-family: var(--font-ja-500);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .l-toggleList > dl > dt {
    font-size: 16px;
  }
}
.l-toggleList > dl > dt::before {
  content: "Q" counter(number);
  top: 30px;
}
@media screen and (max-width: 767px) {
  .en .l-toggleList > dl > dt::before {
    top: 18px;
  }
  .ja .l-toggleList > dl > dt::before {
    top: 22px;
  }
}
.l-toggleList > dl > dd {
  padding-bottom: 30px;
}
.l-toggleList > dl > dd::before {
  content: "A" counter(number);
  top: 0;
}
@media screen and (max-width: 767px) {
  .l-toggleList > dl > dd::before {
    top: 2px;
  }
}

.l-ttlText_ttl {
  font-size: 20px;
}

.l-modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-revieModal);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-modal::-webkit-scrollbar {
  display: none;
}
.l-modal_overlay {
  width: 100%;
  height: 100%;
  background: var(--color-black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.l-modal_closedBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px 0;
  width: 84px;
  height: 84px;
  background: var(--color-black);
  border-left: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-modal_closedBtn {
    width: 56px;
    height: 56px;
    gap: 5px 0;
  }
}
.l-modal_closedBtn::before, .l-modal_closedBtn::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-modal_closedBtn::before, .l-modal_closedBtn::after {
    width: 18px;
  }
}
.l-modal_closedBtn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-modal_closedBtn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-modal_closedBtn:hover {
  background-color: var(--color-white);
}
.l-modal_closedBtn:hover::before, .l-modal_closedBtn:hover::after {
  background-color: var(--color-black);
}
.l-modal_container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1312px;
  width: calc(100% - 168px);
  min-height: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-modal_container {
    width: calc(100% - var(--sp-mg) * 2);
    padding: 78px 0 40px;
  }
}
.l-modal_pagination {
  display: flex;
  position: fixed;
  top: -1px;
  left: -1px;
  z-index: 3;
}
.l-modal_pagination button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid var(--color-white);
  background: var(--color-black);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-modal_pagination button {
    width: 56px;
    height: 56px;
  }
}
.l-modal_pagination button:nth-child(2) {
  margin-left: -1px;
}
.l-modal_pagination button.is-none {
  opacity: 0.5;
  pointer-events: none;
}
.l-modal_pagination button svg {
  transition: 0.3s;
}
.l-modal_pagination button:hover {
  background-color: var(--color-white);
}
.l-modal_pagination button:hover path {
  fill: var(--color-black);
}

.l-post_sec h2 + .l-_textlarge {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .l-post_sec h2 + .l-_textlarge {
    margin-top: 34px;
  }
}
.l-post_sec h2 + .l-post_textMiddle,
.l-post_sec h2 + .l-post_price,
.l-post_sec h2 + .eventdetailDate_time {
  margin-top: 62px;
}
@media screen and (max-width: 767px) {
  .l-post_sec h2 + .l-post_textMiddle,
  .l-post_sec h2 + .l-post_price,
  .l-post_sec h2 + .eventdetailDate_time {
    margin-top: 30px;
  }
}
.l-col2Cont_main .l-post_sec h2 + .l-post_textMiddle,
.l-col2Cont_main .l-post_sec h2 + .l-post_price,
.l-col2Cont_main .l-post_sec h2 + .eventdetailDate_time {
  margin-top: 34px;
}
.l-post_sec h2 + .l-post_textBox {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .l-post_sec h2 + .l-post_textBox.-mtlarge {
    margin-top: 56px;
  }
}
.l-col2Cont_main .l-post_sec h2 + .l-post_textBox {
  margin-top: 28px;
}
.l-post_textMiddle {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .l-post_textMiddle {
    background-size: auto 20px;
    background-position: left top;
  }
}
.en .l-post_textMiddle {
  font-family: var(--font-en-500);
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .en .l-post_textMiddle {
    font-size: 20px;
  }
}
.ja .l-post_textMiddle {
  font-family: var(--font-ja-500);
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .ja .l-post_textMiddle {
    font-size: 18px;
  }
}
.l-post_imgBlock img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-post_imgBlock.-vertical {
    margin: 0 auto;
  }
}
.l-post_imgBlock.-vertical .m-imgView {
  max-inline-size: max-content;
}
.l-post_imgBlock.-vertical img {
  width: auto;
  max-width: none;
  height: min(41.6666666667vw, 600px);
}
@media screen and (max-width: 767px) {
  .l-post_imgBlock.-vertical img {
    height: 80.8vw;
  }
}
.l-post_mainTtl {
  font-size: 52px;
  font-family: var(--font-en-500);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .l-post_mainTtl {
    font-size: 40px;
    line-height: 1.2;
  }
}
.l-post_mainTtl_jaText {
  display: block;
  font-size: 24px;
  font-family: var(--font-ja-500);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-post_mainTtl_jaText {
    font-size: 18px;
  }
}
.l-post_venues {
  padding-left: 20px;
  background: url(../image/common/icon/icon_venues.svg) left top 4px/auto no-repeat;
  font-size: 20px;
  line-height: 1.2;
}
.en .l-post_venues {
  font-family: var(--font-en-500);
}
.ja .l-post_venues {
  background-position: left top 2px;
  font-family: var(--font-ja-500);
}
@media screen and (max-width: 767px) {
  .ja .l-post_venues {
    background-position: left top 1px;
    font-size: 16px;
  }
}
.l-post_type {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px 12px;
}
.l-post_required, .l-post_free {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  padding: 0 6px;
}
@media screen and (max-width: 767px) {
  .l-post_required, .l-post_free {
    height: 29px;
  }
}
.en .l-post_required, .en .l-post_free {
  font-family: var(--font-en-500);
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .en .l-post_required, .en .l-post_free {
    font-size: 16px;
  }
}
.ja .l-post_required, .ja .l-post_free {
  padding-top: 4px;
  font-family: var(--font-ja-500);
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .ja .l-post_required, .ja .l-post_free {
    padding-top: 2px;
    font-size: 14px;
  }
}
.l-post_required {
  background: var(--color-white);
  color: var(--color-black);
}
.l-post_programHead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .l-post_programHead {
    margin-bottom: 29px;
  }
}
.l-post_programNum img {
  width: auto;
  height: 36px;
}
@media screen and (max-width: 767px) {
  .l-post_programNum img {
    height: 30px;
  }
}
.l-post_programType {
  font-family: var(--font-en-400);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}
.l-post_programType::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background: #eee;
  border-radius: 50%;
  vertical-align: baseline;
}
.l-post_programType.-closedToday::before {
  background: var(--color-red);
}
.l-post_programType.-crowded::before {
  background: var(--color-yellow);
}
.l-post_programType.-empty::before {
  background: var(--color-blue);
}
.l-post_free {
  border: 1px solid var(--color-white);
}
.l-post_price {
  line-height: 1.5;
}
.en .l-post_price {
  font-family: var(--font-en-500);
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .en .l-post_price {
    font-size: 20px;
  }
}
.ja .l-post_price {
  font-family: var(--font-ja-500);
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .ja .l-post_price {
    font-size: 18px;
  }
}
.l-post_price_studentID {
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .l-post_price_studentID {
    margin-left: 0;
    display: block;
  }
}
.en .l-post_price_studentID {
  font-family: var(--font-en-400);
  font-size: 0.6666666667em;
}
@media screen and (max-width: 767px) {
  .en .l-post_price_studentID {
    font-size: 0.8em;
  }
}
.ja .l-post_price_studentID {
  font-family: var(--font-ja-400);
  font-size: 0.7272727273em;
}
@media screen and (max-width: 767px) {
  .ja .l-post_price_studentID {
    font-size: 0.8333333333em;
  }
}
.l-post_important {
  padding: 20px;
  border: 1px solid var(--color-white);
}
.l-post_important dt {
  padding-left: 30px;
  background: url(../image/common/icon/icon_important.svg) left center/20px auto no-repeat;
  font-family: var(--font-en-500);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .l-post_important dt {
    font-size: 16px;
  }
}
.ja .l-post_important dt {
  padding-top: 1px;
}
.l-post_important dd {
  margin-top: 10px;
}
.l-post_mt-middle {
  margin-top: 24px;
}
.l-post_mt-large {
  margin-top: 38px;
}
.l-post_reserveLink {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .l-post_reserveLink {
    margin-top: 32px;
  }
  .l-post_reserveLink .m-btn-white {
    width: 100%;
  }
}
.l-col2Cont_main .l-post_reserveLink {
  margin-top: 36px;
}
.l-post_address dl + dl {
  margin-top: 30px;
}
.l-post_address dt {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-post_address dt {
    font-size: 16px;
  }
}
.en .l-post_address dt {
  font-family: var(--font-en-500);
}
.ja .l-post_address dt {
  font-family: var(--font-ja-500);
}
.l-post_address dd {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .l-post_address dd {
    margin-top: 4px;
  }
}
.ja .l-post_address dd {
  margin-top: 2px;
}
.l-post_address dd p + p {
  margin-top: 8px;
}
.l-post_otherList {
  margin-top: 57px;
}
@media screen and (max-width: 767px) {
  .l-post_otherList {
    margin-top: 40px;
  }
}
.l-post_otherMore {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .l-post_otherMore {
    margin-top: 48px;
  }
  .l-post_otherMore .m-btn-border img {
    transform: none;
  }
}

.l-viditBox {
  border-top: 1px solid var(--color-white);
  margin-top: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .l-viditBox {
    margin-top: 50px;
    padding-top: 48px;
  }
}
.l-viditBox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px 0;
}
@media screen and (max-width: 767px) {
  .l-viditBox ul {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-viditBox li {
  width: 25%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-viditBox li {
    width: 50%;
  }
  .l-viditBox li img {
    width: auto;
    height: 131px;
  }
}
.l-viditBox ._jaText {
  display: block;
  max-inline-size: max-content;
  margin-inline: auto;
  margin-top: 12px;
  padding: 4px 5px 0px;
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.2;
  font-family: var(--font-ja-500);
}
@media screen and (max-width: 767px) {
  .l-viditBox ._jaText {
    padding-top: 3px;
    font-size: 12px;
  }
}

.l-interview {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .l-interview {
    padding-top: 0;
  }
}
.l-interview_mainTtl {
  margin-bottom: 116px;
}
@media screen and (max-width: 767px) {
  .l-interview_mainTtl {
    margin-bottom: 50px;
  }
}
.en .l-interview_mainTtl {
  font-family: var(--font-en-500);
  font-size: 44px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .en .l-interview_mainTtl {
    font-size: 32px;
  }
}
.ja .l-interview_mainTtl {
  font-family: var(--font-ja-500);
  font-size: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .l-interview_mainTtl {
    font-size: 28px;
  }
}
.l-interview_container > *:first-child {
  margin-top: 0;
}
.l-interview dl {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .l-interview dl {
    margin-top: 40px;
  }
}
.en .l-interview dt {
  font-family: var(--font-en-500);
  font-size: 20px;
}
.ja .l-interview dt {
  font-family: var(--font-ja-500);
  font-size: 18px;
}
.l-interview dd {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .l-interview dd {
    margin-top: 8px;
  }
}
.l-interview_imgBlock {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .l-interview_imgBlock {
    margin-top: 55px;
  }
}
.l-interview_imgBlock.-vertical {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-interview_imgBlock.-vertical {
    text-align: center;
  }
}
.l-interview_imgBlock.-vertical img {
  width: auto;
  height: 39.2361111111vw;
}
@media screen and (max-width: 767px) {
  .l-interview_imgBlock.-vertical img {
    height: 80.8vw;
  }
}
.l-interview_imgBlock.-vertical p {
  text-align: left;
}

.l-cookie {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
.l-cookie_container {
  max-width: 640px;
  max-height: 90%;
  padding: 48px 44px;
  background: var(--color-black);
  border: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .l-cookie_container {
    padding: 36px 28px;
  }
}
.l-cookie_read {
  margin-bottom: 32px;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .l-cookie_read {
    margin-bottom: 20px;
  }
}
.l-cookie_appBox {
  display: flex;
  justify-content: space-between;
  gap: 12px 0;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .l-cookie_appBox {
    flex-direction: column;
    margin-top: 30px;
  }
}
.l-cookie_appBox button {
  width: calc((100% - 12px) / 2);
  height: 48px;
}
@media screen and (max-width: 767px) {
  .l-cookie_appBox button {
    width: 100%;
  }
}
.l-cookie_appBox button img {
  transform: translateY(1px);
}

.l-theme {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .l-theme {
    padding: 0 6px;
  }
}
.l-theme p {
  text-align: justify;
}
.l-theme p + p {
  margin-top: 1.5em;
}
.en .l-theme {
  font-family: var(--font-en-700);
  font-size: 32px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .en .l-theme {
    font-size: 18px;
    line-height: 1.4;
  }
}
.en .l-theme p {
  letter-spacing: 0.01em;
  hyphens: auto;
}
.ja .l-theme {
  font-family: var(--font-ja-500);
  font-size: 29px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .ja .l-theme {
    font-size: 16px;
  }
}
.ja .l-theme p {
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
}

/* ========================================
About .about
======================================== */
.about .footer {
  margin-top: 0;
}
.about_sec {
  position: relative;
  margin-top: 80px;
  padding-top: 88px;
}
.about_sec::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .about_sec {
    margin-top: 48px;
    padding-top: 44px;
  }
}

.aboutTheme {
  margin-top: 80px;
  padding-top: 88px;
  border-top: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .aboutTheme {
    margin-top: 45px;
    padding-top: 44px;
  }
}
.aboutTheme_ttl {
  margin-bottom: 62px;
}
@media screen and (max-width: 767px) {
  .aboutTheme_ttl {
    margin-bottom: 24px;
  }
  .aboutTheme_ttl img {
    width: auto;
  }
}
.aboutTheme_ttl.m-horizontalScroll > * {
  animation-duration: 80s;
}
.aboutTheme_ttl.m-horizontalScroll img {
  margin-right: 24px;
}
.aboutTheme_textImg {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .aboutTheme_textImg {
    margin-top: 24px;
  }
}

.aboutOutline_read {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .aboutOutline_read {
    margin-top: 35px;
  }
}
.en .aboutOutline_read {
  font-family: var(--font-en-500);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .en .aboutOutline_read {
    font-size: 22px;
  }
}
.ja .aboutOutline_read {
  font-family: var(--font-ja-500);
  font-size: 28px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .aboutOutline_read {
    font-size: 20px;
  }
}
.aboutOutline_sumally {
  margin-top: 52px;
  max-width: 632px;
}
@media screen and (max-width: 767px) {
  .aboutOutline_sumally {
    margin-top: 32px;
  }
}
.aboutOutline_sumally dl + dl {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .aboutOutline_sumally dl + dl {
    margin-top: 20px;
  }
}
.en .aboutOutline_sumally dt {
  font-family: var(--font-en-500);
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .en .aboutOutline_sumally dt {
    font-size: 16px;
  }
}
.ja .aboutOutline_sumally dt {
  font-family: var(--font-ja-500);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .aboutOutline_sumally dt {
    font-size: 15px;
  }
}
.aboutOutline_sumally dd {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .aboutOutline_sumally dd {
    margin-top: 0;
  }
}
.aboutOutline .l-linkBox {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .aboutOutline .l-linkBox {
    margin-top: 34px;
  }
}

.aboutDirector_read {
  margin-top: 19px;
  line-height: 1;
}
.aboutDirector_container {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .aboutDirector_container {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .aboutDirector_container.l-col2 {
    flex-direction: column-reverse;
    gap: 37px 0;
  }
}
.aboutDirector_container h3 {
  margin: 60px 0 17px;
}
@media screen and (max-width: 767px) {
  .aboutDirector_container h3 {
    margin: 36px 0 10px;
  }
}
.en .aboutDirector_container h3 {
  font-family: var(--font-en-500);
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .en .aboutDirector_container h3 {
    font-size: 24px;
  }
}
.ja .aboutDirector_container h3 {
  font-family: var(--font-ja-500);
  font-size: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .aboutDirector_container h3 {
    font-size: 22px;
  }
}
.aboutDirector_container h3:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .en .aboutDirector_container h3:first-child {
    margin-top: -0.2em;
  }
  .ja .aboutDirector_container h3:first-child {
    margin-top: -0.1em;
  }
}

.aboutStory_intro {
  margin-top: 57px;
}
@media screen and (max-width: 767px) {
  .aboutStory_intro {
    margin-top: 32px;
  }
}
.aboutStory_archives {
  margin-top: 73px;
}
@media screen and (max-width: 767px) {
  .aboutStory_archives {
    margin-top: 31px;
  }
}
.aboutStory_archives h3 {
  height: 37px;
}
@media screen and (max-width: 767px) {
  .en .aboutStory_archives h3 {
    height: 25px;
  }
}
.ja .aboutStory_archives h3 {
  display: flex;
  align-items: flex-start;
  gap: 0 4px;
}
@media screen and (max-width: 767px) {
  .ja .aboutStory_archives h3 {
    height: auto;
    flex-direction: column;
  }
}
.ja .aboutStory_archives h3 span {
  display: block;
  padding-top: 14px;
  font-family: var(--font-ja-700);
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .ja .aboutStory_archives h3 span {
    padding: 4px 0;
  }
}
.aboutStory_archives_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 16px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .aboutStory_archives_list {
    gap: 8px 8px;
    margin-top: 20px;
  }
}
.aboutStory_archives_list li {
  width: 113px;
}
@media screen and (max-width: 767px) {
  .aboutStory_archives_list li {
    width: calc((100% - 24px) / 4);
  }
}
.aboutStory_archives_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding-bottom: 2px;
  border: 1px solid var(--color-white);
  font-family: var(--font-en-500);
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .aboutStory_archives_list li a {
    height: 32px;
    font-size: 18px;
  }
}
@media (hover: hover) {
  .aboutStory_archives_list li a {
    transition: background-color 0.3s, color 0.3s;
  }
  .aboutStory_archives_list li a:hover {
    background-color: var(--color-white);
    color: var(--color-black);
  }
}

.aboutVision_container {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .aboutVision_container {
    margin-top: 38px;
  }
}
.aboutVision_container.l-col2 {
  gap: 38px 48px;
}
@media screen and (max-width: 767px) {
  .aboutVision_container.l-col2 {
    gap: 23px 0;
  }
}
.en .aboutVision_container dt {
  font-family: var(--font-en-500);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .en .aboutVision_container dt {
    font-size: 18px;
  }
}
.ja .aboutVision_container dt {
  font-family: var(--font-ja-500);
  font-size: 26px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .aboutVision_container dt {
    font-size: 16px;
  }
}
.aboutVision_container dd {
  margin-top: 12px;
}
.aboutVision_container dd p + p {
  margin-top: 1em;
}

.aboutNetwork {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .aboutNetwork {
    padding-bottom: 35px;
  }
}

/* ========================================
Hotels & Access .comestay
======================================== */
@media screen and (max-width: 767px) {
  .comestayMain {
    overflow: hidden;
  }
}

.comestay_sec {
  margin-top: 52px;
  padding-top: 52px;
  border-top: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .comestay_sec {
    margin-top: 48px;
    padding-top: 44px;
    border: 0;
    position: relative;
  }
  .comestay_sec::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: var(--color-white);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.comestayIntro_map iframe {
  width: 100%;
  height: 452px;
}
@media screen and (max-width: 767px) {
  .comestayIntro_map iframe {
    height: 240px;
  }
}
.comestayIntro_ttl {
  margin: 55px 0 28px;
}
@media screen and (max-width: 767px) {
  .comestayIntro_ttl {
    margin: 36px 0 24px;
  }
}
.en .comestayIntro_ttl {
  font-family: var(--font-en-500);
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .en .comestayIntro_ttl {
    font-size: 28px;
  }
}
.ja .comestayIntro_ttl {
  font-family: var(--font-ja-500);
  font-size: 30px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .ja .comestayIntro_ttl {
    font-size: 26px;
  }
}
.comestayIntro_linkBox {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
  margin-top: 28px;
}
.comestayIntro_linkBox > * {
  width: calc((100% - 8px) / 2);
}
.comestayIntro_linkBox > * img {
  transform: scale(1);
}

.comestayHotel {
  margin-top: 55px;
}
@media screen and (max-width: 1000px) {
  .comestayHotel {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }
  .comestayHotel > * {
    order: 2;
  }
}
@media screen and (max-width: 1000px) {
  .comestayHotel_name {
    margin: 20px 0 20px;
  }
}
.en .comestayHotel_name {
  font-family: var(--font-en-500);
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .en .comestayHotel_name {
    font-size: 24px;
  }
}
.ja .comestayHotel_name {
  font-family: var(--font-ja-500);
  font-size: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .comestayHotel_name {
    font-size: 22px;
  }
}
.comestayHotel_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px min(3.3333333333vw, 48px);
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  .comestayHotel_container {
    display: contents;
  }
}
.comestayHotel_container > * {
  width: calc((100% - min(3.3333333333vw, 48px)) / 2);
}
@media screen and (max-width: 1000px) {
  .comestayHotel_container > * {
    width: 100%;
    order: 2;
  }
}
.en .comestayHotel_text {
  margin-top: -0.25em;
}
.ja .comestayHotel_text {
  margin-top: -0.25em;
}
.comestayHotel_imgBox img {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .comestayHotel_imgBox {
    order: 1;
  }
}
.comestayHotel_bordereBox {
  border: 1px solid var(--color-white);
  margin-top: 32px;
  padding: 20px 20px 28px;
}
@media screen and (max-width: 767px) {
  .comestayHotel_bordereBox {
    margin-top: 21px;
    padding-bottom: 23px;
  }
}
.comestayHotel_bordereBox_ttl {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.2;
}
.en .comestayHotel_bordereBox_ttl {
  font-family: var(--font-en-500);
  letter-spacing: 0.01em;
}
.ja .comestayHotel_bordereBox_ttl {
  font-family: var(--font-ja-500);
}
.comestayHotel_reserveLink {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .comestayHotel_reserveLink {
    margin-top: 24px;
  }
  .comestayHotel_reserveLink img {
    transform: translateY(1px);
  }
}
.comestayHotel_reserveLink a {
  max-width: 100%;
}

.comestayAccess_map {
  margin-top: 44px;
}
.comestayAccess_map img {
  width: 100%;
}
.en .comestayAccess_read {
  font-family: var(--font-en-500);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .en .comestayAccess_read {
    font-size: 24px;
  }
}
.ja .comestayAccess_read {
  font-family: var(--font-ja-500);
  font-size: 26px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .comestayAccess_read {
    font-size: 22px;
  }
}
.en .comestayAccess h3 {
  font-family: var(--font-en-500);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .en .comestayAccess h3 {
    font-size: 20px;
  }
}
.ja .comestayAccess h3 {
  font-family: var(--font-ja-500);
  font-size: 22px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .comestayAccess h3 {
    font-size: 18px;
  }
}
.comestayAccess_read {
  margin: 42px 0 26px;
}
.comestayAccess_iconTtl {
  position: relative;
  padding-left: 36px;
}
.comestayAccess_iconTtl ._icon {
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.en .comestayAccess_iconTtl ._icon {
  top: 4px;
}
@media screen and (max-width: 767px) {
  .en .comestayAccess_iconTtl ._icon {
    top: 3px;
  }
}
.ja .comestayAccess_iconTtl ._icon {
  top: 3px;
}
@media screen and (max-width: 767px) {
  .ja .comestayAccess_iconTtl ._icon {
    top: 2px;
  }
}
.comestayAccess_sumally {
  margin-top: 47px;
}
.comestayAccess_sumally h3 {
  margin-top: 47px;
}
.comestayAccess_sumally h4 {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.2;
}
.en .comestayAccess_sumally h4 {
  font-family: var(--font-en-500);
  letter-spacing: 0.01em;
}
.ja .comestayAccess_sumally h4 {
  font-family: var(--font-ja-500);
}
.comestayAccess_sumally .m-list-boder {
  margin-top: 16px;
}
.comestayAccess_sumally .m-list-boder li + li {
  margin-top: 0.2em;
}
.comestayAccess .comestayConvenient {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .comestayAccess .comestayConvenient {
    margin-top: 44px;
  }
}
.comestayAccess .comestayConvenient h3 {
  margin-bottom: 20px;
}

/* ========================================
Contact contact
======================================== */
@media screen and (max-width: 767px) {
  .contact .footer {
    margin-top: 48px;
  }
}
.contact_boderSec {
  margin-top: 82px;
  padding-top: 80px;
  border-top: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .contact_boderSec {
    margin-top: 50px;
    padding-top: 42px;
  }
}

.contactInfo_list {
  margin-top: 53px;
}
@media screen and (max-width: 767px) {
  .contactInfo_list {
    margin-top: 39px;
  }
}
.contactInfo_list > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 25px;
}
@media screen and (max-width: 767px) {
  .contactInfo_list > div {
    flex-direction: column;
  }
}
.contactInfo_list > div + div {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .contactInfo_list > div + div {
    margin-top: 27px;
  }
}
.contactInfo_list h3 {
  position: relative;
}
.contactInfo_list h3::before {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: var(--color-white);
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contactInfo_list h3::before {
    display: none;
  }
}
.en .contactInfo_list h3 {
  font-family: var(--font-en-500);
}
@media screen and (max-width: 767px) {
  .en .contactInfo_list h3 {
    font-size: 18px;
  }
}
.ja .contactInfo_list h3 {
  font-family: var(--font-ja-500);
}
@media screen and (max-width: 767px) {
  .ja .contactInfo_list h3 {
    font-size: 16px;
  }
}

.contactKg_cont {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contactKg_cont {
    margin-top: 37px;
  }
}
.contactKg_cont h3 {
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .contactKg_cont h3 {
    margin-bottom: 4px;
  }
}
.en .contactKg_cont h3 {
  font-family: var(--font-en-500);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .en .contactKg_cont h3 {
    font-size: 18px;
  }
}
.ja .contactKg_cont h3 {
  font-family: var(--font-ja-500);
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .ja .contactKg_cont h3 {
    font-size: 16px;
  }
}

.contactOfice_cont {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .contactOfice_cont {
    margin-top: 35px;
  }
}
.contactOfice_cont p + p {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .contactOfice_cont p + p {
    margin-top: 24px;
  }
}

/* ========================================
Covid-19 Measure .coid
======================================== */
.covidNav {
  line-height: 1;
}
.covidNav li + li {
  margin-top: 31px;
}
.covidNav li img {
  transform: scale(0.76);
  transform-origin: left center;
}
@media screen and (max-width: 767px) {
  .covidNav {
    display: none;
  }
}

.covid_sec {
  border-top: 1px solid var(--color-white);
}
.covid_sec h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .covid_sec h2 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .covid_sec:not(:first-child) {
    margin-top: 56px;
    padding-top: 56px;
  }
}
@media screen and (max-width: 767px) {
  .covid_sec {
    margin-top: 44px;
    padding-top: 42px;
  }
}
@media screen and (max-width: 767px) {
  .covid_sec {
    position: relative;
  }
  .covid_sec::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: var(--color-white);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .covid_sec .m-list-boder li + li {
    margin-top: 1.5em;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーー
Events .event
Events詳細 .eventdetail
ーーーーーーーーーーーーーーーーーーーーーーーー */
/* ========================================
Events .event
======================================== */
.events .footer {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .events .footer {
    margin-top: 30px;
  }
}

.eventsSearch {
  margin-top: 88px;
  border: 1px solid var(--color-white);
  padding: 42px min(3.0555555556vw, 44px) 52px;
}
@media screen and (max-width: 767px) {
  .eventsSearch {
    margin-top: 40px;
    padding: 20px 20px 24px;
  }
}
.eventsSearch_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 45px 0;
}
@media screen and (max-width: 767px) {
  .eventsSearch_form {
    gap: 16px 0;
  }
}
.eventsSearch dl {
  width: calc((100% - 3.0555555556vw) / 2);
}
@media screen and (max-width: 767px) {
  .eventsSearch dl {
    width: 100%;
  }
}
.eventsSearch dt {
  font-family: var(--font-en-500);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .eventsSearch dt {
    font-size: 18px;
  }
}
.eventsSearch dd {
  display: flex;
  gap: 0 16px;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .eventsSearch dd {
    margin-top: 6px;
    gap: 0 8px;
  }
}
.eventsSearch dd select {
  appearance: none;
  flex: 1;
  height: 56px;
  padding: 0 40px 2px 20px;
  background: transparent url(../image/events/select_arrow.svg) right 20px center/auto no-repeat;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .eventsSearch dd select {
    height: 40px;
    padding: 0 24px 0 11px;
    font-size: 14px;
    background-size: auto 6px;
    background-position: right 11px center;
  }
}
.eventsSearch dd select::placeholder {
  color: var(--color-white);
}
.eventsSearch_clear {
  width: 23.8500851789%;
  min-width: 60px;
  height: 56px;
  border: 1px solid var(--color-white);
}
@media (hover: hover) {
  .eventsSearch_clear {
    transition: 0.3s;
  }
  .eventsSearch_clear:hover {
    background-color: var(--color-white);
  }
}
@media screen and (max-width: 767px) {
  .eventsSearch_clear {
    height: 40px;
    width: 27.8745644599%;
  }
}
.eventsSearch_clear img {
  transform: translateY(-15%);
}
@media screen and (max-width: 767px) {
  .eventsSearch_clear img {
    width: 40px;
    transform: translateY(-20%);
  }
}
.eventsSearch_submit {
  width: 100%;
  height: 60px;
  background: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .eventsSearch_submit {
    height: 48px;
    margin-top: 9px;
  }
}
.eventsSearch_submit img {
  transform: translateY(-15%);
}
@media screen and (max-width: 767px) {
  .eventsSearch_submit img {
    width: 55.5px;
    transform: translateY(-20%);
  }
}

.eventsResult_head {
  margin-top: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .eventsResult_head {
    margin-top: 54px;
  }
}
.eventsResult_head:last-child {
  margin-top: 144px;
}
@media screen and (max-width: 767px) {
  .eventsResult_head:last-child {
    margin-top: 84px;
  }
}
.eventsResult_head:last-child::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .eventsResult_head:last-child::before {
    top: -30px;
  }
}
.eventsResult_mainTtl {
  padding: 0 30px;
  font-family: var(--font-en-500);
  font-size: 32px;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .eventsResult_mainTtl {
    font-size: min(6.4vw, 24px);
  }
}
.eventsResult_prev, .eventsResult_next {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 1px));
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .eventsResult_prev img, .eventsResult_next img {
    width: auto;
    height: 18px;
  }
}
.eventsResult_prev {
  left: 0;
}
.eventsResult_next {
  right: 0;
}

.eventsCont {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
  margin-top: 40px;
  padding-top: 88px;
  position: relative;
}
.eventsCont::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .eventsCont {
    display: block;
    margin-top: 26px;
    padding-top: 23px;
  }
}
.eventsCont:not(:first-child) {
  margin-top: 78px;
}
@media screen and (max-width: 767px) {
  .eventsCont:not(:first-child) {
    margin-top: 30px;
  }
}
.eventsCont_noneText {
  margin: 0 auto;
}
.eventsCont_groupDay {
  width: 100px;
  line-height: 1;
  font-family: var(--font-en-500);
  font-size: 24px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .eventsCont_groupDay {
    width: 100%;
    font-size: 18px;
  }
}
.eventsCont_groupDay p {
  text-align: center;
  max-inline-size: max-content;
}
@media screen and (max-width: 767px) {
  .eventsCont_groupDay p {
    margin-inline: auto;
  }
}
.eventsCont_groupDay span {
  display: block;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-top: -8px;
}
@media screen and (max-width: 767px) {
  .eventsCont_groupDay span {
    margin-top: 0;
    font-size: 56px;
  }
}
.eventsCont_list {
  display: flex;
  flex-wrap: wrap;
  width: 79.7256097561%;
  gap: 40px 30px;
}
@media screen and (max-width: 767px) {
  .eventsCont_list {
    gap: 30px 0;
    margin-top: 35px;
  }
}
.eventsCont_list > li {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 1000px) {
  .eventsCont_list > li {
    width: 100%;
  }
}
.eventsCont a {
  display: flex;
  gap: 0 20px;
  outline: none;
}
.eventsCont_imgBox {
  width: 30.7%;
}
@media screen and (max-width: 767px) {
  .eventsCont_imgBox {
    width: 29.3%;
  }
}
.eventsCont_imgBox > div {
  padding-top: 66.6666666667%;
  position: relative;
}
.eventsCont_imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.eventsCont_contBox {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.eventsCont_kyotophonie {
  line-height: 1;
  margin-bottom: 10px;
}
.eventsCont_day {
  margin-top: -0.35em;
  font-family: var(--font-en-400);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .eventsCont_day {
    font-size: 14px;
  }
}
.eventsCont_contTtl {
  margin: 1px 0 14px;
}
@media screen and (max-width: 767px) {
  .eventsCont_contTtl {
    margin: 5px 0 0;
  }
}
.en .eventsCont_contTtl {
  font-family: var(--font-en-500);
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .en .eventsCont_contTtl {
    font-size: 18px;
    line-height: 1.2;
  }
}
.ja .eventsCont_contTtl {
  font-family: var(--font-ja-500);
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .eventsCont_contTtl {
    font-size: 16px;
    line-height: 1.2;
  }
}
.eventsCont_venues {
  padding-left: 20px;
  background: url(../image/common/icon/icon_venues.svg) left top 4px/auto no-repeat;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .eventsCont_venues {
    margin-top: 10px;
    padding-left: 18px;
    background-size: auto 14px;
    font-size: 14px;
  }
}
.ja .eventsCont_venues {
  background-position: left top 2px;
}
@media screen and (max-width: 767px) {
  .ja .eventsCont_venues {
    background-position: left top 1px;
  }
}

/* ========================================
Events詳細 .eventdetail
======================================== */
.eventdetail {
  padding-top: 140px;
}
.eventdetail .footer {
  margin-top: 0;
}
@media screen and (min-width: 1001px) {
  .eventdetail .l-col2Cont_aside {
    padding-right: 72px;
  }
}
@media screen and (max-width: 767px) {
  .eventdetail_post {
    margin-top: 40px;
  }
}
.eventdetail_category {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 8px;
  line-height: 0;
}
.eventdetail_category li + li {
  position: relative;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .eventdetail_category li + li {
    padding-left: 15px;
  }
}
.eventdetail_category li + li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 22px;
  background: url(../image/events/separate_pc.svg) center/auto no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .eventdetail_category li + li::before {
    width: 7px;
    height: 16px;
    background-image: url(../image/events/separate_sp.svg);
  }
}
.eventdetail_mainTtl {
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .eventdetail_mainTtl {
    margin-top: 21px;
  }
}
.en .eventdetail_mainTtl {
  font-size: 48px;
  font-family: var(--font-en-500);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .en .eventdetail_mainTtl {
    font-size: 36px;
    line-height: 1.2;
  }
}
.ja .eventdetail_mainTtl {
  font-size: 46px;
  font-family: var(--font-ja-500);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .eventdetail_mainTtl {
    font-size: 34px;
  }
}
.eventdetail .l-post_type {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .eventdetail .l-post_type {
    margin-top: 16px;
  }
}
.eventdetail_time {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .eventdetail_time {
    margin-top: 28px;
  }
}
.eventdetail_time dl {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .eventdetail_time dl {
    font-size: 18px;
  }
}
.en .eventdetail_time dt {
  font-family: var(--font-en-500);
}
.ja .eventdetail_time dt {
  font-family: var(--font-ja-500);
}
.eventdetail .l-post_venues {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .eventdetail .l-post_venues {
    margin-top: 11px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.eventdetail_reserveLink {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .eventdetail_reserveLink {
    margin-top: 44px;
  }
}
.eventdetail_reserveLink a {
  max-width: 286px;
}
@media screen and (max-width: 767px) {
  .eventdetail_reserveLink a {
    width: 100%;
    max-width: 100%;
  }
}
.eventdetail_sec {
  border-top: 1px solid var(--color-white);
  margin-top: 60px;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .eventdetail_sec {
    margin-top: 44px;
    padding-top: 44px;
    border-top: 0;
    position: relative;
  }
  .eventdetail_sec::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: var(--color-white);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) {
  .eventdetail_sec .m-btn-border,
  .eventdetail_sec .m-btn-white {
    max-width: 314px;
  }
}
.eventdetail_description {
  margin-top: 40px;
}
.eventdetail_important {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .eventdetail_important {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .eventdetailSpeakers_list {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .eventdetailSpeakers_list > li {
    display: flex;
    flex-direction: column;
  }
}
.eventdetailSpeakers_list > li + li {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .eventdetailSpeakers_list > li + li {
    margin-top: 40px;
  }
}
.eventdetailSpeakers_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px min(3.3333333333vw, 48px);
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin-top: 24px;
}
@media screen and (max-width: 1000px) {
  .eventdetailSpeakers_container {
    flex-direction: column;
  }
}
.eventdetailSpeakers_container > * {
  width: calc((100% - min(3.3333333333vw, 48px)) / 2);
}
@media screen and (max-width: 1000px) {
  .eventdetailSpeakers_container > * {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .eventdetailSpeakers_container {
    display: contents;
  }
  .eventdetailSpeakers_container > * {
    order: 2;
  }
}
.eventdetailSpeakers_name {
  margin-top: 48px;
  width: 100%;
  font-family: var(--font-en-500);
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .eventdetailSpeakers_name {
    order: 2;
    margin: 25px 0 12px;
    font-size: 24px;
  }
}
.eventdetailSpeakers_imgBox {
  position: relative;
}
@media screen and (max-width: 767px) {
  .eventdetailSpeakers_imgBox {
    order: 1 !important;
  }
}
.eventdetailSpeakers_imgBox > div {
  padding-top: 66.4556962025%;
  background: #333333;
  position: relative;
}
.eventdetailSpeakers_imgBox > div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.eventdetailSpeakers_link {
  margin-top: 1em;
}

.eventdetailDate_time {
  line-height: 1.5;
  font-family: var(--font-en-400);
  font-size: 24px;
  letter-spacing: 0;
}
.eventdetailDate_time > * {
  display: flex;
  gap: 0 10px;
}
.eventdetailDate_time span {
  font-family: var(--font-en-500);
}
@media screen and (max-width: 767px) {
  .eventdetailDate_time {
    font-size: 20px;
  }
}

.eventdetailVenue_map {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .eventdetailVenue_map {
    margin-top: 30px;
  }
}
.eventdetailVenue_map iframe {
  width: 100%;
  height: 452px;
}
@media screen and (max-width: 767px) {
  .eventdetailVenue_map iframe {
    height: 240px;
  }
}
.eventdetailVenue_name {
  margin-top: 30px;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .eventdetailVenue_name {
    margin-top: 26px;
    font-size: 24px;
    line-height: 1.2;
  }
}
.eventdetailVenue .l-post_address {
  margin-top: 26px;
}
.eventdetailVenue_moreLink {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .eventdetailVenue_moreLink {
    margin-top: 26px;
  }
}

@media screen and (min-width: 768px) {
  .eventdetailReservations .l-post_textBox {
    margin-top: 35px;
  }
}

@media screen and (min-width: 768px) {
  .eventdetailNotes .l-post_textBox {
    margin-top: 36px;
  }
}

@media screen and (min-width: 768px) {
  .eventdetailPrograms .l-post_otherMore {
    margin-top: 19px;
  }
}
.eventdetailPrograms_list {
  display: flex;
  flex-wrap: wrap;
  gap: 38px 40px;
  margin-top: 66px;
}
@media screen and (max-width: 767px) {
  .eventdetailPrograms_list {
    margin-top: 39px;
    flex-direction: column;
  }
}
.eventdetailPrograms_list li {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .eventdetailPrograms_list li {
    width: 100%;
  }
}
.eventdetailPrograms_list a {
  display: flex;
  gap: 26px 22px;
}
@media screen and (max-width: 767px) {
  .eventdetailPrograms_list a {
    flex-direction: column-reverse;
  }
}
.eventdetailPrograms_list a > * {
  width: calc((100% - 22px) / 2);
}
@media screen and (max-width: 767px) {
  .eventdetailPrograms_list a > * {
    width: 100%;
  }
}
@media (hover: hover) {
  .eventdetailPrograms_list a .eventdetailPrograms_imgBox img {
    transition: 0.3s;
  }
  .eventdetailPrograms_list a:hover .eventdetailPrograms_imgBox img {
    transform: scale(1.06);
  }
  .eventdetailPrograms_list a:hover .m-link-arrow {
    background-position: center left 3px;
  }
}
.eventdetailPrograms_contTtl {
  margin-top: -0.2em;
  font-family: var(--font-en-500);
  font-size: 32px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .eventdetailPrograms_contTtl {
    font-size: 28px;
  }
}
.eventdetailPrograms_contTtl ._jaTtl {
  display: block;
  margin-top: 5px;
  font-family: var(--font-ja-500);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .eventdetailPrograms_contTtl ._jaTtl {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.eventdetailPrograms_thema {
  margin-top: 12px;
  font-family: var(--font-en-500-it);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .eventdetailPrograms_thema {
    margin-top: 4px;
    font-size: 16px;
  }
}
.eventdetailPrograms_text {
  margin-top: 35px;
  font-family: var(--font-en-400);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .eventdetailPrograms_text {
    margin-top: 19px;
  }
}
@media screen and (max-width: 767px) {
  .eventdetailPrograms_more {
    margin-top: 19px;
  }
  .eventdetailPrograms_more img {
    width: auto;
    height: 15px;
  }
}
.eventdetailPrograms_imgBox div {
  padding-top: 66.4556962025%;
  position: relative;
  background: #333;
  overflow: hidden;
}
.eventdetailPrograms_imgBox div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

/* ========================================
Frequent Questions faq
======================================== */
@media screen and (max-width: 767px) {
  .faq .l-head {
    padding-top: 121px;
  }
}

.faqNav {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .faqNav {
    margin-top: 29px;
  }
}
.faqNav li + li {
  margin-top: 31px;
}
@media screen and (max-width: 767px) {
  .faqNav li + li {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .faqNav li {
    border-bottom: 1px solid var(--color-white);
  }
  .faqNav li:first-child {
    border-top: 1px solid var(--color-white);
  }
}
@media screen and (max-width: 767px) {
  .faqNav a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 57px;
    background: url(../image/common/icon/select_arrow.svg) right 8px center/auto no-repeat;
    font-size: 20px;
    font-family: var(--font-en-500);
  }
}

@media screen and (min-width: 768px) {
  .faq_sec:not(:first-child) {
    margin-top: 46px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .faq_sec {
    margin-top: 44px;
    padding-top: 42px;
  }
}
@media screen and (max-width: 767px) {
  .faq_sec {
    position: relative;
  }
  .faq_sec::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: var(--color-white);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.faq_list {
  margin-top: 42px;
  counter-reset: number 0;
}
@media screen and (max-width: 767px) {
  .faq_list {
    margin-top: 36px;
  }
}
.faq_list dl {
  border-bottom: 1px solid var(--color-white);
  position: relative;
  counter-increment: number 1;
}
.faq_list dl:first-child {
  border-top: 1px solid var(--color-white);
}
.faq_list dl::before, .faq_list dl::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 40px;
  right: 10px;
}
@media screen and (max-width: 767px) {
  .faq_list dl::before, .faq_list dl::after {
    width: 14px;
    top: 28px;
    right: 9px;
  }
}
.faq_list dl::after {
  transition: 0.35s;
  transform: rotate(-90deg);
}
.faq_list dl.is-active::after {
  transform: rotate(0deg);
}
.faq_list dt,
.faq_list dd {
  position: relative;
  padding-left: 45px;
}
@media screen and (max-width: 767px) {
  .faq_list dt,
  .faq_list dd {
    padding-left: 35px;
  }
}
.faq_list dt::before,
.faq_list dd::before {
  display: block;
  font-family: var(--font-en-500);
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  .faq_list dt::before,
  .faq_list dd::before {
    font-size: 18px;
  }
}
.ja .faq_list dt::before,
.ja .faq_list dd::before {
  font-size: 18px;
}
.faq_list dt {
  padding-right: 110px;
  padding-top: 28px;
  padding-bottom: 28px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq_list dt {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 30px;
  }
}
.en .faq_list dt {
  font-family: var(--font-en-500);
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .en .faq_list dt {
    font-size: 16px;
  }
}
.ja .faq_list dt {
  font-family: var(--font-ja-500);
  font-size: 16px;
  line-height: 1.5;
}
.faq_list dt::before {
  content: "Q" counter(number);
  top: 28px;
}
@media screen and (max-width: 767px) {
  .en .faq_list dt::before {
    top: 18px;
  }
  .ja .faq_list dt::before {
    top: 22px;
  }
}
.faq_list dd {
  padding-bottom: 24px;
}
.faq_list dd::before {
  content: "A" counter(number);
  top: 0;
}
@media screen and (max-width: 767px) {
  .faq_list dd::before {
    top: 2px;
  }
}

/* ========================================
トップページ home
======================================== */
.home .footer {
  margin-top: 0;
}
.home .l-sponsorScroll {
  margin-top: 84px;
}
@media screen and (max-width: 767px) {
  .home .l-sponsorScroll {
    margin-top: 43px;
  }
}
.home .menuBtn {
  background: transparent;
}
@media (hover: hover) {
  .home .menuBtn:hover {
    background-color: var(--color-white);
  }
}
.home .menuBtn.is-bgColor {
  background-color: var(--color-black);
}
@media (hover: hover) {
  .home .menuBtn.is-bgColor:hover {
    background-color: var(--color-white);
  }
}
.home.is-menuActive .menuBtn {
  background-color: var(--color-white);
}

.homeMv {
  position: relative;
  z-index: 1;
}
.homeMv::before, .homeMv::after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  top: calc(50% + 20px);
  right: 0;
}
@media screen and (max-width: 767px) {
  .homeMv::before, .homeMv::after {
    width: 42vw;
    top: 0;
    height: 100%;
  }
}
.homeMv::before {
  z-index: 0;
  background: url(../image/home/mv_mesh.svg) center top/auto repeat;
}
@media screen and (max-width: 767px) {
  .homeMv::before {
    background-size: 975px auto;
    background-position: left center;
  }
}
.homeMv::after {
  background: var(--color-black);
  z-index: 1;
}
.homeMv_info {
  display: flex;
  flex-direction: column;
  gap: 20px 12px;
  line-height: 1;
  position: absolute;
  top: var(--pc-mg-half);
  left: var(--pc-mg-half);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .homeMv_info {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px 12px;
    height: 100%;
    padding: 12px 0 52px;
    top: 0;
    left: var(--sp-mg-half);
  }
  .homeMv_info img {
    width: auto;
    max-height: 100%;
  }
}
.homeMv_boder {
  width: 520px;
  position: absolute;
  left: 50%;
  bottom: 50%;
  z-index: 5;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .homeMv_boder {
    width: auto;
    height: calc(100% - 24px - 40px);
    bottom: 52px;
    left: auto;
    right: 44.9333vw;
    transform: none;
  }
  .homeMv_boder img {
    height: 100%;
  }
}
.homeMv_ttl {
  width: 520px;
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .homeMv_ttl {
    width: auto;
    top: auto;
    left: auto;
    right: 0;
    bottom: 52px;
    transform: none;
  }
}
.homeMv_ttl::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  position: absolute;
  top: 0;
  right: 0;
}
.homeMv_ttl img {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .homeMv_ttl img {
    width: 42vw;
  }
}
.homeMv_slider {
  width: 100%;
  height: calc(100% - 40px);
  background: var(--color-black);
  position: relative;
  z-index: 2;
}
.homeMv .splide__track, .homeMv .splide__list, .homeMv .splide__slide {
  width: 100%;
  height: 100%;
}
.homeMv .splide__slide {
  position: relative;
}
.homeMv .splide__slide img.-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.homeMv_caption {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: right;
  position: absolute;
  bottom: var(--pc-mg-half);
  right: var(--pc-mg-half);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .homeMv_caption {
    height: calc(100vh - 280px);
    font-size: 10px;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    text-align: left;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    bottom: auto;
    top: 84px;
    right: 10px;
  }
}
.homeMv_caption.u-color-black {
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}
.homeMv_newsLetter {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}
.homeMv_newsLetter a {
  height: 40px;
  background: var(--color-black);
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  color: var(--color-white);
  font-family: var(--font-en-500);
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .homeMv_newsLetter a {
    font-size: 14px;
  }
}
.homeMv_newsLetter span {
  display: flex;
  align-items: center;
  gap: 0 12px;
  margin-right: 12px;
}
.homeMv_newsLetter span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--color-white);
  border-radius: 50%;
}

.homeMv::after {
  animation: homeMv_mesh_cover 1.8s 0.9s linear 1 forwards;
  transform-origin: center top;
}
@keyframes homeMv_mesh_cover {
  0% {
    transform: scale(1, 1);
  }
  20%, 80% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}

.homeMv_ttl::before {
  animation: homeMv_ttl 0.4s 0.6s linear 1 forwards;
  transform-origin: right center;
}
@keyframes homeMv_ttl {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0, 1);
  }
}

.homeMv_info,
.homeMv_slider {
  opacity: 0;
  animation: homeMv_slider 0.8s 2.5s linear 1 forwards;
}
@keyframes homeMv_slider {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.homeWeek {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .homeWeek {
    margin-top: 48px;
  }
}

.homeNews {
  margin-top: 64px;
  padding: 64px 0;
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .homeNews {
    margin-top: 43px;
    padding: 46px 0 28px;
  }
}
.homeNews_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.homeNews_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .homeNews_list {
    display: block;
    margin-top: 40px;
  }
}
.homeNews_list > li {
  display: flex;
  flex-direction: column;
  width: calc((100% - 64px) / 3);
}
@media screen and (max-width: 767px) {
  .homeNews_list > li {
    width: 100%;
    border-top: 1px solid var(--color-white);
  }
}
.homeNews_contBox {
  display: block;
}
@media screen and (max-width: 767px) {
  .homeNews_contBox {
    padding: 16px 0 19px;
  }
}
.homeNews_time {
  font-family: var(--font-en-400);
  letter-spacing: 0;
  font-size: 16px;
}
.homeNews_contTtl {
  margin: 6px 0 16px;
}
@media screen and (max-width: 767px) {
  .homeNews_contTtl {
    margin: 4px 0 0;
  }
}
.en .homeNews_contTtl {
  font-family: var(--font-en-500);
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .en .homeNews_contTtl {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.5;
  }
}
.ja .homeNews_contTtl {
  font-family: var(--font-ja-500);
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .homeNews_contTtl {
    font-size: 16px;
    letter-spacing: 0.025em;
  }
}
.homeNews_category {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .homeNews_category {
    display: none;
  }
}
.homeNews_category a {
  text-decoration: underline;
  text-underline-offset: 7px;
}

.homeScrollBorder {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .homeScrollBorder {
    margin-top: 44px;
  }
}

.homeAboutRead {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .homeAboutRead {
    margin-top: 24px;
  }
}

.homePrograms {
  margin-top: 88px;
}
@media screen and (max-width: 767px) {
  .homePrograms {
    margin-top: 44px;
  }
}
.homePrograms_secTtl {
  height: 109px;
  background: var(--color-red);
}
@media screen and (max-width: 767px) {
  .homePrograms_secTtl {
    height: 68px;
  }
}
.homePrograms_secTtl img {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .homePrograms_secTtl img {
    margin-right: 17px;
    height: 41px;
  }
}
.homePrograms .l-programList {
  margin-top: 88px;
}
@media screen and (max-width: 767px) {
  .homePrograms .l-programList {
    margin-top: 48px;
  }
}

.homeEvents {
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .homeEvents {
    margin-top: 11px;
  }
}
.homeEvents_secTtl {
  height: 109px;
  background: var(--color-red);
  margin-bottom: 88px;
}
@media screen and (max-width: 767px) {
  .homeEvents_secTtl {
    height: 68px;
    margin-bottom: 52px;
  }
}
.homeEvents_secTtl img {
  margin-right: 34px;
}
@media screen and (max-width: 767px) {
  .homeEvents_secTtl img {
    margin-right: 16px;
    height: 33px;
  }
}
.homeEvents_more {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .homeEvents_more {
    margin-top: 48px;
  }
}
@media screen and (min-width: 768px) {
  .homeEvents_more .m-btn-border {
    width: calc((100% + 16px) / 4 - 16px);
    min-width: 280px;
  }
}

.homeVisit {
  border-top: 1px solid var(--color-white);
  margin-top: 80px;
  padding-top: 84px;
}
@media screen and (max-width: 767px) {
  .homeVisit {
    margin-top: 48px;
    padding-top: 52px;
  }
}
.homeVisit_list {
  display: flex;
  flex-wrap: wrap;
  gap: 44px 24px;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .homeVisit_list {
    margin-top: 44px;
  }
}
.homeVisit_list > li {
  width: calc((100% - 72px) / 4);
}
@media screen and (max-width: 767px) {
  .homeVisit_list > li {
    width: 100%;
  }
}
.homeVisit_list a {
  display: block;
}
@media (hover: hover) {
  .homeVisit_list a:hover .m-link-arrow {
    background-position: center left 3px;
  }
}
@media screen and (max-width: 767px) {
  .homeVisit_image img {
    height: 52px;
  }
}
.homeVisit_jaText {
  max-inline-size: max-content;
  margin-top: 32px;
  padding: 4px 5px 0px;
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.2;
  font-family: var(--font-ja-500);
}
@media screen and (max-width: 767px) {
  .homeVisit_jaText {
    margin-top: 15px;
    padding: 4px 5px;
    font-size: 12px;
  }
}
.homeVisit_jaText + .homeVisit_text {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .homeVisit_jaText + .homeVisit_text {
    margin-top: 8px;
  }
}
.homeVisit_text {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .homeVisit_text {
    margin-top: 15px;
  }
}
.homeVisit_more {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .homeVisit_more {
    margin-top: 16px;
  }
}

.homeNetwork {
  border-top: 1px solid var(--color-white);
  margin-top: 88px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .homeNetwork {
    margin-top: 52px;
    padding-top: 48px;
  }
}

.homeInstagram {
  border-top: 1px solid var(--color-white);
  margin-top: 88px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .homeInstagram {
    margin-top: 36px;
    padding-top: 43px;
  }
}
.homeInstagram .l-eventSlider_head {
  margin-bottom: 44px;
}
@media screen and (min-width: 768px) {
  .homeInstagram .l-eventSlider_head {
    transform: translateY(-3px);
  }
}
@media screen and (max-width: 767px) {
  .homeInstagram .l-eventSlider_head {
    margin-bottom: 34px;
  }
}
.homeInstagram_link {
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .homeInstagram_link {
    margin-top: 7px;
  }
}
.homeInstagram .splide__slide a {
  display: block;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.homeInstagram .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.homeInstagram .splide__slide:hover img {
  transform: scale(1.06);
}
@media screen and (min-width: 768px) {
  .homeInstagram .splide__arrows {
    margin-top: -4px;
  }
}

/* ========================================
For Kids & Educators .kids
======================================== */
@media screen and (max-width: 767px) {
  .kids .l-head {
    padding-top: 112px;
  }
}
.kids .footer {
  margin-top: 0;
}
.kids_contMt {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .kids_contMt {
    margin-top: 30px;
  }
}
.kids_sec {
  position: relative;
  margin-top: 80px;
  padding-top: 80px;
}
.kids_sec::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .kids_sec {
    margin-top: 48px;
    padding-top: 44px;
  }
}
@media screen and (max-width: 767px) {
  .kids_sec h2 {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .kids_sec .m-btn-border,
  .kids_sec .m-btn-white {
    max-width: 310px;
  }
}
.kids_col2 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .kids_col2 {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .kids_col2 > * {
    width: calc((100% - 48px) / 2);
  }
}
.kids_margin {
  margin: 24px 0 8px;
}
@media screen and (max-width: 767px) {
  .kids_margin {
    margin: 26px 0 5px;
  }
}
.kids_contBox {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .kids_contBox {
    display: contents;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .kids_contBox > * {
    order: 3;
  }
}
.en .kids_contBox h3 {
  font-family: var(--font-en-500);
  font-size: 18px;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .en .kids_contBox h3 {
    line-height: 1.2;
  }
}
.ja .kids_contBox h3 {
  font-family: var(--font-ja-500);
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .kids_imgBox {
    order: 2;
    margin-top: 32px;
  }
}
.kids_imgBox > * + * {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .kids_imgBox > * + * {
    margin-top: 35px;
  }
}
.kids_alignBottom {
  margin-top: auto;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .kids_alignBottom {
    margin-top: 24px;
    padding-top: 0;
  }
}
.kids_linkBox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}
@media screen and (max-width: 767px) {
  .kids_linkBox > * {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .kids_linkBox img {
    transform: translateY(8%) scale(0.83);
  }
}

@media screen and (max-width: 767px) {
  .kidsProgram {
    margin-top: 44px;
  }
}
@media screen and (max-width: 767px) {
  .kidsProgram_textBox p + p {
    margin-top: 25px;
  }
}

.kidsCompetition_contBox1 {
  margin-top: 59px;
}
@media screen and (max-width: 767px) {
  .kidsCompetition_contBox1 {
    margin-top: 40px;
  }
}
.kidsCompetition_contBox1 h3 {
  margin: 32px 0 5px;
}
@media screen and (max-width: 767px) {
  .kidsCompetition_contBox1 h3 {
    margin-top: 25px;
  }
}
.en .kidsCompetition_contBox1 h3 {
  font-family: var(--font-en-500);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .en .kidsCompetition_contBox1 h3 {
    font-size: 18px;
  }
}
.ja .kidsCompetition_contBox1 h3 {
  font-family: var(--font-ja-500);
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .ja .kidsCompetition_contBox1 h3 {
    font-size: 16px;
  }
}
.kidsCompetition_inSection {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .kidsCompetition_inSection {
    margin-top: 45px;
  }
}
.kidsCompetition_inSection h4 {
  margin: 32px 0 5px;
}
@media screen and (max-width: 767px) {
  .kidsCompetition_inSection h4 {
    margin-top: 24px;
  }
}
.en .kidsCompetition_inSection h4 {
  font-family: var(--font-en-500);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .en .kidsCompetition_inSection h4 {
    font-size: 18px;
  }
}
.ja .kidsCompetition_inSection h4 {
  font-family: var(--font-ja-500);
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .ja .kidsCompetition_inSection h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .kidsCompetition_inSection .kids_imgBox {
    order: 5;
  }
}
.kidsCompetition_read1 {
  margin-top: 34px;
  font-family: var(--font-en-500-it);
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .kidsCompetition_read1 {
    margin-top: 27px;
    font-size: 18px;
  }
}

.kidsPhotography .kids_linkBox {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .kidsPhotography .kids_linkBox a {
    width: 314px;
    padding-top: 2px;
  }
}

.kidsCovid .m-list-boder {
  margin-top: 28px;
}
.kidsCovid_link {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .kidsCovid_link {
    margin-top: 22px;
  }
}

.kidsSponsor {
  margin-top: 76px;
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .kidsSponsor {
    margin-top: 45px;
  }
}
.kidsSponsor_sec {
  padding: 56px 0 44px;
  position: relative;
}
.kidsSponsor_sec::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .kidsSponsor_sec {
    padding: 44px 0 40px;
  }
}
.kidsSponsor_sec::before {
  background: var(--color-black);
}
.kidsSponsor_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .kidsSponsor_list {
    justify-content: center;
    gap: 20px 8px;
    margin-top: 36px;
    padding: 0 18px;
  }
}

/* ========================================
Map .map
======================================== */
.map .header_bottomFix {
  display: none !important;
}
.map .footer {
  margin-top: 0;
}
.map_download {
  position: absolute;
  top: 42px;
  left: 340px;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .map_download {
    top: auto;
    bottom: 5px;
    left: auto;
    right: 60px;
  }
}
.map_container {
  display: flex;
  align-items: flex-start;
  height: 100vh;
  position: relative;
}
@media (hover: hover) {
  .map_container {
    height: 100vh !important;
  }
}
@media screen and (max-width: 1000px) {
  .map_container {
    flex-direction: column-reverse;
  }
}
.map .l-modal_closedBtn {
  position: fixed;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .map .l-modal_container {
    margin-bottom: 73px;
  }
}

.mapList {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1001px) {
  .mapList {
    width: 500px;
    height: 100%;
    min-width: 500px;
    padding-top: 130px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .mapList::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .mapList {
    width: 100%;
  }
}
.mapList::before {
  content: "";
  display: block;
  width: 100%;
  height: 130px;
  background: var(--color-black);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1001px) {
  .mapList_slider {
    height: 100%;
  }
  .mapList_slider .splide__track {
    height: 100% !important;
  }
}
@media screen and (max-width: 1000px) {
  .mapList_slider {
    max-width: 680px;
    margin: 0 auto;
  }
}
.mapList_cont {
  display: flex;
  background: var(--color-black);
  border-top: 1px solid var(--color-white);
  gap: 0 20px;
  padding: 30px 32px 0;
}
@media screen and (min-width: 1001px) {
  .mapList_cont {
    height: 260px !important;
  }
}
@media screen and (max-width: 767px) {
  .mapList_cont {
    padding: 24px 24px 30px;
    position: relative;
  }
}
.mapList_cont:last-child {
  border-bottom: 1px solid var(--color-white);
}
.mapList_contBox {
  flex: 1;
}
.mapList_head {
  display: flex;
  gap: 2px 8px;
}
.mapList_num {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 37px;
  height: 24px;
  padding: 0 6px;
  background: var(--color-red);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .mapList_num {
    height: 20px;
    min-width: 30px;
    padding: 0 4px;
  }
}
.mapList_num img {
  width: auto;
  height: 14px;
}
@media screen and (max-width: 767px) {
  .mapList_num img {
    height: 12px;
  }
}
.mapList_distance {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  padding: 0 4px;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-en-500);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .mapList_distance {
    height: 20px;
    font-size: 12px;
  }
}
.mapList_contttl {
  margin-top: 16px;
  font-family: var(--font-en-500);
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .mapList_contttl {
    font-size: 20px;
  }
}
.mapList_description {
  margin-top: 7px;
  font-family: var(--font-en-500-it);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (min-width: 1001px) {
  .mapList_description {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
  }
}
@media screen and (max-width: 767px) {
  .mapList_description {
    font-size: 14px;
    -webkit-line-clamp: 1;
  }
}
.mapList_venues {
  margin-top: 16px;
  padding-left: 20px;
  background: url(../image/common/icon/icon_venues.svg) left top 4px/auto no-repeat;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .mapList_venues {
    margin-top: 8px;
    font-size: 12px;
    background-size: auto 14px;
    background-position: left top 2px;
    padding-left: 13px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
  }
}
.en .mapList_venues {
  font-family: var(--font-en-500);
}
.ja .mapList_venues {
  background-position: left top 2px;
  font-family: var(--font-ja-500);
}
@media screen and (max-width: 767px) {
  .ja .mapList_venues {
    background-position: left top 1px;
    font-size: 16px;
  }
}
.mapList_info {
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .mapList_info {
    margin-top: 8px;
    font-size: 12px;
  }
}
.mapList_aside {
  width: 135px;
}
@media screen and (max-width: 767px) {
  .mapList_aside {
    width: 29%;
  }
}
.mapList_imgBox {
  padding-top: 66.6666666667%;
  position: relative;
}
.mapList_imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.mapList_detailLink, .mapList_directorLink {
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .mapList_detailLink, .mapList_directorLink {
    width: 50%;
    position: absolute;
    bottom: 0;
    z-index: 2;
  }
}
.mapList_detailLink button,
.mapList_detailLink a, .mapList_directorLink button,
.mapList_directorLink a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 24px;
  border: 1px solid var(--color-white);
  font-family: var(--font-en-500);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .mapList_detailLink button,
  .mapList_detailLink a, .mapList_directorLink button,
  .mapList_directorLink a {
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .mapList_detailLink {
    left: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .mapList_detailLink button {
    border-left: 0;
    border-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .mapList_directorLink {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .mapList_directorLink a {
    border-right: 0;
    border-bottom: 0;
  }
}
.mapList_directorLink a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 2px;
  background: url(../image/map/icon_external_white.svg) center/auto no-repeat;
}
@media screen and (min-width: 1001px) {
  .mapList .splide__track {
    overflow: visible;
  }
}
@media screen and (min-width: 1001px) {
  .mapList_cont:hover, .mapList_cont.is-current {
    background: var(--color-white);
    color: var(--color-black);
    line-height: 1;
  }
  .mapList_cont:hover .mapList_distance, .mapList_cont.is-current .mapList_distance {
    background: var(--color-black);
    color: var(--color-white);
  }
  .mapList_cont:hover .mapList_venues, .mapList_cont.is-current .mapList_venues {
    background-image: url(../image/common/icon/icon_venues_black.svg);
  }
  .mapList_cont:hover .mapList_detailLink button,
  .mapList_cont:hover .mapList_directorLink a, .mapList_cont.is-current .mapList_detailLink button,
  .mapList_cont.is-current .mapList_directorLink a {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
  }
  .mapList_cont:hover .mapList_directorLink a::after, .mapList_cont.is-current .mapList_directorLink a::after {
    background-image: url(../image/map/icon_external_black.svg);
  }
}
.mapList_modalCont {
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .mapList_modalCont {
    flex-direction: column;
  }
}
.mapList_modalCont > * {
  width: calc((100% - 48px) / 2);
}
@media screen and (max-width: 1000px) {
  .mapList_modalCont > * {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .mapList_modalCont ._contBox {
    display: contents;
  }
  .mapList_modalCont ._contBox > * {
    order: 3;
  }
}
@media screen and (max-width: 1000px) {
  .mapList_modalCont ._spHead {
    order: 1;
  }
}
.mapList_modalCont ._num {
  display: flex;
  justify-content: center;
  align-items: center;
  max-inline-size: max-content;
  min-width: 53px;
  height: 34px;
  padding: 0 2px;
  background: var(--color-red);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .mapList_modalCont ._num {
    height: 32px;
  }
}
.mapList_modalCont ._num img {
  width: auto;
  height: 24px;
}
.mapList_modalCont ._contttl {
  margin-top: 24px;
  font-family: var(--font-en-500);
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .mapList_modalCont ._contttl {
    font-size: 40px;
    margin-top: 22px;
  }
}
.mapList_modalCont ._contttl ._jaTtl {
  margin-top: 5px;
  display: block;
  font-size: 24px;
  font-family: var(--font-ja-500);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .mapList_modalCont ._contttl ._jaTtl {
    font-size: 18px;
  }
}
.mapList_modalCont ._theme {
  margin-top: 5px;
  font-family: var(--font-en-500-it);
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .mapList_modalCont ._theme {
    font-size: 20px;
  }
}
.mapList_modalCont ._venues {
  margin-top: 24px;
  padding-left: 20px;
  background: url(../image/common/icon/icon_venues.svg) left top 4px/auto no-repeat;
  font-size: 20px;
  line-height: 1.2;
}
.en .mapList_modalCont ._venues {
  font-family: var(--font-en-500);
}
.ja .mapList_modalCont ._venues {
  font-family: var(--font-ja-500);
}
@media screen and (max-width: 767px) {
  .ja .mapList_modalCont ._venues {
    font-size: 16px;
  }
}
.mapList_modalCont ._ticket {
  margin-top: 14px;
}
.mapList_modalCont ._text {
  margin-top: 40px;
}
.mapList_modalCont ._aboutLink {
  margin-top: 24px;
}
.mapList_modalCont ._aboutLink + ._aboutLink {
  margin-top: 12px;
}
.mapList_modalCont ._timeBox {
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .mapList_modalCont ._timeBox {
    margin-top: 12px;
    font-size: 18px;
  }
}
.mapList_modalCont ._timeBox span {
  display: inline-block;
}
.mapList_modalCont ._timeBox ._time::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background: var(--color-white);
  margin: 0 12px;
}
@media screen and (max-width: 767px) {
  .mapList_modalCont ._timeBox ._time::after {
    display: none;
  }
}
.ja .mapList_modalCont ._timeBox ._time {
  font-family: var(--font-ja-500);
}
.en .mapList_modalCont ._timeBox ._bold {
  font-family: var(--font-en-500);
}
.mapList_modalCont ._timeBox ._day {
  margin-left: 4px;
  font-size: 20px;
}
.mapList_modalCont ._timeBox ._closed {
  display: inline;
}
@media screen and (max-width: 767px) {
  .mapList_modalCont ._timeBox ._closed {
    display: block;
    margin-top: 5px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .mapList_modalCont ._imgBox {
    order: 2;
    margin-top: 40px;
  }
}
.mapList_modalCont ._img {
  padding-top: 66.6666666667%;
  position: relative;
  background: #333;
}
.mapList_modalCont ._img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
.mapList_modalCont ._img img.is-active {
  opacity: 1;
}
.mapList_modalCont ._imgtType {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .mapList_modalCont ._imgtType {
    font-size: 14px;
  }
}
.en .mapList_modalCont ._imgtType .is-active {
  font-family: var(--font-en-500);
}
.ja .mapList_modalCont ._imgtType .is-active {
  font-family: var(--font-ja-500);
}
.mapList_modalCont ._imgtType::before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background: var(--color-white);
  margin-left: 10px;
  margin-right: 12px;
  order: 2;
}
.mapList_modalCont ._imgtType *:last-child {
  order: 3;
}

.mapBox {
  flex: 1;
  height: 100%;
  background: var(--color-white);
}
@media screen and (max-width: 1000px) {
  .mapBox {
    width: 100%;
    height: auto;
    position: relative;
  }
}
.mapBox .marker {
  max-inline-size: max-content;
  cursor: pointer;
}
.mapBox .marker_child {
  display: flex;
  justify-content: center;
  align-items: center;
  max-inline-size: max-content;
  padding: 5px;
  min-width: 40px;
  min-height: 40px;
  font-size: 16px;
  line-height: 1;
  background: var(--color-red);
}
@media screen and (max-width: 767px) {
  .mapBox .marker_child {
    min-width: 32px;
    min-height: 32px;
    padding: 5px 2px;
  }
}
.mapBox .marker_child img {
  width: auto;
  height: 15px;
}
.mapBox .marker_child.current {
  background: var(--color-yellow);
}

/* ーーーーーーーーーーーーーーーーーーーーーーーー
NEWS .news
NEWS詳細 .newsdetail
ーーーーーーーーーーーーーーーーーーーーーーーー */
/* ========================================
NEWS news
======================================== */
@media screen and (max-width: 767px) {
  .news .footer {
    margin-top: 45px;
  }
}

@media screen and (max-width: 767px) {
  .newsAside {
    display: none;
  }
}
.newsAside_ttl:not(:first-child) {
  margin-top: 40px;
}
.newsAside_categoryList {
  margin-top: 20px;
}
.newsAside_categoryList li + li {
  margin-top: 10px;
}
.en .newsAside_categoryList ._current a {
  font-family: var(--font-en-700);
}
.ja .newsAside_categoryList ._current a {
  font-family: var(--font-ja-700);
}
.newsAside_categoryList a {
  font-size: 16px;
}
.en .newsAside_categoryList a {
  letter-spacing: 0;
  line-height: 1.5;
}
.ja .newsAside_categoryList a {
  line-height: 1.5;
}

.newsSelect {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
  margin-bottom: 16px;
}
.newsSelect select {
  appearance: none;
  width: calc((100% - 8px) / 2);
  height: 40px;
  padding: 0 22px 0 10px;
  background: transparent url(../image/common/icon/select_arrow.svg) right 10px center/auto no-repeat;
  border: 1px solid var(--color-white);
  font-size: 14px;
  line-height: 1.2;
  outline: none;
}

.newsList > li {
  border-top: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .newsList > li:first-child {
    border-top: 0;
  }
}
.newsList a {
  display: block;
  padding: 28px 0 22px;
}
@media screen and (max-width: 767px) {
  .newsList a {
    padding: 24px 0 26px;
  }
}
@media (hover: hover) {
  .newsList a {
    transition: background 0.3s, color 0.3s;
  }
  .newsList a:hover {
    background: var(--color-white);
    color: var(--color-black);
  }
}
.newsList_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 8px;
}
.newsList_category {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
}
.newsList_category span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  background: var(--color-white);
  padding: 0 4px;
  color: var(--color-black);
  font-size: 14px;
  line-height: 1;
}
.en .newsList_category span {
  font-family: var(--font-en-500);
}
.ja .newsList_category span {
  padding-top: 1px;
  font-family: var(--font-en-500);
}
.newsList_time {
  font-family: var(--font-en-400);
  font-size: 16px;
  line-height: 1.2;
  transform: translateY(1px);
}
.newsList_contTtl {
  margin-top: 11px;
  line-height: 1.5;
}
.en .newsList_contTtl {
  font-family: var(--font-en-500);
  font-size: 20px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .en .newsList_contTtl {
    font-size: 16px;
  }
}
.ja .newsList_contTtl {
  font-family: var(--font-ja-500);
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .ja .newsList_contTtl {
    font-size: 16px;
  }
}

.newsImportant {
  border: 1px solid var(--color-white);
  margin-bottom: 80px;
  padding: 28px 32px 9px;
}
@media screen and (max-width: 767px) {
  .newsImportant {
    margin-bottom: 52px;
    padding: 25px 23px 10px;
  }
}
.newsImportant_ttl {
  margin-bottom: 30px;
  padding-left: 28px;
  background: url(../image/common/icon/icon_important.svg) left top 6px/auto no-repeat;
  font-family: var(--font-en-500);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .newsImportant_ttl {
    margin-bottom: 27px;
    padding-left: 26px;
    font-size: 20px;
    background-size: 18px auto;
    background-position: left top 3px;
  }
}
@media screen and (min-width: 768px) {
  .newsImportant .newsList li {
    border-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .newsImportant .newsList li:first-child {
    border-top: 1px solid var(--color-white);
  }
}
@media screen and (min-width: 768px) {
  .newsImportant .newsList a {
    padding: 24px 0 18px;
  }
}

/* ========================================
お知らせ詳細 newsdetail
======================================== */
@media screen and (min-width: 768px) {
  .newsdetail {
    padding-top: 104px;
  }
}
.newsdetail .footer {
  margin-top: 0;
}
.newsdetail_head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .newsdetail_head {
    margin-bottom: 9px;
  }
}
.newsdetail_category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 8px;
}
.newsdetail_category a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  padding: 0 6px;
  background: var(--color-white);
  color: var(--color-menu-blue);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .newsdetail_category a {
    height: 19px;
    font-size: 14px;
  }
}
.en .newsdetail_category a {
  font-family: var(--font-en-500);
}
.ja .newsdetail_category a {
  font-family: var(--font-ja-500);
}
.newsdetail_time {
  display: block;
  font-family: var(--font-en-400);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .newsdetail_time {
    font-size: 16px;
  }
}
.newsdetail_mainTtl {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .newsdetail_mainTtl {
    margin-bottom: 48px;
  }
}
.en .newsdetail_mainTtl {
  font-size: 40px;
  font-family: var(--font-en-500);
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .en .newsdetail_mainTtl {
    font-size: 36px;
    line-height: 1.2;
  }
}
.ja .newsdetail_mainTtl {
  font-size: 38px;
  font-family: var(--font-ja-500);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .newsdetail_mainTtl {
    font-size: 34px;
  }
}
.newsdetail_post > * + * {
  margin-top: 64px;
}
.newsdetail_post h2,
.newsdetail_post h3,
.newsdetail_post h4,
.newsdetail_post h5,
.newsdetail_post h6 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .newsdetail_post h2,
  .newsdetail_post h3,
  .newsdetail_post h4,
  .newsdetail_post h5,
  .newsdetail_post h6 {
    margin-bottom: 16px;
  }
}
.en .newsdetail_post h2,
.en .newsdetail_post h3,
.en .newsdetail_post h4,
.en .newsdetail_post h5,
.en .newsdetail_post h6 {
  font-family: var(--font-en-500);
  line-height: 1.3;
}
.ja .newsdetail_post h2,
.ja .newsdetail_post h3,
.ja .newsdetail_post h4,
.ja .newsdetail_post h5,
.ja .newsdetail_post h6 {
  font-family: var(--font-ja-500);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .newsdetail_post h2 + p,
  .newsdetail_post h3 + p,
  .newsdetail_post h4 + p,
  .newsdetail_post h5 + p,
  .newsdetail_post h6 + p {
    margin-top: 20px;
  }
}
.en .newsdetail_post h2 {
  font-size: 30px;
}
.en .newsdetail_post h2 {
  font-size: 28px;
}
.newsdetail_info {
  margin-top: 64px;
}
@media screen and (max-width: 1000px) {
  .newsdetail_info {
    gap: 60px 0;
  }
}
.newsdetail_info_cont {
  padding: 28px 32px;
  border: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .newsdetail_info_cont {
    padding: 22px 20px;
  }
}
.en .newsdetail_info_ttl {
  font-family: var(--font-en-500);
  font-size: 20px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .en .newsdetail_info_ttl {
    font-size: 18px;
  }
}
.ja .newsdetail_info_ttl {
  font-family: var(--font-ja-500);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .newsdetail_info_ttl {
    font-size: 16px;
  }
}
.newsdetail_info dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 0 4px;
}
@media screen and (max-width: 767px) {
  .newsdetail_info dl {
    margin-top: 18px;
  }
}
.en .newsdetail_info dt {
  font-family: var(--font-en-500);
}
.ja .newsdetail_info dt {
  font-family: var(--font-ja-500);
}
.newsdetail_info_link {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .newsdetail_info_link {
    margin-top: 40px;
  }
}
.newsdetail_info_link a {
  width: 100%;
}

/* ========================================
NEWS詳細 .newsdetail
======================================== */
.newsdetail {
  padding-top: 140px;
}
.newsdetail_head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
@media screen and (max-width: 767px) {
  .newsdetail_head {
    gap: 8px 8px;
  }
}
.newsdetail_category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 8px;
}
.newsdetail_category a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  padding: 0 6px 1px;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .newsdetail_category a {
    height: 19px;
    font-size: 14px;
  }
}
.en .newsdetail_category a {
  font-family: var(--font-en-500);
}
.ja .newsdetail_category a {
  padding-top: 2px;
  font-family: var(--font-ja-500);
}
.newsdetail_time {
  display: block;
  font-family: var(--font-en-400);
  font-size: 16px;
  letter-spacing: 0;
}
.newsdetail_mainTtl {
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .newsdetail_mainTtl {
    margin-top: 13px;
  }
}
.en .newsdetail_mainTtl {
  font-size: 40px;
  font-family: var(--font-en-500);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .en .newsdetail_mainTtl {
    font-size: 36px;
    line-height: 1.2;
  }
}
.ja .newsdetail_mainTtl {
  font-size: 38px;
  font-family: var(--font-ja-500);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .newsdetail_mainTtl {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .newsdetail_post {
    margin-top: 50px;
  }
}
.newsdetail_post > * + * {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .newsdetail_post > * + * {
    margin-top: 45px;
  }
}
.newsdetail_post h2,
.newsdetail_post h3,
.newsdetail_post h4,
.newsdetail_post h5,
.newsdetail_post h6 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .newsdetail_post h2,
  .newsdetail_post h3,
  .newsdetail_post h4,
  .newsdetail_post h5,
  .newsdetail_post h6 {
    margin-bottom: 16px;
  }
}
.en .newsdetail_post h2,
.en .newsdetail_post h3,
.en .newsdetail_post h4,
.en .newsdetail_post h5,
.en .newsdetail_post h6 {
  font-family: var(--font-en-500);
  line-height: 1.3;
}
.ja .newsdetail_post h2,
.ja .newsdetail_post h3,
.ja .newsdetail_post h4,
.ja .newsdetail_post h5,
.ja .newsdetail_post h6 {
  font-family: var(--font-ja-500);
  line-height: 1.5;
}
.newsdetail_post h2 + *,
.newsdetail_post h3 + *,
.newsdetail_post h4 + *,
.newsdetail_post h5 + *,
.newsdetail_post h6 + * {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .newsdetail_post h2 + *,
  .newsdetail_post h3 + *,
  .newsdetail_post h4 + *,
  .newsdetail_post h5 + *,
  .newsdetail_post h6 + * {
    margin-top: 20px;
  }
}
.en .newsdetail_post h2 {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .en .newsdetail_post h2 {
    font-size: 24px;
  }
}
.ja .newsdetail_post h2 {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .ja .newsdetail_post h2 {
    font-size: 28px;
  }
}
.newsdetail_info {
  margin-top: 68px;
  padding: 35px 32px;
  border: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .newsdetail_info {
    margin-top: 45px;
    padding: 19px 20px 25px;
  }
}
.en .newsdetail_info_ttl {
  font-family: var(--font-en-500);
  font-size: 20px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .en .newsdetail_info_ttl {
    font-size: 18px;
  }
}
.ja .newsdetail_info_ttl {
  font-family: var(--font-ja-500);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .newsdetail_info_ttl {
    font-size: 16px;
  }
}
.newsdetail_info dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 0 4px;
}
.newsdetail_info dl.newsdetail_info_noneFlex dd {
  width: 100%;
}
.en .newsdetail_info dt {
  font-family: var(--font-en-500);
}
.ja .newsdetail_info dt {
  font-family: var(--font-ja-500);
}
.newsdetail_info_link {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .newsdetail_info_link {
    margin-top: 40px;
  }
}
.newsdetail_info_link a {
  width: 100%;
}
.newsdetail_detailLink {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .newsdetail_detailLink {
    margin-top: 38px;
  }
}

.post-text-small {
  font-size: 12px;
}
.post-text-large {
  font-size: 22px;
}
.post-text-xlarge {
  font-size: 28px;
}
.en .post-bold500 {
  font-family: var(--font-en-500);
}
.ja .post-bold500 {
  font-family: var(--font-ja-500);
}
.en .post-bold700 {
  font-family: var(--font-en-700);
}
.ja .post-bold700 {
  font-family: var(--font-ja-700);
}
.post-underLine {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-italic400 {
  font-family: var(--font-en-400-it);
}
.post-italic500 {
  font-family: var(--font-en-500-it);
}
.post-italic700 {
  font-family: var(--font-en-700-it);
}
.post-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-link:hover {
  text-decoration: none;
}
.post-link-external {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-link-external:hover {
  text-decoration: none;
}
.post-link-external::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 4px;
  background: url(../image/common/icon/icon_external.svg) center/auto no-repeat;
}
.en .post-ttl-large {
  font-family: var(--font-en-500) !important;
  font-size: 40px !important;
  line-height: 1.3 !important;
}
@media screen and (max-width: 767px) {
  .en .post-ttl-large {
    font-size: 32px !important;
  }
}
.ja .post-ttl-large {
  font-family: var(--font-ja-500) !important;
  font-size: 36px !important;
  line-height: 1.5 !important;
}
@media screen and (max-width: 767px) {
  .ja .post-ttl-large {
    font-size: 28px !important;
  }
}
.en .post-ttl-middle {
  font-family: var(--font-en-500) !important;
  font-size: 32px !important;
  line-height: 1.3 !important;
}
@media screen and (max-width: 767px) {
  .en .post-ttl-middle {
    font-size: 24px !important;
  }
}
.ja .post-ttl-middle {
  font-family: var(--font-ja-500) !important;
  font-size: 28px !important;
  line-height: 1.5 !important;
}
@media screen and (max-width: 767px) {
  .ja .post-ttl-middle {
    font-size: 22px !important;
  }
}
.en .post-ttl-small {
  font-family: var(--font-en-500) !important;
  font-size: 24px !important;
  line-height: 1.3 !important;
}
@media screen and (max-width: 767px) {
  .en .post-ttl-small {
    font-size: 20px !important;
  }
}
.ja .post-ttl-small {
  font-family: var(--font-ja-500) !important;
  font-size: 22px !important;
  line-height: 1.5 !important;
}
@media screen and (max-width: 767px) {
  .ja .post-ttl-small {
    font-size: 18px !important;
  }
}
.en .post-read {
  font-size: 20px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .en .post-read {
    font-size: 18px;
  }
}
.ja .post-read {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .ja .post-read {
    font-size: 17px;
  }
}
.post-list-default li {
  padding-left: 22px;
  position: relative;
}
.post-list-default li + li {
  margin-top: 1em;
}
.post-list-default li::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 11px;
  left: 0;
}
.en .post-list-default li::before {
  top: 11px;
}
.ja .post-list-default li::before {
  top: 13px;
}
@media screen and (max-width: 767px) {
  .ja .post-list-default li::before {
    top: 12px;
  }
}
.post-list-number {
  list-style: decimal;
}
.post-list-number li {
  margin-left: 22px;
}
.post-list-circle {
  list-style: disc;
}
.post-list-circle li {
  margin-left: 22px;
}
.post-group-border {
  padding: 32px;
  border: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .post-group-border {
    padding: 20px;
  }
}
.post-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 314px;
  height: 56px;
  padding: 0 10px;
  line-height: 1.2;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  color: var(--color-black);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .post-button a {
    height: 48px;
  }
}
.en .post-button a {
  font-family: var(--font-en-500);
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .en .post-button a {
    font-size: 18px;
  }
}
.ja .post-button a {
  font-family: var(--font-ja-500);
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .ja .post-button a {
    font-size: 16px;
  }
}
.post-button a:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
.post-button-large a {
  max-width: 100%;
  width: 100%;
}
.post-button-external a::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  background: url(../image/common/icon/icon_btn_external.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .post-button-external a::after {
    width: 12px;
    height: 12px;
  }
}
.post-space-xlarge {
  height: 180px;
}
@media screen and (max-width: 767px) {
  .post-space-xlarge {
    height: 120px;
  }
}
.post-space-large {
  height: 120px;
}
@media screen and (max-width: 767px) {
  .post-space-large {
    height: 80px;
  }
}
.post-space-middle {
  height: 60px;
}
@media screen and (max-width: 767px) {
  .post-space-middle {
    height: 50px;
  }
}
.post-space-small {
  height: 40px;
}
@media screen and (max-width: 767px) {
  .post-space-small {
    height: 30px;
  }
}
.post-space-xsmall {
  height: 20px;
}
.post-col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px min(3.3333333333vw, 48px);
}
@media screen and (max-width: 1000px) {
  .post-col2 {
    flex-direction: column;
  }
}
.post-col2 > * {
  width: calc((100% - min(3.3333333333vw, 48px)) / 2);
}
@media screen and (max-width: 1000px) {
  .post-col2 > * {
    width: 100%;
  }
}
.post-imgBlock {
  text-align: center;
}
.post-imgBlock figcaption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}
.post-imgBlock img {
  width: 100%;
}

/* ========================================
For Photographers .photographers
======================================== */
@media screen and (max-width: 767px) {
  .photographers .l-introBox_read {
    letter-spacing: -0.03em;
  }
}
.photographers_contMt {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .photographers_contMt {
    margin-top: 40px;
  }
}
.photographers_sec {
  position: relative;
  margin-top: 80px;
  padding-top: 80px;
}
.photographers_sec::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .photographers_sec {
    margin-top: 48px;
    padding-top: 44px;
  }
}
.photographers_col2 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .photographers_col2 {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .photographers_col2 > * {
    width: calc((100% - 48px) / 2);
  }
}
.photographers_contBox {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .photographers_imgBox {
    margin-top: 36px;
  }
}
.photographers_alignBottom {
  margin-top: auto;
  padding-top: 34px;
}
@media screen and (max-width: 767px) {
  .photographers_alignBottom {
    margin-top: 20px;
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .photographers_captionPdding {
    padding-bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  .photographers .m-link-arrow img {
    width: auto;
    height: 15px;
    transform: translateY(2px);
  }
}

.photographersReview_info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 80px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .photographersReview_info {
    flex-direction: column;
    margin-top: 22px;
  }
}
.photographersReview_info dt {
  font-family: var(--font-en-500);
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .photographersReview_info dt {
    font-size: 16px;
  }
}
.photographersReview_info dd {
  font-family: var(--font-en-500);
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .photographersReview_info dd {
    font-size: 20px;
  }
}

.photographersMaster_sec {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .photographersMaster_sec {
    flex-direction: column-reverse;
    gap: 26px 0;
    margin-top: 42px;
  }
  .photographersMaster_sec .photographers_imgBox {
    margin-top: 0;
  }
}
.photographersMaster_sec + .photographersMaster_sec {
  margin-top: 77px;
}
@media screen and (max-width: 767px) {
  .photographersMaster_sec + .photographersMaster_sec {
    margin-top: 40px;
  }
}
.photographersMaster_sec h3 {
  margin-bottom: 29px;
}
@media screen and (max-width: 767px) {
  .photographersMaster_sec h3 {
    margin-bottom: 20px;
  }
}
.en .photographersMaster_sec h3 {
  margin-top: -0.15em;
  font-family: var(--font-en-500);
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .en .photographersMaster_sec h3 {
    margin-top: 0;
    font-size: 20px;
    line-height: 1.2;
  }
}
.ja .photographersMaster_sec h3 {
  margin-top: -0.25em;
  font-family: var(--font-ja-500);
  font-size: 26px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .photographersMaster_sec h3 {
    margin-top: 0;
    font-size: 18px;
  }
}
.photographersMaster_info {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .photographersMaster_info {
    margin-top: 19px;
  }
}
.photographersMaster_info dl {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
}
.en .photographersMaster_info dt {
  font-family: var(--font-en-500);
}
.ja .photographersMaster_info dt {
  font-family: var(--font-ja-500);
}

/* ========================================
Portfolio Review .portfolio
======================================== */
.portfolio_sec {
  position: relative;
  margin-top: 80px;
  padding-top: 80px;
}
.portfolio_sec::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .portfolio_sec {
    margin-top: 44px;
    padding-top: 44px;
  }
}
@media screen and (max-width: 767px) {
  .portfolio .l-modal_container {
    padding-bottom: 150px;
  }
}

.en .portfolioIntro_secTtl {
  margin-top: -0.1em;
  font-family: var(--font-en-500);
  font-size: 28px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .en .portfolioIntro_secTtl {
    font-size: 24px;
  }
}
.ja .portfolioIntro_secTtl {
  margin-top: -0.25em;
  font-family: var(--font-ja-500);
  font-size: 26px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .portfolioIntro_secTtl {
    font-size: 22px;
  }
}
.portfolioIntro_infoBox {
  width: calc((100% - 48px) / 2);
  margin-top: 46px;
  border: 1px solid var(--color-white);
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .portfolioIntro_infoBox {
    width: 100%;
    margin-top: 44px;
    padding: 20px;
  }
}
.portfolioIntro_infoBox dl + dl {
  margin-top: 20px;
}
.en .portfolioIntro_infoBox dt {
  font-family: var(--font-en-500);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .en .portfolioIntro_infoBox dt {
    font-size: 16px;
  }
}
.ja .portfolioIntro_infoBox dt {
  font-family: var(--font-ja-500);
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .ja .portfolioIntro_infoBox dt {
    font-size: 15px;
  }
}
.portfolioIntro_link {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .portfolioIntro_link {
    margin-top: 16px;
  }
}

@media screen and (max-width: 767px) {
  .portfolioAbut.l-col2 {
    gap: 0 0;
  }
}
@media screen and (max-width: 767px) {
  .portfolioAbut_contBox {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .portfolioAbut_contBox > * {
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  .portfolioAbut h2 {
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .portfolioAbut_imgBox {
    order: 2;
    margin-top: 36px;
  }
}

.portfolioAward_sec {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .portfolioAward_sec {
    margin-top: 40px;
  }
}
.portfolioAward_sec + .portfolioAward_sec {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .portfolioAward_sec + .portfolioAward_sec {
    margin-top: 40px;
  }
}
.portfolioAward_sec h3 {
  margin-bottom: 5px;
}
.en .portfolioAward_sec h3 {
  margin-top: -0.1em;
  font-family: var(--font-en-500);
  font-size: 28px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .en .portfolioAward_sec h3 {
    font-size: 24px;
  }
}
.ja .portfolioAward_sec h3 {
  margin-top: -0.25em;
  font-family: var(--font-ja-500);
  font-size: 26px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .portfolioAward_sec h3 {
    font-size: 22px;
  }
}
.portfolioAward_sec h4 {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .portfolioAward_sec h4 {
    font-size: 16px;
  }
}
.en .portfolioAward_sec h4 {
  font-family: var(--font-en-500);
}
.ja .portfolioAward_sec h4 {
  font-family: var(--font-ja-500);
}

.portfolioReviewer_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 25px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .portfolioReviewer_list {
    gap: 28px 12px;
    margin-top: 36px;
  }
}
.portfolioReviewer_list > li {
  width: calc((100% - 100px) / 5);
}
@media screen and (max-width: 1000px) {
  .portfolioReviewer_list > li {
    width: calc((100% - 50px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .portfolioReviewer_list > li {
    width: calc((100% - 12px) / 2);
  }
}
.portfolioReviewer_listCont {
  cursor: pointer;
}
@media (hover: hover) {
  .portfolioReviewer_listCont ._img img {
    transition: 0.3s;
  }
  .portfolioReviewer_listCont:hover ._img img {
    transform: scale(1.06);
  }
}
.portfolioReviewer_listCont ._img {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.portfolioReviewer_listCont ._img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.portfolioReviewer_listCont ._caption {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .portfolioReviewer_listCont ._caption {
    margin-top: 8px;
    line-height: 1.4;
  }
}
.portfolioReviewer_listCont ._name {
  margin-top: 19px;
  font-family: var(--font-en-500);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .portfolioReviewer_listCont ._name {
    margin-top: 11px;
  }
}
.portfolioReviewer_listCont ._language {
  margin-top: 2px;
  font-family: var(--font-en-500);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
}
.portfolioReviewer_listCont ._type {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .portfolioReviewer_listCont ._type {
    margin-top: 14px;
    line-height: 1.2;
  }
}
.portfolioReviewer_modalCont {
  display: none;
  align-items: flex-start;
  gap: 0 48px;
}
@media screen and (max-width: 1000px) {
  .portfolioReviewer_modalCont {
    flex-wrap: wrap;
    gap: 0 24px;
  }
}
.portfolioReviewer_modalCont ._imgBox {
  width: 282px;
}
@media screen and (max-width: 1000px) {
  .portfolioReviewer_modalCont ._imgBox {
    width: min(34.6666666667vw, 282px);
  }
}
.portfolioReviewer_modalCont ._caption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.2;
}
.portfolioReviewer_modalCont ._contBox {
  flex: 1;
}
@media screen and (max-width: 1000px) {
  .portfolioReviewer_modalCont ._contBox {
    display: contents;
  }
}
@media screen and (max-width: 1000px) {
  .portfolioReviewer_modalCont ._nameBox {
    width: calc(100% - min(34.6666666667vw, 282px) - 24px);
    padding-top: 28px;
  }
}
.portfolioReviewer_modalCont ._name {
  margin-top: -0.2em;
  line-height: 1.2;
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .portfolioReviewer_modalCont ._name {
    font-size: min(6.4vw, 24px);
  }
}
.en .portfolioReviewer_modalCont ._name {
  font-family: var(--font-en-500);
  letter-spacing: 0;
}
.ja .portfolioReviewer_modalCont ._name {
  font-family: var(--font-ja-500);
}
.portfolioReviewer_modalCont ._language {
  margin-top: 5px;
  font-family: var(--font-en-500);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .portfolioReviewer_modalCont ._language {
    font-size: 16px;
  }
}
.portfolioReviewer_modalCont ._type {
  width: 100%;
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .portfolioReviewer_modalCont ._type {
    margin-top: 28px;
  }
}
.portfolioReviewer_modalCont ._description {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .portfolioReviewer_modalCont ._description {
    margin-top: 28px;
  }
}

.portfolioInformation h2 {
  margin-bottom: 50px;
}
.portfolioInformation dl + dl {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .portfolioInformation dl + dl {
    margin-top: 28px;
  }
}
.en .portfolioInformation dt {
  font-family: var(--font-en-500);
  font-size: 20px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .en .portfolioInformation dt {
    font-size: 18px;
  }
}
.ja .en .portfolioInformation dt {
  font-family: var(--font-ja-500);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .en .portfolioInformation dt {
    font-size: 16px;
  }
}
.portfolioInformation dd {
  margin-top: 10px;
}
.ja .portfolioInformation dd {
  margin-top: 2px;
}
.portfolioInformation_link {
  margin-top: 60px;
}

.portfolioProcess h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .portfolioProcess h2 {
    margin-bottom: 36px;
  }
}
.portfolioProcess dl + dl {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .portfolioProcess dl + dl {
    margin-top: 30px;
  }
}
.portfolioProcess dt img {
  width: auto;
  height: 18px;
}
@media screen and (max-width: 767px) {
  .portfolioProcess dt img {
    height: 15px;
  }
}
.portfolioProcess dd {
  margin-top: 15px;
}
.portfolioProcess_notes {
  margin-top: 40px;
}

/* ========================================
Privacy privacy
======================================== */
@media screen and (max-width: 767px) {
  .press .footer {
    margin-top: 0;
  }
}

.pressIntro_ttl {
  font-family: var(--font-en-500);
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .pressIntro_ttl {
    font-size: 24px;
    line-height: 1.3;
  }
}
.pressIntro_cont {
  margin-top: 21px;
}
.pressIntro_cont p + p {
  margin-top: 20px;
}

.pressList {
  border-top: 1px solid var(--color-white);
  margin-top: 83px;
  padding-top: 85px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .pressList {
    margin-top: 16px;
    padding-top: 35px;
    border-top: 0;
  }
}
.pressList ul {
  display: flex;
  flex-wrap: wrap;
  gap: 73px 48px;
}
@media screen and (max-width: 767px) {
  .pressList ul {
    gap: 0 0;
  }
}
.pressList li {
  display: flex;
  align-items: flex-start;
  width: calc((100% - 48px) / 2);
}
@media screen and (max-width: 767px) {
  .pressList li {
    flex-direction: column;
    gap: 32px 0;
    width: 100%;
    padding: 32px 0 42px;
    position: relative;
  }
  .pressList li::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: var(--color-white);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.pressList_year {
  width: 100px;
  padding-top: 3px;
  font-family: var(--font-en-500);
  font-size: 28px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .pressList_year {
    padding-top: 0;
    font-size: 24px;
  }
}
.pressList_contBox {
  flex: 1;
  padding-top: 3px;
}
@media screen and (max-width: 767px) {
  .pressList_contBox {
    padding-top: 0;
  }
}
.pressList_contBox dl + dl {
  margin-top: 29px;
}
@media screen and (max-width: 767px) {
  .pressList_contBox dl + dl {
    margin-top: 27px;
  }
}
.pressList_contBox dt {
  font-family: var(--font-en-500);
  font-size: 18px;
  line-height: 1.5;
}
.pressList_time {
  margin-top: 4px;
  font-family: var(--font-en-400);
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .pressList_time {
    margin-top: 6px;
  }
}
.pressList_links {
  display: flex;
  align-items: center;
  gap: 0 14px;
  margin-top: 7px;
  font-family: var(--font-en-400);
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pressList_links {
    margin-top: 17px;
  }
}
.pressList_links::before {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: var(--color-white);
  order: 2;
  transform: translateY(1px);
}
.pressList_links a:last-child {
  order: 3;
}

/* ========================================
Privacy privacy
======================================== */
.privacy h2 {
  margin-bottom: 18px;
  font-family: var(--font-en-500);
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .privacy h2 {
    margin-bottom: 6px;
  }
}
.privacy h2:not(:first-child) {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .privacy h2:not(:first-child) {
    margin-top: 53px;
  }
}
.privacy p + p {
  margin-top: 17px;
}
.privacy .privacy_mtlarge {
  margin-top: 50px;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーー
Programs .programs
Programs詳細 .programdetail
ーーーーーーーーーーーーーーーーーーーーーーーー */
/* ========================================
Programs programs
======================================== */
@media screen and (max-width: 767px) {
  .programs .footer {
    margin-top: 48px;
  }
}

.programsKg {
  border-top: 1px solid var(--color-white);
  margin-top: 88px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .programsKg {
    margin-top: 46px;
    padding-top: 52px;
  }
}
.programsKg_intro_read {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .programsKg_intro_read {
    margin-top: 44px;
  }
}
.programsKg_intro_link {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .programsKg_intro_link {
    margin-top: 8px;
  }
}
.programsKg_sec {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .programsKg_sec {
    margin-top: 47px;
  }
}
.programsKg_sec .l-programList02 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .programsKg_sec .l-programList02 {
    margin-top: 28px;
  }
}
.programsKg_read {
  margin-top: 24px;
}

.programsKotophonie {
  border-top: 1px solid var(--color-white);
  margin-top: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .programsKotophonie {
    margin-top: 48px;
    padding-top: 43px;
  }
}
.programsKotophonie_intro_read {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .programsKotophonie_intro_read {
    margin-top: 32px;
  }
}
.programsKotophonie_intro_link {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .programsKotophonie_intro_link {
    margin-top: 18px;
  }
}
.programsKotophonie .l-eventsList {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .programsKotophonie .l-eventsList {
    margin-top: 50px;
  }
}

/* ========================================
Programs詳細 .programdetail
======================================== */
.programdetail {
  padding-top: 140px;
}
.programdetail .footer {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .programdetail .l-col2Cont {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .programdetail .l-col2Cont .l-col2Cont_aside {
    order: 2;
    margin: 47px 0 9px;
  }
  .programdetail .l-col2Cont .l-col2Cont_main > *:not(.l-post_imgBlock:first-child) {
    width: 100%;
    order: 2;
  }
}
.programdetail .l-col2Cont_main .l-post_imgBlock + .l-post_imgBlock {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .programdetail .l-col2Cont_main .l-post_imgBlock + .l-post_imgBlock {
    margin-top: 44px;
  }
}
@media screen and (max-width: 767px) {
  .programdetail .l-col2Cont_main {
    display: contents;
  }
}
.programdetail_theme {
  font-family: var(--font-en-500-it);
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .programdetail_theme {
    letter-spacing: 0;
  }
}
.en .programdetail_theme {
  margin-top: 3px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .en .programdetail_theme {
    margin-top: 6px;
    font-size: 20px;
  }
}
.ja .programdetail_theme {
  margin-top: 30px;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .ja .programdetail_theme {
    margin-top: 20px;
    font-size: 18px;
  }
}
.en .programdetail_presented {
  font-family: var(--font-en-500);
}
.ja .programdetail_presented {
  font-family: var(--font-ja-500);
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .ja .programdetail_presented {
    margin-top: 10px;
  }
}
.programdetail .l-post_venues {
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .programdetail .l-post_venues {
    margin-top: 22px;
  }
}
.programdetail_time {
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .programdetail_time {
    margin-top: 12px;
    font-size: 18px;
  }
}
.programdetail_time span {
  display: inline-block;
}
.programdetail_time ._time::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background: var(--color-white);
  margin: 0 12px;
}
@media screen and (max-width: 767px) {
  .programdetail_time ._time::after {
    display: none;
  }
}
.ja .programdetail_time ._time {
  font-family: var(--font-ja-500);
}
.en .programdetail_time ._bold {
  font-family: var(--font-en-500);
}
.programdetail_time ._day {
  margin-left: 4px;
  font-size: 18px;
}
.programdetail_time ._closed {
  display: inline;
}
@media screen and (max-width: 767px) {
  .programdetail_time ._closed {
    display: block;
    margin-top: 5px;
    font-size: 16px;
  }
}
.programdetail_ticket {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .programdetail_ticket {
    margin-top: 9px;
  }
}
@media screen and (max-width: 767px) {
  .programdetail_ticket_studentID {
    display: block;
  }
}
.programdetail_organizer {
  margin-top: 3px;
}
.programdetail_reserveLink {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .programdetail_reserveLink {
    margin-top: 23px;
  }
}
.programdetail_reserveLink a {
  max-width: 286px;
}
@media screen and (max-width: 767px) {
  .programdetail_reserveLink a {
    width: 100%;
    max-width: 100%;
  }
}
.en .programdetail_asideTtl {
  font-family: var(--font-en-500);
  font-size: 28px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .en .programdetail_asideTtl {
    line-height: 1.2;
  }
}
.ja .programdetail_asideTtl {
  font-family: var(--font-ja-500);
  font-size: 26px;
  line-height: 1.5;
}
.programdetail_asideText {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .programdetail_asideText {
    margin-top: 19px;
  }
}
.programdetail_asideImportant {
  margin-top: 40px;
}
.programdetail_sec {
  margin-top: 80px;
  padding-top: 80px;
  position: relative;
}
.programdetail_sec::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .programdetail_sec {
    margin-top: 44px;
    padding-top: 40px;
  }
}
.programdetail_description {
  margin-top: 40px;
}
.programdetail_important {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .programdetail_important {
    margin-top: 37px;
  }
}
.programdetail_block1 > *:first-child, .programdetail_block2 > *:first-child, .programdetail_block3 > *:first-child {
  margin-top: 0 !important;
}
.en .programdetail_block1 {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .en .programdetail_block1 {
    margin-top: 26px;
  }
}
.ja .programdetail_block1 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .ja .programdetail_block1 {
    margin-top: 20px;
  }
}
.programdetail_block2 {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .programdetail_block2 {
    margin-top: 32px;
  }
}
.programdetail_block3 {
  margin-top: 69px;
}
@media screen and (max-width: 767px) {
  .programdetail_block3 {
    margin-top: 46px;
  }
}

.programdetailArtist_sec {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .programdetailArtist_sec {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 36px;
  }
  .programdetailArtist_sec > * {
    order: 2;
  }
}
.programdetailArtist_secTtl {
  font-family: var(--font-en-500);
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .programdetailArtist_secTtl {
    font-size: 28px;
  }
}
.programdetailArtist_secTtl ._jaText {
  display: block;
  font-family: var(--font-en-500);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .programdetailArtist_secTtl ._jaText {
    font-size: 15px;
  }
}
.programdetailArtist_type {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  padding: 0 25px;
  height: 36px;
  border: 1px solid var(--color-white);
  transition: 0.3s;
}
.programdetailArtist_type + .programdetailArtist_container {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .programdetailArtist_type + .programdetailArtist_container {
    margin-top: 28px;
  }
}
.programdetailArtist_type:hover {
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .programdetailArtist_type {
    height: 32px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .programdetailArtist_type img {
    height: 13px;
  }
}
.programdetailArtist_container {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .programdetailArtist_container {
    display: contents;
  }
  .programdetailArtist_container > * {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .programdetailArtist_contBox {
    margin-top: -0.25em;
  }
}
@media screen and (max-width: 767px) {
  .programdetailArtist_contBox {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .programdetailArtist_imgBox {
    order: 1;
    margin-bottom: 30px;
  }
}
.programdetailArtist_imgBox img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .programdetailArtist_imgBox.-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.programdetailArtist_imgBox.-vertical .m-imgView {
  max-inline-size: max-content;
}
.programdetailArtist_imgBox.-vertical img {
  width: auto;
  max-width: none;
  height: min(41.6666666667vw, 600px);
}
@media screen and (max-width: 767px) {
  .programdetailArtist_imgBox.-vertical img {
    height: 80.8vw;
  }
}

@media screen and (max-width: 767px) {
  .programdetailVenue_spWrap {
    display: flex;
    flex-direction: column;
  }
  .programdetailVenue_spWrap > * {
    order: 2;
  }
}
.programdetailVenue_head {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .programdetailVenue_head {
    margin-top: 29px;
    gap: 18px 0;
  }
}
.programdetailVenue_name {
  font-family: var(--font-en-500);
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .programdetailVenue_name {
    font-size: 24px;
  }
}
.programdetailVenue_container {
  margin-top: 49px;
}
@media screen and (max-width: 767px) {
  .programdetailVenue_container {
    display: contents;
  }
  .programdetailVenue_container > * {
    order: 2;
  }
}
.programdetailVenue .l-iconList {
  padding-top: 11px;
}
@media screen and (min-width: 768px) {
  .programdetailVenue .l-iconList {
    justify-content: flex-end;
    gap: 14px 14px;
  }
  .programdetailVenue .l-iconList li {
    gap: 0 8px;
    font-size: 12px;
  }
  .programdetailVenue .l-iconList_icon {
    width: 22px;
    height: 22px;
  }
}
.programdetailVenue_address {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 min(3.3333333333vw, 48px);
  margin-top: -0.1em;
}
@media screen and (max-width: 767px) {
  .programdetailVenue_address {
    margin-top: 28px;
  }
}
.programdetailVenue_address dl {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .programdetailVenue_address dl + dl {
    margin-top: 18px;
  }
}
.programdetailVenue_address dl._half {
  width: calc((100% - min(3.3333333333vw, 48px)) / 2);
}
@media screen and (min-width: 768px) {
  .programdetailVenue_address dl._half {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .programdetailVenue_address dl._half {
    width: 100%;
  }
}
.programdetailVenue_address ._textlarge {
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .programdetailVenue_address ._textlarge {
    font-size: 20px;
    line-height: 1.2;
    margin-top: 7px;
  }
}
.en .programdetailVenue_address ._textlarge {
  font-family: var(--font-en-500);
}
.ja .programdetailVenue_address ._textlarge {
  font-family: var(--font-ja-500);
}
@media screen and (max-width: 767px) {
  .programdetailVenue_address dt {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .programdetailVenue_address dd {
    margin-top: 1px;
  }
}
.programdetailVenue_moreLink {
  margin-top: 28px;
  max-width: 285px;
}
@media screen and (max-width: 767px) {
  .programdetailVenue_moreLink {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .programdetailVenue_map {
    order: 1;
    margin-top: 32px;
  }
}
.programdetailVenue_map iframe {
  width: 100%;
  height: 452px;
}
@media screen and (max-width: 767px) {
  .programdetailVenue_map iframe {
    height: 240px;
  }
}

.programdetailReservations_link {
  max-width: 285px;
}
@media screen and (max-width: 767px) {
  .programdetailReservations_link {
    max-width: 100%;
  }
}

.programdetailTalkarchives_list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 16px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .programdetailTalkarchives_list {
    flex-direction: column;
    margin-top: 36px;
  }
}
.programdetailTalkarchives_list > li {
  width: calc((100% - 16px) / 2);
}
@media screen and (max-width: 767px) {
  .programdetailTalkarchives_list > li {
    width: 100%;
  }
}

/* ========================================
Recruit .recruit
======================================== */
@media screen and (max-width: 767px) {
  .recruit .footer {
    margin-top: 44px;
  }
}
.recruit_sec {
  position: relative;
  margin-top: 80px;
  padding-top: 80px;
}
.recruit_sec::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .recruit_sec {
    margin-top: 44px;
    padding-top: 44px;
  }
}

.recruitScroll {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .recruitScroll {
    margin-top: 44px;
  }
}
.recruitScroll img {
  width: auto;
  height: 165px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .recruitScroll img {
    height: 104px;
    margin-right: 12px;
  }
}
.recruitScroll.m-horizontalScroll > * {
  animation-duration: 60s;
}
.recruitScroll + .recruitScroll {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .recruitScroll + .recruitScroll {
    margin-top: 12px;
  }
}
.recruitScroll-delay img {
  transform: translateX(calc(50% - 10px));
}
@media screen and (max-width: 767px) {
  .recruitScroll-delay img {
    transform: translateX(calc(50% - 6px));
  }
}

.recruitScroll2.m-horizontalScroll > * {
  animation-direction: reverse;
}

.recruitScrollCaption {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .recruitScrollCaption {
    font-size: 12px;
  }
}

.recruitType {
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .recruitType {
    margin-top: 42px;
  }
}
.recruitType .l-col2 {
  gap: 0 48px;
}
.recruitType_list {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .recruitType_list {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .recruitType_list + .recruitType_list {
    margin-top: -1px;
  }
}
.recruitType_list.l-col2 {
  align-items: flex-start;
}
.recruitType_list > dl > dt,
.recruitType_list > dl > dd {
  padding-left: 0;
}
.recruitType_list > dl > dt::before,
.recruitType_list > dl > dd::before {
  display: none;
}
.recruitType_list > dl > dt {
  padding-top: 28px;
  padding-bottom: 28px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .recruitType_list > dl > dt {
    padding-top: 17px;
    padding-bottom: 20px;
  }
}
.en .recruitType_list > dl > dt {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .en .recruitType_list > dl > dt {
    font-size: 20px;
  }
}
.en .recruitType_list > dl > dt ._smallText {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .en .recruitType_list > dl > dt ._smallText {
    font-size: 16px;
  }
}
.en .recruitType_list > dl > dt::before {
  top: 30px;
}
.ja .recruitType_list > dl > dt {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .ja .recruitType_list > dl > dt {
    font-size: 18px;
  }
}
.ja .recruitType_list > dl > dt ._smallText {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .ja .recruitType_list > dl > dt ._smallText {
    font-size: 14px;
  }
}
.ja .recruitType_list > dl > dt::before {
  top: 30px;
}
.recruitType_list > dl > dd {
  padding-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .recruitType_list > dl > dd {
    padding-bottom: 20px;
  }
}
.recruitType_closed {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  margin-top: 12px;
  padding: 0 6px;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  max-inline-size: max-content;
}
@media screen and (max-width: 767px) {
  .recruitType_closed {
    height: 21px;
    margin-top: 8px;
    font-size: 13px;
  }
}
.en .recruitType_closed {
  font-family: var(--font-en-500);
}
.ja .recruitType_closed {
  font-family: var(--font-ja-500);
}
.recruitType_read {
  margin: -2px 0 32px;
}
@media screen and (max-width: 767px) {
  .recruitType_read {
    margin-bottom: 25px;
  }
}
.en .recruitType_read {
  font-family: var(--font-en-500);
  font-size: 20px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .en .recruitType_read {
    font-size: 18px;
    line-height: 1.4;
  }
}
.ja .recruitType_read {
  font-family: var(--font-ja-500);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .recruitType_read {
    font-size: 16px;
  }
}
.recruitType_sumally {
  margin-top: 23px;
}
.en .recruitType_sumally dt {
  font-family: var(--font-en-500);
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .en .recruitType_sumally dt {
    font-size: 16px;
  }
}
.ja .recruitType_sumally dt {
  font-family: var(--font-ja-500);
  font-size: 16px;
  line-height: 1.5;
}
.recruitType_sumally dd {
  margin-top: 3px;
}
.recruitType_appBpx {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .recruitType_appBpx a {
    max-width: 310px;
  }
}

.recruitVoice_list {
  display: flex;
  flex-wrap: wrap;
  gap: 52px calc(40 / 1312 * 100%);
  margin-top: 47px;
}
@media screen and (max-width: 1000px) {
  .recruitVoice_list {
    gap: 28px 0;
    margin-top: 32px;
  }
}
.recruitVoice_list > li {
  width: 27.4390243902%;
  padding: min(2.4305555556vw, 35px) min(1.6666666667vw, 24px) min(2.2222222222vw, 32px);
  border: 1px solid var(--color-white);
  position: relative;
  background: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .recruitVoice_list > li {
    width: 100%;
    padding: 20px 20px 22px;
  }
}
@media screen and (min-width: 1001px) {
  .recruitVoice_list > li:nth-child(6n+4) {
    margin-left: 11.5853658537%;
  }
}
.recruitVoice_list > li::before, .recruitVoice_list > li::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 5px 0 5px;
  position: absolute;
  left: 10px;
  bottom: 0;
  transform: translateY(100%);
}
@media screen and (max-width: 767px) {
  .recruitVoice_list > li::before, .recruitVoice_list > li::after {
    left: 20px;
  }
}
.recruitVoice_list > li::before {
  border-color: var(--color-white) transparent transparent transparent;
}
.recruitVoice_list > li::after {
  border-color: var(--color-black) transparent transparent transparent;
  bottom: 4px;
}
.recruitVoice_list > li:nth-child(even)::before, .recruitVoice_list > li:nth-child(even)::after {
  left: auto;
  right: 10px;
}

.recruitConsider_read {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .recruitConsider_read {
    margin-top: 34px;
  }
}
.recruitConsider section {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .recruitConsider section {
    margin-top: 46px;
  }
}
.recruitConsider h3 {
  margin-bottom: 26px;
  line-height: 1.3;
}
.en .recruitConsider h3 {
  font-family: var(--font-en-500);
  font-size: 24px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .en .recruitConsider h3 {
    font-size: 22px;
  }
}
.ja .recruitConsider h3 {
  font-family: var(--font-ja-500);
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .ja .recruitConsider h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .recruitConsider h3 {
    margin-bottom: 32px;
  }
}
.recruitConsider h4 {
  line-height: 1.2;
}
.en .recruitConsider h4 {
  font-family: var(--font-en-500);
  font-size: 20px;
  letter-spacing: 0.01em;
}
.ja .recruitConsider h4 {
  font-family: var(--font-ja-500);
  font-size: 18px;
}
.recruitConsider .m-list-boder {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .recruitConsider .m-list-boder {
    margin-top: -12px;
  }
}
.recruitConsider .m-list-boder + h4 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .recruitConsider_pin .m-list-boder {
    column-count: 2;
  }
}

.recruitFaq_list {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .recruitFaq_list {
    margin-top: 36px;
  }
}
.recruitFaq_list.l-col2 {
  align-items: flex-start;
  gap: 0 48px;
}
.recruitFaq_list dl {
  border-top: 1px solid var(--color-white);
  position: relative;
}
.recruitFaq_list dl + dl:nth-last-child(1), .recruitFaq_list dl + dl:nth-last-child(2) {
  border-bottom: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .recruitFaq_list dl + dl:nth-last-child(2) {
    border-bottom: 0;
  }
}
.recruitFaq_list dl::before, .recruitFaq_list dl::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 40px;
  right: 10px;
}
@media screen and (max-width: 767px) {
  .recruitFaq_list dl::before, .recruitFaq_list dl::after {
    width: 14px;
    top: 28px;
    right: 9px;
  }
}
.recruitFaq_list dl::after {
  transition: 0.35s;
  transform: rotate(-90deg);
}
.recruitFaq_list dl.is-active::after {
  transform: rotate(0deg);
}
.recruitFaq_list dt,
.recruitFaq_list dd {
  position: relative;
  padding-left: 30px;
  padding-right: 110px;
}
@media screen and (max-width: 767px) {
  .recruitFaq_list dt,
  .recruitFaq_list dd {
    padding-left: 35px;
    padding-right: 30px;
  }
}
.recruitFaq_list dt::before,
.recruitFaq_list dd::before {
  display: block;
  font-family: var(--font-en-500);
  letter-spacing: 0.01em;
  line-height: 1.2;
  position: absolute;
  left: 0;
}
.en .recruitFaq_list dt::before,
.en .recruitFaq_list dd::before {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .en .recruitFaq_list dt::before,
  .en .recruitFaq_list dd::before {
    font-size: 18px;
  }
}
.ja .recruitFaq_list dt::before,
.ja .recruitFaq_list dd::before {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .ja .recruitFaq_list dt::before,
  .ja .recruitFaq_list dd::before {
    font-size: 16px;
  }
}
.recruitFaq_list dt {
  cursor: pointer;
}
.en .recruitFaq_list dt {
  padding-top: 28px;
  padding-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .en .recruitFaq_list dt {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.ja .recruitFaq_list dt {
  padding-top: 30px;
  padding-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .ja .recruitFaq_list dt {
    padding-top: 22px;
    padding-bottom: 18px;
  }
}
.en .recruitFaq_list dt {
  font-family: var(--font-en-500);
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .en .recruitFaq_list dt {
    font-size: 16px;
  }
}
.ja .recruitFaq_list dt {
  font-family: var(--font-ja-500);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .recruitFaq_list dt {
    font-size: 16px;
  }
}
.recruitFaq_list dt::before {
  content: "Q.";
}
.en .recruitFaq_list dt::before {
  top: 28px;
}
@media screen and (max-width: 767px) {
  .en .recruitFaq_list dt::before {
    top: 18px;
  }
}
.ja .en .recruitFaq_list dt::before {
  top: 28px;
}
@media screen and (max-width: 767px) {
  .ja .en .recruitFaq_list dt::before {
    top: 21px;
  }
}
.recruitFaq_list dd {
  padding-bottom: 24px;
}
.recruitFaq_list dd::before {
  content: "A.";
  top: 0;
}
@media screen and (max-width: 767px) {
  .recruitFaq_list dd::before {
    top: 2px;
  }
}

.recruitHow_read {
  margin: 48px 0 52px;
}
@media screen and (max-width: 767px) {
  .recruitHow_read {
    margin: 36px 0 24px;
  }
}
.recruitHow_ttl {
  margin: 32px 0 9px;
}
@media screen and (max-width: 767px) {
  .recruitHow_ttl {
    margin-top: 22px;
  }
}
.en .recruitHow_ttl {
  font-size: 20px;
  font-family: var(--font-en-500);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .en .recruitHow_ttl {
    font-size: 18px;
  }
}
.ja .recruitHow_ttl {
  font-size: 18px;
  font-family: var(--font-ja-500);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .recruitHow_ttl {
    font-size: 16px;
  }
}
.recruitHow_contac {
  width: calc((100% - 48px) / 2);
  margin-top: 60px;
  padding: 34px 32px;
  border: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .recruitHow_contac {
    width: 100%;
    margin-top: 43px;
    padding: 18px 20px 22px;
  }
}
.en .recruitHow_contac_ttl {
  font-size: 24px;
  font-family: var(--font-en-500);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .en .recruitHow_contac_ttl {
    font-size: 20px;
  }
}
.ja .recruitHow_contac_ttl {
  font-size: 22px;
  font-family: var(--font-ja-500);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .recruitHow_contac_ttl {
    font-size: 18px;
  }
}
.recruitHow_contac_read {
  margin: 28px 0 22px;
}
@media screen and (max-width: 767px) {
  .recruitHow_contac_read {
    margin: 18px 0 17px;
  }
}
.en .recruitHow_contac_read {
  font-size: 20px;
  font-family: var(--font-en-500);
}
@media screen and (min-width: 768px) {
  .en .recruitHow_contac_read {
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .en .recruitHow_contac_read {
    font-size: 16px;
  }
}
.ja .recruitHow_contac_read {
  font-size: 18px;
  font-family: var(--font-ja-500);
}
@media screen and (min-width: 768px) {
  .ja .recruitHow_contac_read {
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .ja .recruitHow_contac_read {
    font-size: 16px;
  }
}
.recruitHow_contac_sumally {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .recruitHow_contac_sumally {
    margin-top: 13px;
  }
}
.recruitHow_contac_sumally dl {
  display: flex;
  flex-wrap: wrap;
}
.recruitHow_contac_sumally dt {
  margin-right: 0.4em;
}
.en .recruitHow_contac_sumally dt {
  font-family: var(--font-en-500);
}
.ja .recruitHow_contac_sumally dt {
  font-family: var(--font-ja-500);
}
.recruitHow_link {
  margin-top: 20px;
}

/* ========================================
Sponsors .sponsors
======================================== */
.sponsors {
  background: var(--color-white);
  color: var(--color-black);
}
.sponsors .footer_newsLettre {
  border-color: var(--color-black);
}
.sponsors .footer_newsLettre_form input {
  border-color: var(--color-black);
  color: var(--color-black);
}
.sponsors .header_logo::before,
.sponsors .l-head_mainTtl::before {
  background: #fff;
}
.sponsors_container {
  max-width: 1000px;
}
.sponsors_container h2 {
  margin: 75px 0 44px;
  font-family: var(--font-en-500);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sponsors_container h2 {
    margin: 44px 0 30px;
    font-size: 20px;
  }
}
.sponsors_premium {
  max-width: 678px;
  display: flex;
  align-items: center;
  gap: 25px 48px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sponsors_premium {
    flex-direction: column;
  }
}
.sponsors_premium > * {
  flex: 1;
}
.sponsors_premium h2 {
  margin: 0;
  text-align: right;
}
.sponsors_premium_imgBox {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sponsors_premium_imgBox img {
    width: 80px;
  }
}
.sponsors_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 28px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .sponsors_list {
    gap: 20px 7px;
  }
}
@media screen and (max-width: 767px) {
  .sponsors_list img {
    zoom: 0.43;
  }
}
.sponsors_list-min {
  gap: 36px 36px;
}
@media screen and (max-width: 767px) {
  .sponsors_list-min {
    gap: 17px 5px;
  }
}
@media screen and (max-width: 767px) {
  .sponsors_list-min img {
    zoom: 0.65;
  }
}
@media (hover: hover) {
  .sponsors_list a {
    transition: opacity 0.3s;
  }
  .sponsors_list a:hover {
    opacity: 0.8;
  }
}
.sponsors .menuBtn {
  border-color: #000;
  background-color: #fff;
}
.sponsors .menuBtn span {
  background: #000;
}
.sponsors .menuBtn:hover {
  background-color: #000;
}
.sponsors .menuBtn:hover span {
  background: #fff;
}
.sponsors .header_bottomFix {
  background-color: #fff;
  border-color: #000;
}
.sponsors .header_bottomFix a:hover {
  background-color: #000;
}
.sponsors .footer_newsLettre_form input::placeholder {
  color: #000;
}
.sponsors .footer_container {
  border-color: #000;
}
.sponsors .footer_newsLettre_form button[type=submit] {
  background-color: #000;
  border-color: #000;
}
.sponsors .footer_newsLettre_form button[type=submit]:hover {
  background-color: #fff;
}
.sponsors .m-jaTitleSide-largeMt,
.sponsors .m-jaTitleSide,
.sponsors .m-jaMainTitle {
  color: #fff;
  background: #000;
}

/* ========================================
Special Contents .special
======================================== */
.special_sec + .special_sec {
  margin-top: 88px;
  padding-top: 84px;
  position: relative;
}
.special_sec + .special_sec::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.specialist {
  display: flex;
  flex-wrap: wrap;
  gap: 54px 32px;
  margin-top: 67px;
}
@media screen and (max-width: 767px) {
  .specialist {
    gap: 36px 0;
    margin-top: 40px;
  }
}
.specialist > li {
  width: calc((100% - 64px) / 3);
}
@media screen and (max-width: 1000px) {
  .specialist > li {
    width: calc((100% - 32px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .specialist > li {
    width: 100%;
  }
}
.specialist_listCont {
  cursor: pointer;
}
@media (hover: hover) {
  .specialist_listCont .specialist_imgBox img {
    transition: 0.3s;
  }
  .specialist_listCont:hover .specialist_imgBox img {
    transform: scale(1.06);
  }
  .specialist_listCont:hover .m-link-arrow {
    background-position: center left 3px;
  }
}
.specialist_imgBox {
  text-align: center;
  overflow: hidden;
  position: relative;
  padding-top: 66.5865384615%;
  background: #333;
}
.specialist_imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.specialist_imgBox.-vertical {
  width: 79.8%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .specialist_imgBox.-vertical {
    width: 75%;
  }
}
.specialist_contTtl {
  margin-top: 11px;
  font-family: var(--font-en-500);
  font-size: 32px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .specialist_contTtl {
    margin-top: 6px;
  }
}
.specialist_contTtl ._textJa {
  display: block;
  margin-top: 16px;
  font-family: var(--font-ja-500);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .specialist_contTtl ._textJa {
    margin-top: 15px;
    font-size: 16px;
  }
}
.specialist .m-link-arrow {
  margin-top: 21px;
}
@media screen and (max-width: 767px) {
  .specialist .m-link-arrow {
    margin-top: 20px;
  }
}
.en .specialist_talkTtl {
  margin-top: 17px;
  font-family: var(--font-en-500);
  font-size: 30px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .en .specialist_talkTtl {
    margin-top: 14px;
    font-size: 28px;
  }
}
.ja .specialist_talkTtl {
  margin-top: 27px;
  font-family: var(--font-ja-500);
  font-size: 26px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .specialist_talkTtl {
    font-size: 22px;
  }
}
.specialist_talkInfo {
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .specialist_talkInfo {
    margin-top: 8px;
  }
}
.specialist_talkInfo + .m-link-arrow {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .specialist_talkInfo + .m-link-arrow {
    margin-top: 27px;
  }
}
.specialist_talkDay {
  font-family: var(--font-en-400);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}
.specialist_modalCont {
  display: none;
}
.specialist_modalImg {
  width: 64.5833333333vw;
  height: 68.8888888889vh;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .specialist_modalImg {
    width: calc(100vw - var(--pc-mg) * 2);
    max-width: 930px;
    height: auto;
    padding-top: 66.6666666667%;
  }
}
@media screen and (max-width: 767px) {
  .specialist_modalImg {
    width: 100vw;
  }
}
.specialist_modalImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

/* ========================================
Ticket .ticket
======================================== */
.ticket_sec + .ticket_sec {
  margin-top: 64px;
  padding-top: 63px;
  border-top: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .ticket_sec + .ticket_sec {
    margin-top: 49px;
    padding-top: 53px;
    border-top: 0;
    position: relative;
  }
  .ticket_sec + .ticket_sec::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: var(--color-white);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.ticket_sec2 {
  margin-top: 75px;
  padding-top: 80px;
  position: relative;
}
.ticket_sec2::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .ticket_sec2 {
    margin-top: 46px;
    padding-top: 48px;
  }
}
.ticket .l-asideNav a {
  flex-direction: column;
  gap: 3px 0;
}
.ticket_col2 {
  display: flex;
  gap: 0 min(3.3333333333vw, 48px);
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .ticket_col2 {
    flex-direction: column-reverse;
    gap: 36px 0;
    margin-top: 50px;
  }
}
.ticket_col2 > * {
  width: 100%;
}
.ticket_col2_contBox {
  line-height: 1.5;
  margin-top: -0.25em;
}
@media screen and (max-width: 767px) {
  .ja .ticket_col2_contBox {
    line-height: 1.7466;
  }
}
.ticket_col2_contBox p + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .ja .ticket_col2_contBox p + p {
    margin-top: 1.7466em;
  }
}
.ticket_col2_imgBox img {
  width: 100%;
}
.ticket_table {
  width: 100%;
  margin-top: 32px;
}
.ticket_table th,
.ticket_table td {
  width: 33.3333333333%;
  height: 50px;
  border: 1px solid var(--color-white);
  line-height: 1.5;
  padding: 10px 14px;
  text-align: left;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .ticket_table th,
  .ticket_table td {
    height: 38px;
    font-size: 14px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 2px;
  }
  .ticket_table th:nth-child(1),
  .ticket_table td:nth-child(1) {
    width: 50%;
    text-align: left;
  }
  .ticket_table th:nth-child(2), .ticket_table th:nth-child(3),
  .ticket_table td:nth-child(2),
  .ticket_table td:nth-child(3) {
    width: 25%;
    padding-left: 2px;
  }
}
.ticket_table-col2 th,
.ticket_table-col2 td {
  text-align: center;
}
.ticket_table-col2 th:nth-child(1),
.ticket_table-col2 td:nth-child(1) {
  width: 33.3%;
}
@media screen and (max-width: 767px) {
  .ticket_table-col2 th:nth-child(1),
  .ticket_table-col2 td:nth-child(1) {
    width: 60%;
  }
}
.ticket_table-col2 th:nth-child(2),
.ticket_table-col2 td:nth-child(2) {
  width: 66.7%;
}
@media screen and (max-width: 767px) {
  .ticket_table-col2 th:nth-child(2),
  .ticket_table-col2 td:nth-child(2) {
    width: 40%;
    padding-left: 2px;
  }
}
.ticket_tableSpNotes {
  margin-top: 12px;
  font-size: 14px;
}
.ticket_passport {
  margin-top: 34px;
  padding: 18px 24px 21px;
  border: 1px solid var(--color-white);
}
.ticket_passport ._ttl {
  margin-bottom: 12px;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
.en .ticket_passport ._ttl {
  font-size: 22px;
  font-family: var(--font-en-500);
}
.ja .ticket_passport ._ttl {
  font-size: 20px;
  font-family: var(--font-ja-500);
}
.ticket_passport ._type {
  margin-bottom: 17px;
  line-height: 1.5;
}
.en .ticket_passport ._type {
  font-size: 20px;
  font-family: var(--font-en-500);
}
.ja .ticket_passport ._type {
  font-size: 18px;
  font-family: var(--font-ja-500);
}
.ticket_passport ._notes li {
  text-indent: -1em;
  padding-left: 1em;
}
.ticket_buyNow {
  margin-top: 34px;
}
.ticket_cont1 {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .ticket_cont1 {
    margin-top: 49px;
  }
}
.ticket_cont1 + .ticket_cont1 {
  margin-top: 33px;
}
.ticket_cont1 ._ttl {
  margin-bottom: 9px;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .ticket_cont1 ._ttl {
    margin-bottom: 16px;
  }
}
.en .ticket_cont1 ._ttl {
  font-size: 22px;
  font-family: var(--font-en-500);
}
.ja .ticket_cont1 ._ttl {
  font-size: 20px;
  font-family: var(--font-ja-500);
}
.ticket_cont1 ._ttl2 {
  margin: 34px 0 10px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ticket_cont1 ._ttl2 {
    margin-bottom: 15px;
  }
}
.en .ticket_cont1 ._ttl2 {
  font-size: 20px;
  font-family: var(--font-en-500);
}
.ja .ticket_cont1 ._ttl2 {
  font-size: 18px;
  font-family: var(--font-ja-500);
}
.ticket_cont1 .m-list-boder {
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .ticket_cont1 .m-list-boder {
    margin-top: 14px;
  }
}
.ticket_cont1 .m-list-boder li {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ja .ticket_cont1 .m-list-boder li {
    line-height: 1.7466;
  }
}
.ticket_cont1 .m-list-boder li + li {
  margin-top: 8px;
}
.ticket_cont1 .m-list-boder + p {
  margin-top: 15px;
}
.ticket_cont1 ._text1 {
  margin-top: 26px;
}
.ticket_cont1 ._text1 + ._ttl2 {
  margin-top: 25px;
}
.ticket_cont1 ._text2 {
  margin-bottom: 12px;
}
.ticket_cont2 {
  margin-top: 36px;
}
.ticket_cont2 dl + dl {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .ticket_cont2 dl + dl {
    margin-top: 34px;
  }
}
.ticket_cont2 dt {
  max-inline-size: max-content;
  padding-right: 20px;
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .ticket_cont2 dt {
    max-inline-size: none;
    line-height: 1.444;
    padding-right: 30px;
    letter-spacing: 0;
  }
}
.en .ticket_cont2 dt {
  font-size: 22px;
  font-family: var(--font-en-500);
}
.ja .ticket_cont2 dt {
  font-size: 20px;
  font-family: var(--font-ja-500);
}
.ticket_cont2 dt::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 7px;
  background: url(../image/ticket/arrow.svg) right center/auto no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .ticket_cont2 dt::after {
    height: 100%;
    background-position: right center;
  }
}
@media screen and (min-width: 768px) {
  .en .ticket_cont2 dt::after {
    top: 13px;
  }
  .ja .ticket_cont2 dt::after {
    top: 13px;
  }
}
.ticket_cont2 dt.is-active::after {
  transform: rotateX(180deg);
}
.ticket_cont2 dd {
  margin-top: 9px;
}
.ticket_text1 {
  margin-top: 48px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ticket_text1 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .ja .ticket_text1 {
    line-height: 1.7466;
  }
}

.ticketCalendar {
  margin-top: 84px;
}
@media screen and (max-width: 767px) {
  .ticketCalendar {
    margin-top: 46px;
  }
}
.ticketCalendar_img img {
  width: 100%;
}
.ticketCalendar_cont {
  margin-top: 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ticketCalendar_cont {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .ticketCalendar_cont1 .ticketCalendar_img {
    width: calc(100% + 24px);
    padding-right: 24px;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .ticketCalendar_cont1 .ticketCalendar_img::-webkit-scrollbar {
    display: none;
  }
  .ticketCalendar_cont1 .ticketCalendar_img img {
    max-width: none;
    width: auto;
    height: 500px;
  }
}
.ticketCalendar_head {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .ticketCalendar_head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 24px;
    margin-bottom: 13px;
  }
}
.ticketCalendar_arrow {
  display: none;
}
@media screen and (max-width: 767px) {
  .ticketCalendar_arrow {
    display: flex;
    align-items: center;
    gap: 0 12px;
    margin-left: auto;
  }
}
.ticketCalendar_ttl1 {
  line-height: 1.5;
}
.en .ticketCalendar_ttl1 {
  font-family: var(--font-en-500);
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .en .ticketCalendar_ttl1 {
    font-size: 20px;
  }
}
.ja .ticketCalendar_ttl1 {
  font-family: var(--font-ja-500);
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .ja .ticketCalendar_ttl1 {
    font-size: 18px;
  }
}
.ticketCalendar_download {
  position: absolute;
  top: -2px;
  right: 0;
}
.ticketCalendar_download a {
  width: 240px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .ticketCalendar_download {
    position: static;
    margin-top: 20px;
  }
  .ticketCalendar_download a {
    width: 100%;
    height: 48px;
  }
  .ticketCalendar_download img {
    transform: none;
  }
}

.ticketNotes_cont {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .ticketNotes_cont {
    margin-top: 49px;
  }
}
.ticketNotes .m-list-boder li + li {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .ticketNotes .m-list-boder li + li {
    margin-top: 17px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーー
Venue .venue
Venue詳細 .venuedetail
ーーーーーーーーーーーーーーーーーーーーーーーー */
/* ========================================
Venues .venues
======================================== */
@media screen and (max-width: 767px) {
  .venues .footer {
    margin-top: 50px;
  }
}

.venuesList {
  display: flex;
  flex-wrap: wrap;
  gap: 68px 32px;
  margin-top: 74px;
}
@media screen and (max-width: 767px) {
  .venuesList {
    gap: 42px 0;
    margin-top: 52px;
  }
}
.venuesList > li {
  width: calc((100% - 64px) / 3);
}
@media screen and (max-width: 1000px) {
  .venuesList > li {
    width: calc((100% - 32px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .venuesList > li {
    width: 100%;
  }
}
.venuesList a {
  display: block;
}
@media (hover: hover) {
  .venuesList a .venuesList_img img {
    transition: 0.3s;
  }
  .venuesList a:hover .venuesList_img img {
    transform: scale(1.06);
  }
}
.venuesList_imgBox {
  position: relative;
}
.venuesList_img {
  text-align: center;
  overflow: hidden;
  position: relative;
  padding-top: 66.5865384615%;
}
.venuesList_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.venuesList_img.-vertical {
  width: 79.8%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .venuesList_img.-vertical {
    width: 75%;
  }
}
.venuesList_num {
  line-height: 1;
  position: absolute;
  right: 16px;
  bottom: 0;
  z-index: 2;
  transform: translateY(50%);
}
.venuesList_num img {
  width: auto;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .venuesList_num img {
    height: 50px;
  }
}
.venuesList_contTtlEn {
  margin-top: 44px;
  font-family: var(--font-en-500);
  font-size: 32px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .venuesList_contTtlEn {
    margin-top: 39px;
  }
}
.venuesList_contTtlJa {
  margin-top: 16px;
  font-family: var(--font-ja-500);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .venuesList_contTtlJa {
    margin-top: 10px;
    font-size: 16px;
  }
}
.venuesList_info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .venuesList_info {
    margin-top: 2px;
    font-size: 16px;
  }
}
.venuesList_info dt::after {
  content: ":";
  margin-right: 5px;
}
.venuesList_info dd {
  font-family: var(--font-en-400-it);
}
.venuesList_time {
  margin-top: 24px;
  font-family: var(--font-en-400);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .venuesList_time {
    margin-top: 20px;
  }
}
.venuesList_type {
  margin-top: 6px;
  font-family: var(--font-en-400);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}
.venuesList_type::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background: #eee;
  border-radius: 50%;
  vertical-align: baseline;
}
.venuesList_type.-closedToday::before {
  background: var(--color-red);
}
.venuesList_type.-crowded::before {
  background: var(--color-yellow);
}
.venuesList_type.-empty::before {
  background: var(--color-blue);
}
.venuesList_iconBox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 12px;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .venuesList_iconBox {
    margin-top: 10px;
  }
}
.venuesList_iconBox span {
  display: inline-block;
  width: 25px;
  height: 25px;
  position: relative;
}
.venuesList_iconBox span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

/* ========================================
Venue詳細 .venuedetail
======================================== */
.venuedetail {
  padding-top: 140px;
}
.venuedetail .footer {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .venuedetail .l-col2Cont_main {
    margin-top: 44px;
  }
}
.venuedetail .l-iconList {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .venuedetail .l-iconList {
    margin-top: 29px;
  }
}
.venuedetail .l-asideNav {
  margin-top: 64px;
}
.venuedetail_description {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .venuedetail_description {
    margin-top: 40px;
  }
}
.venuedetail_important {
  margin-top: 34px;
}
.venuedetail_sec {
  margin-top: 44px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .venuedetail_sec {
    position: relative;
  }
  .venuedetail_sec::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: var(--color-white);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.venuedetailPrograms_list {
  margin-top: 57px;
}
@media screen and (max-width: 767px) {
  .venuedetailPrograms_list {
    margin-top: 39px;
  }
}
.venuedetailPrograms_list li + li {
  margin-top: 77px;
}
@media screen and (max-width: 767px) {
  .venuedetailPrograms_list li + li {
    margin-top: 36px;
  }
}
.venuedetailPrograms_list a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px min(3.3333333333vw, 48px);
}
@media screen and (max-width: 1000px) {
  .venuedetailPrograms_list a {
    flex-direction: column;
  }
}
.venuedetailPrograms_list a > * {
  width: calc((100% - min(3.3333333333vw, 48px)) / 2);
}
@media screen and (max-width: 1000px) {
  .venuedetailPrograms_list a > * {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .venuedetailPrograms_list a {
    flex-direction: column-reverse;
    gap: 26px 0;
  }
}
@media (hover: hover) {
  .venuedetailPrograms_list a .venuedetailPrograms_imgBox img {
    transition: 0.3s;
  }
  .venuedetailPrograms_list a:hover .venuedetailPrograms_imgBox img {
    transform: scale(1.06);
  }
  .venuedetailPrograms_list a:hover .m-link-arrow {
    background-position: center left 3px;
  }
}
.venuedetailPrograms_contTtl {
  margin-top: -0.2em;
  font-family: var(--font-en-500);
  font-size: 32px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .venuedetailPrograms_contTtl {
    font-size: 28px;
  }
}
.venuedetailPrograms_contTtl ._jaTtl {
  display: block;
  margin-top: 8px;
  font-family: var(--font-en-500);
  font-size: 18px;
}
.venuedetailPrograms_thema {
  margin-top: 12px;
  font-family: var(--font-en-500-it);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .venuedetailPrograms_thema {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.venuedetailPrograms_text {
  margin-top: 20px;
  font-family: var(--font-en-400);
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .venuedetailPrograms_text {
    margin-top: 14px;
  }
}
.venuedetailPrograms_more {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .venuedetailPrograms_more {
    margin-top: 19px;
  }
}
.venuedetailPrograms_imgBox div {
  padding-top: 66.4556962025%;
  position: relative;
  background: #333;
  overflow: hidden;
}
.venuedetailPrograms_imgBox div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.venuedetailDirections_address {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .venuedetailDirections_address {
    margin-top: 34px;
  }
}
.venuedetailDirections_map {
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .venuedetailDirections_map {
    margin-top: 32px;
  }
}

.venuedetailOpening .l-post_textMiddle {
  margin-top: 28px !important;
}

.venuedetailotes .l-post_textBox {
  margin-top: 38px !important;
}

/* ========================================
NEWS news
======================================== */
.visitList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 88px 0;
  margin-top: 95px;
}
@media screen and (max-width: 767px) {
  .visitList {
    gap: 45px 0;
    margin-top: 55px;
  }
}
.visitList > li {
  width: calc((100% - 48px) / 2);
}
@media screen and (max-width: 767px) {
  .visitList > li {
    width: 100%;
  }
}
.visitList h2 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .visitList h2 {
    margin-bottom: 12px;
  }
}
.ja .visitList h2 {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .ja .visitList h2 {
    margin-bottom: 8px;
  }
}
.visitList_jaText {
  display: block;
  max-inline-size: max-content;
  margin-top: 32px;
  padding: 4px 5px 0px;
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.2;
  font-family: var(--font-ja-500);
}
@media screen and (max-width: 767px) {
  .visitList_jaText {
    margin-top: 15px;
    padding-top: 3px;
    font-size: 12px;
  }
}
.visitList_more {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .visitList_more {
    margin-top: 12px;
  }
}
.visitList .text {
  height: 80px;
}
@media screen and (max-width: 767px) {
  .visitList .text {
    height: 53px;
  }
}/*# sourceMappingURL=style.css.map */