@charset "utf-8";

/* ------------------------------------ */
/* ファーストビュー */
/* ------------------------------------ */
#fv {
	width: 100%;
	height: 100vh;
	padding-top: 100px;
	position: relative;
	display: flex;
	align-items: center;
	background: #fff;
}

@media screen and (max-height: 800px), (max-width: 1200px) {
	#fv {
		height: 780px;
	}
}

#fvImg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#fvImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 80%;
	font-family: 'object-fit: cover; object-position: 80%;';
}

@media screen and (max-width: 1400px) {
	#fvImg img {
		object-position: 70%;
	}
}

#fvText {
	width: 50%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#fvLogo {
	margin-bottom: 50px;
}

#fvInfo {
	margin-bottom: 30px;
	position: relative;
}

#fvAccess {
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

#fvAccessText {
	font-size: 2.6rem;
	font-weight: 700;
}

#fvAccessLink {
	transition: 0.3s ease-in-out;
}

#fvAccessLink:hover {
	opacity: 0.7;
}

#fvBtn .btn1 {
	display: flex;
	align-items: center;
	font-size: 2.2rem;
	border-radius: 8px;
}

#fvBtn {
	background: #000;
	border-radius: 8px;
	overflow: hidden;
}

#fvBtn .close {
	opacity: 0.7;
}

#fvBtn .close:hover {
	opacity: 0.7!important;
}

#fvBtn .btn1 span:nth-of-type(1) {
	margin-right: 10px;
	padding: 2px 8px;
	font-size: 1.5rem;
	color: #c4051d;
	background-color: #fff;
}

#fvBtn .btn1 span:nth-of-type(2) {
	font-weight: 700;
}

/* ローディングアニメーション */
.fadeIn {
	-webkit-animation-name: fadeIn;
	        animation-name: fadeIn;
	-webkit-animation-duration: 2s;
	        animation-duration: 2s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	opacity: 0;
}

.slideUp {
	-webkit-animation-name: slideUp;
	        animation-name: slideUp;
	-webkit-animation-duration: 2s;
	        animation-duration: 2s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	opacity: 0;
}

.blur {
	-webkit-animation-name: blur;
	        animation-name: blur;
	-webkit-animation-duration: 2s;
	        animation-duration: 2s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	opacity: 0;
}

.delay05 {
	-webkit-animation-delay: .5s;
	        animation-delay: .5s;
}


@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes slideUp {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideUp {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@-webkit-keyframes blur {
	0% {
		-webkit-filter: blur(20px);
		        filter: blur(20px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0);
		        filter: blur(0);
		opacity: 1;
	}
}

@keyframes blur {
	0% {
		-webkit-filter: blur(20px);
		        filter: blur(20px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0);
		        filter: blur(0);
		opacity: 1;
	}
}

/* ------------------------------------ */
/* 西日本食品産業創造展とは？ */
/* ------------------------------------ */
#about {
	padding-top: 100px;
	/* background: linear-gradient(180deg, #fff 0%, #ebf5fc 100%); */
	position: relative;
	overflow: hidden;
}

.aboutHeadingWrap {
	margin-bottom: 55px;
	position: relative;
}

.aboutHeading {
	font-size: 4.2rem;
    letter-spacing: 0.04em;
	text-align: center;
}

.aboutHeading .textBold {
	font-size: 5.2rem;
}

.aboutHeading .asterisk {
	position: relative;
}

.aboutHeading .asterisk::after {
	content: "※";
	font-size: 1.4rem;
	position: absolute;
	top: -0.5em;
	right: -1em;
}

.aboutHeadingWrap .annotation {
	width: 100%;
	text-align: right;
	font-size: 1.4rem;
	position: absolute;
	bottom: 0;
}

.aboutInner {
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 4%;
}

.aboutBody {
	width: 46%;
}

.aboutTitle {
	margin-bottom: 10px;
	font-size: 3.4rem;
	font-weight: 700;
}

.aboutText {
	font-size: 1.6rem;
	line-height: 1.75;
	margin-bottom: 0.5em;
	text-align: justify;
}

.aboutMovie {
	width: 50%;
	padding-top: 14px;
}

.movieWrap {
	padding-top: 56.25%;
    position: relative;
}

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

#aboutGallery {
	padding-bottom: 140px;
}

#aboutGallery::before {
	content: "";
	width: 50%;
	height: 49vw;
	max-height: 1000px;
	min-width: 540px;
	background: url(../../img/top/top_about_bg_right.jpg) bottom right no-repeat;
	background-size: cover;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

#aboutGallery::after {
	content: "";
	width: 50%;
	height: 49vw;
	max-height: 1000px;
	min-width: 540px;
	background: url(../../img/top/top_about_bg_left.jpg) bottom left no-repeat;
	background-size: cover;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.gallery {
	padding-top: 35px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px 2%;
}

.galleryItem {
	width: 15%;
	position: relative;
}

.galleryItem::after {
	content: "";
	width: 21px;
	height: 21px;
	position: absolute;
	top: 6px;
	left: 6px;
	background: url(../../img/top/icon_gallery.svg) no-repeat center center / contain;
	z-index: 1;
}

/* ポップアップ調整 */
.mfp-arrow:after {
	border-top-width: 30px;
	border-bottom-width: 30px;
	top: 0;
}

.mfp-arrow-right:after {
	border-left: 35px solid #FFF;
	margin-left: 25px;
}

.mfp-arrow-left:after {
	border-right: 35px solid #FFF;
    margin-left: 25px;
}

.mfp-close {
	top: -40px;
	height: 80px;
	line-height: 80px;
	font-size: 80px;
}
.mfp-close:active {
	top: -40px;
}

/* ------------------------------------ */
/* ガイドブック・会場マップ */
/* ------------------------------------ */
#document {
	padding-top: 120px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

#guidebook {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}

.docTitWrap {
	padding-bottom: 40px;
}

.docTitWrap .tit1 {
	margin-bottom: 10px;
}

.docTitAnno {
	padding: 4px 20px;
	background: #e5f6ec;
	font-size: 1.6rem;
	font-weight: 500;
}

#guidebookImg {
	padding-bottom: 40px;
}

#guidebookImg img {
	max-width: 500px;
}

#guidebookImg a {
	transition: all 0.3s ease-in-out 0s;
}

#guidebookImg a:hover {
	opacity: 0.7;;
}

#hallmap {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}

#hallmapImg {
	padding-bottom: 40px;
}

#hallmapImg img {
	max-width: 500px;
}

#hallmapImg a {
	transition: all 0.3s ease-in-out 0s;
}

#hallmapImg a:hover {
	opacity: 0.7;
}

/* ------------------------------------ */
/* 特別セミナー・イベント紹介 */
/* ------------------------------------ */
#pickupEvent {
	padding-top: 120px;
}

#pickupEvent .tit1 {
	width: fit-content;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

#pickupEvent .tit1 .annotation {
	position: absolute;
	top: calc(50% + 5px);
	left: calc(100% + 15px);
	transform: translateY(-50%);
	font-size: 1.5rem;
	font-weight: 500;
	white-space: nowrap;
	letter-spacing: 0.075em;
	color: #333;
}

#pickupEventSlider {
	margin-bottom: 45px;
}

#pickupEventOtherWrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 45px;
}

.sp-next-arrow::before,
.sp-previous-arrow::before,
.sp-next-arrow::after,
.sp-previous-arrow::after 
 {
	display: none;
}

.sp-horizontal .sp-arrows {
	margin-top: -28px;
}

.sp-horizontal .sp-next-arrow {
	width: 64px;
	height: 64px;
	background: url(../../img/common/icon_slider_right.png) 0 0 no-repeat;
	transition: all 0.3s ease-in-out 0s;
	right: 30%;
}

.sp-horizontal .sp-next-arrow:hover {
	opacity: 0.7;
}

.sp-horizontal .sp-previous-arrow {
	width: 64px;
	height: 64px;
	background: url(../../img/common/icon_slider_left.png) 0 0 no-repeat;
	transition: all 0.3s ease-in-out 0s;
	left: 30%;
}

.sp-horizontal .sp-previous-arrow:hover {
	opacity: 0.7;
}

/* ------------------------------------ */
/* 出展ブロック */
/* ------------------------------------ */
#block {
	padding-top: 150px;
}

.blockList {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 48px;
}

.blockList li.new {
	position: relative;
}

.blockList li.new::before {
	content: "";
	width: 39px;
	height: 39px;
	position: absolute;
	top: -10px;
	left: 0;
	background: url(../../img/top/new.png) no-repeat center center / contain;
}

.blockList li a {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.blockListImg {
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out 0s;
}

.blockList li a:hover .blockListImg {
	transform: scale(1.1);
}

.blockListTitle {
	padding: 15px 0;
	font-size: 2rem;
	letter-spacing: 0.025em;
	text-align: center;
	color: #fff;
	position: relative;
}

.blockListTitle .textSm {
	font-size: 0.85em;
}

.blockListTitle .textMd {
	font-size: 1.1em;
}

.blockListTitle::after {
	content: "";
	width: 28px;
	height: 28px;
	position: absolute;
	right: 10px;
	bottom: 10px;
	background: url(../../img/common/icon4.png) no-repeat center center / contain;
}

.blockAnno {
	position: absolute;
	bottom: 3px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1rem;
	font-weight: bold;
}

.blockListContent {
	padding: 20px;
	flex-grow: 1;
	background-color: #f6f6f6;
}

.blockListContent p {
	font-size: 1.3rem;
	line-height: calc(22 / 13);
	letter-spacing: 0.05em;
	word-break: break-all;
}

.blockList li:nth-child(1) .blockListTitle {
	background-color: #f02e00;
}
.blockList li:nth-child(2) .blockListTitle {
	background-color: #fdb900;
}
.blockList li:nth-child(3) .blockListTitle {
	background-color: #007ec8;
}
.blockList li:nth-child(4) .blockListTitle {
	background-color: #524fa4;
}
.blockList li:nth-child(5) .blockListTitle {
	background-color: #88c62f;
}
.blockList li:nth-child(6) .blockListTitle {
	background-color: #00abb7;
}
.blockList li:nth-child(7) .blockListTitle {
	background-color: #f68403;
}
.blockList li:nth-child(8) .blockListTitle {
	background-color: #00a245;
}
.blockList li:nth-child(9) .blockListTitle {
	background-color: #9e8231;
}
.blockList li:nth-child(10) .blockListTitle {
	background-color: #ed0065;
}
.blockList li:nth-child(11) .blockListTitle {
	background-color: #9a5948;
}
.blockList li:nth-child(12) .blockListTitle {
	background-color: #009ee4;
}

/* ------------------------------------ */
/* 開催イベント */
/* ------------------------------------ */
#event {
	padding-top: 150px;
	padding-bottom: 150px;
}

.eventListItem {
	padding-top: 120px;
	margin-top: -120px;
}

.eventListItem:not(:last-child) {
	margin-bottom: 50px;
}

.eventListItem a {
	display: block;
	transition: all 0.3s ease-in-out;
}

.eventListItem a:hover,
.eventListItem a:active {
	opacity: 0.7;
}


/* ----------------------------------- */
/* 特別セミナー */
/* ----------------------------------- */
#seminar {
	padding-top: 150px;
	padding-bottom: 150px;
	background-color: #f1f8ef;
}

#seminarList {
	margin-bottom: 50px;
}

.seminarItemWrap {
	padding-top: 120px;
	margin-top: -120px;
}

.seminarItemWrap:not(:last-child) {
	margin-bottom: 35px;
}

.seminarItem {
	padding: 30px 30px 40px;
	background: #FFF;
}

.seminarItemTit {
	padding-bottom: 15px;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #b30000;
}

.seminarItemInfo {
	padding-bottom: 18px;
	display: flex;
}

.seminarNum {
	width: 100px;
	background: #b30000;
	color: #FFF;
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	font-weight: 700;
	line-height: 2.5;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.seminarInfo {
	width: calc(100% - 100px);
	padding: 7px 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: #eeeeee;
	gap: 6px 40px;
	font-size: 1rem;
}

.seminarInfo dl {
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.seminarInfo dt {
	width: 60px;
	padding: 3px 5px;
	background: #FFF;
	font-weight: 500;
	text-align:justify;
	text-align-last:justify;
}

.seminarInfo .date {
	width: 100%;
}

.date dd {
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
}

.date dd span {
	font-size: 1.8rem;
}

.seminarItemContent {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}

.seminarItemContent .bold {
	font-weight: 700;
	padding-bottom: 0.5em;
	display: inline-block;
}

.seminarItemContent.flexStart {
	align-items: flex-start;
}

.speakerItemWrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	row-gap: 21px;
}

.speakerItemWrap .speaker {
	flex-grow: 1;
}

.speaker {
	padding: 16px;
	border: 1px solid #dcdcdc;
	flex-basis:auto;
}

.liquid {
	flex:1;
}

.speakerTit {
	padding: 0 0 0 0.5em;
	margin-bottom: 10px;
	font-size: 1.4rem;
	border-left: 4px solid #222;
	font-weight: 700;
	line-height: 1.35;
	color: #222;
}

.speakerTit.spaceTop{
	margin-top: 40px;
}

.speakerHead {
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #222;
	margin-bottom: 2px;
}

.speakerList {
	display: flex;
	flex-wrap: wrap;
	gap: 25px 1%;
}

.speakerList.column {
	flex-direction: column;
}

.speakerList li {
	display: flex;
	flex-wrap: wrap;
	/* align-items: center; */
	column-gap: 20px;
}

.name {
	font-size: 1.3rem;
}

.detail:not(.liquid) {
	padding-top: 21px;
}

.seminarItemInfo ~ .detail {
	padding-top: 0;
}

.detail p {
	letter-spacing: 0.1em;
}

.detail a {
	letter-spacing: 0;
}

.detail a:hover {
	text-decoration: underline;
}

.detail .space1em {
	padding-bottom: 1em;
}

.seminarBtn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 25px;
	padding-top: 38px;
}

.seminarBtn .btn4 .textMd {
	font-size: 1.25em;
}

.seminarBtnLast {
	text-align: center;
}

.seminarBtnLast .btn4 {
	padding: 0.6em 4.5em;
	font-size: 1.6rem;
	background-color: #328d20;
}

.seminarBtnLast .btn4 span {
	font-size: 2.2rem;
}

.bold {
	font-weight: 700;
}

.txt1 {
	padding-bottom: 1.4em;
}

.txt2 {
	padding-bottom: 1.2em;
	margin-bottom: 1.2em;
	border-bottom: 1px solid #dcdcdc;
}

.full {
	width: 100%;
}

.half {
	width: 49%;
}

.middle {
	width: 40%;
}

.seminarA .seminarItemTit {
	color: #b30000;
}
.seminarA .seminarNum {
	background-color: #b30000;
}
.seminarA .btn4 {
	background-color: #b30000;
}

.seminarB .seminarItemTit {
	color: #007ec8;
}
.seminarB .seminarNum {
	background-color: #007ec8;
}
.seminarB .btn4 {
	background-color: #007ec8;
}

.seminarD .seminarItemTit {
	color: #f68403;
}
.seminarD .seminarNum {
	background-color: #f68403;
}
.seminarD .btn4 {
	background-color: #f68403;
}

/* ------------------------------------ */
/* 開催にあたって */
/* ------------------------------------ */
#message {
	padding-top: 150px;
	padding-bottom: 150px;
	background: url(../../img/top/message_bg.jpg) no-repeat center center / cover;
}

#message .tit2 {
	padding-top: 0;
	padding-bottom: 0;
	color: #fff;
	background-color: transparent;
	border: none;
}

#message .tit2::after {
	width: 320px;
	background-color: transparent;
	border: 3px solid #fff;
}

#messageWrap {
	padding: 50px 40px;
	background-color: #fff;
}

#messageWrap p {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: calc(35 / 18);
	text-indent: 1em;
}

#messageWrap p:not(:last-child) {
	padding-bottom: 1.5em;
}

/* ------------------------------------ */
/* 開催概要 */
/* ------------------------------------ */
#outline {
	padding-top: 150px;
}

#outline .table tr:first-child th,
#outline .table tr:first-child td {
	border-top: none;
}

.outlineAccessLink {
	width: 60px;
	height: 33px;
	margin-left: 15px;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 33px;
	text-align: center;
	color: #ffffff;
	background-color: #cd1939;
	transition: 0.3s ease-in-out;
}

.outlineAccessLink:hover {
	opacity: 0.7;
}

/* ------------------------------------ */
/* 事前来場登録の流れ */
/* ------------------------------------ */
#flow {
	padding-top: 150px;
	padding-bottom: 150px;
}

#flowTxt {
	padding-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: calc(30 / 18);
}

#flowTxt .strong {
	color: #b30000;
	transition: all 0.3s ease-in-out 0s;
}

#flowTxt .strong:hover {
	opacity: 0.7;
}

.flowTxtAnno {
	padding-left: 1em;
	padding-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 500;
	text-indent: -1em;
	line-height: calc(30 / 18);
}

.flowTxtAnno .strong {
	color: #c20424;
	font-weight: bold;
}

#flowImg {
	padding-bottom: 100px;
}

#step {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}

#step li {
	padding: 2% 1.5%;
	flex: 1;
	position: relative;
	border: 2px solid #cdcdcd;
	border-radius: 10px;
}

#step li::after {
	content: "";
	width: 58px;
	height: 58px;
	background: url(../../img/top/icon_flow.svg) 0 0 no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: -45px;
	transform: translate(0, -50%);
	z-index: 1;
}

#step li:last-child::after {
	display: none;
}

.stepTit {
	width: 76px;
	height: 76px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	font-weight: 900;
	font-family: 'Roboto', sans-serif;
	line-height: 1.1;
	text-align: center;
	color: #FFF;
	background: #349520;
	border-radius: 50%;
}

.stepTit span {
	font-size: 3rem;
}

.stepImg {
	width: 100%;
	height: 130px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.stepTxt {
	font-size: 1.4rem;
	line-height: calc(22 / 14);
}

.btn1.flowBtn {
	padding-right: 3em;
	padding-left: 1em;
	font-size: 1.1rem;
	position: relative;
}

.stepImg .btn1.close:hover {
	opacity: 1!important;
}

.btn1.flowBtn::after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	border-radius: 5px;
}

.btn1.flowBtn span {
	font-size: 1.3rem;
}

.stepLabel {
	width: fit-content;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
	padding: 5px 10px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #349520;
	border: 2px solid #349520;
}

/* ------------------------------------ */
/* 会場について */
/* ------------------------------------ */
#venue {
	padding-top: 150px;
	padding-bottom: 150px;
	background-color: #f1f8ef;
}

.venueContent {
	padding: 50px;
	background-color: #fff;
}

/* 会場アクセス */
/* -------------------------------------------------- */
#access {
	margin-bottom: 60px;
}

.guideHead {
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.guideHead dt {
	width: 80px;
	padding: 10px 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .05em;
	text-align: center;
	color: #1c8108;
	border: 1px solid currentColor;
}

.guideHead dd {
	width: calc(100% - 80px);
	padding-left: 18px;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .05em;
	color: #000;
}

.imgArea {
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
	column-gap: 4.8%;
}

.imgAreaBox {
	width: 47.6%;
}

.venueImg {
	margin-bottom: 15px;
}

.venueImg img {
	width: 100%;
}

.venueCap {
	font-size: 1.5rem;
	letter-spacing: .05em;
	line-height: 1;
	text-align: center;
}

.trafficBlock {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #F7F7F7;
	padding: 35px 32px;
	column-gap: 25px;
}

.trafficTtl {
	width: 100%;
	margin-bottom: 18px;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.0;
}

.trafficBox {
	width: 450px;
}

.trafficTxtBox {
	margin-bottom: 30px;
	padding: 10px 14px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.012em;
	color: #c20424;
	background-color: #FFFFFF;
	border: 1px solid #c20424;
}

.rootTxt {
	letter-spacing: 0.05em;
	color: #333;
}

.accArrow {
	margin: 0 3px;
	display: inline-block;
	vertical-align: 0;
}

.trafficDes dl {
	margin-bottom: 25px;
	display: flex;
}

.trafficDes dl:nth-last-of-type(1) {
	margin-bottom: 0;
}

.trafficDes dt,
.trafficDes dd {
	line-height: calc(28 / 17);
	letter-spacing: .1em;
}

.trafficDes dt {
	width: 150px;
	padding-left: 50px;
	position: relative;
	font-size: 1.8rem;
	font-weight: 700;
}

.trafficDes dt::before {
	content: "";
	width: 40px;
	height: 40px;
	position: absolute;
	left: 0;
	top: -6px;
	background-color: #fff;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 50%;
}

.trafficDes dt.bus::before {
	background-image: url(../../img/top/icon_bus.svg);
}

.trafficDes dt.taxi::before {
	background-image: url(../../img/top/icon_taxi.svg);
}

.trafficDes dt.subway::before {
	background-image: url(../../img/top/icon_subway.svg);
}

.trafficDes dd {
	font-size: 1.7rem;
	font-weight: 500;
}

.trafficImg {
	width: calc(100% - 475px);
}

/* 無料シャトルバス時刻表 */
/* -------------------------------------------------- */
#timeTable {
	margin-bottom: 60px;
}

.busCaution {
	padding:  18px 30px;
	margin-bottom: 30px;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: calc(28 / 18);
	color: #c20424;
	border: 1px solid #c20424;
}

.timeTableBlock {
	margin-bottom: 60px;
	padding: 30px;
	border: 1px solid #1c8108;
}

.timeTableCap {
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .11em;
}

.timeTableRow {
	display: flex;
	justify-content: space-between;
	column-gap: 38px;
}

.timeTableReady {
	width: 398px;
	height: 230px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.timeTableItem {
	width: 398px;
}

.timeTableItem * {
	text-align: center;
}

/*-- Time table --*/
.timeTable {
	width: 100%;
	/* display: table; */
	display: flex;
}

.timeTable * {
	text-align: center;
}

.timeTableHead {
	width: 60px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: #fff;
	background-color: #3fa929;
	writing-mode: vertical-lr;
}

.timeTableHead span {
	text-combine-upright: all;
	font-size: 1.8rem;
	padding-bottom: 2px;
}

.busTable {
	width: calc(100% - 60px);
}

.busTable th,
.busTable td {
	padding: 6px 0;
	font-size: 1.5rem;
	line-height: 1;
	text-align: center;
	border-left: 1px solid #C9C9C9;
	border-bottom: 1px solid #C9C9C9;
}

.busTable th {
	font-weight: 700;
	letter-spacing: 0;
	background-color: #EAE9E0;
}

.busTable td:last-child {
	border-right: 1px solid #C9C9C9;
}

.busTable th,
.busTable td {
	width: calc(338px / 6);
}

.busTable .tableHead {
	padding: 7px 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.15em;
	color: #FFF;
	border-left: 1px solid;
	border-right: 1px solid;
	background-color: #178201;
	border-left-color: #178201;
	border-right-color: #178201;
}

.tableKome {
	margin-top: 10px;
	text-align: right;
}

.tableKomeTxt {
	display: inline-block;
	padding: 2px 7px;
	font-size: 1.1rem;
	letter-spacing: 0.15em;
}

.mapImg {
	width: calc(100% - 436px);
}

/*-- Caution --*/
.cautionArea {
	padding: 30px 40px 30px 85px;
	background: #ffe200 url(../../img/top/caution_icon.jpg) left 20px center / 48px no-repeat;
}

.cautionTxt {
	font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: 0.12em;
}

/* お弁当・レストラン・キッチンカー */
/* -------------------------------------------------- */
.foodTxt {
	margin-bottom: 40px;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: calc(30 / 18);
	text-align: center;
}

.foodAnno {
	margin-bottom: 10px;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	text-align: right;
}

#foodList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px 4%;
}

.foodItem {
	width: 48%;
	padding: 3%;
	background-color: #f7f7f7;
}

.foodItemImg {
	margin-bottom: 20px;
}

.foodItemTit {
	margin-bottom: 10px;
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #1c8108;
	display: flex;
	align-items: center;
	column-gap: 15px;
}

.foodItemTit::before {
	display: block;
	content: "";
}

.foodItem.bento .foodItemTit::before {
	width: 39px;
	height: 30px;
	background: url(../../img/top/icon_bento.svg) center / contain no-repeat;
}

.foodItem.restaurant .foodItemTit::before {
	width: 35px;
	height: 42px;
	background: url(../../img/top/icon_restaurant.svg) center / contain no-repeat;
}

.foodItem.kitchencar .foodItemTit::before {
	width: 38px;
	height: 42px;
	background: url(../../img/top/icon_kitchen-car.svg) center / contain no-repeat;
}

.foodItemtxt {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	font-weight: 500;
	line-height: 1.875;
}

/* ------------------------------------ */
/* 広告バナー */
/* ------------------------------------ */
#exhibit {
	padding-top: 150px;
	padding-bottom: 150px;
}

.exhibitList {
	display: flex;
	flex-wrap: wrap;
}

.exhibitListItem {
	width: 20%;
	margin-bottom: 30px;
}

.exhibitListLink {
	display: block;
	color: #333333;
	transition: 0.3s ease-in-out;
}

.exhibitListLink:hover {
	opacity: 0.7;
}

.exhibitListLogo {
	height: 200px;
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	border: 1px solid #ebeef4;
}

.exhibitListName {
	margin-bottom: 5px;
	padding: 0 5px;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.exhibitListName.small {
	font-size: 1.3rem;
}

.exhibitListText {
	padding: 0 5px;
	font-size: 1.2rem;
	letter-spacing: 0.075em;
}

/* add2504 */
#fixedBnr {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 11;
	box-shadow: 0px 0px 24px -3px #777777;
	border-radius: 10px;
}

#fixedBnr a {
	transition: all 0.3s ease-in-out 0s;
}

#fixedBnr a:hover {
	opacity: 0.7;
}

#fbCloseBtn {
	position: absolute;
	right: 0;
	top: -25px;
	cursor: pointer;
}

/* 来場者数 */
/* ----------------------------------- */
#visitor {
	background: #f4f8f3;
	padding: 40px 0;
	text-align: center;
}

.thanks {
	font-size: 2rem;
	font-weight: bold;
}

#visitorsNum {
	padding-bottom: 10px;
	color: #328d20;
	font-size: 2rem;
}

.num {
	color: #328d20;
	font-size: 4rem;
	font-weight: bold;
}

#visitorDetail {
	width: 400px;
	margin: 0 auto;
	padding: 10px 0;
	background: #FFF;
	border: 1px solid #CCC;
}

#visitorDetail li {
	padding: 5px 0;
	background: #FFF;
	font-size: 2rem;
	font-weight: bold;
}

.weather {

}

.detailNum {

}

