:root {
    --color_BLK: #191919;
    --color_RED: #e61b20;
    --colo-yellow: #faed00;
    --colo-blue: #0090da;
    --gap_96px: clamp(32px, 12vw, 96px);
    --gap_80px: clamp(27px, 10vw, 80px);
    --gap_64px: clamp(21px, 8vw, 64px);
    --gap_48px: clamp(16px, 6vw, 48px);
    --gap_32px: clamp(11px, 4vw, 32px);
    --gap_24px: clamp(8px, 3vw, 24px);
    --gap_16px: clamp(5px, 2vw, 16px);
    --gap_8px: clamp(3px, 1vw, 8px);
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #eafdff;
}

body {
    width: 100%;
    position: relative;
}

body,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
ul,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

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

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

table {
    width: 100%;
}

#page {
    font-size: clamp(18px, 2.2vw, 20px);
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    /* background-color: #eafdff; */
    /* color: #fff;
    background: #191919;
    font-feature-settings: "palt"; */
    /* font-family: YakuHanMP, "Noto Serif JP", serif; */
    line-height: 1.4;
    margin: 0 auto;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
    position: relative;
}

#page * {
    box-sizing: border-box;
}

#page img {
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

#page a {
    transition: all 0.3s;
    /* text-decoration: none; */
}

#page a[tabindex*="-1"] {
    pointer-events: none;
}

#page a[tabindex*="-1"]:hover {
    opacity: 1;
}

/* リンクとボタンのoutlineを非表示にする */
#page a,
#page button {
    outline: none;
    cursor: pointer;
}

/* ボタンとリンクにフォーカスした時にoutlineが表示されるようにする */
#page a:focus-visible {
    outline: #3683BF solid 2px;
    outline-offset: 2px;
}

#page button:focus-visible {
    outline: #3683BF solid 2px;
    outline-offset: 1px;
}

#page a:hover {
    cursor: pointer;
    text-decoration: none;
    opacity: 0.7;
}

#page label {
    cursor: pointer;
}

#page em {
    font-style: normal;
    font-weight: bold;
}

#page picture {
    display: block;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.ib {
    font-size: inherit !important;
    display: inline-block;
}

.bold {
    font-weight: 700;
}

.center {
    text-align: center;
    display: block;
    margin-inline: auto;
}

.small {
    font-size: .8em !important;
}

#page_top {
    position: fixed;
    right: 3%;
    bottom: 2%;
    display: block;
    width: min(13vw, 60px);
    height: auto;
    z-index: 999;
}

#page_top img {
    width: 100%;
    height: auto;
}

@media not screen and (min-width: 767px) {
    #page_top {
    z-index: 0;
    }
}

.top__movie {
    margin: var(--gap_64px) auto 0;
}

.movie {
    position: relative;
    max-width: 900px;
    aspect-ratio: 16/9;
    margin: 0 auto var(--gap_32px);
    overflow: hidden;
}

.tvo-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

/* =============================================================
    【g_navi】ブロック ※グローバルナビ
============================================*/
#p_header,
#p_header2 {
	position: sticky;
	top: 0;
	z-index: 900;
}
.menu_wrap {
	background-color: #0071ae;
	box-shadow: 0 0 var(--gap_8px) #0071ae;
}

.g_navi_wrap.flex {
	margin: 0 auto;
	max-width: 1350px;
    display: flex;
	justify-content: center;
}
.g_navi_wrap *,
.g_navi_wrap *::before,
.g_navi_wrap *::after {
	border-color: #fff !important;
}
.g_navi_wrap li {
	font-size: clamp(14px,1.6vw,20px);
	width: calc(100% / 6);
	text-align: center;
	border-right: solid 1px;
}
.g_navi_wrap li > div {
	width: 100%;
}
.g_navi_wrap li:first-child {
	border-left: solid 1px;
}
.g_navi_wrap a {
    font-size: clamp(14px, 1.6vw, 16px);
	display: block;
	width: 100%;
	position: relative;
}
.g_navi_wrap a:not(.nolink)::after {
	content: "";
	position: absolute;
	width: 100%;
	border-bottom: solid 1px;
	left: 0;
	bottom: 0;
	/*横方向0で非表示にする*/
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	/*中央を基点にアニメーション*/
	-webkit-transform-origin: center top;
	transform-origin: center top;
	/*アニメーションの速度設定*/
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.g_navi_wrap a:not(.nolink):hover {
	background-color: #0071ae;
}

.g_navi_wrap a:hover {
    opacity: 1 !important;
}


.g_navi_wrap span {
    font-size: 1.2em;
    letter-spacing: 0.05em;
    font-weight: 900;
	color: #fff;
	line-height: 1;
	padding: var(--gap_16px) 8px;
	display: inline-block;
}
.g_navi_wrap span::after {
    font-size: .7em;
    font-weight: 500;
    margin-top: var(--gap_8px);
    display: block;
    content: attr(data-caption);
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
}

.g_navi_wrap li span {
    display: flex;
    flex-direction: column;
}

.g_navi a[tabindex*="-1"] {
	position: relative;
}
.g_navi a[tabindex*="-1"]::after {
	content: "coming soon";
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-10deg);
	opacity: 1;
	color: #fff;
	text-shadow: 0 0 0.2em #0071ae, 0 0 0.2em #0071ae, 0 0 0.2em #0071ae, 0 0 0.3em #0071ae, 0 0 0.3em #0071ae;
}
.g_navi a[tabindex*="-1"] span {
	color: #0071ae;
}
@media screen and (min-width: 1000px) {
	.g_navi_wrap a:hover::after {
		/*横方向等倍まで拡大*/
		transform: scale(1, 1);
	}
	.trigger_wrap {
		display: none;
	}
	.g_navi {
		display: block !important;
	}
}
@media not screen and (min-width: 1000px) {
    .menu_wrap {
        background: none;
        box-shadow: none;
    }
	.trigger_wrap {
		text-align: right;
		padding: 0;
		position: relative;
		z-index: 900;
	}
	.btn_trigger {
        background-color: #0071ae;
        font-size: 30px;
        color: #fff;
        border: 0;
        position: relative;
        height: 55px;
        width: 55px;
        position: absolute;
        top: 0;
        right: 0;
	}
    
	.btn_trigger i {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.btn_trigger .menu_close,
	.btn_trigger.is-opend .menu_bar {
		display: none;
	}
	.btn_trigger.is-opend .menu_close {
		display: block;
	}
	.g_navi {
		width: 100%;
		padding-top: 40px;
		position: absolute;
		top: 0;
        height: 100vh;
		/* height: 100svh; */
		overflow-y: scroll;
		background-color: #0071ae;
		box-shadow: 0 0 var(--gap_8px) #0071ae;
		z-index: -1;
		display: none;
		-ms-overflow-style: none;
		/* スクロールバー非表示（IE・Edge） */
		scrollbar-width: none;
		/* スクロールバー非表示（Firefox） */
	}
	.g_navi::-webkit-scrollbar {
		/* スクロールバー非表示（Chrome・Safari） */
		display: none;
	}
	.g_navi_wrap.flex {
		flex-direction: column;
        padding: 20px 16px;
	}
	.g_navi_wrap li {
		border: 0 !important;
		width: 100%;
		margin: 0 auto !important;
	}
	.g_navi_wrap li:not(:last-child) {
		border-bottom: dotted 1px #fff !important;
	}
	.g_navi_wrap span {
		padding: 24px 12px;
	}
}

#page-top {
    display: block;
    position: fixed;
    bottom: 0;
    right: 2%;
    width: 125px;
    height: 150px;
    background: url(/event/nyanko/lib/2026/images/page-top.png) no-repeat bottom / 100%;
	z-index: 100;
}

#page-top:hover { background: url(/event/nyanko/lib/2026/images/page-top_hover.png) no-repeat bottom / 100%;}

/* #page section {
	padding-top: 80px;
    margin-top: -80px;
} */

#page section:not(:last-of-type) {
    margin-bottom: var(--gap_80px);
}

.wrapper02 h2 { 
    text-align: center;
    margin-bottom: var(--gap_48px);
}

.wrapper01 {
    max-width: 1920px;
    margin: 0 auto;
}

.wrapper02 {
    width: min(90%,1152px);
    margin: 0 auto;
}

#page_top {
    position: fixed;
    right: 0;
    bottom: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 150px;
    color: #fff;
    background-color: var(--colo-blue);
    writing-mode: vertical-rl;
    font-size: 22px;
    letter-spacing: 0.05em;
    font-weight: 900;
    border-left: solid 1px #fff;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
    z-index: 5;
}

#event_top {
    width: 100%;
    position: relative;
}

#event_top .circle_deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(100,190,149);
    background: linear-gradient(90deg, rgba(100,190,149,1) 0%, rgba(0,128,200,1) 100%);
    clip-path: ellipse(90% 83% at 50% 0);
    z-index: -1;
}

#event_top .wrapper01 { 
    padding-top: var(--gap_80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#event_top .wrapper01 h1,
#event_top .time { width: 50%;}

#event_top .wrapper01 h1 img,
#event_top .time img { width: 100%;}

#event_top .time { margin-top: 5em;}

#intro h2 { margin-bottom: 1.875em;}

#intro h2 picture {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

#intro h2 img { width: 100%;}

#intro p {
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}

#intro .shop_slider {
    max-width: 1056px;
    margin: 1.875em auto 0 auto;
}

#intro .shop_slider img { width: 100%;}

#recruit .wrapper02 {
    position: relative;
    background-color: #fff;
    border-radius: 3.125em;
    padding: 3.75em;
}

#recruit .wrapper02::before,
#recruit .wrapper02::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 3.125em;
}

#recruit .wrapper02::before {
    background-color: #35f6c2;
    top: -1.2em;
    left: -1.2em;
}

#recruit .wrapper02::after {
    background-color: #35ebf6;
    bottom: -1.2em;
    right: -1.2em;
}

#recruit h2 img { width: 40%;}

#recruit .coming_soon {
    width: 100%;
    font-size: 70px;
    font-weight: 900;
    text-align: center;
    text-transform: capitalize;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.slick-dots { bottom: -35px;}

.slick-dots li button:before { font-size: 1.2em;}

.link_btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5em;
    font-weight: 900;
    background: rgb(52,215,141);
    background: linear-gradient(270deg, rgba(52,215,141,1) 0%, rgba(62,231,154,1) 50%, rgba(0,152,238,1) 100%);
    background-position: 1% 50%;
    background-size: 200% auto;
    color: #fff;
    text-align: center;
    transition: all .2s ease-out;
    border-radius: 100vmax;
    padding: 0.6em 0;
}

.link_btn:hover { background-position: 99% 50%;}

#intro .link_btn { 
    width: min(90%,450px);
    margin-top: 2.5em;
}

.link_btn .i_con {
    padding-left: 1em;
}

.title__grd > span {
    font-size: clamp(2.25rem, 2.068rem + 0.91vw, 2.75rem);
    font-weight: 900;
    letter-spacing: .05em;
    background: linear-gradient(45deg, #34d78d 0%, #3ee79a 40%, #0098ee 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    }

#entry {
    width: 100%;
    background-size: auto auto;
    background-color: rgba(209, 253, 245, 0);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(209, 253, 245, 1) 10px, rgba(209, 253, 245, 1) 20px );
    padding: var(--gap_80px) 0;
}

/* #entry p {
    text-align: center;
} */

.entry__text01 {
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: var(--gap_48px);
    text-align: center;
}

.entry__text02 {
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: var(--gap_16px);
    text-align: center;
}

.entry__text03 {
    font-size: .8em;
    width: fit-content;
    margin-inline: auto;
    text-indent: -1em;
    padding-left: 1em;
}

#entry .title__grd > span {
    color: var(--colo-blue) !important;
}

.form__btn.entry {
    width: min(100%,450px);
    background: var(--colo-blue);
    display: block;
    margin-inline: auto;
    margin-bottom: var(--gap_24px);
}

/* #sns {
    width: 100%;
    background-size: auto auto;
    background-color: rgba(209, 253, 245, 0);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(209, 253, 245, 1) 10px, rgba(209, 253, 245, 1) 20px );
    padding: var(--gap_48px) 0;
} */

.snsBtn {
    display: flex;
    justify-content: center;
    gap: var(--gap_48px);
}

.snsBtn > a {
    font-size: clamp(2.625rem, 2.261rem + 1.82vw, 3.625rem);
    width: min(20vw, 95px);
    height: min(20vw, 95px);
    color: #fff;
    background: var(--colo-blue);
    border-radius: 100vmax;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--gap_32px);
    box-shadow: rgba(8, 70, 140, 0.6) 0px 0px 10px 0px;
}

#sns ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#sns ul li { width: 31%;}

#sns ul li iframe {  width: 100% !important;}

#sns ul li:first-child iframe { height: 500px;}

.instagram-media { 
    min-width: 100% !important;
    margin: 0 -1px;
}

#sns p {
    text-align: center;
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 0.8em;
}

#outline {
    background: #d1fdf5;
    padding: var(--gap_80px) 0;
    margin-bottom: 0 !important;
}

#outline h2 img { width: 20%;}

#outline dl {
    width: min(100%,900px);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-weight: 500;
    border-top: solid 2px #000;
    margin: 0 auto;
}

#outline dt, #outline dd {
    padding-top: 1.3em;
    padding-bottom: 1.3em;
    border-bottom: solid 2px #000;
}

#outline dt { 
    width: 20%;
    padding-left: 1.875em;
    display: flex;
    align-items: center;
}

#outline dd { 
    width: 80%;
    line-height: 1.5;
}

#outline .kcm_link {
    text-decoration: underline;
    color: blue;
}

#outline .access {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    padding: 0.1em 0.5em;
    background-color: var(--colo-blue);
    border: solid 2px var(--colo-blue);
    margin-top: 0.3em;
    transition: all .2s;
}

#outline .access:hover {
    background-color: #fff;
    color: var(--colo-blue);
}
   
#contact {
    width: 100%;
    background-color: #1c9c92;
    padding: 3.75em 0;
    color: #fff;
}

#contact h2 {
    position: relative;
    width: 100%;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.8em;
}

#contact h2::before,
#contact h2::after {
    position: absolute;
    content: "";
    display: block;
    width: calc(45% - 3em);
    height: 2px;
    top: calc(50% - 1px);
    background-color: #fff;
}

#contact h2::before { left: 0;}

#contact h2::after { right: 0;}

#contact p { text-align: center;}

#contact .jimukyoku_name { 
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

#contact .contact_detail {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1em;
}

#contact .contact_detail a { text-decoration: underline;}

#contact .temporary_tel {
    font-size: 22px;
    font-weight: 700;
    width: 100%;
    padding: 0.5em;
    color: #24c7ba;
    background-color: #fff;
}

.header {
    width: 100%;
    background: rgb(100,190,149);
    background: linear-gradient(90deg, rgba(100,190,149,1) 0%, rgba(0,128,200,1) 100%);
}

.header div {
    max-width: 1248px;
    margin: 0 auto;
    padding: 2.1875em 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header div h1 { width: 50%;}

.header div h1 img,
.header div h1 a { width: 100%;}

.header div h1 a {
    display: block;
    transition: all .2s;
}

.header div h1 a:hover { opacity: .6;}

.wrap_container {
    max-width: 1248px;
    margin: 0 auto;
    padding: 5em var(--gap_24px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sub_menu { width: 20%;}

.contents { width: 75%;}

.sub_menu ul, .sub_menu li { width: 100%;}

.sub_menu ul { margin-bottom: 2em;}

.sub_menu li {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    border-bottom: dotted 1px var(--colo-blue);
}

.sub_menu li::before {
    position: absolute;
    display: block;
    content: "";
    width: 8%;
    aspect-ratio: 1 / 1;
    background: url(/event/makingbazaar_kcm/lib/vol_02/images/circle-chevron-right-solid.svg) no-repeat center / 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.sub_menu li a {
    display: block;
    width: 100%;
    height: 100%;
    transition: all .5s;
    padding: 1em 0 1em 1.525em;
}

/* .sub_menu li a:hover { background-color: #fff;} */

.sub_menu .agreement_link {
    display: block;
    width: 100%;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-color: var(--colo-blue);
    border: solid 2px var(--colo-blue);
    line-height: 6;
    transition: all .2s;
    letter-spacing: 0.05em;
}

.sub_menu .agreement_link span {
    position: relative;
    display: inline-block;
    padding-top: 1em;
}

.sub_menu .agreement_link span::before {
    position: absolute;
    content: "";
    width: 40%;
    aspect-ratio: 127 / 112;
    background: url(/event/makingbazaar_kcm/lib/vol_02/images/icon_agreement.svg) no-repeat center / 100%;
}

.sub_menu .agreement_link span::before {
    top: 25%;
    left: calc(50% - 20%);
}

.sub_menu .agreement_link:hover {
    color: var(--colo-blue);
    background-color: #fff;
}

.sub_menu .agreement_link span::after {
    position: absolute;
    display: inline-block;
    content: attr(data-caption);
    font-size: 55%;
    width: 140%;
    left: calc(50% - 70%);
    bottom: 4%;
    margin-right: 0.5em;
    color: #fff;
    letter-spacing: 0.1rem !important;
}

.sub_menu .agreement_link:hover span::before
 { background: url(/event/makingbazaar_kcm/lib/vol_02/images/icon_agreement_hover.svg) no-repeat center / 100%;}
 
 .sub_menu .agreement_link:hover span::after { color: var(--colo-blue);}

 .wrap_container h2, #end h2 {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 0.3em;
    font-size: 100px;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: rgb(100, 190, 149);
    background: linear-gradient(90deg, rgba(100, 190, 149, 1) 0%, rgba(0, 128, 200, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    line-height: 1;
    word-break: break-all;
}

.wrap_container section { width: 100%;}

.contents section { margin-bottom: 5em !important;}

.contents h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1.5625em;
    padding-bottom: 0.8em;
    border-bottom: dotted 1px var(--colo-blue);
    position: relative;
    text-align: left;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    -webkit-text-fill-color: inherit;
    color: var(--colo-blue);
}

.contents h2 span::before {
    display: inline-block;
    content: attr(data-caption);
    font-size: 90%;
    left: 0;
    top: 0;
    padding: 0.5em 1.5em;
    margin-right: 0.5em;
    color: #fff;
    background-color: var(--colo-blue);
    letter-spacing: 0.1rem !important;
    text-transform: uppercase;
}

.contents .flow_detail01,
.contents .flow_detail02 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.contents .flow_detail01 em {
    font-style: normal;
    font-size: 130%;
    color: var(--colo-blue);
}

.contents ul {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
}

.contents ul li {
    position: relative;
    padding-left: 1.3em;
    margin-bottom: 1em;
    line-height: 1.5;
}

.contents ul li:last-child { margin-bottom: 0;}

.contents ul li::before {
    position: absolute;
    content: "\025b6";
    font-size: 80%;
    top: .2em;
    left: 0;
    color: var(--colo-blue);
}

.contents .list01 { margin-bottom: 3em;}

.contents .agreement_caution {
    width: 100%;
    font-weight: 700;
    font-size: 20px;
    padding-bottom: 0.5em;
    margin-bottom: 1.5em;
    line-height: 1.5;
}

.contents .agreement_caution span {
    display: inline;
    border-bottom: solid 1px #000;
}

.contents .agreement_link {
    display: block;
    width: 100%;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-color: var(--colo-blue);
    border: solid 2px var(--colo-blue);
    line-height: 3.5;
    transition: all .2s;
    letter-spacing: 0.05em;
}

.contents .agreement_link span {
    position: relative;
    display: inline-block;
}

.contents .agreement_link { padding-left: 1.5em;}

.contents .agreement_link span::before {
    position: absolute;
    content: "";
    width: 40%;
    aspect-ratio: 127 / 112;
    background: url(/event/makingbazaar_kcm/lib/vol_02/images/icon_agreement.svg) no-repeat center / 100%;
}

.contents .agreement_link span::before {
    top: 30%;
    left: -45%;
}

.contents .agreement_link:hover {
    color: var(--colo-blue);
    background-color: #fff;
}

.contents .agreement_link:hover span::before
 { background: url(/event/makingbazaar_kcm/lib/vol_02/images/icon_agreement_hover.svg) no-repeat center / 100%;}

#flow h3 {
    width: 100%;
    padding: 0.8em;
    background-color: #fff;
    border: solid 2px var(--colo-blue);
    /* font-size: 20px; */
    font-weight: 700;
    color: var(--colo-blue);
    margin-bottom: 1em;
}

#booth h3 {
    width: 100%;
    /* font-size: 20px; */
    font-weight: 700;
    color: var(--colo-blue);
    padding-left: 0.5em;
    border-left: solid 5px var(--colo-blue);
    margin-bottom: 1em;
    line-height: 2.5;
}

#booth .booth_detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2em;
}

#booth table {
    width: 60%;
    border: solid 1px #000;
    margin-bottom: 2em;
    font-size: 16px;
}

#booth tr { border-bottom: solid 1px #000;}

#booth th, #booth td { padding: 0.8em 1em;}

#booth th { 
    width: 26%;
    border-right: solid 1px #000;
    vertical-align: middle;
}

#booth .half { 
    width: 45%;
    border-right: solid 1px #000;
}

#booth .booth_img { width: 35%;}

#booth .booth_img img { 
    width: 100%;
    margin-bottom: 0.8em;
}

.form__btn {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    width: 60%;
    color: #fff;
    background: linear-gradient(90deg, rgba(100,190,149,1) 0%, rgba(0,128,200,1) 100%);
    text-align: center;
    padding: var(--gap_16px) 0;
}

.form__btn > span {
    position: relative;
}

.form__btn > span::after {
    position: absolute;
    content: "\f105";
    font-family: 'Font Awesome 6 Free';
    /* font-size: 80%; */
    /* top: 0.2em; */
    right: -1.3em;
    color: #fff;
}

#shoplist .shoplist_anchor {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 5em;
}

#shoplist .shoplist_anchor li {
    width: 30%;
    text-align: center;
    font-size: 1.2em;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    word-break: break-all;
}

#shoplist .shoplist_anchor li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: all .3s;
    position: relative;
    padding: 1em 0;
}

#shoplist .shoplist_anchor li:first-child a { display: block;}

#shoplist .shoplist_anchor li:last-child br { display: none;}

#shoplist .shoplist_anchor li a::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #000;
    left: 0;
    bottom: 0;
    transition: all .3s;
}

#shoplist .shoplist_anchor li a:hover { background-color: #bff9ff;}

#shoplist .shoplist_anchor li a:hover::before { transform: scale(0, 0);}

#shoplist h3 {
    text-align: center;
    width: 100%;
    font-size: 50px;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0.4em;
    text-transform: uppercase;
}

#shoplist h3 span { position: relative;}

#shoplist h3 span::before,
#shoplist h3 span::after {
    position: absolute;
    content: "●";
    top: 20%;
    font-size: 70%;
}

#shoplist #fashion h3 span::before { left: -10%;}

#shoplist #fashion h3 span::after { right: -10%;}

#shoplist #foods h3 span::before { left: -20%;}

#shoplist #foods h3 span::after { right: -20%;}

#shoplist #workshop h3 span::before { left: -14%;}

#shoplist #workshop h3 span::after { right: -14%;}

#shoplist .shoplist_category { margin-bottom: 6.25em;}

#shoplist .shoplist_category:last-of-type { margin-bottom: 0;}

#shoplist .shoplist_item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em 2%;
}

#shoplist .shoplist_item img { width: 100%;}

#shoplist .shoplist_item li {
    background-color: #fff;
    border-right: solid 2px #00dae7;
    border-bottom: solid 2px #35f6c2;
    padding: 1.25em;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-end;
}

#shoplist li > img { margin-bottom: 0.5em;}

#shoplist li h4 {
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 0.3em;
    color: #0090da;
    word-break: break-all;
}

#shoplist li p {
    font-size: 18px;
    font-weight: 700;
    word-break: break-all;
    margin-bottom: 0.5em;
}

#shoplist .booth_num { 
    font-weight: 500;
    margin-bottom: 0.8em;
    text-align: center;
}

#shoplist .floor_num {
    display: inline-block;
    padding: 0.1em 0.7em 0.2em 0.7em;
    margin-right: 0.2em;
    color: #fff;
    background-color: #24c7ba;
    border-radius: 100vmax;
}

#shoplist li a {
    display: block;
    width: 15%;
    margin: 0 auto;
    transition: all .2s;
}

#shoplist .shoplist_item li a:hover { opacity: .6;}

#shoplist .opening_period {
    text-align: center;
    width: 100%;
    color: #fff;
    background-color: #24c7ba;
    border-radius: 100vmax;
    margin-bottom: 0.5em;
    padding: 0.1em 0;
}

#shoplist .sponsor { 
    text-align: center;
    padding: 0.1em 0;
    border: solid 1px #000;
}

#workshop .workshop_intro {
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 3em;
}

#workshop .workshop_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3.125em;
    margin-bottom: 3.125em;
    border-bottom: dotted 1px #000;
}

#workshop .workshop_item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

#workshop .workshop_item img { width: 50%;}

#workshop .workshop_detail { width: 47%;}

#workshop h3 {
    width: 100%;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

#workshop .workshop_pr {
    width: 100%;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 1em;
}

#workshop table {
    width: 100%;
    border: solid 1px #9e9e9e;
    background-color: #fff;
    font-size: 18px;
}

#workshop th, #workshop td { 
    padding: 1em;
    border-bottom: solid 1px #9e9e9e;
}

#workshop th { 
    vertical-align: middle;
    background-color: #b7f8f0;
    text-align: center;
}

#workshop td { line-height: 1.5;}

#stamprally_link a {
    display: block;
    width: 85%;
    margin: 0 auto;
    transition: all .2s;
}

#stamprally_link a:hover { transform: translateY(-7%);}

#stamprally_link img { width: 100%;}

#stamprally {
    position: relative;
    width: 80%;
    margin: 0 auto;
    padding: 3em;
    background-color: #fff;
    border-radius: 2.5em;
    margin-top: 3em;
}

#stamprally::before, #stamprally::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 3.125em;
}

#stamprally::before {
    background-color: #35f6c2;
    top: -1em;
    left: -1em;
}

#stamprally::after {
    background-color: #35ebf6;
    bottom: -1em;
    right: -1em;
}

#stamprally .stamprally_intro {
    width: 100%;
    text-align: center;
    line-height: 1.2;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 1em;
}

#stamprally .big01 {
    font-size: 130%;
    color: #2ba28a;
}

#stamprally .big02 {
    font-size: 110%;
    color: #2ba28a;
}

#stamprally .yl_bk {
    display: inline-block;
    background: rgb(243,255,54);
background: linear-gradient(0deg, rgba(243,255,54,1) 0%, rgba(243,255,54,1) 50%, rgba(243,255,54,0) 50%, rgba(243,255,54,0) 100%);
}

#stamprally h2 {
    position: absolute;
    width: 85%;
    top: -7%;
    left: calc(50% - 42.5%);
}

#stamprally img { width: 100%;}

#stamprally dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 2em;
    font-size: 28px;
    position: relative;
}

#stamprally dl::before {
    position: absolute;
    content: "";
    display: block;
    width: 17%;
    aspect-ratio: 18 / 17;
    background: url(../images/garagara.png) no-repeat center / 100%;
    bottom: -8%;
    right: -8%;
}
/* 
#stamprally dl::after {
    position: absolute;
    content: "";
    width: 5%;
    aspect-ratio: 20 / 17;
    background: url(../images/deco_fukidashi.png) no-repeat bottom center / 100%;
    top: -9%;
    left: 19%;
} */

#stamprally .yl01 { background-color: #fff799;}

#stamprally .yl02 { background-color: #fff45e;}

#stamprally dt,
#stamprally dd { padding: 0.7em 0.5em;}

#stamprally dt {
    width: 18%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#stamprally dt span {
    display: inline-block;
    padding: 0.2em 0.8em;
    background-color: #fff;
    border-radius: 100vmax;
    color: #2ba28a;
}

#stamprally dd {
    width: 82%;
    line-height: 1.3;
    font-weight: 900;
    
}

#stamprally .stamprally_present {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#stamprally .stamprally_present div {
    position: relative;
    width: 48%;
}

#stamprally .stamprally_present div::before,
#stamprally .stamprally_present div::after {
    position: absolute;
    content: "";
    display: block;
    width: 17%;
    aspect-ratio: 1 / 1;
    left: -7%;
}

#stamprally .stamprally_present div:first-of-type::before {
    background: url(../images/hd_present_a.png) no-repeat center / 100%;
    top: -5%;
}

#stamprally .stamprally_present div:last-of-type::before {
    background: url(../images/hd_present_b.png) no-repeat center / 100%;
    top: -5%;
}

#stamprally .stamprally_present div:last-of-type::after {
    background: url(../images/hd_present_sanka.png) no-repeat center / 100%;
    bottom: 14%;
}

#end .wrapper02 {
    border-radius: 100vmax;
    padding: 1em;
    border-radius: 30px;
    box-shadow:  20px 20px 20px #8cecf6,
             -20px -20px 20px #cefaff;
    padding: 3em;
    width: 55%;
    margin: 0 auto;
}

#end h2 { margin-bottom: 0.1em;}

#end table {
    width: 100%;
    border: solid 3px #9e9e9e;
}

#end th, #end td { padding: 2%;}

#end tr { border-bottom: solid 2px #9e9e9e;}

#end tr:last-of-type { border-bottom: none;}

#end th { 
    width: 60%;
    font-size: 30px;
    vertical-align: middle;
    background-color: #b7f8f0;
}

#end td {
    font-size: 45px;
    font-weight: 700;
    text-align: end;
    background-color: #fff;
    vertical-align: middle;
}

#end p {
    text-align: center;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 1em;
}

#end .total_hd { background-color: #fff257;}

#end .total { 
    background-color: #fffbc9;
    color: #ff3366;
    font-size: 55px;
}



/* ------------------------ responsive ------------------------ */
@media not screen and (min-width: 767px) {
    .pc {
        display: none;
    }
    
    .sp {
        display: block;
    }
    .wrapper01 {
        width: 94%;
        margin-inline: auto;
        padding-inline: var(--gap_16px);
    }

    #sp_navi li { font-size: 4.5vw;}

    .wrapper02 { width: 90%;}

    #sp_navi_list { height: 100vh;}

    #event_top .time { margin-top: 5.5em;}

    #event_top .wrapper01 { padding-top: 4em;}

    #event_top .wrapper01 h1, #event_top .time { width: 90%;}

    #event_top .circle_deco {
        background: linear-gradient(90deg, rgba(100, 190, 149, 1) 0%, rgba(0, 128, 200, 1) 100%);
        clip-path: ellipse(105% 83% at 50% 0);
    }

    #intro h2 picture { width: 90%;}

    #intro p {
        font-size: 1em;
    }

    #entry p {
        font-size: 1em;
    }

    #recruit .wrapper02 {
        margin-bottom: 0;
    }

    #recruit .wrapper02,
    #recruit .wrapper02::before,
    #recruit .wrapper02::after { border-radius: 2em;}

    #recruit h2 img { width: 80%;}

    #recruit .coming_soon { font-size: 11vw;}

    #recruit .wrapper02::before {
        top: -0.8em;
        left: -0.8em;
    }

    #recruit .wrapper02::after {
        bottom: -0.8em;
        right: -0.8em;
    }

    .header div h1 { width: 100%;}

    #booth .booth_detail { flex-direction: column;}

    #booth table, #booth .booth_img { width: 100%;}

    #shoplist .shoplist_anchor li:last-child br { display: block;}

    #shoplist h3 { font-size: 2.8em;}

    #shoplist .shoplist_item { 
        grid-template-columns: repeat(2, 1fr);
        gap: 2em 4%;
    }

    #workshop .workshop_item img,
    #workshop .workshop_detail { width: 100%;}

    #workshop .workshop_item img { margin-bottom: 1.5em;}

    #page_top {
        width: 50px;
        height: 130px;
        font-size: 20px;
    }

    #stamprally { padding: 2em;}

    #stamprally h2 { top: -4%;}

    #stamprally dl::before {
        bottom: 92%;
        width: 28%;
    }

    #end .wrapper02 { width: 90%;}

    #sns ul li:last-child { margin-top: 0;}

    #sns h2 img { width: 100%;}

    #outline h2 img { width: 40%;}

    #outline dt, #outline dd { width: 100%;}

    #outline dt {
        padding-left: 0;
        border: none;
        padding-top: 0.8em;
        padding-bottom: 0.3em;
    }

    #outline dd {
        padding-top: 0;
        padding-bottom: 0.8em;
    }

    .wrap_container { 
        flex-direction: column;
        padding: 2em 0;
        width: 90%;
    }

    .wrapper02, .header div { width: 90%;}

    .sub_menu, .contents { width: 100%;}

    .sub_menu { margin-bottom: 3em;}

    .sub_menu .agreement_link { 
        line-height: 3;
        padding-left: 1em;
    }

    .sub_menu .agreement_link span { 
        padding-top: 0;
        padding-bottom: 1em;
    }

    .sub_menu .agreement_link span::before { 
        left: -34%;
        width: 30%;
    }

    .sub_menu .agreement_link span::after {
        font-size: 65%;
        width: 170%;
        left: -50%;
    }

    #contact .temporary_tel { font-size: 4vw;}

    .sub_menu li::before { width: 5%;}

    .contents section { margin-bottom: 3em !important;}

    .contents h2 span::before { content: none;}

    .contents h2 {
        margin-bottom: 1em;
        border-left: solid 8px var(--colo-blue);
        padding: 0.3em 0 0.5em 0.5em;
    }

    #flow h3 { 
        margin-bottom: 0.5em;
        padding: 0.5em;
    }

    .contents .flow_detail01, .contents .flow_detail02 { font-size: 4vw;}

    .contents .flow_detail01 em { font-size: 100%;}

    .contents ul, #booth table { font-size: 3.5vw;}

    .contents .agreement_caution { margin-bottom: 0.8em;}

    .sub_menu .agreement_link,
    .contents .agreement_link { font-size: 5vw;}

    #booth th, #booth td { padding: 0.5em;}

    #booth th { width: 35%;}

    #booth .half { width: 43%;}

    .form__btn {
        width: 100%;
        padding: var(--gap_24px) 0;
        margin-top: var(--gap_32px);
    }

    #shoplist .floor_num { 
        display: block;
        width: 50%;
        margin: 0 auto 0.3em auto;
    }

    #shoplist .opening_period { font-size: 3.3vw;}

    #shoplist .shoplist_item { gap: 1em 4%;}

    #shoplist .shoplist_item li { padding: 0.8em;}

    #workshop h2 { font-size: 13vw;}

    #workshop .workshop_intro, 
    #workshop .workshop_pr, #workshop table { font-size: 3.5vw;}

    #workshop h3 { font-size: 5vw;}

    #workshop th { width: 30%;}

    #stamprally_link a { width: 100%;}

    #stamprally { 
        width: 100%;
        margin-top: 6em;
        margin-bottom: 3em !important;
    }

    #stamprally .stamprally_intro { font-size: 5vw;}

    #stamprally h2 { top: -9%;}

    #stamprally dl { font-size: 5vw;}

    #stamprally dl::before {
        bottom: 92%;
        width: 30%;
        right: -5%;
    }

    #stamprally .stamprally_present { padding-left: 0.2em;}

    #stamprally .stamprally_present div { width: 100%;}

    #stamprally .stamprally_present div:first-of-type { margin-bottom: 1em;}

    #stamprally h2 { top: -5%;}

    #end .wrapper02 { padding: 2em;}

    #end h2 { font-size: 14vw;}

    #page_top {
        width: 40px;
        height: 100px;
        font-size: 16px;
    }
}