@charset "utf-8";
/* CSS Document */

:root {
	--btnStdColor: #069b18;
	--btnStdColor_hover: #7bd337;
}


#majorLayoutWrap {
	container-type: inline-size;
	grid-template-rows: min-content auto;
}


body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
}
body.not_DCL * {
	transition: none!important;
	transition-delay: 0s!important;
}

/* 横幅基準 */
#majorLayoutWrap {
	container-type: inline-size;
}


/* ナビゲーション */
:root {
	--naviBgColorHover: #069b18;
	--naviTxtColorHover: #fff;
}


/* バーガーボタンスタイル */
.drawer-hamburger {
  /* バーガーアイコン線の太さ */
  --hamburgerIconThin: 2px;
  /* バーガーアイコン線の間隔 */
  --hamburgerIconGap: 6px;
  /* バーガーアイコン線の色 */
	--hambutgerBorderColor: #333;
  /* ボタンの幅 */
  --hamburgerWidth: 2em;
  /* ボタンの高さ */
  /*--hamburgerHeight: 60px;*/
  /* ボタンのパディング左右 */
  --hamburgerPaddingH: 15px;
  /* ボタンの角丸 */
	--hamburgerBorderRadius: 0;
  /* ボタンの背景色 */
  --hamburgerBgColor: rgba(255,255,255,0.5);
  /* バーガーアイコンと文字の間隔 */
	--hamburgerGapIcon2Txt: 7px;
}
body.drawer--normal .drawer-hamburger {
  color: var(--hambutgerBorderColor);
  height: var(--hamburgerHeight, var(--headerHeight));
  border-radius: var(--hamburgerBorderRadius);
  gap: var(--hamburgerGapIcon2Txt);
}

/* ドロワーメニュースタイル */
:root {
	--drawerWidth:16.25rem;
  --drawerBgColor: #fff;
  --drawerBorder: 1px solid #b1b1b1;
	--drawerULPL: 0px;
}
body.drawer--normal #drawerContents .drawer-menu {
  padding-left: var(--drawerULPL);
	margin-bottom: 0;
}
body.drawer--normal #drawerContents .drawer-menu li {
	border-top: var(--drawerBorder);
}
body.drawer--normal #drawerContents .drawer-menu > li:last-child {
	border-bottom: var(--drawerBorder);
}
body.drawer--normal #drawerContents .drawer-menu .sub-menu {
	--drawerULPL: 28px;
	/*margin-top: -1px;*/
	margin-bottom: 0;
	padding-left: var(--drawerULPL);
}
body.drawer--normal:not(.drawer--subOpCl) #drawerContents .drawer-menu .sub-menu {
	border-top: var(--drawerBorder);
}
body.drawer--normal.drawer--subOpCl #drawerContents .drawer-menu .sub-menu {
	border-top: var(--drawerBorder);
	/*border-color: transparent;*/
}
body.drawer--normal.drawer--subOpCl #drawerContents .drawer-menu .open .sub-menu {
	border-top: var(--drawerBorder);
}
body.drawer--normal #drawerContents .drawer-menu .sub-menu > :first-child {
	margin-top: -1px;
}
body.drawer--normal #drawerContents .drawer-menu a {
	position: relative;
	display: block;
	margin: 0;
	padding: 0.8em 1em;
	color: currentColor;
}
body.drawer--normal #drawerContents .drawer-menu > li > a {
	font-weight: bold;
}
body.drawer--normal #drawerContents .drawer-menu .sub-menu a {
  font-size: 0.9em;
	padding-left: 0;
}
body.drawer--normal #drawerContents .drawer-menu a:hover {
	text-decoration: none;
	color: var(--naviTxtColorHover);
}
body.drawer--normal #drawerContents .drawer-menu a:hover:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(-1 * var(--drawerULPL));
	right: 0;
	background-color: var(--naviBgColorHover);
	z-index: -1;
}
body.drawer--normal #drawerContents .drawer-btnBox {
	display: flex;
	gap: 20px;
	padding: 20px;
	justify-content: center;
	flex-wrap: wrap;
}
body.drawer--normal #drawerContents .drawer-btnBox a {
	max-height: 30px;
}
body.drawer--normal #drawerContents .drawer-btnBox .snsLink {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	max-width: 30px;
	padding: 0;
}
body.drawer--normal #drawerContents .drawer-btnBox .snsLink .snsIcon {
	max-height: 100%;
}


/* ドロワーメニューサブメニュー展開 */
.drawer--subOpCl #drawerContents .drawer-menu li .naviSubOpclBox {
	height: 0px;
	transition: all .5s ease;
	overflow: hidden;
}
#drawerContents .gnaviContents>li>a {
	display: flex;
}
#drawerContents .gnaviContents>li>a .subMenuIcon:before {
	content: '＋';
	display: inline-block;
	margin-right: 0.2em;
}
#drawerContents .gnaviContents>li.open>a .subMenuIcon:before {
	content: '－';
}


/* サブページティザータイトル */
.pageClassSubpage #sub_TH_ImgTitle {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: #ffffff;
	/* padding: 1em; */
	color: #040404;
	font-size: 1.6em;
	font-weight: bold;
	height: 40vh;
}


/* 記事セットBox */
.articleSet {
	gap: calc(var(--commonGap) * 1.3) var(--commonGap);
}


/* グリッドBox */
.gridBox {
	display: grid;
	gap: var(--commonGap);
	grid-auto-rows: min-content; /* 印刷時の崩れ対策 */
}


/* 柔軟なレイアウト */
:root {
	--sectionContentPaddingV: 6em;
	--sectionContentChildGapV: 20px;
}
section {
	display: inline-block;
	width: 100%;
	padding: 0 var(--contentsPaddingSide);
	margin: 0 auto;
}
section .sectionContent {
	padding: 0;
	margin: var(--sectionContentPaddingV) auto;
}
section .sectionContent .mb_xp5 {
	margin-bottom: calc(var(--sectionContentChildGapV) * 0.5);
}
section .sectionContent .mb_x1 {
	margin-bottom: calc(var(--sectionContentChildGapV) * 1);
}
section .sectionContent .mb_x1p5 {
	margin-bottom: calc(var(--sectionContentChildGapV) * 1.5);
}
section .sectionContent .mb_x2 {
	margin-bottom: calc(var(--sectionContentChildGapV) * 2);
}
section .sectionContent .mb_x2p5 {
	margin-bottom: calc(var(--sectionContentChildGapV) * 2.5);
}
section .sectionContent .mb_x3 {
	margin-bottom: calc(var(--sectionContentChildGapV) * 3);
}
section .sectionContent > [class*=mb_]:last-child {
	margin-bottom: 0;
}


section.commonBg_pink {
	background-color: pink;
}

section.commonBg_lightgray {
	background-color: lightgray;
}

section.commonBg_green {
	background-color: #5aa73c;
	color: #fff;
}
section.commonBg_green.bgFlag {
	background-image: url(../images/flag_green.png);
	background-repeat: repeat-x;
	background-position: top center;
}

section.commonBg_lightGreen {
	background-color: #d6fcc8;
}
section.commonBg_lightGreen.bgFlag {
	background-image: url(../images/flag_lightgreen.png);
	background-repeat: repeat-x;
	background-position: top center;
}

section.commonBg_lightGreen02 {
	background-color: #d6fcc8;
}
section.commonBg_lightGreen02.bgFlag {
	background-image: url(../images/flag_white.png);
	background-repeat: repeat-x;
	background-position: top center;
}

section.commonBg_white {
	background-color: #fff;
}
section.commonBg_white.bgFlag {
	background-image: url(../images/flag_white.png);
	background-repeat: repeat-x;
	background-position: top center;
}

section[class*=commonBg_] .sectionContent:not(.noBg) {
	padding: var(--sectionContentChildGapV);
	background-color: #fff;
}


/* .flow ユーティリティ（カスタム） */
:is(.flow, .txtBox) > * + * {
	margin-block-start: var(--flowSpace, var(--sectionContentChildGapV));
}
:is(.flow, .txtBox) > * + h1 {
	 margin-block-start: calc(var(--flowSpace, var(--sectionContentChildGapV)) * 6); 
}
:is(.flow, .txtBox) > * + h2 {
	 margin-block-start: calc(var(--flowSpace, var(--sectionContentChildGapV)) * 4); 
}
:is(.flow, .txtBox) > * + h3 {
	 margin-block-start: calc(var(--flowSpace, var(--sectionContentChildGapV)) * 2.5); 
}
:is(.flow, .txtBox) > * + h4 {
	 margin-block-start: calc(var(--flowSpace, var(--sectionContentChildGapV)) * 1.7); 
}
:is(.flow, .txtBox) > * + h5 {
	 margin-block-start: calc(var(--flowSpace, var(--sectionContentChildGapV)) * 1.5); 
}
:is(.flow, .txtBox) > * + h6 {
	 margin-block-start: calc(var(--flowSpace, var(--sectionContentChildGapV)) * 1.2); 
}
.txtBox,
.flow :is(h2 + *, h3 + *, h4 + *, h5 + *, h6 + *) {
	--flowSpace: 1em;
}



/* フッター */
#FOOTER {
	padding-top: 30px;
	background-color: #f5f5f6;
}
#FOOTER .footLogo {
	margin-bottom: 20px;
	text-align: center;
}
#FOOTER .infoBox {
	font-size: .8em;
	text-align: center;
}
#FOOTER .infoItem {
	margin-bottom: 1em;
}
#FOOTER .infoSns img {
	max-width: 40px;
	margin: 0 1em;
}
#FOOTER .infoBox p {
	text-align: center;
}
#backtopPosiBox .backtopBtn {
	background-color: #069b18;
}
#backtopPosiBox .backtopBtn:hover {
	background-color: #7bd337;
}



/* タイトルデザイン 01 */
.titleBox.titleStd01 {
	color: #069b18;
	line-height: 1.5;
}
.titleBox.titleStd01 .title {
	text-align: justify;
}



/* タイトルデザイン 02 */
.titleBox.titleStd02 {
	font-size: 1.1em;
}



/* タイトルデザイン 03 */
.titleBox.titleStd03 {
	font-size: 1.1em;
	color: #1b5108;
	border-bottom: 0.4em solid #ffdf4c;
}



/* 記事デザイン01 */
.articleItem01 > .layoutBox {
	display: grid;
	gap: 30px;
	align-items: center;
}
@media (max-width: 767.9px){
	.articleItem01 > .layoutBox .contentBox {
		display: contents;
	}
	.articleItem01 .titleBox {
		order: -1;
	}
}



/* ニュースリスト */
.newsListBox > .layoutBox {
	display: grid;
	gap: 10px;
}
.newsListBox .newsItem {
	background-color: rgba(255,255,255,.8);
	border-radius: 8px;
	padding: 1em;
	color: #1a1a1a;
}
.newsListBox .newsItem:nth-child(2n) {
	background-color: rgba(255,255,255,.6);
}
.newsListBox .newsItem .dateBox {
	font-size: 1.2em;
	font-weight: bold;
	color: #2ea306;
}
.newsListBox a {
	color: #4d5bff;
}



/* イベントリスト */
.eventListBox > .layoutBox {
	display: grid;
	gap: 20px;
}
.eventListBox .eventItem {
	display: grid;
	gap: 10px;
	background-color: rgba(255,255,255,.8);
	border-radius: 8px;
	padding: 1em;
	color: #1a1a1a;
}
.eventListBox .eventItem .dateBox {
	font-weight: bold;
	color: #2ea306;
}
.eventListBox .eventItem .titleBox {
	font-size: 1.2em;
	line-height: 1.3;
}
.eventListBox .eventItem .appearance {
	display: grid;
	grid-template-columns: min-content auto;
	gap: 1em;
	font-weight: bold;
	color: #2ea306;
}
.eventListBox .eventItem .appearance::before {
	content: '出演';
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: #319217;
	/* padding: 0.2em 0.7em; */
	line-height: 1;
	border-radius: 2em;
	width: 3.4em;
	height: 1.7em;
}
.eventListBox a {
  font-weight: bold;
  color: #2ea306;
}
.eventListBox .eventTime {
	color:#B0070A;
	font-weight:bold;
	font-size: 1.1em;
}
.artistBox {
    display: grid;
    gap: 30px;
}



/* 出店ブース・キッチンカー */
.boothListBox {
	counter-reset: number;
}
.boothListBox > .layoutBox {
	display: grid;
	gap: 40px;
}
.boothListBox .boothItem {
	display: grid;
	gap: 0.7em;
	counter-increment: number;
	place-content: start;
}
.boothListBox .boothItem .titleBox {
	color: #ff9a00;
	font-size: 1.1em;
}
.boothListBox .boothItem .titleBox .title {
	display: grid;
	grid-template-columns: min-content auto;
	gap: 0.6em;
	align-items: center;
	line-height: 1.3;
}
.boothListBox .boothItem .titleBox .number {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: currentColor;
	aspect-ratio: 1/1;
	width: 1.5em;
	height: 100%;
	line-height: 1;
}
.boothListBox .boothItem .titleBox .number::before {
	content: counter(number);
	color: #fff;
}
.boothListBox .boothItem .txtBox {
	font-size: .9em;
}



/* エリアマップ */
.areaMapBox {
	counter-reset: number;
	font-size: 0.8em;
}
.areaMapBox > .layoutBox {
	display: grid;
	gap: 1em;
}
.areaMapBox .mapBoothList {
	display: grid;
	justify-content: center;
}
.areaMapBox .mapBoothItem {
	display: grid;
	gap: 0.2em;
	grid-template-columns: min-content auto;
	counter-increment: number;
	text-align: justify;
}
.areaMapBox .mapBoothItem .numBox {
	display: grid;
	align-items: center;
	justify-content: center;
	width: 1em;
}
.areaMapBox .mapBoothItem .numItem {
	--width: 1em;
	display: grid;
	align-items: center;
	justify-content: center;
	grid-template-areas: 'num';
	width: var(--width);
	aspect-ratio: 1/1;
	line-height: 1;
	text-align: center;
}
.areaMapBox .mapBoothItem .numItem::before {
	content: counter(number);
	font-size: 0.7em;
	grid-area: num;
	font-weight: bold;
}
.areaMapBox .mapBoothItem .numItem::after {
	content: '';
	display: block;
	width: var(--width);
	aspect-ratio: 1/1;
	border-radius: 100%;
	border: 1px solid currentColor;
	grid-area: num;
}



/* お問合わせ */
.formBox {
	background-color: #f4f4ea;
	padding: 2em 1em;
	font-size: .9em;
}
.formBox form {
	margin-bottom: 3em;
}
.formBox .mailform .mailformItem {
	gap: .5em;
}
.formBox .mailform .mailformItem .title {
	border: none;
	padding: 0;
}
.formBox .mailform :is(input,textarea) {
	font-size: 16px;
}
.formBox .must {
	font-size: 0.8em!important;
	background-image: none;
	padding: 0;
	margin-left: 1em;
	float: none;
}



/* サンクスページ */
#sub_TH_ImgTitle.showSameTitleTagContent:after {
	content: '';
}
#THANKS .sectionContent {
	margin-top: 0;
}



.flyer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
	justify-items: center;
}
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
	justify-items: center;
}
.video {
	width: 100%;
}
.cooperation-grid {
	display: grid;
	gap: 80px;
}
/*.cooperation-grid {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
	align-items: center;
}*/


.cooperation-grid img {
    max-width: 70%;
}