@charset "UTF-8";

/* =====================
   ヘッダ・フッタ等
===================== */
html {
  /*ヘッダ計算用*/
  --header-hight: 75px;
  --sp_header-hight: 70px;

	width: 100%;
	font-size: 62.5%;
	background-color: #fff;
	scroll-behavior: smooth;
  scroll-padding-top: var(--header-hight);
}

/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  height: var(--header-hight);
  padding: 6px 20px 6px 30px;
  background: #fff;
  transition: 0.3s;
}
@media all and (max-width: 750px) {
  html {
    scroll-padding-top: var(--sp_header-hight);
  }
  header {
    height: var(--sp_header-hight);
    padding: 5px 10px 5px 10px;
    gap: 30px;
  }
}
header .logo {
  position: relative;
  z-index: 11;
  width: 52px;
}
header .logo a:hover {
  opacity: 1;
}
@media all and (min-width: 751px){
header div:has(.event-logo) {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
  }
}
@media all and (max-width: 750px) {
  header div:has(.event-logo) {
    width: calc(100% - (52px + 30px + 30px + 30px));
    height: 100%;
  }
}
header .event-logo {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 11;
  width: 100%;
  height: 100%;
}
header .event-logo img {
  height: 58px;
}
@media all and (max-width: 750px) {
  header .event-logo img {
    max-width: 100%;
    max-height: 60px;
    height: auto;
    width: auto;
  }
}

/* footer */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background: #00823e;
}
footer small {
  color: #fff;
  font-size: 1.2rem;
}

/* メインコンテンツ枠 */
#mainContents {
  --frame-width: 480px;
  --base-width: 88%;
  --base-color: #5f3032;
  --sub-color: #ff8d00;
  /*基本フォント*/
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: var(--base-color);
  text-align: center;
  line-height: 1.4;
}

/* =====================
   Stage
===================== */

.stage {
  position: relative;
}

/* 背景レイヤー */
.stage__bg {
  position: absolute;
  top: 0;
  z-index: 0;
}

/* 左 */
.stage__bg__left {
  left: 0;
  width: calc(50.5% - var(--frame-width) / 2);
  height: 100%;
}

/* 右 */
.stage__bg__right {
  right: 0;
  width: calc(50.5% - var(--frame-width) / 2);
  height: 100%;
}

/* 左右 */
.stage__bg__left--inner,
.stage__bg__right--inner {
  position: sticky;
  top: var(--header-hight);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-hight));
  background: url('../img/bg.webp') repeat center;
}

/* PCイラスト */
.stage__contents {
  width: 100%;
  height: calc(100vh - var(--header-hight));
  display: flex;
  align-items: flex-end;
}
.stage__bg__illust {
  position: relative;
  width: 100%;
  height: 190px;
  background: linear-gradient(transparent 61%, #9ec571 39%);
  overflow: hidden;
  flex-shrink: 0;
}
.stage__bg__illust--img-l,
.stage__bg__illust--img-r {
  max-width: 800px;
  position: absolute;
  bottom: 0;
}
.stage__bg__illust--img-l {
  left: 50%;
  transform: translateX(-50%);
}
.stage__bg__illust--img-r {
  right: 50%;
  transform: translateX(50%);
}
.stage__bg__illust--copyright {
  position: absolute;
  width: 200px;
  bottom: 20px;
  left: 20px;
}

/* =====================
   SPフレーム
===================== */

.stage__frame {
  margin: 0 auto;
  container-type: inline-size;
  position: relative;
  z-index: 1;
  width: var(--frame-width);
  min-height: 100vh;
  border-left: 1px solid #5f3032;
  border-right: 1px solid #5f3032;
  background: url('../img/bg.webp') repeat center;
}

@media (max-width: 1199px) {
  .stage__contents {
    display: none;
  }
}
/* 750px以下 */
@media (max-width: 750px) {
  .stage__contents {
    display: none;
  }
  .stage__frame {
    width: 100%;
  }
}

/* =====================
   メニュー
===================== */
.menu {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
}
.menu__block {
  display: flex;
  align-items: center;
}
.menu__block--list {
  display: block;
  width: 50%;
  display: flex;
  align-items: center;
  border: 2px solid var(--base-color);
  background-color: var(--sub-color);
  font-size: 2.8cqw;
  line-height: 1.2;
}
.menu__block--list a {
  padding: 2.4cqw 0
}
.menu__block--list a:visited {
  color: var(--base-color);
}

/* =====================
   エフェクト
===================== */
.top_sp_fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: var(--delay, 0s);
}
.top_sp_fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}
.sp_fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.sp_fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}
.pc_effect {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease, filter 1s ease;
  transition-delay: var(--delay, 0s);
  will-change: opacity, filter;
}
.pc_effect.is-show {
  opacity: 1;
  filter: blur(0);
}
.menu_fadein {
  opacity: 0;
  transition: opacity 1s ease;
}
.menu_fadein.is-show {
  opacity: 1;
}

/* =====================
   SPフレーム内コンテンツ
===================== */

/* 共通 */
.subcolor {
  color: var(--sub-color);
}
.title {
  font-size: 7.5cqw;
  line-height: 1.1;
}
html[lang=en] .title {
  font-size: 6.5cqw;
}
.title-sm {
  font-size: 5cqw;
}
.lead {
  font-size: 2.5cqw;
  line-height: 1.8;
}
html[lang=en] .lead {
  margin-top: 10px;
}
.box-link {
  display: block;
  width: 100%;
  height: 100%;
}

/* トップ部分コンテンツ */
.top {
  padding: 3% 0;
}
.top__image--img {
  display: block;
  width: 94%;
  margin: 0 auto;
}
.top__title {
  margin: 2% auto 0;
  width: var(--base-width);
}
.top__title--img {
  display: block;
  width: 100%;
}
.top__date {
  margin-top: 2%;
  font-size: 3.5cqw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1%;
}
html[lang=en] .top__date {
  padding: 0 8px;
  flex-direction: column;
  gap: 10px;
}
.top__date--box {
  background: var(--base-color);
  color: #fff;
  font-size: 2.25cqw;
  padding: .5% 2%;
  border-radius: 4cqw;
}
html[lang=en] .top__date--box {
  padding: 1.5% 4%;
  border-radius: 300px;
  font-size: 3cqw;
  margin-top: 10px;
}
.top__date--sm {
  font-size: 2.8cqw;
}
.top__date--lg {
  font-size: 4.5cqw;
}

.top__area {
  margin-top: 3%;
  width: 100%;
}
.top__area--img {
  display: block;
  width: 100%;
}

/* 説明コンテンツ */
.about {
  background-color: #efe2c2;
  padding: 5% 0;
}
.about__title {
  margin: 0 auto;
  padding: 1% 0;
  width: var(--base-width);
  background-color: var(--base-color);
  border-radius: 5cqw;
  color: #fff;
  font-size: 4.5cqw;
}
html[lang=en] .about__title {
  padding: 1% 22px;
}
.about__title--sm {
  font-size: 3.75cqw;
}
.about__text {
  margin-top: 3%;
  font-size: 3.4cqw;
}
.about__dl {
  margin-top: 5%;
}
.about__dl--title {
  display: inline-block;
  background-color: #fff;
  font-size: 3.25cqw;
  border-radius: 4cqw;
  border: 2px solid var(--base-color);
  padding: 1% 3%;
}
.about__dl__badge {
  margin: 3% auto 0;
  display: flex;
  justify-content: space-between;
  width: 72%;
}
.about__dl__badge--img {
  display: block;
  height: 10.7cqw;
}
.about__operating {
  margin: 8% auto 0;
  width: var(--base-width);
  display: flex;
  justify-content: space-between;
}
.about__operating__block {
  display: block;
  border-radius: 4cqw;
  width: 31%;
  height: 45cqw;
  background-color: #fff;
  padding-top: 5%;
  position: relative;
}
.about__operating__block--no {
  position: absolute;
  top: -6%;
  left: -6%;
  width: 9cqw;
  height: auto;
}
.about__operating__block--img {
  display: inline-block;
  height: 64%;
  width: auto;
}
.about__operating__block--txt {
  margin-top: 6%;
  font-size: 1.9cqw;
}

/* スタンプラリー */
.stamp__frame {
  margin: 5% auto 0;
  width: 90%;
  height: auto;
  background-color: #fff;
  border-radius: 5cqw;
  border: 3px solid var(--sub-color);
  overflow: hidden;
}
.stamp__frame__top {
  width: 100%;
  background-color: var(--sub-color);
  padding: 4% 0;
}
.stamp__frame__top--subtitle {
  margin: 0 auto;
  font-size: 3.5cqw;
  background-color: var(--base-color);
  color: #ffffb2;
  border-radius: 4cqw;
  padding: 1% 0;
  width: 90%;
}
.stamp__frame__top__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
}
.stamp__frame__top__title--img {
  display: block;
  width: 22%;
}
.stamp__frame__top__title--txt {
  font-size: 7.25cqw;
  color: #ffffb2;
  line-height: 1.1;
}
.stamp__2ndframe {
  margin: 5% auto 0;
  background-color: #fff1b0;
  border-radius: 7cqw;
  padding: 5% 3%;
  width: 94%;
}
.stamp__2ndframe__block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1%;
}
.stamp__2ndframe__block--img {
  width: 30%;
}
html[lang=en] .stamp__2ndframe__block--img {
  width: 50%;
}
.stamp__2ndframe__block--lead {
  margin-top: 3%;
  width: 100%;
}
.stamp__2ndframe__table-frame {
  background-color: var(--base-color);
  border-radius: 4cqw;
  padding: 3%;
  margin: 5% auto 2%;
}
.stamp__2ndframe__table-frame--title {
  font-size: 3.6cqw;
  color: #ffffb2;
  cursor: pointer;
}
.stamp__2ndframe__table-frame--title::before,
.stamp__2ndframe__table-frame--title::after {
  content: "▼";
}
.stamp__2ndframe__table-frame--title.open::before,
.stamp__2ndframe__table-frame--title.open::after {
  content: "▲";
}
.stamp__2ndframe__table-frame--lead1, .stamp__2ndframe__table-frame--lead2 {
  font-size: 2.2cqw;
  color: #fff;
}
.stamp__2ndframe__table-frame--lead1 {
  margin: 3% 0 2%;
}
.stamp__2ndframe__table-frame--lead2 {
  margin: 6% 0 2%;
}
.stamp__2ndframe__table-frame--note {
  font-size: 2.2cqw;
  color: #fff;
  text-align: left;
  margin-top: 2%;
  font-weight: 300;
}

.stamp__2ndframe__table-show {
  display: grid;
  grid-template-rows: 0fr;
  transition: 200ms grid-template-rows;
}
.stamp__2ndframe__table-show.open {
  grid-template-rows: 1fr;
}
.stamp__2ndframe__table-show-inner {
  overflow: hidden;
}
.stamp__2ndframe__table {
  font-size: 2.2cqw;
  width: 100%;
}
.stamp__2ndframe__table th, .stamp__2ndframe__table td {
  border: 2px solid var(--base-color);
  vertical-align: middle;
}
.stamp__2ndframe__table th {
  text-align: center;
  padding: .5cqw 0;
}
.stamp__2ndframe__table td {
  text-align: left;
  padding: .5cqw;
}
.stamp__2ndframe__table--col1 {
  width: 20%;
}
.stamp__2ndframe__table--col2 {
  width: 24%;
}
.stamp__2ndframe__table--col3 {
  width: 56%;
}
.stamp__2ndframe__table--head {
  background-color: var(--sub-color);
}
.stamp__2ndframe__table--area1 {
  background-color: #c5e1f7;
}
.stamp__2ndframe__table--area2 {
  background-color: #a9cff2;
}
.stamp__2ndframe__table--area3 {
  background-color: #e6bbbe;
}
.stamp__2ndframe__table--area4 {
  background-color: #cdd9bd;
}
.stamp__2ndframe__table--area5 {
  background-color: #e4e77a;
}
.stamp__2ndframe__table--area6 {
  background-color: #e1cfaa;
}
.stamp__2ndframe__table--area7 {
  background-color: #fff;
}
.stamp__2ndframe__table--area8 {
  background-color: #fff9cd;
}
.stamp__2ndframe__table--area7 span,
.stamp__2ndframe__table--area8 span {
  color: red;
}
.stamp__3ndframe {
  margin: 5% auto 0;
  background-color: #f6de70;
  border-radius: 6cqw;
  padding: 3%;
  width: 96%;
}
.stamp__3ndframe--lead {
  margin-top: 3%;
}
.stamp__3ndframe--img {
  display: block;
  margin: 1% auto 0;
  width: 96%;
}
.stamp__3ndframe--note {
  font-size: 1.9cqw;
  line-height: 1.6;
  font-weight: 300;
}
.stamp__4thframe {
  background-color: #fff;
  border-radius: 3cqw;
  width: 96%;
  padding: 4%;
  margin: 5% auto 0;
}
.stamp__4thframe__title {
  color: #fff;
  background-color: var(--sub-color);
  width: 100%;
  font-size: 4.2cqw;
  border-radius: 3cqw;
  padding: 1% 0;
}
.stamp__4thframe__img {
  width: 80%;
  margin-top: 1cqw;
}
.stamp__4thframe__cap {
  font-size: 2.3cqw;
}
.stamp__4thframe__cap span {
  font-size: 2.1cqw;
  font-weight: 300;
}
.stamp__5thframe {
  background-color: #dfd6d6;
  width: 100%;
  border-radius: 2cqw;
  padding: 2%;
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 1cqw;
  line-height: 1.1;
  margin-top: 4%;
}
html[lang=en] .stamp__5thframe {
  grid-template-columns: 84px 1fr;
}
@media all and (max-width: 750px) {
    html[lang=en] .stamp__5thframe {
      grid-template-columns: 68px 1fr;
  }
}
.stamp__5thframe dt {
  background-color: var(--base-color);
  color: #fff;
  font-size: 2.1cqw;
  border-radius: 1cqw;
  align-content: center;
  padding: 1cqw;
}
.stamp__5thframe dd {
  font-size: 2.6cqw;
  text-align: left;
}
.stamp__5thframe dd span {
  font-weight: 300;
  font-size: 2.1cqw;
}
.stamp__3rdframe__seal__title {
  background-color: var(--base-color);
  color: #fff;
  font-size: 4.3cqw;
  border-radius: 3.5cqw;
  padding: 1cqw;
  width: 96%;
  margin: 6% auto 0;
}
.stamp__3rdframe__seal__wrap {
  display: flex;
  align-items: center;
  margin: 4% 0;
}
.stamp__3rdframe__seal__txt {
  font-size: 2.8cqw;
  line-height: 1.6;
  width: 78cqw;
}
.stamp__open {
  margin: 3% 0 6%;
}
.stamp__open--txt {
  margin-bottom: 2%;
  font-size: 2.3cqw;
}
.stamp__open--title {
  display: inline;
  font-size: 5.75cqw;
  line-height: 1.2;
  background: linear-gradient(transparent 50%, #fff1b0 50%);
  box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
.stamp__2ndframe__no1,
.stamp__2ndframe__no2,
.stamp__2ndframe__no3 {
  position: relative;
}
.stamp__2ndframe__no2 {
  margin-top: 6%;
}
html[lang=en] .stamp__2ndframe__no2 {
  margin-top: 10%;
}
.stamp__2ndframe__no3 {
  margin-top: 4%;
}
html[lang=en] .stamp__2ndframe__no3 {
  margin-top: 20%;
}
.stamp__2ndframe__no1--img,
.stamp__2ndframe__no2--img,
.stamp__2ndframe__no3--img {
  position: absolute;
  width: 108%;
  top: -7cqw;
  left: -6%;
}
.stamp__2ndframe__no1--title {
  padding-left: 10%;
}
.stamp__2ndframe__no2--title {
  padding-top: 8%;
}
.stamp__2ndframe__no2--lead {
  margin: 3% 0 4%;
}
.stamp__2ndframe__no2__frame {
  background-color: var(--base-color);
  border-radius: 3cqw;
  padding: 3%;
  margin: 0 auto 6%;
  width: 96%;
}
.stamp__2ndframe__no2__frame--title {
  color: #ffffb2;
  font-size: 3.6cqw;
}
.stamp__2ndframe__no2__frame ul {
  display: inline-block;
  font-size: 2.8cqw;
  color: #fff;
  margin: 2% auto 0;
  text-align: left;
  line-height: 1.6;
  list-style: disc;
  margin-left: 2.8cqw;
}
.stamp__2ndframe__no2__seal {
  font-size: 2.6cqw;
}
.stamp__2ndframe__no2__seal__wrap {
  display: flex;
  align-items: center;
  gap: 2cqw;
  margin: 2cqw 0 4cqw;
}
.stamp__2ndframe__no2__seal-no {
  width: 7cqw;
  margin: 0 0.1cqw;
}
.stamp__2ndframe__no2__seal__txt {
  width: 124cqw;
  line-height: 1.6;
}
.stamp__2ndframe__no2__seal__txt span {
  font-size: 4.2cqw;
  color: var(--sub-color);
  line-height: 1.4;
}
.stamp__2ndframe__no2__seal__note {
  font-size: 2.1cqw;
  font-weight: 300;
  margin-bottom: 10cqw;
}
.stamp__2ndframe__no1__block {
  padding-left: 3%;
  display: flex;
  align-items: center;
  gap: 2%;
}
.stamp__2ndframe__no1__block--img {
  display: block;
  width: 32%;
}
html[lang=en] .stamp__2ndframe__no1__block--img {
  width: 44%;
}
.stamp__2ndframe__no3--title-sm {
  padding: 2% 0;
  font-size: 3.75cqw;
  line-height: 1;
}
.stamp__2ndframe__no3--lead {
  margin-top: 3%;
  letter-spacing: -.1cqw;
  font-size: 2.6cqw;
}
.stamp__2ndframe__no3-no {
  width: 5cqw;
  margin: 0 0.2cqw;
}
.stamp__2ndframe__no3__wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 3%;
}
.stamp__2ndframe__no3__seal {
  width: 31%;
  border-radius: 3cqw;
  overflow: hidden;
}
.stamp__2ndframe__no3__seal__title {
  background-color: var(--base-color);
  color: #fff;
  font-size: 2.6cqw;
  padding: 1cqw;
}
.stamp__2ndframe__no3__seal__body {
  background-color: #fff;
  padding: 5%;
}
.stamp__2ndframe__no3__seal__img {
  width: 16cqw;
  margin: 1cqw 0;
}
.stamp__2ndframe__no3--note {
  width: 95%;
  margin: 4% auto 0;
  font-size: 2cqw;
  line-height: 1.6;
  text-align: left;
  font-weight: 300;
  vertical-align: middle;
}
.stamp__2ndframe__no3--note-no {
  width: 4cqw;
  margin: 0 0.2cqw;
}
.stamp__frame__dl {
  margin: 5% auto;
  background-color: var(--base-color);
  border-radius: 6cqw;
  color: #fff;
  font-size: 3.25cqw;
  padding: 2% 0;
  width: 60%;
  position: relative;
}
.stamp__frame__dl a:visited {
  color: #fff;
}
.stamp__frame__dl::after {
  content: "";
  display: block;
  position: absolute;
  width: 5cqw;
  height: 5cqw;
  top: 32%;
  right: 5%;
  background: url('../img/arrow.svg') no-repeat center;
}

/* イベント */
.events__frame {
  margin: 6% auto 0;
  width: 90%;
  height: auto;
  background-color: #fff;
  border-radius: 5cqw;
  border: 3px solid var(--sub-color);
  overflow: hidden;
}
.events__frame__top {
  width: 100%;
  background-color: var(--sub-color);
  padding-top: 3%;
}
.events__frame__top--subtitle {
  margin: 0 auto;
  font-size: 3.5cqw;
  background-color: var(--base-color);
  color: #ffffb2;
  border-radius: 3cqw;
  padding: 1% 0;
  width: 90%;
}
.events__frame__top--title {
  padding: 0 0 4%;
  font-size: 7.5cqw;
  color: #ffffb2;
  line-height: 1.1;
}
.events__frame--title {
  margin: 4% 0 1%;
  font-size: 3.5cqw;
}
.events__2ndframe,
.events__2ndframe__no3 {
  background-color: #fff1b0;
  border-radius: 7cqw;
  padding: 5% 3%;
  width: 94%;
}
.events__2ndframe {
  margin: 0 auto;
}
.events__2ndframe__no1 {
  background: url('../img/events_bg01.webp') no-repeat left 6cqw / contain;
}
.events__2ndframe__no1--lead,
.events__2ndframe__no2--lead {
  margin-top: 3%;
}
.events__2ndframe__no1__block {
  display: flex;
  justify-content: center;
  gap: 1%;
  align-items: center;
  margin-bottom: -2%;
}
.events__2ndframe__no1__block--img {
  width: 43%;
}
.events__2ndframe__no1__block__txt {
  width: 57%;
}
.events__2ndframe__no1__block__txt--title {
  font-size: 3cqw;
  margin-bottom: 2%;
}
.events__2ndframe__no1__block__txt__box {
  border: 2px solid var(--sub-color);
  background-color: #fff;
  border-radius: 4cqw;
  display: block;
  width: 100%;
  padding: 8% 2%;
  font-size: 3.5cqw;
  text-align: left;
}
.events__2ndframe__no1__block__txt__box--list {
  padding-left: 5cqw;
  position: relative;
}
.events__2ndframe__no1__block__txt__box--list:first-child {
  margin-bottom: 4cqw;
}
.events__2ndframe__no1__block__txt__box--list::before {
  content: "";
  display: block;
  position: absolute;
  width: 4cqw;
  height: 4cqw;
  top: 10%;
  left: 0;
  background: url('../img/footprint.svg') no-repeat;
}
.events__2ndframe__no2 {
  background: url('../img/events_bg02.webp') no-repeat left 8cqw / contain;
}
.events__2ndframe__no3 {
  margin: 8% auto 5%;
}
.events__2ndframe__no3--lead {
  margin-top: 8%;
}
.events__2ndframe__no3--note {
  font-size: 2cqw;
  font-weight: 300;
  margin: 2% 0 2%;
}
.events__2ndframe__enjoy {
  background-color: #efe2c2;
  border-radius: 7cqw;
  padding: 5% 4% 1%;
  width: 94%;
  margin: 4cqw auto 2cqw;
}
.events__2ndframe__enjoy--title {
  width: 100%;
  padding: 2% 0;
  background-color: var(--base-color);
  border-radius: 5cqw;
  color: #fff;
  font-size: 4cqw;
}
.events__2ndframe__enjoy__step {
  width: 100%;
  height: 50cqw;
  margin: 5% 0;
  background-color: #fff;
  border-radius: 5cqw;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: flex-end;
}
html[lang=en] .events__2ndframe__enjoy__step:has(.events__2ndframe__enjoy--text3) {
  height: 60cqw;
}
.events__2ndframe__enjoy--clip {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5cqw;
  overflow: hidden;
}
.events__2ndframe__enjoy--step {
  position: absolute;
  background-color: var(--base-color);
  top: 0;
  right: -1%;
  color: #fff;
  font-size: 3.7cqw;
  text-align: right;
  padding: 1% 5% 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  width: 26cqw;
  height: 10cqw;
    clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    22% 100%
  );
}
.events__2ndframe__enjoy--step span {
  font-size: 6.4cqw;
  margin-left: 2cqw;
}
.events__2ndframe__enjoy--img {
  width: 100%;
  position: absolute;
  top: 4cqw;
  left: -2.5cqw;
  z-index: 100;
}
.events__2ndframe__enjoy--text1,
.events__2ndframe__enjoy--text2,
.events__2ndframe__enjoy--text3,
.events__2ndframe__enjoy--text4 {
  font-size: 3cqw;
}
.events__2ndframe__enjoy--text1 {
  margin: 0 5% 5% 50%;
}
.events__2ndframe__enjoy--text2 {
  margin: 0 5% 10% 55%;
}
.events__2ndframe__enjoy--text3 {
  margin: 0 3% 5% 41%;
  text-align: left;
  position: relative;
  font-size: 2.7cqw;
}
.events__2ndframe__enjoy--text3 span {
  display: inline-block;
  font-size: 2cqw;
  color: #333;
  margin-top: 5cqw;
}
.events__2ndframe__enjoy--text3 img {
  position: absolute;
  width: 60%;
  bottom: -4cqw;
  right: -2cqw;
}
.events__2ndframe__enjoy--text4 {
  margin: 0 5% 5% 50%;
  text-align: left;
}
.events__2ndframe__enjoy--note {
  display: block;
  margin: 0 auto 10%;
  text-align: left;
  width: var(--base-width);
  font-size: 2.1cqw;
  font-weight: 300;
}
.events__2ndframe__no2--img {
  width: 60%;
  margin: 2cqw 0;
}
.events__2ndframe__no2__frame,
.events__2ndframe__no3__frame {
  background-color: var(--base-color);
  border-radius: 3cqw;
  padding: 3%;
  margin: 0 auto 1%;
  width: 96%;
}
.events__2ndframe__no2__frame--title,
.events__2ndframe__no3__frame--title {
  color: #ffffb2;
  font-size: 3.6cqw;
}
.events__2ndframe__no2__frame ul,
.events__2ndframe__no3__frame ul {
  display: inline-block;
  font-size: 2.8cqw;
  color: #fff;
  margin: 2% auto 0;
  text-align: left;
  line-height: 1.6;
  list-style: disc;
  margin-left: 2.8cqw;
}
.events__detail {
  margin: 0 auto 5%;
  background-color: var(--base-color);
  border-radius: 5cqw;
  color: #fff;
  font-size: 4.5cqw;
  padding: 2% 0;
  width: 60%;
  position: relative;
}
.events__detail a:visited {
  color: #fff;
}
.events__detail::after {
  content: "";
  display: block;
  position: absolute;
  width: 5cqw;
  height: 5cqw;
  top: 27%;
  right: 5%;
  background: url('../img/arrow.svg') no-repeat center;
}

/* コンテンツのフッター */
.footer {
  padding: 5% 0 9%;
  text-align: left;
  position: relative;
}
.footer__bg {
  width: 40%;
  height: 100%;
  margin-right: 5%;
  position: absolute;
  top: 0;
  right: 0;
}
.footer__note {
  margin: 0 auto;
  width: var(--base-width);
  font-size: 2cqw;
  font-weight: 300;
}
.footer__collaboration {
  margin: 3% 0 0 6%;
  font-size: 2.3cqw;
}
.footer__copyright {
  display: block;
  margin: 2% 0 0 6%;
  width: 65%;
}

/* 多言語言語切替 */
.language__button {
  display: block;
  padding-right: 6px;
	transition: color 0.2s;
}
.language__button__text {
	display: none;
}
.language__button__icon {
	display: inline-block;
	width: 24px;
}
.language__button__icon > img {
	width: 100%;
}
.language__content {
	position: absolute;
	top: 60px;
	right: 5px;
	width: fit-content;
	max-width: 500px;
	margin: auto;
	border-radius: 10px;
	background-color: #FFF;
	border: #5f3032 solid 2px;
	padding: 24px 34px 16px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
	text-align: center;
	z-index: 2;
	overflow: hidden;
	height: 0;
	visibility: hidden;
	pointer-events: none;
	transition: height 0.2s ease-out, visibility 0.2s;
}
.is-open .language__content {
	overflow: visible;
	height: auto;
	height: calc-size(auto, size);
	visibility: visible;
	pointer-events: all;
}
.language__content::before,
.language__content::after {
	content: "";
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	background-color: #5f3032;
	width: 18px;
	height: 10px;
	position: absolute;
	top: 0;
	right: 12px;
	transform: translateY(-100%);
}
.language__content::after {
	background-color: #FFF;
	width: 14px;
	height: 9px;
	right: 14px;
	transform: translateY(calc(-100% + 2px));
}
.language__content ul {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 30px;
}
.language__content ul li {
	display: block;
	width: fit-content;
	margin: 0 auto;
	cursor: pointer;
	font-size: 1.6rem;
}
.language__content__btn-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	color: var(--color-txt);
	margin-top: 24px;
	padding: 4px;
	cursor: pointer;
}
.language__content__btn-close > i {
	font-size: 1.6rem;
	margin-top: 1px;
}
.language__content__btn-close > span {
	font-size: 1.3rem;
}
@media all and (min-width: 751px) {
	.language__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
		padding: 0;
		cursor: pointer;
		line-height: 1;
		transition: color 0.2s;
	}
	.language__button:hover {
		color: var(--color-prim);
	}
	.language__button__text {
		display: inline-block;
		font-size: 1.6rem;
	}
	.language__button__icon {
		width: 18px;
		vertical-align: middle;
	}
	.language__content {
		top: 64px;
		right: 14px;
		padding: 26px 36px 16px;
	}
	.language__content::before {
		right: 46px;
	}
	.language__content::after {
		right: 48px;
	}
}