@charset "UTF-8";
:root {
  --color-yel: #fff100;
  --color-blk: #231815;
  --color-ore: #f39800;
  --color-blu: #37567a;
  --color-red: #d80c18;
  --color-brn: #40220f;
}

.wrapper {
  overflow-x: hidden;
  color: var(--color-blk);
}

.wrapper * {
  box-sizing: border-box;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.wrapper *::before,
.wrapper *::after {
  box-sizing: border-box;
}

.wrapper a {
  transition: all 0.2s;
}

.wrapper img {
  vertical-align: bottom;
}

.visually_hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 100dvh;
  background-color: #fff;
  z-index: 99999;
}

.end_bnr {
  text-align: center;
  background: #000;
  padding: 40px 0;
  color: #fff;
  margin: 0 0 50px;
  font-weight: 700;
}

.end_bnr .em {
  font-size: 200%;
  margin: 0 0 10px;
}

.sp_only {
  display: none !important;
}

body {
  min-width: 1220px;
}

.inner {
  width: 1200px;
  margin: auto;
}

.inner_s {
  width: 1000px;
  margin: auto;
}

main {
  position: relative;
  z-index: 0;
}

.mplus {
  font-family: "M PLUS 1p", sans-serif;
  transform: rotateZ(0.03deg);/* Fontジャギー対策用 */
}

.yugo {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
}

.txt {
  font-size: 125%;
  line-height: 1.8;
}

.w100 {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.marker {
	background: linear-gradient(transparent 60%, #fff100 60%);
	margin: 0 3px;
	padding: 0 2px 3px 2px;
	display: inline;
	line-height: 1;
}

.bold {
  font-weight: bold !important;
}

.al_c {
  text-align: center !important;
}

.al_l {
  text-align: left !important;
}

.al_r {
  text-align: right !important;
}

.ib {
  display: inline-block;
}

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

/* スライダー */
.slider1,
.slider2  {
  opacity: 0;
  transition: opacity .3s linear;
}

.slider1.slick-initialized,
.slider2.slick-initialized {
  opacity: 1;
}

.slider1 .slick-list,
.slider2 .slick-list {
  margin: 0 -15px;
}

.slider1 .slick-slide,
.slider2 .slick-slide {
  margin: 0 15px;
}

.slider1 .item,
.slider2 .item {
  aspect-ratio: 200 / 110;
  cursor: pointer;
  transition: opacity .2s;
}

.slider1 .item:hover,
.slider2 .item:hover {
  opacity: 0.7;
}

.slider1 .item img,
.slider2 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* .list */
.list > li {
  font-size: 125%;
  position: relative;
  line-height: 1.8;
  padding-left: 1.2em;
}

.list > li:not(:first-child) {
  margin-top: 0.5em;
}

.list > li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

/* .list_note */
.list_note > li {
  font-size: 125%;
  position: relative;
  line-height: 1.8;
  padding-left: 1.2em;
}

.list_note > li:not(:first-child) {
  margin-top: 0.5em;
}

.list_note > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/*--------------------------------------------------*/
header .logo {
  width: 300px;
  position: absolute;
  top: 35px;
  left: 15px;
  z-index: 100;
}

header #side-fixed {
  width: 60px;
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 1000;
  transition: all 0.5s;
}

header #side-fixed a {
  transition: all 0.3s;
}

header .side-menu {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

header .side-menu > li {
  width: 100%;
  min-height: 180px;
  font-size: 112.5%;
  font-weight: bold;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  border-top: 3px solid var(--color-blk);
  border-bottom: 3px solid var(--color-blk);
  border-left: 3px solid var(--color-blk);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  box-shadow: 5px 5px 2px 0 rgba(0,0,0,.2);
}

header .side-menu > li:nth-child(1) a {
  background-color: #f7c8d6;
}

header .side-menu > li:nth-child(1) a:hover {
  background-color: #f9a1b3;
}

header .side-menu > li:nth-child(2) a {
  background-color: #fff67f;
}

header .side-menu > li:nth-child(2) a:hover {
  background-color: #fcf156;
}

header .side-sns {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 50px;
}

header .side-sns > li a {
  display: inline-block;
}

header .side-sns > li img {
  width: 40px;
}

header .side-sns a:hover {
  opacity: 0.7;
}

header .side-menu > li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.scroll__menu header #side-fixed {
  opacity: 0;
  bottom: -200px;
}

/*--------------------------------------------------*/
footer {
  color: #fff;
  padding: 40px 0;
  background-color: #310800;
}

footer .f-logo {
  line-height: 1;
  margin: 0 auto 20px;
}

footer .f-box {
  width: 850px;
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 40px;
}

footer .f-box .box-left {
  font-size: 156.3%;
  font-weight: bold;
  letter-spacing: 0.1em;
}

footer .f-box .box-right {
  font-size: 88%;
  margin-top: -0.3em;
}

footer .copyright {
  font-size: 75%;
  text-align: center;
  margin-top: 20px;
}

/*--------------------------------------------------*/
.block_top {
  background-color: var(--color-yel);
  background-image: url("../img/bg_dot.png"), url("../img/bg_sun.png");
  background-repeat: repeat, no-repeat;
  background-position: top left, top center;
  background-size: auto auto, 100% auto;
  position: relative;
  padding-top: 35px;
}

.block_top .main_ttl {
  width: 1300px;
  max-width: 95%;
  margin: 0 auto;
}

/*------------------------------*/
.block_event {
  background-color: var(--color-ore);
  background-image: url("../img/bg_event.png");
  background-repeat: no-repeat;
  background-position: top 20px center;
  background-size: auto;
  position: relative;
  margin-top: -10px;
  padding-bottom: 380px;
}

.block_event::before {
  content: "";
  width: 100%;
  height: 50px;
  background-image: url("../img/bg_event_top.png");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: auto;
  position: absolute;
  bottom: calc(100% - 1px);
}

.event_inner {
  width: 1180px;
  max-width: 86%;
  margin: 0 auto;
}

.event_ttl {
  text-align: center;
  transform: translateY(-45px);
  margin-bottom: -45px;
}

.event_menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 40px auto 0;
}

.event_menu > li {
  width: 542px;
  max-width: 46.3%;
  background-color: #fff;
  border: 12px solid var(--color-blk);
  border-radius: 50px;
  position: relative;
}

.event_img01_01,
.event_img02_01 {
  line-height: 1;
}

.event_img01_01 img,
.event_img02_01 img {
  border-radius: 36px;
  vertical-align: bottom;
}

.event_img01_01 img {
  width: 100%;
  max-width: none;
}

.event_menu_ttl {
  position: absolute;
  top: -54px;
  left: 50%;
  transform: translateX(-50%);
}

.event_btn {
  font-size: 156.3%;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  display: inline-block;
  width: 285px;
  max-width: 100%;
  aspect-ratio: 285 / 86;
  border: 7px solid var(--color-blk);
  border-radius: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translate(-50%, 50%);
  background-image: url("../img/btn_img.svg");
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: auto;
}

.event_btn.pink {
  background-color: #f4b4d0;
}

.event_btn.pink:hover {
  background-color: #eb6d8e;
}

.event_btn.green {
  background-color: #76c5ab;
}

.event_btn.green:hover {
  background-color: #00aca0;
}

.event_img01_01 {
  width: calc(100% + 120px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -58px;
}

/*------------------------------*/
.block_tour {
  position: relative;
  padding-bottom: 140px;
}

.block_tour::before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1366 / 225;
  background-image: url("../img/bg_tour_top.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
}

.tour_inner {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto 90px;
}

.tour_ttl {
  width: 1000px;
  max-width: 73%;
  margin: 0 auto;
}

.tour_date {
  width: 1366px;
  max-width: 100%;
  margin: -72px auto 30px;
}

.tour_txt01 {
  font-size: 256.3%;
  font-weight: 900;
  color: var(--color-red);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0.5em;
}

.tour_txt02 {
  font-weight: 500;
  text-align: center;
}

.tour_img_col2 {
  width: 1366px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
}

.tour_img_col2 .tour_img {
  width: 668px;
  max-width: 49%;
}

.tour_img_caption {
  font-size: 125%;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: var(--color-blu);
  padding: 0.5em 1em;
}

/*------------------------------*/
.block_special {
  background-color: #fff226;
  padding: 150px 0;
}

.special_inner {
  width: 90%;
  max-width: 1020px;
  margin: 0 auto;
}

.special_img01 {
  margin-bottom: 80px;
}

.special_list {
  margin-top: 90px;
}

.special_list > li {
  font-size: 106.3%;
  font-weight: 500;
  line-height: 1.5;
  display: inline;
  position: relative;
  padding-left: 1em;
}

.special_list > li::before {
  color: #d7000f;
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

.special_btn_area {
  margin: 80px 0 20px;
}

.special_btn {
  font-size: 237.5%;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  width: 660px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #d7000f;
  padding: 0.75em 1.2em;
  border-radius: 100vh;
  margin: 0 auto;
}

.special_note {
  font-size: 81.3%;
  text-align: right;
}

/*------------------------------*/
.block_model {
  padding: 150px 0;
}

.model_box {
  width: 1130px;
  max-width: 83%;
  background-color: #f6efc2;
  border-radius: 50px;
  margin: 0 auto;
  padding-bottom: 130px;
}

.model_box_inner {
  width: 1030px;
  max-width: 90%;
  margin: 0 auto;
}

.model_ttl {
  width: 460px;
  max-width: 45%;
  margin: 0 auto 70px;
}

.model_txt01 {
  font-size: 218.8%;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
}

.model_menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 70px 0 150px;
}

.model_menu > li {
  font-size: 125%;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  text-align: center;
  width: 490px;
  max-width: 48%;
}

.model_menu > li a {
  background-color: var(--color-blu);
  border: 2px solid var(--color-blu);
  padding: 1.8em 0.5em;
  display: block;
}

.model_menu > li a:hover {
  background-color: #fff;
  color: var(--color-blu);
}

.style_ttl_sub {
  font-size: 125%;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}

.style_ttl {
  font-size: 250%;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}

.style_top_img {
  aspect-ratio: 1020 / 630;
  position: relative;
  margin-top: 40px;
}

.style_top_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .8s;
}

.style_top_img img.show {
  opacity: 1;
}

.skip {
  padding-bottom: 120px;
}

.style_slider {
  margin-top: 80px;
  margin-bottom: 80px;
}

.style_txt01 {
  font-size: clamp(0px, 2.56vw, 218.8%);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1.5em;
}

.style_txt02 {
  font-size: clamp(0px, 1.46vw, 125%);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.075em;
}

.style_inner_s {
  width: 830px;
  max-width: 82%;
  margin: 0 auto;
}

.style_md_img {
  margin: 100px 0 30px;
}

.style_floor_img {
  margin: 80px 0 30px;
}

.skip .style_floor_img img {
  width: 967px;
  max-width: 94%;
  display: block;
  margin: 0 auto;
}

.style_txt03 {
  font-size: 112.5%;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3em;
}

.style_point {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  margin: 90px 0 110px;
}

.style_point > li {
  width: calc((100% - 90px) / 3);
}

.style_point_ttl {
  font-size: clamp(19px, 1.46vw, 125%);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 0.75em;
  margin: 1em 0 0.8em;
}

.kajiraku .style_point_ttl {
  font-size: clamp(16px, 1.24vw, 106.3%);
}

.kajiraku .style_point_ttl .sm {
  font-size: 0.94em;
}

.style_point_ttl .num {
  flex-shrink: 0;
  width: 1.39em;
  height: 1.39em;
  font-size: 1.8em;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-brn);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.style_point_txt {
  font-size: 87.5%;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.style_tag_list {
  width: 860px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 10px;
  margin: 0 auto;
}

.style_tag_list > li {
  min-width: 204px;
  font-size: 106.3%;
  color: #fff;
  letter-spacing: 0.12em;
  text-align: center;
  background-color: var(--color-brn);
  border: 2px solid #fff;
  padding: 0.2em 2.65em;
  border-radius: 100vh;
}

.kajiraku {
  padding-top: 120px;
  background-image: url("../img/line_dot.svg");
  background-repeat: repeat-x;
  background-position: top left -7px;
  background-size: auto;
}

.kajiraku .style_floor_img img {
  width: 942px;
  max-width: 92%;
  display: block;
  margin: 0 auto;
}

.model_menu_btm {
  width: 1100px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 120px auto 90px;
}

.model_menu_btm > li {
  font-size: 125%;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  text-align: center;
  width: 530px;
  max-width: 48%;
}

.model_menu_btm > li a {
  display: block;
  background-color: var(--color-red);
  border: 2px solid var(--color-red);
  padding: 1.8em 1em;
}

.model_menu_btm > li a:hover {
  background-color: #fff;
  color: var(--color-red);
}

.model_btm_btn {
  font-size: 125%;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  width: 410px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-blu);
  border: 2px solid var(--color-blu);
  padding: 1em 1.5em;
  border-radius: 100vh;
  margin: 0 auto;
}

.model_btm_btn:hover {
  background-color: #fff;
  color: var(--color-blu);
}

/*------------------------------*/
.block_thank {
  background-color: var(--color-yel);
  background-image: url("../img/bg_dot.png"), url("../img/bg_main_event01.png"), url("../img/bg_thank_sun.png");
  background-repeat: repeat, no-repeat, no-repeat;
  background-position: top left, top 1785px center, top center;
  background-size: auto auto, auto auto, 100% auto;
  position: relative;
  padding-top: 25px;
}

.thank_ttl {
  width: 1244px;
  max-width: 91%;
  margin: 0 auto;
}

.thank_date {
  background-color: #d93425;
  box-shadow : 0px 10px 6px rgba(106, 36, 20, 0.3);
  line-height: 1;
  text-align: center;
}

.thank_date_inner {
  max-width: 1366px;
  display: inline-block;
  position: relative;
  margin: 0 auto;
}

.thank_date_ttl {
  width: 280px;
  max-width: 20.5%;
  position: absolute;
  top: -160px;
  left: 50px;
}

.thank_box {
  width: 1200px;
  max-width: 88%;
  background-color: #fff;
  border: 20px solid var(--color-blk);
  border-radius: 100px;
  position: relative;
  padding-bottom: 70px;
  margin: 150px auto 0;
}

.thank_box_inner::before {
  content: "";
  width: 100%;
  height: 100%;
  border-top: 2px solid #fff;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 80px;
  pointer-events: none;
}

.thank_box::before {
  content: "";
  width: 650px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 650 / 107;
  background-image: url("../img/line_thank_head.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid #fff;
}

.event_ttl_en {
  width: 305px;
  max-width: 100%;
  margin: -40px auto 35px;
  position: relative;
}

.stage_event .event_ttl_en {
  margin-bottom: 0;
}

.main_event_catch {
  width: 1270px;
  max-width: none;
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
}

.main_event_ttl {
  background-color: #d93425;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0px, 3.66vw, 312.5%);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  position: relative;
  margin: 40px 0;
}

.main_event_time {
  font-size: 0.5em;
  font-weight: 900;
  color: var(--color-blk);
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  background-color: #fff;
  padding: 0.2em 2em;
  border-radius: 100vh;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
}

.main_event_txt01 {
  font-size: clamp(0px, 2.64vw, 225%);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}

.main_event_txt01 .line {
  border-bottom: 10px solid #d93425;
  display: inline-block;
  padding-bottom: 0.1em;
}

.main_event_img_list > li {
  position: relative;
}

.main_event_img_list > li:not(:last-child)::after {
  content: "";
  width: 90%;
  height: 6px;
  border-radius: 100vh;
  background-color: var(--color-blk);
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.main_event_txt02 {
  font-size: clamp(0px, 4.1vw, 350%);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 60px 0 30px;
}

.main_event_note {
  font-size: 125%;
  letter-spacing: 0.08em;
  text-align: center;
}

.stage_event {
  padding-bottom: 0;
  margin-top: 165px;
}

.stage_event_ttl {
  min-height: 140px;
  background-color: #00aca0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0px, 3.66vw, 312.5%);
  font-weight: 900;
  color: #fff;
  line-height: 1.04;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
  margin: 40px 0;
  padding: 0.3em 0;
}

.stage_event_time {
  font-size: 0.5em;
  font-weight: 900;
  color: var(--color-blk);
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: left;
  background-color: #fff;
  padding: 0.2em 0.5em;
  border-radius: 0.8em;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
}

.stage_event_ill {
  width: 325px;
  max-width: 28%;
  position: absolute;
  bottom: -230px;
  left: -50px;
}

.workshop_event {
  margin-top: 200px;
}

.kids_event {
  margin-top: 170px;
  padding-bottom: 200px;
}

.kids_event .thank_box,
.workshop_event .thank_box {
  padding-bottom: 0;
}

.kids_ttl_en,
.workshop_ttl_en {
  width: 620px;
  max-width: 100%;
  margin: 0 auto 70px;
}

.kids_lead_txt,
.workshop_lead_txt {
  font-size: 250%;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-align: center;
}

.kids_lead_txt > span,
.workshop_lead_txt > span {
  position: relative;
  display: inline-block;
}

.kids_lead_txt > span::before,
.kids_lead_txt > span::after,
.workshop_lead_txt > span::before,
.workshop_lead_txt > span::after {
  content: "";
  width: 130px;
  height: auto;
  aspect-ratio: 130 / 144;
  background-image: url("../img/line_ttl.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  bottom: -20px;
}

.kids_lead_txt > span::before,
.workshop_lead_txt > span::before {
  right: calc(100% + 200px);
}

.kids_lead_txt > span::after,
.workshop_lead_txt > span::after {
  left: calc(100% + 200px);
  transform: scale(-1, 1);
}

.kids_event_ttl,
.workshop_event_ttl {
  min-height: 140px;
  background-color: #00aca0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0px, 3.66vw, 312.5%);
  font-weight: 900;
  color: #fff;
  line-height: 1.04;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
  padding: 0.3em 0;
}

.kids_event_time,
.workshop_event_time {
  font-size: 0.5em;
  font-weight: 900;
  color: var(--color-blk);
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: left;
  background-color: #fff;
  padding: 0.2em 0.8em;
  border-radius: 0.8em;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translateY(-50%);
}

.kids_event_ttl_col2 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.kids_event_ttl.ttl03 {
  background-image: url("../img/kids_ttl_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  padding: 0.46em 0;
}

.kids_event_ttl.ttl03 h3 {
  font-weight: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.kids_event_ttl.ttl03 .sm {
  font-size: 0.8em;
  line-height: 1.3;
  display: inline-block;
}

.kids_event_ttl.ttl03 .kids_event_time {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  display: inline-block;
}

.kids_event_ttl.ttl01 > span,
.kids_event_ttl.ttl02 > span,
.workshop_event_ttl.ttl01 > span,
.workshop_event_ttl.ttl02 > span {
  margin-left: -1.2em;
}

.kids_event_note,
.workshop_event_note {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.white_box {
  background-color: #fff;
  border-radius: 150px;
  padding: 80px 130px;
}

.food {
  padding-bottom: 330px;
}

.food .white_box {
  position: relative;
}

.food_top_ill {
  width: 1210px;
  max-width: calc(100% + 100px);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: multiply;
}

.food_inner {
  width: 1100px;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}

.food_catch {
  width: 370px;
  max-width: 27%;
  position: absolute;
  top: -265px;
  right: 50px;
}

.food_ttl_en {
  width: 294px;
  max-width: 100%;
  margin: 0 auto 80px;
}

.food .thank_date {
  margin-bottom: 80px;
}

.food_txt01 {
  font-size: 187.5%;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
}

.food_txt01 .em {
  font-size: 1.63em;
  font-weight: bold;
}

.food_top_img {
  text-align: center;
  margin: 10px 0 30px;
}

.food_txt02 {
  font-size: 125%;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.food_cont_wrap {
  position: relative;
}

.food_ill01 {
  width: 490px;
  max-width: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 590px;
  left: calc(100% - 200px);
}

.food_ill02 {
  width: 490px;
  max-width: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  bottom: -130px;
  right: calc(100% - 200px);
}

.food_cont {
  padding: 100px 85px 0;
  margin-top: 90px;
  position: relative;
}

.food_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 160px 100px;
}

.food_list > li {
  position: relative;
}

.food_list > li:nth-child(3)::before,
.food_list > li:nth-child(6)::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
}

.food_list > li:nth-child(3)::before {
  width: 134px;
  height: auto;
  aspect-ratio: 134 / 258;
  background-image: url("../img/food_ill01.png");
  top: -15px;
  right: calc(100% + 2px);
  mix-blend-mode: multiply;
}

.food_list > li:nth-child(6)::before {
  width: 130px;
  height: auto;
  aspect-ratio: 1 / 1;
  background-image: url("../img/food_ill02.png");
  top: 85px;
  left: calc(100% + 15px);
  mix-blend-mode: multiply;
}

.shop_date {
  width: 100%;
  position: absolute;
  bottom: calc(100% + 15px);
  line-height: 1;
  text-align: center;
}

.shop_name {
  font-size: 187.5%;
  font-weight: bold;
  text-align: center;
}

.food_btm_img_bg,
.food_btm_img {
  width: 800px;
  max-width: 72%;
  position: absolute;
  top: calc(100% - 50px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.food_btm_img_bg {
  mix-blend-mode: multiply;
}

/*------------------------------*/
.info_ttl {
  font-size: 375%;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  text-align: center;
  margin-bottom: 110px;
}

.info_ttl_s {
  font-size: 218.8%;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-align: center;
}

.access .info_ttl_s {
  margin-bottom: 50px;
}

.caution .info_ttl_s {
  margin-bottom: 30px;
}

.access {
  margin-bottom: 200px;
}

.access_inner,
.caution_inner {
  width: 1120px;
  max-width: 90%;
  margin: 0 auto;
}

.access_txt_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.access_txt01 {
  font-size: 137.5%;
  font-weight: 600;
  padding-left: 4em;
  text-indent: -4em;
  font-feature-settings: normal;
}

.map {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1120 / 495;
    margin-top: 30px;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.caution_box {
  background-color: #fff;
  border-radius: 12px;
  padding: 50px 100px;
}

.caution_box .list > li {
  font-size: 118.8%;
  line-height: 1.7;
}

/*------------------------------*/

.block_contact {
  padding: 80px 0 580px;
  background-color: var(--color-yel);
  background-image: url("../img/bg_btm.png"), url("../img/bg_dot.png");
  background-repeat: no-repeat, repeat;
  background-position: bottom center, top left;
  background-size: auto auto, auto auto;
}

.block_contact .inner {
  max-width: 1080px;
}

.block_contact .area_corona {
  border: solid 1px #4c4948;
  position: relative;
  padding: 40px 60px 30px;
  margin: 0 0 100px;
}

.block_contact .area_corona .corona-title {
  line-height: 1;
  font-size: 160%;
  font-weight: 600;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  top: -0.5em;
  z-index: 5;
}

.block_contact .area_corona .corona-title span {
  display: inline-block;
  background: #fff;
  padding: 0 15px;
}

.block_contact .contact-title,
.block_thanks .contact-title {
  text-align: center;
  font-size: 220%;
  margin: 0 0 30px;
}

.block_contact .contact-lead {
  text-align: center;
  margin: 0 0 20px;
}

.list_form {
  border: solid 1px #4c4948;
  margin: 0 0 120px;
  background-color: #fff;
}

.list_form li {
  overflow: hidden;
  display: table;
  width: 100%;
}

.list_form li + li {
  border-top: solid 1px #4c4948;
}

.list_form .area_label {
  display: table-cell;
  padding: 14px;
  background: #efeee8;
  box-sizing: border-box;
  width: 20%;
  border-right: solid 1px #4c4948;
  vertical-align: top;
  position: relative;
}

.list_form li.hissu .area_input::after {
  content: "必須";
  display: inline-block;
  background: #D23F3E;
  color: #fff;
  position: absolute;
  top: 20px;
  left: 15px;
  padding: 5px;
  margin: auto;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}

.list_form li.past_campaign .area_label {
  /* padding: 14px 14px 40px; */
  text-align: left;
}

.list_form li.past_campaign .area_label.hissu::after {
  right: 0;
  left: 0;
  bottom: 10px;
  top: auto;
  margin: auto;
  width: 2em;
}

.list_form .area_input {
  display: table-cell;
  /* padding: 12px 20px; */
  padding: 15px 20px 15px 75px;
  box-sizing: border-box;
  position: relative;
}

.list_form li.past_campaign .area_input {
  vertical-align: middle;
}

.list_form .area_input p + p {
  margin: 10px 0 0;
}

.list_form .area_input.radio-box label {
  display: inline-block;
  width: 32%;
  cursor: pointer;
  margin: 3px 0;
}

.list_form .area_input.radio-box label input, .list_form .area_input.radio-box2 label input, .list_form .area_input.radio-box3 label input {
  margin: 0 5px 0 0;
  display: inline-block;
}

.list_form .area_input.radio-box2 label {
  display: inline-block;
  cursor: pointer;
  margin: 3px 0;
  padding: 0 20px 0 0;
}

.list_form .area_input.radio-box3 label, .list_form .area_input.radio-box3 .wpcf7-list-item {
  display: block;
  cursor: pointer;
}

.list_form .area_input .small {
  font-size: 75%;
  margin: 10px 0 0;
}

.list_form .area_input .small small {
  display: inline-block;
}

.list_form input[type=text], .list_form input[type=email], .list_form input[type=tel], .list_form textarea {
  width: 45%;
  background-color: #ebeaea;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding: 10px;
}

.list_form input[type=text].short {
  width: 20%;
}

.list_form input[type=email], .list_form input[type=text].long {
  width: 70%;
}

.list_form input[type=text]#datepicker {
  width: 140px;
  cursor: pointer;
}

.list_form textarea {
  width: 100%;
}

.list_form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ecebeb;
  padding: 10px 40px 10px 15px;
  border: none;
  font-size: 16px;
  width: 300px;
}

.list_form span.select-arrow {
  position: relative;
  display: inline-block;
}

.list_form span.select-arrow::after {
  content: "";
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  border-top: solid 1px #4c4948;
  border-right: solid 1px #4c4948;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(135deg);
}

.list_form .att-text {
  color: #e50012;
  font-size: 82%;
  margin: 5px 0 0;
}

.list_form .att-text02 {
  background: #b5464c;
  color: #fff;
  padding: 3px 0;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  margin: 10px 0 0;
}

.list_form .check__on {
  display: none;
}

.list_form .check__on.check__start {
  display: table;
}

.block_contact .policy-title {
  font-size: 150%;
  font-weight: 600;
  margin: 0 0 10px;
  text-align: center;
}

.block_contact .policy-title strong {
  color: #b5464c;
}

.block_contact .policy-text {
  font-size: 93.8%;
  font-weight: 500;
  margin-top: 1.5em
}

.block_contact .policy-text a {
  text-decoration: underline;
}

.block_contact .policy-text a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.block_contact .area_policy {
  height: 220px;
  overflow-y: scroll;
  border: solid 1px #4c4948;
  box-sizing: border-box;
  padding: 30px;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 40px;
}

.block_contact .area_policy p + p {
  margin: 15px 0 0;
}

.list_disc li {
  list-style: disc;
  margin: 0 0 0 1.3em;
}

.block_contact .area_policy dl {
  margin: 20px 0 0;
}

.block_contact .area_policy dt {
  font-weight: 600;
  margin: 0 0 5px;
  font-size: 110%;
}

.block_contact .area_submit {
  text-align: center;
  margin: 0 0 80px;
}

.block_contact .area_submit button {
  width: 400px;
  max-width: 100%;
  color: #fff;
  display: inline-block;
  background: var(--color-blk);
  line-height: 70px;
  margin: 0;
  padding: 0 75px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 125%;
  font-weight: 600;
  border-radius: 100vh;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.block_contact .area_submit button:hover {
  color: var(--color-blk);
  background: var(--color-ore);
}

.block_contact .area_error {
  border: 25px solid var(--color-ore);
  border-top-width: 15px;
  margin-bottom: 50px;
}

.block_contact .area_error .error-title {
  background: var(--color-ore);
  padding-bottom: 15px;
  font-size: 150%;
  font-weight: 600;
  line-height: 1.5;
}

.block_contact .area_error .error-box {
  background: #fff;
  padding: 10px 30px 20px;
}

.dl_error + .dl_error {
  margin: 20px 0 0;
}

.dl_error dt {
  font-size: 125%;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}

.dl_error dt:before,
.dl_error dt:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #000;
}

.dl_error dt:before {
    margin-right: 1em;
}

.dl_error dt:after {
    margin-left: 1em;
}

.dl_error dd p + p {
  margin: 15px 0 0;
}

.block_contact .error-message {
  text-align: center;
  background: var(--color-ore);
  padding: 20px 15px;
  font-size: 100%;
  font-weight: bold;
  line-height: 2;
  position: relative;
}

.block_contact .error-message::before {
  content: "";
  width: 30px;
  height: auto;
  aspect-ratio: 30 / 19;
  background-image: url("../img/arrow_down.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.list_btn {
  text-align: center;
}

.list_btn li {
  width: 350px;
  margin: 20px auto 0;
  background: #4c4948;
}

.list_btn img {
  vertical-align: top;
}

.list_formSteps {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}

.list_formSteps::before {
  content: "";
  width: 400px;
  height: 1px;
  background: #231815;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.list_formSteps > li {
  width: 120px;
  height: 120px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  z-index: 5;
  margin: 0 28px;
}

.list_formSteps > li:nth-child(1) {
  background-image: url("../img/steps01.svg");
}

.list_formSteps > li:nth-child(2) {
  background-image: url("../img/steps02.svg");
}

.list_formSteps > li:nth-child(3) {
  background-image: url("../img/steps03.svg");
}

.list_formSteps > li.active:nth-child(1) {
  background-image: url("../img/steps01_on.svg");
}

.list_formSteps > li.active:nth-child(2) {
  background-image: url("../img/steps02_on.svg");
}

.list_formSteps > li.active:nth-child(3) {
  background-image: url("../img/steps03_on.svg");
}

.formWaku {
  padding: 100px 0 0;
  position: relative;
}

.formWaku .formSticky {
  width: 300px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  /* z-index: 1000; */
}

.formWaku .formSticky.none {
  display: none;
}

.formWaku .formSticky .sticky_wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  right: 0;
  border: solid 1px #231815;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1000;
}

.formWaku .form_nokori {
  position: relative;
  background: #FFF799;
  text-align: center;
  padding: 10px 100px 10px 35px;
  margin: 0 0 0 auto;
  font-size: 93.75%;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.formWaku .form_nokori::before {
  content: "";
  width: 31px;
  height: 17px;
  background: url("../img/next02.webp") no-repeat;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.formWaku .form_nokori span.text {
  display: inline-block;
  vertical-align: middle;
}

.formWaku .form_nokori span#num {
  font-size: 180%;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 5px;
}

.formWaku .form_last {
  background: #fff;
  box-sizing: border-box;
  padding: 0 10px;
}

.formWaku .form_last p {
  font-size: 88%;
  font-weight: 700;
}

.formWaku .form_last p a {
  display: block;
  padding: 2px 0;
}

.form_last {
  display: none;
}

.form_last p.none {
  display: none;
}

.form_ttl {
  background-color: var(--color-blk);
  font-size: 181.3%;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/* == contact ==============================================*/
#page_thanks header {
  background: #333;
  position: relative;
  text-align: center;
  padding: 20px 0;
}

#page_thanks header h1 {
  width: 300px;
  margin: auto;
}

#page_thanks header h1 img {
  vertical-align: top;
}

#formWrap {
  padding: 50px 0 0;
}

#formWrap .confirm-text-box {
  text-align: center;
}

#formWrap .confirm-text-box .confirm-title {
  font-size: 150%;
  margin: 0 0 15px;
}

#formWrap .form_base .formTable {
  width: 80%;
  margin: 20px auto 50px;
}

#formWrap .form_base .formTable th {
  text-align: left;
  padding: 10px;
  background: #f5f5f5;
  width: 25%;
  border: solid 1px #eee;
}

#formWrap .form_base .formTable td {
  padding: 10px;
  border: solid 1px #eee;
}

#formWrap .area_submit {
  text-align: center;
}

#formWrap .area_submit input {
  width: 200px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: #ffe900;
  color: #333;
  font-weight: 600;
  padding: 10px 0;
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
}

#formWrap .area_submit input.back {
  background: #ccc;
}

.block_thanks .inner {
  max-width: 900px;
}

.block_thanks .thanks-title {
  font-size: 125%;
  margin: 0 0 5px;
  font-weight: 600;
}

.block_thanks .thanks-text {
  margin: 20px 0 0;
}

.bnr_present {
  margin: 0 0 100px;
}

.bnr_present .present-title {
  background: #ee7800;
  text-align: center;
  padding: 20px 0 10px;
}

.bnr_present .present-title img {
  vertical-align: top;
}

.bnr_present .present-text {
  text-align: right;
  font-size: 88%;
}

.confirm_list_form {
  border: solid 1px #4c4948;
  margin: 0 0 40px;
}

.confirm_list_form li {
  overflow: hidden;
  display: table;
  width: 100%;
}

.confirm_list_form li + li {
  border-top: solid 1px #4c4948;
}

.confirm_list_form .area_label {
  display: table-cell;
  padding: 14px;
  background: #eeeee8;
  box-sizing: border-box;
  width: 20%;
  vertical-align: top;
  position: relative;
}

.confirm_list_form li.hissu .area_input::after {
  content: "必須";
  display: inline-block;
  background: #D23F3E;
  color: #fff;
  position: absolute;
  top: 16px;
  left: 15px;
  padding: 5px;
  margin: auto;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}

.confirm_list_form li.past_campaign .area_label {
  /* padding: 14px 14px 40px; */
  text-align: left;
}

.confirm_list_form li.past_campaign .area_label.hissu::after {
  right: 0;
  left: 0;
  bottom: 10px;
  top: auto;
  margin: auto;
  width: 2em;
}

.confirm_list_form .area_input {
  display: table-cell;
  /* padding: 12px 20px; */
  padding: 15px 20px 15px 75px;
  box-sizing: border-box;
  position: relative;
}

.confirm_list_form li.past_campaign .area_input {
  vertical-align: middle;
}

.confirm_list_form .area_input p + p {
  margin: 10px 0 0;
}

.confirm_list_form .area_input .small {
  font-size: 75%;
  margin: 10px 0 0;
}

input,
select,
button[type=submit],
button[type=button] {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.check_txt {
  text-align: center;
  text-decoration: underline;
  transition: all 0.3s;
}

.block_contact .area_submit button.check_txt {
  border: none;
  background: none;
  line-height: 1.25;
  padding: 0;
  margin-top: 1em;
}

.block_contact .area_submit button.check_txt:hover {
  text-decoration: none;
  color: #000;
}

#page_confirm .block_contact .area_submit {
  margin-bottom: 0;
}

#page_confirm .block_contact {
  padding-bottom: 100px;
}

.contact_head_txt {
  margin-bottom: 2em;
  text-align: center;
}

.area_input .error {
  display: block;
  font-size: 93%;
  color: #B70000;
}

/* == animation ==============================================*/

/* close */
.close .btn_top {
  width: 548px;
  max-width: 90%;
  font-size: 225%;
  font-weight: 500;
  color: #e9473f;
  line-height: 1;
  background-color: #fff;
  padding: 0.6em 1em;
  border: 8px solid currentColor;
  box-sizing: border-box;
}

.close .btn_top > span {
  display: inline-block;
  letter-spacing: 0.13em;
  text-indent: 0.13em;
}

.close .thanks_lead {
  font-size: 312.5%;
  color: #fff;
  line-height: 1.35;
  text-align: center;
}

.close .thanks_text {
  width: 90%;
  line-height: 1;
  margin: 50px auto;
}

.close .thanks_note {
  text-align: center;
}

.close .thanks_note > span {
  font-size: 256.25%;
  font-weight: bold;
  color: #234b7c;
  line-height: 1.3;
  letter-spacing: 0.12em;
  display: inline-block;
  background-color: #fff;
  padding: 0.25em 1.2em 0.3em;
  border-radius: 100vh;
}

.close .area_voice {
  padding-bottom: 110px;
}

.close .detail_text04 {
  margin-bottom: 0;
}

.close .detail_contents {
  padding-bottom: 90px;
}

.close .block_web .title_center {
  margin-bottom: 60px;
}

.close .end_bnr {
  padding: 70px 0 90px;
}

.close .end_bnr .em {
  font-size: 375%;
}

.close .end_bnr .em > span {
  font-weight: 900;
  display: inline-block;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
}

.close .end_bnr .normal {
  font-size: 218.75%;
  font-weight: 500;
  letter-spacing: 0.06em;
}