<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* reset */
html {
	min-width: 100%;
	overflow-y: scroll;
	font-size: 16px;
}
html.scroll-lock {
	overflow-y: hidden;
}
body, header, footer, nav, main, section, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, span, table, tr, th, td, a, :after, :before {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-style: normal;
	font: inherit;
	vertical-align: baseline;
}
object, embed {
	vertical-align: top;
}
img, abbr, acronym, fieldset {
	border: 0;
}
a img {
	outline: none;
	border: none;
}
img {
	vertical-align: top;
	border: none;
	outline: none;
}
ul, ol {
	list-style-type: none;
}
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
button, input, optgroup, select, textarea , label {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
	font-weight: inherit;
    line-height: inherit;
    color: inherit;
}
a:focus, *:focus {
	outline:none;
}
*, :after, :before {
	box-sizing: border-box;
}
:root {
	--red: #9A1E24;
	--gray: #3f3a39;
	--bgc: #FBE7E4;
	--bg01: #EBD2BC;
	--bg02: #F7EEE6;
}

/* default */
body {
	width: 100%;
	color: var(--gray);
	font-family: Helvetica, "Helvetica Neue", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	line-height: 1;
	font-weight: 500;
	background: var(--bgc);
}
#wrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
#wrap.is-locked {
	position: fixed;
    width: 100%;
}

a {
	text-decoration: none;
	word-break: break-all;
}
a:hover, a:focus {
	text-decoration: underline;
}
img {
	width: 100%;
}

@media screen and (min-width: 800px) {
	.noPc {
		display: none;
	}
}
@media screen and (max-width: 800px) {
	.noSp {
		display: none;
	}
}



/* evTCY
====================================================*/
#evTCY {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	padding-bottom: 15vw;
	background-image: url("../img/nihonbashimidette/bg01.png"), url("../img/nihonbashimidette/bg.jpg");
	background-position: center bottom, left top;
	background-size: contain, cover;
	background-repeat: no-repeat, repeat-y;
	color: var(--gray);
}
#evTCY .inner {
	margin: 0 auto;
	padding: 0 2rem;
	max-width: calc(1000px + 4rem);
}
#evTCY h2 {
	padding: .8rem;
	background: var(--red);
	border-radius: .5rem .5rem 0 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFF;
	text-align: center;
}
#evTCY .box {
	padding: 1rem;
	border-radius: 0 0 .5rem .5rem;
	background-color: var(--bg01);
}
@media screen and (max-width: 800px) {
	#evTCY {
		gap: 2rem;
	}
	#evTCY .inner {
		padding: 0 1rem;
	}
}


/* mv
====================================================*/
.evTCY-mv {
	background-image: url("../img/nihonbashimidette/bg02.png");
	background-position: center top;
	background-size: contain;
	background-repeat: no-repeat;
	
}
.evTCY-mv h1 {
	margin: 2rem auto 0;
	width: 100%;
	max-width: 1000px;
}
@media screen and (max-width: 800px) {
	.evTCY-mv h1 {
		margin: 1rem auto 0;
	}
}






/* info
====================================================*/
/*-- menu --*/
.evTCY-info .menu {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
}
.evTCY-info .menu li {
	flex: 1;
}
.evTCY-info .menu a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 3rem;
	background: var(--red);
	border-radius: .5rem;
	color: #FFF;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none!important;
	line-height: 1.2;
	transition: .4s;
}
.evTCY-info .menu a:hover {
	opacity: .8;
}
@media screen and (max-width: 800px) {
	.evTCY-info .menu {
		gap: .5rem;
		margin-bottom: 1rem;
	}
	.evTCY-info .menu a {
		font-size: .9rem;
		line-height: 1.2;
	}
}


/*-- detail --*/
.evTCY-info .detail {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 0 auto;
	padding: 2rem;
	border-radius: 1rem;
	background-color: var(--bg02);
	background-image: url("../img/nihonbashimidette/bg-stripe.gif");
	background-position: center top;
	background-size: 10px;
	background-repeat: repeat;
}
.evTCY-info .detail dl {
	display: flex;
	align-items: flex-start;
	margin: 0 auto;
	max-width: 750px;
}
.evTCY-info .detail dt {
	margin-top: 1rem;
	padding: .5rem 1.5rem;
	border-radius: 100vh;
	background-color: var(--gray);
	color: #FFF;
	font-size: 1.5rem;
	font-weight: 700;
}
.evTCY-info .detail dd {
	flex: 1;
	padding-left: 2rem;
	color: var(--red);
	font-weight: 700;
}
@media screen and (max-width: 800px) {
	.evTCY-info .detail {
		gap: 1rem;
		padding: 1rem;
	}
	.evTCY-info .detail dl {
		flex-direction: column;
		align-items: center;
		gap: .5rem;
	}
	.evTCY-info .detail dt {
		margin-top: 0;
		font-size: 1.2rem;
	}
	.evTCY-info .detail dd {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		padding: 0 1rem;
	}
}


/*日時*/
.evTCY-info .date dd {
	font-size: 1.5rem;
}
.evTCY-info .date .day {
	padding: 0 .5rem;
	font-size: 4rem;
	letter-spacing: .2rem;
}
.evTCY-info .date .day span {
	display: inline-block;
	margin: 0 1rem 0 .2rem;;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--red);
	color: #FFF;
	font-size: 1.3rem;
	line-height: 2.5rem;
	text-align: center;
}
.evTCY-info .date .time {
	margin-top: .5rem;
	font-size: 2rem;
}
@media screen and (max-width: 800px) {
	.evTCY-info .date dd {
		display: flex;
		flex-direction: column;
		gap: .2rem;
		font-size: 1.2rem;
	}
	.evTCY-info .date .day {
		padding: 0 0 0 2rem;
		font-size: 3rem;
	}
	.evTCY-info .date .day span {
		width: 1.5rem;
		height: 1.5rem;
		font-size: .8rem;
		line-height: 1.5rem;
	}
	.evTCY-info .date .time {
		margin-top: .2rem;
		padding: 0;
		font-size: 1.5rem;
	}
}

/*場所*/
.evTCY-info .place dd {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	line-height: 1.2;
}
.evTCY-info .place .venue {
	margin-top: 1rem;
	font-size: 1.6rem;
}
.evTCY-info .place .venue span {
	padding-left: 1rem;
	font-size: 2rem;
}
.evTCY-info .place .address {
	margin-top: .5rem;
}
.evTCY-info .place .address span {
	margin-left: 1rem;
	padding: .5rem 1rem;
	border-radius: .5rem;
	background: var(--red);
	font-size: .8rem;
	color: #FFF;
}
.evTCY-info .place .map {
	width: 250px;
}
@media screen and (max-width: 800px) {
	.evTCY-info .place .venue {
		display: flex;
		flex-direction: column;
		margin: 0;
		text-align: center;
	}
	.evTCY-info .place .venue span {
		padding: 0;
	}
	.evTCY-info .place .address {
		text-align: center;
	}
	.evTCY-info .place .address span {
		display: inline-block;
		margin: .5rem 0 0;
	}
	.evTCY-info .place .map {
		width: 100%;
	}
}

/*-- link --*/
.evTCY-info .link {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 2rem auto 0;
	gap: 1rem;
}
.evTCY-info .link dl {
	display: flex;
	flex-direction: column;
	border-radius: .5rem;
	width: calc(50% - .5rem);
	min-width: 400px;
	background: #FFF;
}
.evTCY-info .link dt {
	padding: .8rem;
	border-radius: .5rem .5rem 0 0;
	background: var(--red);
	color: #FFF;
	font-weight: 700;
	text-align: center;
}
.evTCY-info .link dd {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	padding: 1rem;
	height: 100%;
	text-align: center;
	line-height: 1.4;
}
.evTCY-info .link dd div {
	width: 60px;
}
.evTCY-info .link dd  a {
	color: var(--brown);
}
@media screen and (max-width: 800px) {
	.evTCY-info .link dl {
		min-width: 100%;
	}
	.evTCY-info .link dt {
		font-size: .9rem;
		line-height: 1.2;
	}
	.evTCY-info .link dd {
		padding: 1rem .5rem;
		font-size: .9rem;
		font-weight: 700;
	}
	.evTCY-info .link dd div {
		width: 50px;
	}
}

/*-- pdf --*/
.evTCY-info .pdf {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}
.evTCY-info .pdf a {
	display: block;
	padding: 1rem;
	border-radius: .5rem;
	width: 340px;
	background: var(--red);
	color: #FFF;
	font-weight: 700;
	text-align: center;
}
@media screen and (max-width: 800px) {
	.evTCY-info .pdf a {
		width: 100%;
	}
}

.evTCY-info .banner {
	position: absolute;
	top: -2rem;
	right: .5rem;
	width: 150px;
}
.evTCY-info .banner img {
	width: 100%;
}
@media screen and (max-width: 800px) {
	.evTCY-info .banner {
		top: .5rem;
		right: .5rem;
		width: 100px;
	}
}




/* スペシャルトークショー
====================================================*/
.ts-list {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 1rem;
}
.ts-item {
	display: flex;
	align-items: center;
	padding: 0 1rem;
	width: 100%;
	border: 2px solid #FFF;
	border-radius: 1rem;
	background-image: url("../img/michinoeki/bg01.png");
	background-position: center bottom;
	background-size: contain;
	background-repeat: no-repeat;
}
.ts-item .imgWrap {
	max-width: 35%;
	aspect-ratio: 4 / 3;
}
.ts-item .imgWrap img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}
.ts-item .txtWrap {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 1rem;
	padding: 1rem;
	border-radius: .5rem;
	background-color: rgba(255,255,255,.8);
	color: var(--red);
}
.ts-item .ttlWrap {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.ts-item .ttlWrap .title {
	display: inline-flex;
	align-items: center;
	padding: 0 2rem;
	height: 2rem;
	background-color: var(--red);
	border-radius: 100vh;
	color: #FFF;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1;
}
.ts-item .ttlWrap .date {
	font-feature-settings: "palt";
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.2;
}
.ts-item .nameWrap {
	display: flex;
	gap: .5rem;
	align-items: flex-end;
	flex-wrap: wrap;
}
.ts-item .nameWrap .name {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: .5rem;
	font-size: 2rem;
	color: var(--red);
	font-weight: 700;
}
.ts-item .nameWrap .name span {
	padding-left: .2rem;
	font-size: 1rem;
}
.ts-item .nameWrap a {
	display: inline-block;
	margin-left: .5rem;
	padding: .2rem .5rem;
	border: 1px solid var(--red);
	border-radius: .2rem;
	color: var(--red);
	font-size: .9rem;
	font-weight: 700;
	text-decoration: none;
}
.ts-item .nameWrap ul {
	display: flex;
	flex-direction: column;
	gap: .2rem;
	width: 100%;
}
.ts-item .nameWrap li {
	font-size: .9rem;
	color: var(--gray);
	line-height: 1.2;
}
.ts-item .txt {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--gray);
	line-height: 1.4;
}
.ts-note {
	display: flex;
	flex-direction: column;
	gap: .3rem;
	margin-top: 1rem;
	padding: 0 1rem;
	font-size: 1rem;
	text-align: center;
	line-height: 1.2;
}
@media screen and (max-width: 800px) {
	.ts-item {
		flex-direction: column;
		padding: 0 1rem 1rem;
		width: 100%;
	}
	.ts-item .imgWrap {
		max-width: 100%;
	}
	.ts-item .txtWrap {
		margin-top: .5rem;
		width: 100%;
	}
	.ts-item .ttlWrap {
		flex-direction: column;
		gap: .5rem;
	}
	.ts-item .ttlWrap .date {
		text-align: center;
	}
	.ts-item .ttlWrap .date span {
		display: block;
	}
	.ts-item .nameWrap {
		flex-direction: column;
		align-items: center;
	}
	.ts-item .nameWrap .name {
		font-size: 1.7rem;
	}
	.ts-item .nameWrap a {
		margin: 0;
	}
	.ts-note {
		padding: 0;
		text-align: left;
	}
}





/* 発酵ワークショップ
====================================================*/
.ws-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
	line-height: 1.2;
}
.ws-head .ws-head_ttl {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--red);
}
.ws-head .ws-head_txt {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
.ws-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1rem;
}
.ws-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	width: 100%;
	border-radius: .4rem;
	background-color: var(--bg02);
	text-align: center;
}
.ws-item .shop {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	font-size: 1.5rem;
	font-weight: 700;
	text-decoration: none;
}
.ws-item .shop span {
	font-size: 1rem;
}
.ws-item .txtWrap {
	display: flex;
	gap: 1rem;
	width: 65%;
}
.ws-item .txtWrap &gt; div {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: .5rem;
}
.ws-item .title {
	color: var(--red);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
}
.ws-item .price {
	color: var(--red);
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.2;
}
.ws-item .text {
	line-height: 1.4;
	font-weight: 700;
	text-align: left;
}
.ws-item .imgWrap {
	flex: 1;
}
.ws-note {
	display: flex;
	flex-direction: column;
	gap: .3rem;
	padding: 0 1rem;
	font-size: 1rem;
	text-align: center;
	line-height: 1.2;
}
@media screen and (max-width: 800px) {
	.ws-head .ws-head_ttl {
		text-align: center;
	}
	.ws-list {
		padding: 1rem 0;
	}
	.ws-item {
		flex-direction: column-reverse;
		width: 100%;
		border-radius: .5rem;
	}
	.ws-item .txtWrap {
		flex-direction: column;
		width: 100%;
	}
	.ws-item .title {
		font-size: 1.3rem;
	}
	.ws-item .price {
		font-size: 1.1rem;
	}
	.ws-note {
		text-align: left;
		padding: 0;
	}
}




/* 発酵ブース
====================================================*/
#booth .box {
	background-color: var(--bg02);
}
.bt-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
}
.bt-head .bt-head_ttl {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--red);
}
.bt-head .bt-head_txt {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
.bt-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem 1rem;
	padding: 1rem;
}
.bt-item {
	flex: 1;
	display: flex;
	gap: .5rem;
	padding: 1rem;
	border-radius: .5rem;
	background-color: #FCFAF7;
}
.bt-item .txtWrap {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: .5rem;
	text-align: center;
}
.bt-item .shop {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	color: var(--gray);
	font-size: 1.3rem;
	font-weight: 700;
}
.bt-item .shop span {
	font-size: 1rem;
}
.bt-item .catch {
	color: var(--red);
	font-size: 1.1rem;
	font-weight: 700;
}
.bt-item .txt {
	font-weight: 700;
	text-align: left;
	line-height: 1.4;
}
.bt-item .imgWrap {
	flex: 1;
}
.bt-note {
	display: flex;
	flex-direction: column;
	gap: .3rem;
	padding: 0 1rem;
	font-size: 1rem;
	text-align: center;
	line-height: 1.2;
}
@media screen and (max-width: 800px) {
	.bt-head .bt-head_ttl {
		text-align: center;
	}
	.bt-list {
		gap: 1rem;
		padding: 1rem 0;
	}
	.bt-item {
		flex: auto;
		flex-direction: column-reverse;
		gap: 1rem;
		width: 100%;
	}
	.bt-item .imgWrap {
		width: 100%;
	}
	.bt-item .txtWrap {
		flex: 1;
		gap: .5rem;
		justify-content: center;
	}
	.bt-item .shop {
		text-align: center;
	}
	.bt-item .catch {
		text-align: center;
	}
	.bt-note {
		text-align: left;
		padding: 0;
	}
}



/* footer
====================================================*/
.evTCY-footer dl {
	display: flex;
	flex-direction: column;
	padding-bottom: 1rem;
	color: var(--brown);
	text-align: center;
	line-height: 1.4;
}
.evTCY-footer dt {
	font-weight: 700;
}
.evTCY-footer dd {
	padding-bottom: .5rem;
}
.evTCY-footer a {
	color: #000;
}

/*pagetop*/
.pagetop {
	position: fixed;
	right: .5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background: var(--red);
	cursor: pointer;
	z-index: 2;
}
.pagetop::before {
	content: '';
	width: 26px;
	height: 26px;
	border-top: 5px solid #FFF;
	border-right: 5px solid #FFF;
	position: absolute;
	left: 17px;
	top: 23px;
	transform: rotate(-45deg);
}

.shop_link {
	display: block;
	margin: 0 auto;
	width: 120px;
	height: 30px;
	border-radius: 50vh;
	background: var(--red);
	color: #FFF;
	font-size: .9rem;
	text-align: center;
	line-height: 30px;
}



</pre></body></html>