@charset "UTF-8";.lang-switch__list[data-astro-cid-lemdd452] {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .25rem;
}

.lang-switch__item[data-astro-cid-lemdd452] {
  display: flex;
  flex-direction: row;
}

.lang-switch__link[data-astro-cid-lemdd452] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  font-size: 14px;
  border: 2px solid #a7a7a7;
  color: #a7a7a7;
  background: #fff;
  transition: opacity .3s;
}

@media (hover: hover) {
  .lang-switch__link[data-astro-cid-lemdd452]:hover {
    opacity: .6;
  }
}

.lang-switch__link[data-astro-cid-lemdd452].is-active {
  background: #0e8140;
  border-color: #0e8140;
  color: #fff;
  cursor: default;
}

/*
---------------------------------------------
Color
---------------------------------------------
*/
/*
---------------------------------------------
Font
---------------------------------------------
*/
/*
---------------------------------------------
Flex
---------------------------------------------
*/
/*
---------------------------------------------
Media Query
---------------------------------------------
*/
/*
---------------------------------------------
Line Break (display control)
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
/*
---------------------------------------------
global-nav (SP hamburger menu overlay)
---------------------------------------------
*/
@media screen and (min-width: 1024px) {
  .global-nav {
    display: none;
  }
}

/*
--- overlay ---
*/
.global-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.header-nav.is-open .global-nav__overlay {
  opacity: 1;
  visibility: visible;
}

/*
--- menu body ---
*/
.global-nav__body {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 66.66666667vw;
  background: #ffffff;
  z-index: 20;
  padding: 0 0 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-top: 4px solid #00913a;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.header-nav.is-open .global-nav__body {
  transform: translateX(0);
}

/*
--- nav list ---
*/
.global-nav__nav {
  width: 100%;
  padding: 0 20px;
  order: 2;
}

.global-nav__list {
  width: 100%;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}

.global-nav__item {
  width: 100%;
  height: auto;
}

/*
---------------------------------------------
ナビゲーションのリンクボタン
---------------------------------------------
*/
.global-nav__link {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  line-height: 111.111%;
  color: #231815;
  border-bottom: 1px solid #a7a7a7;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .global-nav__link:hover {
    opacity: 0.6;
  }
}

.global-nav__lang {
  order: 1;
  width: 100%;
  padding: 20px 16px;
}
/*
---------------------------------------------
Color
---------------------------------------------
*/
/*
---------------------------------------------
Font
---------------------------------------------
*/
/*
---------------------------------------------
Flex
---------------------------------------------
*/
/*
---------------------------------------------
Media Query
---------------------------------------------
*/
/*
---------------------------------------------
Line Break (display control)
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
.event-info {
  display: flex;
  flex-direction: column;
}

.event-info__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-info__item {
  background: #E9F0EB;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.event-info__item-dl {
  width: 100%;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .event-info__item-dl {
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .event-info__item-dl {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px;
    gap: 8px;
  }
  .event-info__item-dl::before {
    content: "";
    width: 1px;
    background-color: #A7A7A7;
    order: 2;
  }
}

@media screen and (min-width: 1024px) {
  .event-info__item:nth-of-type(1) dl::before {
    height: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .event-info__item:nth-of-type(2) dl::before {
    height: 1rem;
  }
}

.event-info__item-location {
  width: 100%;
  font-size: 12px;
  color: #0E8140;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2.5px;
  justify-content: flex-start;
  padding-left: 4px;
}

.event-info__item-day {
  border: 1px solid #0E8140;
  border-radius: 4px;
  padding: 4px;
  color: #0E8140;
  background-color: #ffffff;
}

.event-info__item-title {
  width: 100%;
  min-width: 145px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  width: auto;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #231815;
}
@media screen and (min-width: 768px) {
  .event-info__item-title {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .event-info__item-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 4px;
    white-space: nowrap;
    align-items: center;
    position: relative;
  }
}

.event-info__item-title::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .event-info__item-title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 2em;
    background-color: #A7A7A7;
    transform: translateY(-50%);
  }
}

.event-info__item:nth-of-type(1) .event-info__item-title span {
  line-height: 1.25em;
  letter-spacing: 0.1em;
}

.event-info__item:nth-of-type(1) .event-info__item-schedule {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 420px) {
  .event-info__item:nth-of-type(1) .event-info__item-schedule {
    justify-content: stretch;
  }
}
@media screen and (min-width: 768px) {
  .event-info__item:nth-of-type(1) .event-info__item-schedule {
    width: calc(100% - 145px);
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

.event-info__item:nth-of-type(1) .event-info__item-schedule dl {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}

.event-info__item:nth-of-type(1) .event-info__item-day {
  text-align: center;
  font-size: 10px;
  line-height: 10px;
}

.event-info__item:nth-of-type(1) dd {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-info__item:nth-of-type(1) dd span {
  line-height: 1.25em;
  letter-spacing: 0.1em;
}

.event-info__item:nth-of-type(1) dd span:nth-of-type(1) {
  font-size: 14px;
}

.event-info__item:nth-of-type(1) dd span:nth-of-type(2) {
  font-size: 12px;
}

/*
---------------------------------------------
▼ item 2 : オンライン会場
---------------------------------------------
*/
.event-info__online-schedule {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .event-info__online-schedule {
    width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 23px;
  }
}
@media screen and (min-width: 1024px) {
  .event-info__online-schedule {
    padding: 0 8px;
  }
}

.event-info__item:nth-of-type(2) dd {
  order: 3;
}

.event-info__item:nth-of-type(2) dd span {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 1;
}
/*
---------------------------------------------
Color
---------------------------------------------
*/
/*
---------------------------------------------
Font
---------------------------------------------
*/
/*
---------------------------------------------
Flex
---------------------------------------------
*/
/*
---------------------------------------------
Media Query
---------------------------------------------
*/
/*
---------------------------------------------
Line Break (display control)
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
@media screen and (min-width: 1024px) {
  .en .header .event-info__item:nth-of-type(1) .event-info__item-dl {
    height: 48px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .en .header .event-info__item:nth-of-type(1) .event-info__item-schedule {
    justify-content: flex-start;
    padding-right: 3.7rem;
    padding-left: 0.44rem;
  }
}
@media screen and (min-width: 1024px) {
  .en .header .event-info__item:nth-of-type(2) .event-info__item-dl {
    height: 32px;
  }
  .en .header .event-info__item:nth-of-type(2) .event-info__online-schedule {
    padding-left: 0.5rem !important;
    padding-right: 0.4rem !important;
  }
}
/*
---------------------------------------------
Color
---------------------------------------------
*/
/*
---------------------------------------------
Font
---------------------------------------------
*/
/*
---------------------------------------------
Flex
---------------------------------------------
*/
/*
---------------------------------------------
Media Query
---------------------------------------------
*/
/*
---------------------------------------------
Line Break (display control)
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
.header {
  width: 100%;
  padding: 12px 16px 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  border-top: 4px solid #00913a;
  transition: transform 0.4s ease;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 12px 16px 16px 16px;
  }
}

.header.is-hide {
  transform: translateY(-100%);
}

.header__inner {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .header__inner {
    align-items: center;
    justify-content: stretch;
    gap: 32px;
  }
}

.header__main {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header__main {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
}

.header__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.header__brand h1 {
  width: 119px;
}

.header__brand h1 a {
  display: block;
  width: 100%;
  height: 100%;
}

.header__brand h1 a img {
  display: block;
  width: 100%;
  height: 48px;
}

.header__brand h1 a {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .header__brand h1 a:hover {
    opacity: 0.6;
  }
}

.header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.header-nav > .lang-switch {
  display: none;
}

.header-nav__toggle {
  position: relative;
  z-index: 21;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .header-nav__toggle {
    display: none;
  }
}

.header-nav__toggle-bar {
  display: block;
  width: 40px;
  height: 2px;
  background-color: #231815;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.header-nav.is-open .header-nav__toggle-bar:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.header-nav.is-open .header-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header-nav.is-open .header-nav__toggle-bar:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.header__utility a {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header__utility a:nth-of-type(1) {
  width: 240px;
}

.header__utility a {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .header__utility a:hover {
    opacity: 0.6;
  }
}

.header__utility span {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header__utility span:nth-of-type(1) {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 1.6px;
  color: #C49E60;
}

.header__utility span:nth-of-type(2) {
  font-weight: 700;
  text-align: center;
  border-radius: 28px;
  background: #C49E60;
  color: #ffffff;
  font-size: 18px;
  line-height: 56px;
  letter-spacing: 0.1em;
}

.header-logo__img {
  width: 119px;
  height: 48px;
  object-fit: contain;
}

.header {
  border-bottom: 1px solid #A7A7A7;
}
@media screen and (min-width: 1024px) {
  .header {
    padding: 1rem 2rem 0.7rem 2rem;
    align-items: flex-start;
  }
  .header .event-info__list {
    padding: 0;
  }
  .header .event-info__item-dl {
    height: auto;
    padding: 0;
    gap: 0;
  }
  .header .event-info__item:nth-of-type(1) .event-info__item-title span:nth-of-type(2) {
    letter-spacing: 0.005rem;
  }
  .header .event-info__item:nth-of-type(1) .event-info__item-schedule {
    gap: 0.8rem;
  }
  .header .event-info__item:nth-of-type(1) .event-info__item-dl {
    height: 48px;
  }
  .header .event-info__item:nth-of-type(2) .event-info__online-schedule {
    padding-left: 2.5rem;
    gap: 0.2rem;
  }
  .header .event-info__item:nth-of-type(2) .event-info__item-dl {
    height: 32px;
  }
  .header .event-info__item:nth-of-type(2) dd span {
    font-size: 0.875rem;
    letter-spacing: 0.0875rem;
  }
}
/*
---------------------------------------------
Color
---------------------------------------------
*/
/*
---------------------------------------------
Font
---------------------------------------------
*/
/*
---------------------------------------------
Flex
---------------------------------------------
*/
/*
---------------------------------------------
Media Query
---------------------------------------------
*/
/*
---------------------------------------------
Line Break (display control)
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
.event-info {
  display: flex;
  flex-direction: column;
}

.event-info__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .event-info__list {
    padding: 8px 0;
  }
}

.event-info__item {
  background: #E9F0EB;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .event-info__item:nth-of-type(2) .event-info__item-dl {
    height: 48px;
  }
}

.event-info__item-dl {
  width: 100%;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .event-info__item-dl {
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .event-info__item-dl {
    height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
  }
}

.event-info__item-location {
  width: 100%;
  font-size: 12px;
  color: #0E8140;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2.5px;
  justify-content: flex-start;
  padding-left: 4px;
}

.event-info__item-day {
  border: 1px solid #0E8140;
  border-radius: 4px;
  padding: 4px;
  color: #0E8140;
  background-color: #ffffff;
}

.event-info__item-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  width: auto;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #231815;
}
@media screen and (min-width: 768px) {
  .event-info__item-title {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .event-info__item-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 4px;
    white-space: nowrap;
    align-items: center;
    position: relative;
  }
}

.event-info__item-title::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .event-info__item-title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 2.5em;
    background-color: #A7A7A7;
    transform: translateY(-50%);
  }
}

.event-info__item:nth-of-type(1) .event-info__item-title span {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.0875rem;
}
.event-info__item:nth-of-type(1) .event-info__item-title span:nth-of-type(2) {
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: 0.02rem;
}

.event-info__item:nth-of-type(1) .event-info__item-schedule {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (min-width: 420px) {
  .event-info__item:nth-of-type(1) .event-info__item-schedule {
    justify-content: stretch;
  }
}
@media screen and (min-width: 768px) {
  .event-info__item:nth-of-type(1) .event-info__item-schedule {
    width: calc(100% - 145px);
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

.event-info__item:nth-of-type(1) .event-info__item-schedule dl {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  align-items: center;
}

.event-info__item:nth-of-type(1) .event-info__item-day {
  text-align: center;
  height: 1.75rem;
  font-size: 0.625rem;
  line-height: 100%;
  font-weight: bold;
}

.event-info__item:nth-of-type(1) dd {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-info__item:nth-of-type(1) dd span {
  line-height: 1.25em;
  letter-spacing: 0.1em;
}

.event-info__item:nth-of-type(1) dd span:nth-of-type(1) {
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 0.0875rem;
}

.event-info__item:nth-of-type(1) dd span:nth-of-type(2) {
  font-size: 12px;
}

/*
---------------------------------------------
▼ item 2 : オンライン会場
---------------------------------------------
*/
.event-info__online-schedule {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .event-info__online-schedule {
    width: fit-content;
    padding: 0 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.4rem;
  }
}

.event-info__item:nth-of-type(2) dd span {
  font-size: 14px;
  letter-spacing: 1.4px;
}

/*
---------------------------------------------
英語版のみの調整
---------------------------------------------
*/
/* 英語ページ：オンライン会場のテキスト調整 */
/*
---------------------------------------------
Color
---------------------------------------------
*/
/*
---------------------------------------------
Font
---------------------------------------------
*/
/*
---------------------------------------------
Flex
---------------------------------------------
*/
/*
---------------------------------------------
Media Query
---------------------------------------------
*/
/*
---------------------------------------------
Line Break (display control)
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
/*
---------------------------------------------
英語版だけのスタイル
---------------------------------------------
*/
@media screen and (min-width: 768px) {
  .event-info--en .event-info__item-dl:nth-of-type(1) {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
}
@media screen and (min-width: 1280px) {
  .event-info--en .event-info__item-dl:nth-of-type(1) {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
  }
}
.event-info--en .event-info__item-schedule {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .en .footer__title {
    line-height: 2.5rem;
  }
}
.en .footer__body {
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .en .footer__body {
    gap: 0.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .en .footer__body {
    gap: 0;
  }
}
.en .footer-contact {
  width: 100%;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .en .footer-contact {
    width: calc(100% - 240px);
  }
}
.en .footer-contact__title {
  line-height: 2rem;
}
.en .footer-contact__desc {
  line-height: 1.2rem;
}
@media screen and (min-width: 768px) {
  .en .footer-contact__desc {
    line-height: 1.6rem;
  }
}
.en .footer-contact__list {
  line-height: 1.6rem;
}
@media screen and (min-width: 768px) {
  .en .footer-contact__item dt {
    line-height: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .en .footer-contact__item dd {
    line-height: 1.2rem;
  }
}
.en .footer .event-info--en .event-info__item:nth-of-type(1) .event-info__item-schedule {
  padding-left: 0;
  padding-right: 0;
  flex-direction: column;
  gap: 1rem;
}
.en .footer .event-info--en .event-info__item:nth-of-type(1) .event-info__item-schedule dd br {
  display: none;
}
@media screen and (min-width: 768px) {
  .en .footer .event-info--en .event-info__item:nth-of-type(1) .event-info__item-schedule {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  .en .footer .event-info--en .event-info__item:nth-of-type(1) .event-info__item-schedule dd br {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .en .footer .event-info--en .event-info__item:nth-of-type(1) .event-info__item-schedule {
    width: auto;
    justify-content: flex-start;
  }
}
.en .footer .event-info--en .event-info__item:nth-of-type(2) dd span {
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 0.03rem;
}
.en .footer .event-info--en .event-info__item-dl {
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .en .footer .event-info--en .event-info__item-dl {
    gap: 0.5rem;
  }
}
.en .footer .event-info--en .event-info__item-dl:nth-of-type(1) {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .en .footer .event-info--en .event-info__item-dl:nth-of-type(1) {
    padding: 0.5rem;
  }
}
.en .footer .event-info--en .event-info__item-dl::before {
  display: none;
}
@media screen and (min-width: 1280px) {
  .en .footer .event-info--en .event-info__item-dl::before {
    display: block;
    content: "";
    height: 2rem;
    width: 1px;
    background-color: #A7A7A7;
    order: 2;
  }
}
.en .footer .event-info--en .event-info__online-schedule {
  gap: 0.5rem;
  padding: 0;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
}
.en .footer .event-info--en .event-info__online-schedule svg {
  position: absolute;
  left: 9rem;
  top: 0;
}
@media screen and (min-width: 844px) {
  .en .footer .event-info--en .event-info__online-schedule {
    position: static;
  }
  .en .footer .event-info--en .event-info__online-schedule svg {
    position: static;
    left: 0;
    top: 0;
  }
  .en .footer .event-info--en .event-info__online-schedule {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .en .footer .event-info--en .event-info__online-schedule {
    gap: 0.5rem;
  }
}
.en .footer__copyright {
  font-size: 0.75rem;
  line-height: 1.125rem;
  letter-spacing: 0.075rem;
}
@media screen and (min-width: 768px) {
  .en .footer__copyright {
    font-size: 0.875rem;
  }
}
/*
---------------------------------------------
Color
---------------------------------------------
*/
/*
---------------------------------------------
Font
---------------------------------------------
*/
/*
---------------------------------------------
Flex
---------------------------------------------
*/
/*
---------------------------------------------
Media Query
---------------------------------------------
*/
/*
---------------------------------------------
Line Break (display control)
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
/*
---------------------------------------------
footer
---------------------------------------------
*/
.footer {
  width: 100%;
  padding: 2.5rem 1.25rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .footer {
    padding: 40px 0 16px;
  }
}

.footer__inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer__title {
  width: fit-content;
  font-size: 1rem;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1024px) {
  .footer__title {
    font-size: 1.25rem;
  }
}

/*
---------------------------------------------
footerの見出しと言語切り替えボタン
---------------------------------------------
*/
.footer__header {
  width: 100%;
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/*
---------------------------------------------
footer__body
---------------------------------------------
*/
.footer__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .footer__body {
    display: flex;
    flex-direction: row;
    gap: 48px;
  }
}

/*
---------------------------------------------
footer-contact
---------------------------------------------
*/
.footer-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.7rem;
}
@media screen and (min-width: 768px) {
  .footer-contact {
    gap: 12px;
  }
}

/*
---------------------------------------------
footer-contact__body（レイアウト調整用のdiv ※デザイン上必要）
---------------------------------------------
*/
.footer-contact__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__body {
    gap: 1px;
  }
}

.footer-contact__title {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 142.857%;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .footer-contact__title {
    font-size: 1rem;
  }
}

.footer-contact__desc {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .footer-contact__desc {
    font-size: 1rem;
    line-height: 175%;
  }
}

/*
---------------------------------------------
footerのリスト
---------------------------------------------
*/
.footer-contact__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer-contact__item dl {
  display: flex;
  align-items: stretch;
  gap: 4px;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0.07rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__item dl {
    font-size: 1rem;
  }
}

.footer-contact__item dt {
  white-space: nowrap;
}

/*
---------------------------------------------
footer-nav
---------------------------------------------
*/
.footer-nav {
  width: 100%;
}

.footer-nav__list {
  display: flex;
  flex-direction: row;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media screen and (min-width: 1280px) {
  .footer-nav__list {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
}

.footer-nav__item {
  width: 100%;
  text-align: center;
  padding: 12px 0;
}
@media screen and (min-width: 1280px) {
  .footer-nav__item {
    width: auto;
    padding: 0 16px;
  }
}

.footer-nav__item:not(:last-child) {
  position: relative;
}
.footer-nav__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A7A7A7;
}
@media screen and (min-width: 1280px) {
  .footer-nav__item:not(:last-child)::after {
    bottom: auto;
    left: auto;
    right: 0;
    top: 50%;
    width: 1px;
    height: 1em;
    transform: translateY(-50%);
  }
}

.footer-nav__link {
  color: #231815;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .footer-nav__link:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1280px) {
  .footer-nav__link {
    font-size: 14px;
  }
}

/*
---------------------------------------------
footer-external
---------------------------------------------
*/
.footer-external__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 136px));
  gap: 16px;
  justify-items: center;
}
@media screen and (min-width: 824px) {
  .footer-external__list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }
}

.footer-external__item {
  width: 136px;
  height: auto;
}
@media screen and (min-width: 824px) {
  .footer-external__item {
    flex: 0 0 auto;
    width: auto;
  }
}

.footer-external__link {
  width: auto;
  display: flex;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .footer-external__link:hover {
    opacity: 0.6;
  }
}

.footer-external__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .footer-external__image {
    width: 192px;
    height: 136px;
  }
}

/*
---------------------------------------------
copyright
---------------------------------------------
*/
.footer__copyright {
  padding-top: 24px;
  text-align: center;
  color: #A7A7A7;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1280px) {
  .footer__copyright {
    font-size: 12px;
  }
}
.footer__copyright span {
  font-size: 1.2rem;
  vertical-align: -0.2rem;
}
/*
---------------------------------------------
Flex
---------------------------------------------
*/
/*
---------------------------------------------
Media Query
---------------------------------------------
*/
/*
---------------------------------------------
Line Break (display control)
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
.pageTop {
  position: fixed;
  bottom: 50px;
  right: 24px;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #231815;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s, background-color 0.3s ease;
}
@media screen and (min-width: 1280px) {
  .pageTop {
    bottom: 32px;
    right: 32px;
  }
}
@media (hover: hover) {
  .pageTop:hover {
    background-color: #4e4a49;
  }
}

.pageTop.is-visible {
  opacity: 1;
  visibility: visible;
}
/* reset.css */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
main,
header,
section,
article,
aside,
footer,
dl,
dd,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

/* list style none */
ul,
ol,
li {
  list-style: none;
}

/* image reset */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

/*
---------------------------------------------
button
---------------------------------------------
*/
button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

/*
---------------------------------------------
aタグに対するリセット
---------------------------------------------
*/
a {
  text-decoration: none;
}

/* input style reset */
input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
---------------------------------------------
Color
---------------------------------------------
*/
/*
---------------------------------------------
Font
---------------------------------------------
*/
/*
---------------------------------------------
Body
---------------------------------------------
*/
body, html {
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
}

/*
---------------------------------------------
Flex
---------------------------------------------
*/
/*
---------------------------------------------
Media Query
---------------------------------------------
*/
/*
---------------------------------------------
Line Break (display control)
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
/*
---------------------------------------------
ハンバーガーメニューがオープンしているときはスクロールを禁止
---------------------------------------------
*/
body.scrollHidden {
  overflow: hidden;
}

/*
---------------------------------------------
mainの設定
---------------------------------------------
*/
.main {
  width: 100%;
  height: 100%;
  padding-top: 80px;
}
@media screen and (min-width: 1024px) {
  .main {
    padding-top: 120px;
  }
}

/*
---------------------------------------------
sectionのスタイル
---------------------------------------------
*/
.section {
  width: 100%;
  height: auto;
  padding: 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*
---------------------------------------------
section__innerのスタイル
---------------------------------------------
*/
.section__inner {
  width: 100%;
  max-width: 960px;
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}

/**
	* 改行設定
	* 
	* @author ishizaka
	* @version 2025/09/15
	*/
.sp__lineBreak {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp__lineBreak {
    display: none;
  }
}

.tablet__lineBreak {
  display: none;
}
@media screen and (min-width: 768px) {
  .tablet__lineBreak {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .tablet__lineBreak {
    display: none;
  }
}

.pc__lineBreak {
  display: none;
}
@media screen and (min-width: 1024px) {
  .pc__lineBreak {
    display: block;
  }
}

/*
---------------------------------------------
container
---------------------------------------------
*/
.container {
  width: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/*
---------------------------------------------
lang-switch
---------------------------------------------
*/
.lang-switch__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.lang-switch__item {
  display: flex;
  flex-direction: row;
}

.lang-switch__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  font-size: 14px;
  border: 2px solid #A7A7A7;
  color: #A7A7A7;
  background: #ffffff;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .lang-switch__link:hover {
    opacity: 0.6;
  }
}

.lang-switch__link.is-active {
  background: #0E8140;
  border-color: #0E8140;
  color: #ffffff;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/noto-sans-jp-japanese-400-normal.btkk2_ab.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/noto-sans-jp-japanese-700-normal.BN2BLl2J.woff2") format("woff2");
}