@charset "UTF-8";
:root {
  --evap-base-pc: 1920;
  --evap-base-sp: 430;
  --evap-font-gothic: "IBM Plex Sans JP", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --evap-font-mincho: "FOT-マティス Pro M", "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  --evap-font-headingbg: "Poppins", sans-serif;
  --evap-main-color: #ffffff;
  --evap-main-bg: #131214;
  --evap-main-bg-dark: #060606;
  --evap-color-dark: #130A4A;
  --evap-color-orange: #FB750E;
  --evap-color-purple: #5C4296;
  --evap-inner-sm: 900px;
  --evap-inner-md: 1400px;
}

/** Break Point */
/** min-width */
/** max-width */
/** to VW */
/** to Set */
/** Hover */
/** Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

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

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
}

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

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

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

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

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

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

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

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

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

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

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

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

/** Base */
:where(html) {
  color: var(--evap-main-color);
  background: var(--evap-main-bg);
  font-size: clamp(85%, 16 / var(--evap-base-pc) * 100vw, 130%);
  overflow-wrap: break-word;
  line-break: auto;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 767px) {
  :where(html) {
    font-size: min(125%, 16 / var(--evap-base-sp) * 100vw);
  }
}

:where(body) {
  font-family: var(--evap-font-gothic);
  font-feature-settings: "palt" 1;
  line-height: 1;
}

:where(img, iframe) {
  vertical-align: top;
  line-height: 1;
}

:where(iframe) {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

:where(picture) {
  display: block;
}

/** Modules */
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

/* - Section */
.section {
  padding-block: min(6.25vw, 120px);
}
@media (max-width: 767px) {
  .section {
    padding-block: min(18.6046511628vw, 80px);
  }
}

/* - Container */
.container {
  width: 100%;
  max-width: min(var(--evap-inner-md), 75%);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .container {
    max-width: none;
    padding-inline: 4.6511627907vw;
  }
}

.container-sm {
  width: 100%;
  max-width: clamp(75%, 46.875vw, var(--evap-inner-sm));
  margin-inline: auto;
}
@media (max-width: 767px) {
  .container-sm {
    max-width: none;
    padding-inline: 4.6511627907vw;
  }
}

/* - text */
.text {
  font-size: clamp(14px, 1rem, 18px);
  line-height: 1.8;
}

.text-lg {
  font-size: clamp(16px, 1.125rem, 22px);
  line-height: 2;
}

.note {
  font-size: clamp(12px, 0.75rem, 16px);
  line-height: 1.5;
}

/* - date */
.date {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 0.8333333333vw;
  line-height: 1;
}
.date .date_label {
  display: flex;
  align-items: center;
  height: 2em;
  padding: 2px 7px 0;
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--evap-color-dark);
  border-radius: 3px;
}
.date .date_time {
  padding-top: 0.2em;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .date {
    font-size: 3.023255814vw;
    -moz-column-gap: 0.77em;
         column-gap: 0.77em;
  }
  .date .date_label {
    height: 1.6em;
    padding: 2px 5px 0;
    font-size: 1em;
    letter-spacing: 0;
  }
  .date .date_time {
    font-size: 1.1538em;
  }
}

/* - pre */
.pre {
  margin-left: -0.5em;
}

/* - Heading */
.heading1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(32px, 3.3333333333vw, 64px);
}
.heading1:not(:last-child) {
  margin-bottom: 1.15625em;
}
.heading1 .heading1_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--evap-font-mincho);
  font-size: 1em;
  font-weight: bold;
}
.heading1 .heading1_enTitle {
  position: absolute;
  bottom: 0.2em;
  left: 50%;
  transform: translate(-50%, 50%);
  font-family: var(--evap-font-mincho);
  font-size: 0.3125em;
  font-weight: 900;
}
.heading1 .heading1_bg {
  position: relative;
  z-index: -1;
  height: 1.7968em;
  pointer-events: none;
}
.heading1 .heading1_bg_text {
  font-family: var(--evap-font-headingbg);
  font-size: 2.54em;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 0.7055em;
  color: transparent;
  -webkit-text-stroke: 1px var(--evap-color-orange);
  text-stroke: 1px var(--evap-color-orange);
  paint-order: stroke;
  opacity: 0.3;
}
.heading1 .heading1_bg_line {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
  width: 100%;
  height: 1px;
  background: var(--evap-color-orange);
}
.heading1 .heading1_bg_line::before, .heading1 .heading1_bg_line::after {
  content: "";
  position: relative;
  aspect-ratio: 1/1;
  width: 9px;
  background: url(../img/bg_heading1_attach.svg) center no-repeat;
  background-size: contain;
}
.heading1 .heading1_bg_line::before {
  right: 19px;
}
.heading1 .heading1_bg_line::after {
  left: calc(100% - 11px);
}
.heading1 .heading1_bg_line.-top {
  top: 0;
}
.heading1 .heading1_bg_line.-bottom {
  bottom: 0;
}
@media (max-width: 767px) {
  .heading1 {
    font-size: clamp(22px, 9.3023255814vw, 40px);
  }
  .heading1 .heading1_bg {
    height: 1.6em;
  }
  .heading1 .heading1_bg_text {
    font-size: 2.25em;
  }
}

/** Loading */
.l-loading {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
}
.l-loading img {
  width: 200px;
  opacity: 0;
  transform: translateY(20px);
  -webkit-animation: loading_logo_start 0.52s 0.2s forwards ease;
          animation: loading_logo_start 0.52s 0.2s forwards ease;
}
.l-loading:is(body.is-loadead *) {
  transition: opacity 1.3s 1s cubic-bezier(0.856, -0.003, 0.379, 0.907);
  opacity: 0;
  pointer-events: none;
}
@-webkit-keyframes loading_logo_start {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loading_logo_start {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes loading_logo_end {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes loading_logo_end {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/** Wrapper */
.l-warapper {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.l-warapper:is(body.is-loadead *) {
  transition: 2s 0.5s ease;
  opacity: 1;
  transform: none;
}

/** header */
.l-header {
  position: absolute;
  z-index: 2;
  top: 3.6458333333vw;
  left: 4.1666666667vw;
}
.l-header .l-header_catch {
  width: 41.9270833333vw;
  height: auto;
}
.l-header .l-header_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 5px;
  margin-top: 2.1354166667vw;
  font-size: 3.8020833333vw;
  font-family: var(--evap-font-mincho);
  font-weight: bold;
  line-height: 1.52;
}
.l-header .l-header_title > span {
  display: inline-block;
  padding-inline: 0.5em;
  background: linear-gradient(#000 50%);
}
.l-header .l-header_title:not(.is-update) {
  height: 8.9583333333vw;
}
@media (max-width: 767px) {
  .l-header {
    top: 7.9069767442vw;
    left: 2.3255813953vw;
  }
  .l-header .l-header_catch {
    width: 62.7906976744vw;
  }
  .l-header .l-header_title {
    row-gap: 2px;
    margin-top: 3.9534883721vw;
    font-size: 6.7441860465vw;
  }
  .l-header .l-header_title > span {
    padding-inline: 0.25em;
  }
  .l-header .l-header_title:not(.is-update) {
    height: 32.0930232558vw;
  }
}

/** Footer */
.l-footer {
  position: relative;
  z-index: 2;
}
.l-footer .l-footer_copy {
  background: #fff;
  padding-block: min(6.25vw, 120px);
  color: var(--evap-main-bg);
}
.l-footer .l-footer_copy .l-footer_copy_list {
  display: flex;
  align-items: center;
  -moz-column-gap: min(2.0833333333vw, 40px);
       column-gap: min(2.0833333333vw, 40px);
  font-size: min(1.25vw, 24px);
  font-weight: bold;
}
.l-footer .l-footer_copy .l-footer_copy_bisty {
  width: min(5.7291666667vw, 110px);
}
.l-footer .l-footer_copy .l-footer_copy_fields {
  width: min(7.96875vw, 153px);
}
.l-footer .l-footer_copy .l-footer_copy_complete {
  width: min(13.0729166667vw, 251px);
  margin-left: auto;
}
@media (max-width: 767px) {
  .l-footer .l-footer_copy {
    padding-block: min(9.3023255814vw, 40px);
  }
  .l-footer .l-footer_copy .l-footer_copy_list {
    flex-wrap: wrap;
    gap: min(3.7209302326vw, 16px);
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    margin-inline: auto;
    font-size: min(3.2558139535vw, 14px);
  }
  .l-footer .l-footer_copy .l-footer_copy_list > *:not([class]) {
    width: 100%;
  }
  .l-footer .l-footer_copy .l-footer_copy_bisty {
    width: 77px;
  }
  .l-footer .l-footer_copy .l-footer_copy_fields {
    width: 121px;
  }
  .l-footer .l-footer_copy .l-footer_copy_complete {
    width: 250px;
  }
}
.l-footer .l-footer_attention {
  padding-block: min(3.125vw, 60px);
  color: #fff;
  background: var(--evap-color-purple);
}
.l-footer .l-footer_attention .l-footer_attention_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5em;
  font-size: min(1.25vw, 24px);
  font-weight: bold;
}
.l-footer .l-footer_attention .l-footer_attention_list > * {
  line-height: 1.3;
}
@media (max-width: 767px) {
  .l-footer .l-footer_attention {
    padding-block: min(9.3023255814vw, 40px);
  }
  .l-footer .l-footer_attention .l-footer_attention_list {
    align-items: flex-start;
    font-size: min(3.2558139535vw, 14px);
  }
}

/** Bg */
.l-bgText {
  position: absolute;
  top: -8px;
  left: -8px;
  z-index: 0;
  width: 9.6354166667vw;
  height: 100%;
  background: url(../img/bg_text_1.svg) top center repeat-y;
  background-size: 100% auto;
  pointer-events: none;
  opacity: 0.5;
  -webkit-animation: bgtext-idle 3s infinite cubic-bezier(0.44, 0, 0.56, 1);
          animation: bgtext-idle 3s infinite cubic-bezier(0.44, 0, 0.56, 1);
}
@media (max-width: 767px) {
  .l-bgText {
    top: -5px;
    left: auto;
    right: -5px;
    width: 9.3023255814vw;
  }
}

@-webkit-keyframes bgtext-idle {
  0% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.5;
  }
  40% {
    opacity: 0.3;
  }
  60% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes bgtext-idle {
  0% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.5;
  }
  40% {
    opacity: 0.3;
  }
  60% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.5;
  }
}
/** Lang */
.p-lang {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  border-bottom: 1px solid #ccc;
  font-size: clamp(14px, min(0.8333333333vw, 16px), 16px);
  color: var(--evap-main-bg);
}
.p-lang .p-lang_inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 29.7395833333vw;
  height: 3.6458333333vw;
  padding: 0 3.90625vw 0 0;
  background: #fff;
}
.p-lang .p-lang_icon {
  width: 1.85em;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/icon_lang.svg);
          mask-image: url(../img/icon_lang.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: currentColor;
  margin-right: 1em;
}
.p-lang .p-lang_list {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  padding-top: 0.24em;
  color: currentColor;
}
.p-lang .p-lang_list > *:not(:first-child)::before {
  content: "/";
  margin-right: 0.5em;
}
.p-lang .p-lang_item {
  font-size: inherit;
  text-transform: uppercase;
  line-height: 1;
}
.p-lang .p-lang_item.is-active {
  font-weight: bold;
}
@media (hover: hover) {
  .p-lang .p-lang_item:is(a):where(:-webkit-any-link, :enabled, summary):hover {
    text-decoration: none;
  }
  .p-lang .p-lang_item:is(a):where(:-moz-any-link, :enabled, summary):hover {
    text-decoration: none;
  }
  .p-lang .p-lang_item:is(a):where(:any-link, :enabled, summary):hover {
    text-decoration: none;
  }
}
@media (max-width: 767px) {
  .p-lang {
    font-size: clamp(12px, min(2.7906976744vw, 12px), 16px);
  }
  .p-lang .p-lang_inner {
    width: 23.488372093vw;
    height: 40px;
    padding: 0 2.3255813953vw;
  }
  .p-lang .p-lang_icon {
    width: 1.5em;
  }
  .p-lang .p-lang_list {
    -moz-column-gap: 0.24em;
         column-gap: 0.24em;
    padding-top: 0.24em;
  }
  .p-lang .p-lang_list > *:not(:first-child)::before {
    margin-right: 0.24em;
  }
}

/** KV */
.p-kv {
  position: relative;
  padding: 12.1354166667vw 0 1.25vw;
  background: url(../img/kv_bg_1.webp) 0 0 no-repeat;
  background-size: 100% auto;
}
.p-kv .p-kv_20thlogo {
  position: absolute;
  z-index: 2;
  top: 3.6458333333vw;
  right: 0;
  aspect-ratio: 580/405;
  width: 30.2083333333vw;
  background: url(../img/header_bg_20th.png) no-repeat;
  background-size: cover;
}
.p-kv .p-kv_20thlogo .p-kv_20thlogo_inner {
  margin-left: auto;
  padding: 0.625vw 3.90625vw 0 0;
}
.p-kv .p-kv_20thlogo img {
  display: block;
  width: 13.4895833333vw;
  margin-left: auto;
}
.p-kv .p-kv_main {
  position: relative;
  z-index: 1;
  width: 83.3333333333vw;
  margin-inline: auto;
}
.p-kv .p-kv_main::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0.2083333333vw;
  aspect-ratio: 1/1;
  width: 13.6458333333vw;
  background: var(--evap-color-orange);
  filter: blur(38px);
  opacity: 0.42;
  transform: translate(50%, 0);
  border-radius: 100vmax;
}
.p-kv .p-kv_main_image {
  position: relative;
  z-index: 1;
}
.p-kv .p-kv_main_scroll {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 3.2291666667vw;
  transform: translate(50%, 0);
  aspect-ratio: 170/147;
  width: 8.8541666667vw;
}
.p-kv .p-kv_main_attach {
  position: absolute;
  bottom: 0;
  left: -4.1666666667vw;
  transform: translateX(100%);
  display: flex;
  align-items: center;
  gap: min(1.6666666667vw, 32px);
  writing-mode: vertical-lr;
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1;
  font-family: var(--evap-font-mincho);
  font-size: 0.7291666667vw;
  font-weight: 900;
}
.p-kv .p-kv_main_attach::after {
  content: "";
  width: 1px;
  height: 5.2083333333vw;
  background: #fff;
}
.p-kv .p-kv_info {
  position: relative;
  z-index: 2;
  top: -1.5625vw;
  display: flex;
  align-items: center;
  -moz-column-gap: 3.125vw;
       column-gap: 3.125vw;
  aspect-ratio: 1400/250;
  width: 72.9166666667vw;
  padding-inline: 4.1666666667vw;
  background: url(../img/kv_info_bg.svg) 0 0 no-repeat;
  background-size: contain;
  color: var(--evap-main-bg);
}
.p-kv .p-kv_info .p-kv_info_tit {
  width: 12.5vw;
}
.p-kv .p-kv_info .p-kv_info_tit img {
  display: block;
  width: 100%;
}
.p-kv .p-kv_info .p-kv_info_body {
  width: 100%;
}
.p-kv .p-kv_info .p-kv_info_date {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.p-kv .p-kv_info .p-kv_info_place {
  position: relative;
  margin-top: 1.1458333333vw;
  padding-top: 1.1458333333vw;
  font-size: 1.4583333333vw;
  font-weight: bold;
  line-height: 1.3;
}
.p-kv .p-kv_info .p-kv_info_place::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, var(--evap-color-orange) 10px, transparent 10px);
  background-size: 18px 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media (max-width: 767px) {
  .p-kv {
    padding: 48.8372093023vw 0 0;
    background-image: url(../img/kv_bg_1_sp.webp);
  }
  .p-kv::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: url(../img/header_bg_top.svg) 0 0 repeat-x;
    background-size: auto 100%;
  }
  .p-kv .p-kv_20thlogo {
    top: 5px;
    top: 40px;
    aspect-ratio: 122/162;
    width: 25.5813953488vw;
    background-image: url(../img/header_bg_20th_sp.png);
  }
  .p-kv .p-kv_20thlogo .p-kv_20thlogo_inner {
    padding: 4.8837209302vw 2.0930232558vw 0 0;
  }
  .p-kv .p-kv_20thlogo img {
    width: 16.2790697674vw;
  }
  .p-kv .p-kv_main {
    width: 100%;
  }
  .p-kv .p-kv_main::before {
    content: none;
    display: none;
  }
  .p-kv .p-kv_main_scroll {
    display: none;
  }
  .p-kv .p-kv_main_attach {
    display: none;
  }
  .p-kv .p-kv_info {
    z-index: 0;
    top: 0;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 5.1162790698vw;
    aspect-ratio: auto;
    width: 100%;
    margin: -7.4418604651vw 0 0;
    padding: 7.4418604651vw 4.6511627907vw 13.488372093vw;
    background: none;
  }
  .p-kv .p-kv_info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #fff;
  }
  .p-kv .p-kv_info .p-kv_info_tit {
    width: 25.5813953488vw;
  }
  .p-kv .p-kv_info .p-kv_info_body {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 7.4418604651vw;
         column-gap: 7.4418604651vw;
    padding-top: 1.0416666667vw;
  }
  .p-kv .p-kv_info .p-kv_info_date {
    justify-content: flex-start;
    gap: 7px;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }
  .p-kv .p-kv_info .p-kv_info_place {
    width: 37.2093023256vw;
    margin-top: 0;
    padding-top: 0;
    font-size: 4.1860465116vw;
  }
  .p-kv .p-kv_info .p-kv_info_place::before {
    left: -3.7209302326vw;
    width: 2px;
    height: 100%;
    background-image: linear-gradient(to bottom, var(--evap-color-orange) 10px, transparent 10px);
    background-size: 2px 18px;
    background-repeat: repeat-y;
    background-position: left top;
  }
}

/** Intro */
.p-intro {
  position: relative;
  aspect-ratio: 1920/1377;
  width: 100%;
  height: auto;
  margin-top: -11.9791666667vw;
  padding-top: 17.7083333333vw;
  background: url(../img/intro_bg.png) top center no-repeat;
  background-size: cover;
}
.p-intro::before {
  content: "";
  position: absolute;
  top: -14.5833333333vw;
  right: -3.8541666667vw;
  aspect-ratio: 913/534;
  width: 47.5520833333vw;
  background: url(../img/intro_bg_2.svg) 0 0 no-repeat;
  background-size: contain;
}
.p-intro .p-intro_title {
  position: relative;
  font-size: min(2.1875vw, 42px);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-align: center;
}
.p-intro .p-intro_title > span {
  position: relative;
  z-index: 1;
}
.p-intro .p-intro_title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 242/209;
  width: min(12.6041666667vw, 242px);
  background: url(../img/intro_bg_heading.svg) center no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
}
.p-intro .p-intro_machines {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: max(100%, 59.1666666667vw);
  margin-top: min(1.6666666667vw, 32px);
  margin-inline: auto;
}
.p-intro .p-intro_machines .p-intro_machines_item {
  position: relative;
  width: 32%;
}
.p-intro .p-intro_machines .p-intro_machines_item img {
  width: min(15.3645833333vw, 295px);
  margin: auto;
}
.p-intro .p-intro_machines .p-intro_machines_item figcaption {
  display: block;
  position: absolute;
  top: 84.83%;
  width: 100%;
  padding-top: 20px;
  font-size: clamp(10px, 0.75rem, 16px);
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .p-intro {
    aspect-ratio: 430/1200;
    margin-top: -10.4651162791vw;
    padding-top: 20.9302325581vw;
    background: url(../img/intro_bg_sp.png) top center no-repeat;
    background-size: cover;
  }
  .p-intro::before {
    content: "";
    position: absolute;
    top: -4.6511627907vw;
    right: auto;
    left: 0;
    aspect-ratio: 295/147;
    width: 68.6046511628vw;
  }
  .p-intro .p-intro_title {
    font-size: min(5.5813953488vw, 24px);
  }
  .p-intro .p-intro_title::before {
    aspect-ratio: 165/143;
    width: min(38.3720930233vw, 165px);
  }
  .p-intro .p-intro_machines {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: min(9.3023255814vw, 40px);
    width: 100%;
    margin-top: min(8.3720930233vw, 36px);
  }
  .p-intro .p-intro_machines .p-intro_machines_item {
    width: 36.7441860465vw;
  }
  .p-intro .p-intro_machines .p-intro_machines_item:nth-child(1) {
    margin-right: auto;
  }
  .p-intro .p-intro_machines .p-intro_machines_item:nth-child(2) {
    margin-left: auto;
  }
  .p-intro .p-intro_machines .p-intro_machines_item img {
    width: 100%;
  }
  .p-intro .p-intro_machines .p-intro_machines_item figcaption {
    padding-top: 15px;
    font-size: clamp(12px, 2.7906976744vw, 14px);
  }
}
@media (min-width: 1401px) {
  .p-intro .p-intro_machines {
    width: 59.1666666667vw;
  }
}

/** Stage */
.p-stage .p-stage_timetable {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em min(4.1666666667vw, 80px);
  margin-bottom: min(3.3333333333vw, 64px);
}
.p-stage .p-stage_timetable .p-stage_timetable_time {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  font-size: clamp(20px, min(1.6666666667vw, 32px), 32px);
  font-weight: bold;
  color: var(--evap-color-orange);
}
.p-stage .p-stage_lead {
  margin-bottom: min(1.6666666667vw, 32px);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}
.p-stage .p-stage_profile {
  position: relative;
  padding: min(3.3333333333vw, 64px) min(4.1666666667vw, 80px);
  background: var(--evap-main-bg-dark);
  border: 1px solid var(--evap-color-orange);
}
.p-stage .p-stage_profile::before, .p-stage .p-stage_profile::after {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 1/1;
  width: min(4.1666666667vw, 80px);
  background: url(../img/stage_bg_corner.svg) 0 0 no-repeat;
  background-size: contain;
}
.p-stage .p-stage_profile::before {
  top: -2px;
  left: -2px;
}
.p-stage .p-stage_profile::after {
  bottom: -2px;
  right: -2px;
  rotate: 180deg;
}
.p-stage .p-stage_profile .p-stage_profile_title {
  font-size: max(20px, 1.6666666667vw);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.p-stage .p-stage_profile .p-stage_profile_wrap {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 10%;
       column-gap: 10%;
}
.p-stage .p-stage_profile .p-stage_profile_image {
  width: max(min(13.0208333333vw, 250px), 150px);
  height: auto;
}
.p-stage .p-stage_profile .p-stage_profile_content dt {
  margin-bottom: 2.2857em;
  font-size: max(12px, 0.7291666667vw);
  font-weight: bold;
  color: var(--evap-color-orange);
}
.p-stage .p-stage_profile .p-stage_profile_content dd {
  flex: 1;
}
.p-stage .p-stage_profile .p-stage_profile_line {
  position: absolute;
  width: 14px;
  height: calc(100% - min(3.3333333333vw, 64px));
  background: url(../img/starge_bg_line.svg) top center repeat-y;
  background-size: contain;
}
.p-stage .p-stage_profile .p-stage_profile_line.-left {
  left: 10px;
  bottom: 0;
}
.p-stage .p-stage_profile .p-stage_profile_line.-right {
  right: 10px;
  top: 0;
  rotate: 180deg;
}
@media (max-width: 767px) {
  .p-stage .p-stage_timetable {
    align-items: center;
    flex-direction: column;
    margin-bottom: min(7.4418604651vw, 32px);
  }
  .p-stage .p-stage_timetable .p-stage_timetable_time {
    font-size: max(1.5rem, 5.5813953488vw);
  }
  .p-stage .p-stage_lead {
    margin-bottom: min(7.4418604651vw, 32px);
  }
  .p-stage .p-stage_profile {
    padding: min(9.3023255814vw, 40px);
    margin-inline: -4.6511627907vw;
  }
  .p-stage .p-stage_profile::before, .p-stage .p-stage_profile::after {
    width: min(9.3023255814vw, 40px);
  }
  .p-stage .p-stage_profile .p-stage_profile_title {
    font-size: max(24px, 5.5813953488vw);
    margin-bottom: 1.333em;
  }
  .p-stage .p-stage_profile .p-stage_profile_wrap {
    flex-direction: column;
    -moz-column-gap: 5.5813953488vw;
         column-gap: 5.5813953488vw;
  }
  .p-stage .p-stage_profile .p-stage_profile_image {
    width: max(57%, 180px);
    margin: 0 auto min(7.4418604651vw, 32px);
  }
  .p-stage .p-stage_profile .p-stage_profile_content dt {
    margin-bottom: 1.153em;
    font-size: max(12px, 3.023255814vw);
  }
  .p-stage .p-stage_profile .p-stage_profile_line {
    position: absolute;
    width: 10px;
    height: calc(100% - min(9.3023255814vw, 40px));
  }
  .p-stage .p-stage_profile .p-stage_profile_line.-left {
    display: none;
  }
  .p-stage .p-stage_profile .p-stage_profile_line.-right {
    right: 10px;
    top: 0;
    rotate: 180deg;
  }
}

/** Booth */
.p-booth .p-booth_timetable {
  display: flex;
  justify-content: center;
  gap: min(3.3333333333vw, 64px);
  margin-bottom: min(3.3333333333vw, 64px);
}
.p-booth .p-booth_timetable .p-booth_timetable_label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75em;
  font-size: clamp(18px, min(1.25vw, 24px), 24px);
  font-weight: bold;
  border: 2px solid var(--evap-color-orange);
  border-radius: 3px;
  color: var(--evap-color-orange);
}
.p-booth .p-booth_timetable .p-booth_timetable_time {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  row-gap: 1em;
  font-size: clamp(20px, min(1.6666666667vw, 32px), 32px);
  font-weight: bold;
  color: var(--evap-color-orange);
}
.p-booth .p-booth_lead {
  margin-bottom: min(3.3333333333vw, 64px);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}
.p-booth .p-booth_gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(4.1666666667vw, 80px);
}
.p-booth .p-booth_gallery img {
  display: block;
}
.p-booth .p-booth_gallery .note {
  margin-top: 1.116em;
}
@media (max-width: 767px) {
  .p-booth .p-booth_timetable {
    align-items: center;
    flex-direction: column;
    gap: min(4.6511627907vw, 20px);
    margin-bottom: min(7.4418604651vw, 32px);
  }
  .p-booth .p-booth_timetable .p-booth_timetable_label {
    width: auto;
    padding: 0.24em 0.3em 0.1em;
    font-size: min(5.5813953488vw, 24px);
  }
  .p-booth .p-booth_timetable .p-booth_timetable_time {
    font-size: min(5.5813953488vw, 24px);
  }
  .p-booth .p-booth_lead {
    margin-bottom: min(7.4418604651vw, 32px);
  }
  .p-booth .p-booth_gallery {
    grid-template-columns: 1fr;
    gap: min(5.5813953488vw, 24px);
  }
}

/** Other */
.p-other {
  position: relative;
  padding-block: 10.4166666667vw;
  background: url(../img/other_bg_1.webp) top center no-repeat;
  background-size: 100% auto;
}
.p-other::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #000;
}
.p-other .p-other_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: min(3.3333333333vw, 64px);
}
@media (max-width: 767px) {
  .p-other {
    margin-top: min(-14.8837209302vw, -64px);
    padding: min(32.5581395349vw, 140px) 0 min(18.6046511628vw, 80px);
    background: url(../img/other_bg_1_sp.webp) top center no-repeat;
    background-size: 100% auto;
  }
  .p-other .p-other_inner {
    row-gap: min(5.5813953488vw, 24px);
  }
}

/* en */
html[lang=en] {
  /** header */
}
html[lang=en] .l-header .l-header_catch {
  width: 57.5vw;
}
html[lang=en] .l-header .l-header_title {
  font-size: 2.9166666667vw;
}
html[lang=en] .l-header .l-header_title:not(.is-update) {
  height: 12.9166666667vw;
}
@media (max-width: 767px) {
  html[lang=en] .l-header .l-header_catch {
    width: 64.1860465116vw;
  }
  html[lang=en] .l-header .l-header_title {
    font-size: 6.0465116279vw;
  }
  html[lang=en] .l-header .l-header_title:not(.is-update) {
    height: 35.5813953488vw;
  }
}




.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9比率 = 9/16 = 0.5625 */
  height: 0;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}