<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: #BB504D;
	--gray: #3f3a39;
	--bgc: #FBE7E4;
	--bg01: #FEFAFA;
	--bg02: #F6EDDB;
}

/* 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/nanokamachi/bg01.png"), url("../img/nanokamachi/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;
	line-height: 1.2;
}

@media screen and (max-width: 800px) {
	#evTCY h2 {
		font-size: 1.3rem;
	}
}

#evTCY .evTCY-bt h2 {
	border-radius: 100vh;
}

#evTCY #shop.evTCY-bt h2 {
	border-radius: .5rem .5rem 0 0;
}

#evTCY .box {
	padding: 1rem;
	border-radius: 0 0 .5rem .5rem;
	background-color: var(--bg02);
}

#evTCY .evTCY-map .box {
	background-color: rgba(255, 255, 255, .8);
}

@media screen and (max-width: 800px) {
	#evTCY {
		gap: 2rem;
	}

	#evTCY .inner {
		padding: 0 1rem;
	}
}


/* mv
====================================================*/
.evTCY-mv {
	background-image: url("../img/nanokamachi/bg02.png");
	background-position: center 6rem;
	background-size: contain;
	background-repeat: no-repeat;

}

.evTCY-mv h1 {
	margin: 2rem auto;
	padding: 0 .5rem;
	font-size: 2rem;
	font-weight: 700;
	color: var(--red);
	text-align: center;
	line-height: 1.2;
}

@media screen and (max-width: 800px) {
	.evTCY-mv h1 {
		margin: 1rem auto;
	}
}

.evTCY-mv div {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}




/* info
====================================================*/
/*-- menu --*/
.evTCY-info .menu {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
}

@media screen and (max-width: 800px) {
	.evTCY-info .menu {
		margin-bottom: 1rem;
	}
}

.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;
	}

	.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: -2rem auto 0;
	padding: 2rem;
	border-radius: 1rem;
	background-color: rgba(255, 255, 255, .8);
	background-position: center bottom;
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 800px) {
	.evTCY-info .detail {
		gap: 1rem;
		margin: -1rem auto 0;
		padding: .5rem;
	}
}

.evTCY-info .detail dl {
	display: flex;
	align-items: flex-start;
	margin: 0 auto;
	max-width: 650px;
}

@media screen and (max-width: 800px) {
	.evTCY-info .detail dl {
		flex-direction: column;
		align-items: flex-start;
		gap: .5rem;
	}
}

.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;
}

@media screen and (max-width: 800px) {
	.evTCY-info .detail dt {
		font-size: 1.2rem;
	}
}

.evTCY-info .detail dd {
	flex: 1;
	padding-left: 2rem;
	color: var(--red);
	font-weight: 700;
}

@media screen and (max-width: 800px) {
	.evTCY-info .detail dd {
		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 {
	display: block;
	margin-top: .5rem;
	padding-left: 5.5rem;
	font-size: 2rem;
}

@media screen and (max-width: 800px) {
	.evTCY-info .date .time {
		padding: 0;
	}
}

@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;
		font-size: 2.9rem;
	}

	.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;
		font-size: 1.5rem;
	}
}

/*場所*/
.evTCY-info .place dd {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	line-height: 1.2;
}

.evTCY-info .place .venue {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin-top: 1rem;
	font-size: 1.6rem;
}

@media screen and (max-width: 800px) {
	.evTCY-info .place .venue {
		margin: 0;
	}
}

.evTCY-info .place .venue span {
	display: inline-block;
	margin-left: 1rem;
	padding: .3rem .5rem;
	border-radius: .2rem;
	border: 1px solid var(--red);
	font-size: 1rem;
}

.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 {
		font-size: 1.4rem;
	}

	.evTCY-info .place .venue span {
		margin-left: 0;
	}

	.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: -1rem;
		right: -1rem;
		width: 100px;
	}
}

.evTCY-info .event p {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--red);
	text-align: center;
	line-height: 1.4;
	color: #eb4d4b;
}

@media screen and (max-width: 800px) {
	.evTCY-info .event p {
		margin-bottom: 1.5rem;
		font-size: 1.1rem;
	}
}


/* ラリー店舗
====================================================*/
.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);
}

@media screen and (max-width: 800px) {
	.bt-head .bt-head_ttl {
		text-align: center;
	}
}

.bt-head .bt-head_txt {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

.bt-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 1rem;
	gap: 2rem;
	padding: 1rem;
	counter-reset: number 0;
}

@media screen and (max-width: 800px) {
	.bt-list {
		gap: 2rem;
		padding: 1rem 0;
	}
}

.bt-item {
	position: relative;
	display: flex;
	width: calc(calc(100% - 4rem) / 3);
	padding: 1rem;
	border-radius: .5rem;
	background-color: rgba(255, 255, 255, .7);
}

.bt-item::before {
	counter-increment: number 1;
	content: counter(number) " ";
	position: absolute;
	top: -1rem;
	left: -1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 100vh;
	background-color: var(--red);
	color: #FFF;
	font-size: 1.5rem;
	font-weight: 700;
}

@media screen and (max-width: 800px) {
	.bt-item::before {
		left: -.5rem;
	}
}

.bt-item:last-child {
	flex: 1;
	padding: 0;
	background-color: transparent;
}

.bt-item:last-child::before {
	content: none;
}

@media screen and (max-width: 800px) {
	.bt-item:last-child::before {
		margin-top: -1rem;
	}
}

.bt-item a {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
	text-decoration: none;
}

.bt-item a:hover {
	text-decoration: none;
}

.bt-item .shop {
	display: flex;
	flex-direction: column;
	gap: .2rem;
	color: var(--red);
	font-size: 1.3rem;
	font-weight: 700;
}

.bt-item .shop span {
	color: var(--gray);
	font-size: .8rem;
}

@media screen and (max-width: 800px) {
	.bt-item .shop {
		text-align: center;
	}
}

.bt-item .catch {
	color: var(--gray);
	text-align: left;
	line-height: 1.2;
	word-break: break-all;
}

.bt-item img {
	transition: .4s;
}

.bt-item a:hover img {
	opacity: .8;
}

.bt-note {
	display: flex;
	flex-direction: column;
	gap: .3rem;
	padding: 0 1rem;
	font-size: 1rem;
	text-align: center;
	line-height: 1.2;
}

.bt-item .date {
	position: absolute;
	right: -.5rem;
	top: -.5rem;
	padding: .5rem;
	border-radius: .2rem;
	background-color: var(--red);
	color: #FFF;
	font-size: .8rem;
	font-weight: 700;
}

@media screen and (max-width: 800px) {
	.bt-item {
		width: 100%;
	}

	.bt-item a {
		width: 100%;
	}

	.bt-item .imgWrap {
		width: 100%;
	}

	.bt-item .txtWrap {
		flex: 1;
		gap: .5rem;
		justify-content: 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);
}



/* ラリー詳細
====================================================*/
.rally {
	margin-top: 2rem;
}

.rally .box {
	display: flex;
	flex-direction: column;
}

.rally .rally01 {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 2rem 1rem;
	background-color: #FFF;
	border-radius: .5rem;
	text-align: center;
}

@media screen and (max-width: 800px) {
	.rally .rally01 {
		padding: 1rem .5rem;
	}
}

.rally .rally01 .rally01-title {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 1rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--red);
}

@media screen and (max-width: 800px) {
	.rally .rally01 .rally01-title {
		font-size: 1.3rem;
	}
}

.rally .rally01 .rally01-title::before {
	content: "";
	width: 2px;
	height: 28px;
	background-color: var(--red);
	transform: rotate(-30deg);
}

.rally .rally01 .rally01-title::after {
	content: "";
	width: 2px;
	height: 28px;
	background-color: var(--red);
	transform: rotate(30deg);
}

.rally .rally01 .rally01-text {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.2;
}

@media screen and (max-width: 800px) {
	.rally .rally01 .rally01-text {
		font-size: 1rem;
	}
}

.rally .rally01 .rally01-note {
	color: var(--red);
	font-weight: 700;
	line-height: 1.2;
}

.rally .rally01 a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 350px;
	height: 50px;
	border-radius: 100vh;
	background-color: var(--red);
	color: #FFF;
	font-weight: 700;
}

@media screen and (max-width: 800px) {
	.rally .rally01 a {
		width: 100%;
	}
}

.rally .rally01 ul {
	display: flex;
	gap: 2.5rem;
	margin: 1rem 0;
}

@media screen and (max-width: 800px) {
	.rally .rally01 ul {
		flex-direction: column;
		margin: .5rem 0;
	}
}

.rally .rally01 ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 1rem .5rem;
	width: calc(calc(100% - 5rem) / 3);
	height: 190px;
	background-color: #F7F0E8;
}

.rally .rally01 ul li:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 0;
	right: -60px;
	border-left: 30px solid #F7F0E8;
	border-right: 30px solid transparent;
	border-top: 95px solid transparent;
	border-bottom: 95px solid transparent;
}

@media screen and (max-width: 800px) {
	.rally .rally01 ul li {
		gap: 1rem;
		width: 100%;
		height: auto;
	}

	.rally .rally01 ul li:not(:last-child)::after {
		top: auto;
		bottom: -50px;
		right: 50%;
		transform: translateX(50%);
		border-left: 20px solid transparent;
		border-right: 20px solid transparent;
		border-top: 20px solid var(--gray);
		border-bottom: 20px solid transparent;
	}
}

.rally .rally01 ul li span {
	display: block;
	padding: .5rem;
	width: 100px;
	border-radius: 100vh;
	background-color: var(--gray);
	color: #FFF;
	font-weight: 700;
	text-align: center;
}

.rally .rally01 ul li div {
	width: 50px;
	height: 50px;
}

.rally .rally01 ul li div img {
	width: 50px;
}

.rally .rally01 ul li p {
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
}

.rally02 {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 2rem 1rem;
	text-align: center;
}

@media screen and (max-width: 800px) {
	.rally02 {
		padding: 2rem .5rem 1rem;
	}
}

.rally02 .rally02-title {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 1rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--red);
}

.rally02 .rally02-title::before {
	content: "";
	width: 2px;
	height: 28px;
	background-color: var(--red);
	transform: rotate(-30deg);
}

.rally02 .rally02-title::after {
	content: "";
	width: 2px;
	height: 28px;
	background-color: var(--red);
	transform: rotate(30deg);
}

.rally02 ul {
	display: flex;
	gap: 1rem;
	margin-top: .5rem;
}

@media screen and (max-width: 800px) {
	.rally02 ul {
		flex-direction: column;
		gap: 1.5rem;
	}
}

.rally02 ul li {
	flex: 1;
}

@media screen and (max-width: 800px) {
	.rally02 ul li:not(:first-child) {
		padding-top: 1rem;
		border-top: 2px dotted var(--gray);
	}
}

.rally02 ul li p {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.2;
}

.rally02 ul li div {
	position: relative;
	margin-top: 1.8rem;
}

.rally02 ul li div span {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 120px;
	height: 40px;
	border-radius: 100vh;
	background-color: var(--red);
	font-size: 1.2rem;
	color: #FFF;
	font-weight: 700;
}

.rally03 {
	padding: 1rem 0;
	border-top: 1px solid var(--gray);
	text-align: center;
	font-weight: 700;
	line-height: 1.4;
}

@media screen and (max-width: 800px) {
	.rally03 {
		padding-bottom: 0;
	}
}

.rally03 .rally03-text {
	display: inline-block;
	margin: .5rem auto 0;
	padding: 1rem;
	background-color: var(--red);
	border-radius: .5rem;
	color: #FFF;
}

@media screen and (max-width: 800px) {
	.rally03 .rally03-text {
		line-height: 1.6;
	}
}

.rally03 .rally03-text span {
	position: relative;
	display: inline-block;
	margin-right: 1rem;
	padding: .2rem .5rem;
	background-color: #FFF;
	border-radius: .5rem;
	color: var(--red);
}

.rally03 .rally03-text span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	border: .3rem solid transparent;
	border-left: .6rem solid #FFF;
}

.rally .rally01 img {
	width: 50px;
}

.evTCY-map p {
	color: var(--red);
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.4;

}

@media screen and (max-width: 800px) {
	.evTCY-map p {
		font-size: 1rem;
	}
}

.evTCY-map .box div {
	margin-top: -2rem;

}

@media screen and (max-width: 800px) {
	.evTCY-map .box div {
		margin-top: 0;
	}
}


/* ゲスト
====================================================*/
.ts-list {
	display: flex;
	justify-content: center;
	background-color: #FFF;
	border-radius: 1rem;
	text-align: center;
}

.ts-item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1rem 0;
	width: 50%;
}
.ts-item .date0915 {
	position: absolute;
	right: 1rem;
	top: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #eb4d4b;
	color: #FFF;
	font-weight: 700;
	line-height: 1.4;
}

.ts-item .imgWrap {
	max-width: 100%;
	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: .5rem;
	padding: 1rem;
	border-radius: .5rem;
	background-color: rgba(255, 255, 255, .8);
	color: #eb4d4b;
}

.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 .name {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: .5rem;
	font-size: 1.5rem;
	color: #eb4d4b;
	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-list {
		flex-direction: column;
	}
	.ts-item {
		flex-direction: column;
		padding: 1rem 0;
		width: 100%;
	}

	.ts-item .imgWrap {
		max-width: 100%;
	}

	.ts-item .txtWrap {
		padding-top: 0;
		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 {
		text-align: center;
		line-height: 1.2;
	}

	.ts-item .nameWrap a {
		margin: 0;
	}

	.ts-item .txt {
		text-align: center;
		font-size: 1.1rem;
	}

	.ts-note {
		padding: 0;
		text-align: left;
	}
	.ts-item .date0915 {
		right: 1rem;
		top: auto;
		bottom: 5rem;
	}
}


/* 物販
====================================================*/

.bt-list2 {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem 1rem;
	padding: 1rem;
}
.bt-item2 {
	position: relative;
	width: calc(50% - .5rem);
}
.bt-item2 a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: .5rem;
	padding: 1rem;
	border-radius: .5rem;
	background-color: #FCFAF7;
	text-align: center;
	text-decoration: none;
}
.bt-item2 img {
	transition: .4s;
}
.bt-item2 a:hover img {
	opacity: .8;
}
.bt-item2 .txtWrap {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
.bt-item2 .shop {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	color: var(--gray);
	font-size: 1.3rem;
	font-weight: 700;
}
.bt-item2 .shop span {
	font-size: 1rem;
}

.bt-item2 .catch {
	color: var(--red);
	font-size: 1.3rem;
	font-weight: 700;
}
.bt-item2 img {
	transition: .4s;
}
.bt-item2 .date {
	position: absolute;
	right: -.5rem;
	bottom: -.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: var(--red);
	color: #FFF;
	font-weight: 700;
	line-height: 1.4;
}
.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;
}
@media screen and (max-width: 800px) {
	.bt-list2 {
		gap: 1rem;
		padding: 1rem 0;
	}
	.bt-item2 {
		width: 100%;
	}
	.bt-item2 .imgWrap {
		width: 100%;
	}
	.bt-item2 .txtWrap {
		flex: 1;
		justify-content: center;
	}
	.bt-item2 .shop {
		text-align: center;
	}
	.bt-item2 .catch {
		text-align: center;
	}
}


/* 発酵ワークショップ
====================================================*/
.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: 2rem;
	padding: 1rem;
	width: 100%;
	border-radius: .4rem;
	background-color: rgba(255,255,255,.6);
	text-align: center;
}
.ws-item .shop {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	font-size: 1.5rem;
	font-weight: 700;
	text-decoration: none;
	line-height: 1.2;
}
.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 .txtWrap &gt; div:first-child {
	max-width: 240px;
}
.ws-item .title {
	margin-top: .5rem;
	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;
		gap: 1rem;
		width: 100%;
		border-radius: .5rem;
	}
	.ws-item .txtWrap &gt; div:first-child {
		max-width: none;
	}
	.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;
	}
}

.stage_ttl {
	background-color: #eb4d4b !important;
}
.stage_ttl span {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
}
.stage_ttl span:before,
.stage_ttl span:after {
	display: inline-block;
	content: "";
	background: #FFF;
	width: 2px;
	height: 2rem;
	margin: 0 1em;
	margin-top: -.2rem;
	vertical-align: middle;
}
.stage_ttl span:before {
	left: 0;
	transform: rotate(-35deg);
}
.stage_ttl span:after {
	right: 0;
	transform: rotate(35deg);
}
@media screen and (max-width: 800px) {
	.stage_ttl span:before,
	.stage_ttl span:after {
		height: 3.5rem;
	}
}</pre></body></html>