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

/* ****************************************************
Title: style.css
***************************************************** */


/* -------------------------------------------------------------------- 
 Exhibitors
-------------------------------------------------------------------- */

.contBlockBase02 {
	padding: 120px 0px 0px;
}

.detailTit01 {
	text-align: left;
	font-size: 32px;
	line-height: 1.55em;
	color: #94802b;
	margin-bottom: 90px;
}

.exFlex01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.exUl01 {
	display: flex;
	align-items: center;
	gap: 0px 60px;
	font-size: 16px;
	line-height: 1.25em;
	font-weight: bold;
}
.exUl01 .s01 {
	vertical-align: middle;
	margin-left: 20px;
}
.exUl01 label {
	cursor: pointer;
}

.exFlex02 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 4px 4px;
	margin-top: 30px;
}

/*------------------*/

input[type="checkbox"].radio01 {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type="checkbox"].radio01:checked {
	background-color: #dadadb;
}
/*input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}*/

/*------------------*/

/** Custom Select **/
.custom-select-wrapper {
	position: relative;
	display: inline-block;
	user-select: none;
	text-align: left;
}
.custom-select-wrapper select {
	display: none;
}
.custom-select {
	position: relative;
	display: inline-block;
}
.custom-select-trigger {
	position: relative;
	display: block;
	width: 396px;
	padding: 5px 50px 5px 15px;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.5em;;
	background-color: #ffffff;
	cursor: pointer;
	border: 1px solid #000000;
}
.custom-select-trigger:after {
	position: absolute;
	display: block;
	content: '';
	width: 8px; height: 8px;
	top: 50%; right: 20px;
	margin-top: -3px;
	border-bottom: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg) translateY(-50%);
	transition: all .4s ease-in-out;
	transform-origin: 50% 0;
}
.custom-select.opened .custom-select-trigger:after {
	margin-top: 3px;
	transform: rotate(-135deg) translateY(-50%);
}
.custom-options {
	position: absolute;
	display: block;
	top: 100%; left: 0; right: 0;
	min-width: 100%;
	margin: 0px 0;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: 0 2px 1px rgba(0,0,0,.07);
	background-color: rgba( 255,255,255,0.9 );
	transition: all .4s ease-in-out;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
}
.custom-select.opened .custom-options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(0);
}
/*.custom-options:before {
	position: absolute;
	display: block;
	content: '';
	bottom: 100%; right: 25px;
	width: 7px; height: 7px;
	margin-bottom: -4px;
	border-top: 1px solid #b5b5b5;
	border-left: 1px solid #b5b5b5;
	background: #fff;
	transform: rotate(45deg);
	transition: all .4s ease-in-out;
}*/
.option-hover:before {
	background: #f9f9f9;
}
.custom-option {
	position: relative;
	display: block;
	padding: 8px 50px 8px 15px;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.5em;
	cursor: pointer;
	transition: all .4s ease-in-out;
}
.custom-option:first-of-type {
	border-radius: 4px 4px 0 0;
}
.custom-option:last-of-type {
	border-bottom: 0;
	border-radius: 0 0 4px 4px;
}
.custom-option:hover,
.custom-option.selection {
	background: #f9f9f9;
}

/*------------------*/

.radio-inline__input {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}

.radio-inline__label {
    display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 36px;
	height: 36px;
    padding: 4px;
    transition: all .2s;
	border: 1px solid #000000;
	background-color: #ffffff;
	font-size: 16px;
	line-height: 1.0em;
	font-weight: normal;
	cursor: pointer;
}

.radio-inline__input:checked + .radio-inline__label {
    background-color: #dadadb;
}

/*.radio-inline__input:focus + .radio-inline__label {
    outline-color: #4D90FE;
    outline-offset: -2px;
    outline-style: auto;
    outline-width: 5px;
}*/

/*------------------*/

.exContBlock01 {
	margin-top: 100px;
}
.detailBottomBlock01 {
	text-align: left;
	padding-bottom: 60px;
}
.lineTop01 {
	padding-top: 60px;
	border-top: 1px solid #ccd3d5;
	margin-top: 80px;
}

.backLink01 {
	font-size: 16px;
	line-height: 1.5em;
	font-weight: bold;
}
.backLink01::before {
	content: "";
	display: inline-block;
	background-image: url("../img/exhibitors_btn_ar02.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 17px auto;
	width: 17px;
	height: 14px;
	vertical-align: middle;
	margin-right: 15px;
}
.backLink01 a:link {	color: #000000;	text-decoration: underline;}
.backLink01 a:visited {	color: #000000;	text-decoration: underline;}
.backLink01 a:hover {	color:#000000;	text-decoration: none;}
.backLink01 a:active {	color:#000000;	text-decoration: none;}

.exContFlex01 {
	display: flex;
	flex-wrap: wrap;
	gap: 60px 20px;
}
.exContFlex01 li {
	text-align: left;
	width: 334px;
}
.exContDl01 {
	margin-top: 28px;
}
.exContDl01 dt {
	font-size: 16px;
	line-height: 1.25em;
	font-weight: bold;
}
.exContDl01 dd {
	margin-top: 15px;
}
.exContDl01 dd .p01 {
	font-size: 14px;
	line-height: 1.55em;
}

.moreLink01 {
	font-size: 16px;
	line-height: 1.5em;
	font-weight: bold;
	text-align: right;
	margin-top: 18px;
}
.moreLink01::after {
	content: "";
	display: inline-block;
	background-image: url("../img/exhibitors_btn_ar01.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 17px auto;
	width: 17px;
	height: 14px;
	vertical-align: middle;
	margin-left: 15px;
}
.topPartnersFlex01 .moreLink01 a {margin-left: 32px;}
.moreLink01 a:link {	color: #000000;	text-decoration: underline;}
.moreLink01 a:visited {	color: #000000;	text-decoration: underline;}
.moreLink01 a:hover {	color:#000000;	text-decoration: none;}
.moreLink01 a:active {	color:#000000;	text-decoration: none;}




@media screen and (max-width:750px) {

	.contBlockBase02 {
		padding: 60px 20px 0px;
	}

	.detailTit01 {
		text-align: left;
		font-size: 25px;
		line-height: 1.55em;
		color: #94802b;
		margin-bottom: 25px;
	}

	.exFlex01 {
		display: block;
	}
	.exUl01 {
		display: flex;
		align-items: center;
		gap: 0px 45px;
		font-size: 13px;
		line-height: 1.25em;
		font-weight: bold;
	}
	.exUl01 .s01 {
		vertical-align: middle;
		margin-left: 20px;
	}
	.exUl01 label {
		cursor: pointer;
	}

	.exFlex02 {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 4px 4px;
		margin-top: 20px;
	}
	.exFlex02 li {
		width: 8%;
	}

	/*------------------*/

	input[type="checkbox"].radio01 {
		position: relative;
		width: 16px;
		height: 16px;
		border: 1px solid #000;
		vertical-align: -5px;
		-webkit-appearance: none;
			 -moz-appearance: none;
						appearance: none;
	}

	input[type="checkbox"].radio01:checked {
		background-color: #dadadb;
	}
	/*input[type="checkbox"]:checked:before {
		position: absolute;
		top: 1px;
		left: 4px;
		transform: rotate(50deg);
		width: 4px;
		height: 8px;
		border-right: 2px solid #000;
		border-bottom: 2px solid #000;
		content: '';
	}*/

	/*------------------*/

	/** Custom Select **/
	.custom-select-wrapper {
		position: relative;
		display: block;
		user-select: none;
		text-align: left;
	}
	.custom-select-wrapper select {
		display: none;
	}
	.custom-select {
		position: relative;
		display: block;
		margin-top: 20px;
	}
	.custom-select-trigger {
		position: relative;
		display: block;
		box-sizing: border-box;
		width: 100%;
		padding: 5px 50px 5px 15px;
		font-size: 16px;
		font-weight: normal;
		line-height: 1.5em;;
		background-color: #ffffff;
		cursor: pointer;
		border: 1px solid #000000;
	}
	.custom-select-trigger:after {
		position: absolute;
		display: block;
		content: '';
		width: 8px; height: 8px;
		top: 50%; right: 20px;
		margin-top: -3px;
		border-bottom: 2px solid #000;
		border-right: 2px solid #000;
		transform: rotate(45deg) translateY(-50%);
		transition: all .4s ease-in-out;
		transform-origin: 50% 0;
	}
	.custom-select.opened .custom-select-trigger:after {
		margin-top: 3px;
		transform: rotate(-135deg) translateY(-50%);
	}
	.custom-options {
		position: absolute;
		display: block;
		top: 100%; left: 0; right: 0;
		min-width: 100%;
		margin: 0px 0;
		border-radius: 4px;
		box-sizing: border-box;
		box-shadow: 0 2px 1px rgba(0,0,0,.07);
		background-color: rgba( 255,255,255,0.9 );
		transition: all .4s ease-in-out;

		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-15px);
	}
	.custom-select.opened .custom-options {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
		transform: translateY(0);
	}
	/*.custom-options:before {
		position: absolute;
		display: block;
		content: '';
		bottom: 100%; right: 25px;
		width: 7px; height: 7px;
		margin-bottom: -4px;
		border-top: 1px solid #b5b5b5;
		border-left: 1px solid #b5b5b5;
		background: #fff;
		transform: rotate(45deg);
		transition: all .4s ease-in-out;
	}*/
	.option-hover:before {
		background: #f9f9f9;
	}
	.custom-option {
		position: relative;
		display: block;
		padding: 8px 50px 8px 15px;
		font-size: 16px;
		font-weight: normal;
		line-height: 1.5em;
		cursor: pointer;
		transition: all .4s ease-in-out;
	}
	.custom-option:first-of-type {
		border-radius: 4px 4px 0 0;
	}
	.custom-option:last-of-type {
		border-bottom: 0;
		border-radius: 0 0 4px 4px;
	}
	.custom-option:hover,
	.custom-option.selection {
		background: #f9f9f9;
	}

	/*------------------*/

	.radio-inline__input {
			clip: rect(1px, 1px, 1px, 1px);
			position: absolute !important;
	}

	.radio-inline__label {
			display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		width: 26px;
		height: 26px;
			padding: 4px;
			transition: all .2s;
		border: 1px solid #000000;
		background-color: #ffffff;
		font-size: 12px;
		line-height: 1.0em;
		font-weight: normal;
		cursor: pointer;
	}

	.radio-inline__input:checked + .radio-inline__label {
			background-color: #dadadb;
	}

	/*.radio-inline__input:focus + .radio-inline__label {
			outline-color: #4D90FE;
			outline-offset: -2px;
			outline-style: auto;
			outline-width: 5px;
	}*/

	/*------------------*/

	.exContBlock01 {
		margin-top: 30px;
	}
	.detailBottomBlock01 {
		text-align: left;
		padding-bottom: 30px;
	}
	.lineTop01 {
		padding-top: 30px;
		border-top: 1px solid #ccd3d5;
		margin-top: 30px;
	}

	.backLink01 {
		font-size: 12px;
		line-height: 1.5em;
		font-weight: bold;
	}
	.backLink01::before {
		content: "";
		display: inline-block;
		background-image: url("../img/exhibitors_btn_ar02.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 15px auto;
		width: 15px;
		height: 14px;
		vertical-align: middle;
		margin-right: 15px;
	}
	.backLink01 a:link {	color: #000000;	text-decoration: underline;}
	.backLink01 a:visited {	color: #000000;	text-decoration: underline;}
	.backLink01 a:hover {	color:#000000;	text-decoration: none;}
	.backLink01 a:active {	color:#000000;	text-decoration: none;}

	.exContFlex01 {
		display: flex;
		flex-wrap: wrap;
		gap: 30px 0px;
	}
	.exContFlex01 li {
		text-align: left;
		width: 100%;
		padding-top: 35px;
		border-top: 1px solid #a2a2a4;
	}
	.exContFlex01 li:first-child {
		padding-top: 0px;
		border-top: none;
	}

	.exContDl01 {
		margin-top: 15px;
	}
	.exContDl01 dt {
		font-size: 15px;
		line-height: 1.25em;
		font-weight: bold;
	}
	.exContDl01 dd {
		margin-top: 10px;
	}
	.exContDl01 dd .p01 {
		font-size: 13px;
		line-height: 1.55em;
	}

	.moreLink01 {
		font-size: 12px;
		line-height: 1.5em;
		font-weight: bold;
		text-align: right;
		margin-top: 10px;
	}
	.moreLink01::after {
		content: "";
		display: inline-block;
		background-image: url("../img/exhibitors_btn_ar01.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 15px auto;
		width: 15px;
		height: 14px;
		vertical-align: middle;
		margin-left: 15px;
	}
    .topPartnersFlex01 .moreLink01 a {margin-left: 30px;}
	.moreLink01 a:link {	color: #000000;	text-decoration: underline;}
	.moreLink01 a:visited {	color: #000000;	text-decoration: underline;}
	.moreLink01 a:hover {	color:#000000;	text-decoration: none;}
	.moreLink01 a:active {	color:#000000;	text-decoration: none;}

    .sitem img {
       width: 100%; 
    }
}

@media screen and (min-width:751px) {

.sitem img {
	width: 334px;
	height: 176px; 
 }

}

/* -------------------------------------------------------------------- 
 Exhibitors Artist Gallery
-------------------------------------------------------------------- */

.detailTit01.colBlack01 {
	color: #181000;
}
.exImg01 {
	margin-bottom: 90px;
}

.detailContBox01 {
	text-align: left;
}
.detailTit02 {
	font-size: 42px;
	line-height: 1.2em;
	margin-bottom: 50px;
}
.exContDl02 {
	display: flex;
	margin-top: 20px;
}
.exContDl02 dt {
	font-size: 16px;
	line-height: 1.25em;
	font-weight: bold;
	margin-right: 10px;
	flex-shrink: 0;
}
.artist .exContDl02 dt {
    width: 120px;
}
.exContDl02 dd {
	font-size: 14px;
	line-height: 1.5em;
}
.exContDl02 dd .s01 {
	margin-right: 15px;
}

.exFlex03 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

.reverse {
	flex-direction: row-reverse;
}

.exFlex03 .flexBox01 {
	word-break: break-word;
	width: 760px;
}
.exFlex03 .flexBox01.boxPt80 {
	padding-top: 80px;
}

.exContTit01 {
	font-size: 16px;
	line-height: 1.25em;
	font-weight: bold;
	margin-bottom: 15px;
}
.exContText01 {
	font-size: 14px;
	line-height: 2.1em;
	font-weight: normal;
}

.exSwiperSlide01 {
	box-sizing: border-box;
	background-color: #ececec;
	padding: 15px;
}
.exSwiperSlide01 img {
	width: 100%;
	height: auto;
}

.exContSwiperWrap01 {
	margin: 90px auto 90px auto;
}

/*-----------------------*/

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
}

/*-----------------------*/

.exContSnsWrap01 {
	display: flex;
	justify-content: center;
	gap: 0px 28px;
	margin: 90px auto;
}
.exContSnsWrap01 li {
	width: 40px;
}
.exContSnsWrap01 li img {
	width: 100%;
	height: auto;
}
.exContSnsWrap01 li a:hover {
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
	transition-duration: 0.3s;
}

.detailBottomBlock01.backLink02 {
	padding-bottom: 20px;
}

/*-----------------------*/

.exFlex04 {
	display: flex;
	justify-content: space-between;
}
.exFlex04 .flexBox01 {
	width: 560px;
}
.exContDl03 {
	display: flex;
}
.exContDl03 dt {
	font-size: 16px;
	line-height: 1.25em;
	font-weight: bold;
	white-space: nowrap;
	width: 80px;
}
.exContDl03 dd {
	font-size: 14px;
	line-height: 1.4em;
}
.exContDl03 dd p {
	margin-bottom: 10px;
}











@media screen and (max-width:750px) {

	.detailTit01.colBlack01 {
		color: #181000;
	}
	.exImg01 {
		margin-bottom: 30px;
	}

	.detailContBox01 {
		text-align: left;
	}
	.detailTit02 {
		font-size: 30px;
		line-height: 1.2em;
		margin-bottom: 12px;
	}
	.exContDl02 {
		display: flex;
		margin-top: 10px;
	}
	.exContDl02 dt {
		font-size: 14px;
		line-height: 1.25em;
		font-weight: bold;
		margin-right: 10px;
		flex-shrink: 0;
	}
    .artist .exContDl02 dt {
        width: 7em;
    }
	.exContDl02 dd {
		font-size: 13px;
		line-height: 1.5em;
	}
	.exContDl02 dd .s01 {
		margin-right: 15px;
	}

	.exFlex03 {
		display: block;
		margin: 60px auto;
	}
	.exFlex03 .flexBox01 {
		word-break: break-word;
		width: auto;
	}
	.exFlex03 .flexBox01.boxPt80 {
		padding-top: 0px;
	}

	.exFlex03 .flexBox02 {
		text-align: center;
		margin-bottom: 30px;
	}
	.exFlex03 .flexBox02 img {
		width: 124px;
		height: auto;
	}

	.exContTit01 {
		font-size: 14px;
		line-height: 1.25em;
		font-weight: bold;
		margin-bottom: 15px;
	}
	.exContText01 {
		font-size: 12px;
		line-height: 2.1em;
		font-weight: normal;
	}

	.exSwiperSlide01 {
		box-sizing: border-box;
		background-color: #ececec;
		padding: 10px;
	}
	.exSwiperSlide01 img {
		width: 100%;
		height: auto;
	}

	.exContSwiperWrap01 {
		margin: 60px auto 60px auto;
		width: 100vw;
		margin-left: -20px;
	}

	/*-----------------------*/

	.swiper-button-next,
	.swiper-button-prev {
		color: #ffffff;
		width: 26px;
		height: 26px;
		background-color: #777777;
		border-radius: 50px;
		box-sizing: border-box;
		margin-top: 0px;
		transform: translateY(-50%);
	}

	.swiper-button-prev {
		padding-right: 2px;
	}
	.swiper-button-next {
		padding-left: 2px;
	}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 15px;
	}

	/*-----------------------*/

	.exContSnsWrap01 {
		display: flex;
		justify-content: center;
		gap: 0px 20px;
		margin: 60px auto;
	}
	.exContSnsWrap01 li {
		width: 30px;
	}
	.exContSnsWrap01 li img {
		width: 100%;
		height: auto;
	}
	.exContSnsWrap01 li a:hover {
		filter: alpha(opacity=70);
		-moz-opacity:0.7;
		opacity:0.7;
		transition-duration: 0.3s;
	}

	.detailBottomBlock01.backLink02 {
		padding-bottom: 10px;
	}

	/*-----------------------*/

	.exFlex04 {
		display: block;
	}
	.exFlex04 .flexBox01 {
		width: auto;
		margin-bottom: 30px;
	}
	.exContDl03 {
		display: flex;
	}
	.exContDl03 dt {
		font-size: 12px;
		line-height: 1.25em;
		font-weight: bold;
		white-space: nowrap;
		width: 80px;
	}
	.exContDl03 dd {
		font-size: 12px;
		line-height: 1.4em;
	}
	.exContDl03 dd p {
		margin-bottom: 5px;
	}



}


/* -------------------------------------------------------------------- 
 NEWS
-------------------------------------------------------------------- */

.detailBottomBlock01.bottomBlock02 {
	margin-top: 140px;
}

/*-----------------------------*/

.detailNewsBlock01 {
	margin-bottom: 90px;
}
.detailH201 {
	font-size: 20px;
	line-height: 1.5em;
	font-weight: bold;
	margin-bottom: 5px;
}
.detailH2Wrap01 {
	margin-bottom: 20px;
}
.detailImgWrap01 {
	margin: 90px auto;
}

.detailImgWrap01 img{
	width: 100%;
}


@media screen and (max-width:750px) {

	.detailBottomBlock01.bottomBlock02 {
		margin-top: 60px;
	}

	/*-----------------------------*/

	.detailNewsBlock01 {
		margin-bottom: 30px;
	}
	.detailH201 {
		font-size: 15px;
		line-height: 1.5em;
		font-weight: bold;
		margin-bottom: 25px;
	}
	.detailH2Wrap01 {
		margin-bottom: 10px;
	}
	.detailImgWrap01 {
		margin: 30px auto;
	}

	.detailBottomBlock01.bottomBlock02.lineTop01Sp {
		border-top: 1px solid #a2a2a4;
		padding-top: 30px;
		margin-top: 60px;
	}


}

/* -------------------------------------------------------------------- 
 Overview
-------------------------------------------------------------------- */

.detailBlock01 {
	text-align: left;
}
.overviewFlex01 {
	display: flex;
	margin-bottom: 50px;
}
.overviewFlex01 .flexBox01 {
	width: 200px;
	flex-shrink: 0;
}

.overviewFlex02 {
	display: flex;
	gap: 0px 18px;
	margin: 90px auto auto;
}

.overviewBox00 {
	text-align: left;
	position: relative;
	display: block;
	border: 1px solid #000000;
	padding: 25px 22px;
	flex-grow: 1;
}

.overviewBox01 {
	text-align: left;
	position: relative;
	display: block;
	border: 1px solid #000000;
	padding: 25px 22px;
	flex-grow: 1;
}
a.overviewBox01:link {	color: #000000;	text-decoration: none;}
a.overviewBox01:visited {	color: #000000;	text-decoration: none;}
a.overviewBox01:hover {	color:#000000;	text-decoration: none;}
a.overviewBox01:active {	color:#000000;	text-decoration: none;}

.overviewBox01::after {
	content: "";
	background-image: url("../img/link_ar01.png");
	background-repeat: no-repeat;
	background-position: center center;
	width: 16px;
	height: 13px;
	position: absolute;
	top: 28px;
	right: 30px;
}

.overviewTit00 {
	font-size: 22px;
	line-height: 1.6em;
	font-weight: bold;
	margin-bottom: 10px;
}

.overviewTit01 {
	font-size: 22px;
	line-height: 1.6em;
	font-weight: bold;
	text-decoration: underline;
	margin-bottom: 10px;
}




@media screen and (max-width:750px) {

	.detailBlock01 {
		text-align: left;
	}
	.overviewFlex01 {
		display: block;
		margin-bottom: 30px;
	}
	.overviewFlex01 .flexBox01 {
		width: auto;
		margin-bottom: 10px;
	}

	.overviewFlex02 {
		display: block;
		margin: 60px auto auto;
	}
	.overviewBox01 {
		text-align: left;
		position: relative;
		display: block;
		border: 1px solid #000000;
		padding: 16px 18px;
		margin-top: 17px;
	}
	a.overviewBox01:link {	color: #000000;	text-decoration: none;}
	a.overviewBox01:visited {	color: #000000;	text-decoration: none;}
	a.overviewBox01:hover {	color:#000000;	text-decoration: none;}
	a.overviewBox01:active {	color:#000000;	text-decoration: none;}

	.overviewBox01::after {
		content: "";
		background-image: url("../img/link_ar01.png");
		background-repeat: no-repeat;
		background-position: center center;
		width: 16px;
		height: 13px;
		position: absolute;
		top: 20px;
		right: 20px;
	}

	.overviewTit00 {
		font-size: 15px;
		line-height: 1.6em;
		font-weight: bold;
		text-decoration: underline;
		margin-bottom: 10px;
	}
	
	.overviewTit01 {
		font-size: 15px;
		line-height: 1.6em;
		font-weight: bold;
		text-decoration: underline;
		margin-bottom: 10px;
	}



}


/* -------------------------------------------------------------------- 
 access
-------------------------------------------------------------------- */

.text14_21_n {
	font-size: 14px;
	line-height: 2.1em;
}
.detailMb25 {
	margin-bottom: 25px !important;
}

.accessMap01 {
	margin-top: 40px;
}
.topMap01.accessMap01 iframe {
	width: 100%;
	height: 556px;
}
.detailLineBox01 {
	border-top: 1px solid #ccd3d5;
	margin-bottom: 100px;
}

.detailBtn01 {
	text-align: center;
	margin-top: 25px;
}
.detailBtn01 a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
	width: 334px;
	height: 50px;
	border: 1px solid #000000;
	border-radius: 100px;
	margin: auto;
	font-size: 14px;
	line-height: 1.3em;
	font-weight: bold;
}
.detailBtn01 a:link {	color: #000000;	text-decoration: underline;}
.detailBtn01 a:visited {	color: #000000;	text-decoration: underline;}
.detailBtn01 a:hover {	color:#000000;	text-decoration: underline;}
.detailBtn01 a:active {	color:#000000;	text-decoration: underline;}

.detailBtn01 a::after {
	content: "";
	background-image: url("../img/link_ar01.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px auto;
	width: 16px;
	height: 13px;
	position: absolute;
	right: 68px;
	top: 50%;
	transform: translateY(-50%);
}




@media screen and (max-width:750px) {

	.text14_21_n {
		font-size: 13px;
		line-height: 2.1em;
	}
	.detailMb25 {
		margin-bottom: 20px !important;
	}

	.accessMap01 {
		margin-top: 40px;
	}
	.topMap01.accessMap01 iframe {
		width: 100%;
		height: 180px;
	}
	.detailLineBox01 {
		border-top: 1px solid #ccd3d5;
		margin-bottom: 50px;
	}

	.detailBtn01 {
		text-align: center;
		margin-top: 25px;
	}
	.detailBtn01 a {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
		width: 295px;
		height: 40px;
		border: 1px solid #000000;
		border-radius: 100px;
		margin: auto;
		font-size: 12px;
		line-height: 1.3em;
		font-weight: bold;
	}
	.detailBtn01 a:link {	color: #000000;	text-decoration: underline;}
	.detailBtn01 a:visited {	color: #000000;	text-decoration: underline;}
	.detailBtn01 a:hover {	color:#000000;	text-decoration: underline;}
	.detailBtn01 a:active {	color:#000000;	text-decoration: underline;}

	.detailBtn01 a::after {
		content: "";
		background-image: url("../img/link_ar01.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 16px auto;
		width: 16px;
		height: 13px;
		position: absolute;
		right: 68px;
		top: 50%;
		transform: translateY(-50%);
	}



}


/* -------------------------------------------------------------------- 
 partners
-------------------------------------------------------------------- */

.partnersFlex01 {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 20px;
}
.partnersFlex01 li {
	width: 334px;
}

.partnersFlex01 a:hover {
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
	transition-duration: 0.3s;
}



@media screen and (max-width:750px) {

	.partnersFlex01 {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 10px 0px;
	}
	.partnersFlex01 li {
		width: 48.5%;
	}





}


/* -------------------------------------------------------------------- 
 Exective producer
-------------------------------------------------------------------- */

.contBlockBase03 {
	text-align: left;
	padding-top: 100px;
}



@media screen and (max-width:750px) {

	.contBlockBase03 {
		text-align: left;
		padding: 35px 20px 0px;
	}


}

/* -------------------------------------------------------------------- 
 
-------------------------------------------------------------------- */

.bnrexpo{
	width: 12em;
	margin-bottom: 0.8em;
}

@media screen and (max-width:750px) {

.bnrexpo{
	width: 22.5%;
	margin-bottom: 0.8em;
}

}


/* -------------------------------------------------------------------- 
 
-------------------------------------------------------------------- */



@media screen and (max-width:750px) {



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