@charset "utf-8";
:root {
	--mainTitle: #1EA135;
	--h2border: #83d691;
	--report01: #000066;
	--report02: #006699;
	--report03: #215861;
	--textLink: #0070C0;
	--marker: #f9ff45;
	/*テキストエリアの色指定*/
	--border-color-1:#eaeaea;/*背景ストライプ*/
	--border-color-2:#ddd; /*上下枠線*/
	--border-color-3:#1c3c66;
	/*各ボタン色設定*/
	--srBtn:#1ad9d2;
	--srBtnBorder:#16bab4;
	--inquiryBtn:#72BFD3;
	--inquiryBtnBorder:#66ABBD;
}
.sp{
	display: none;
}
a{
	display: block;
	text-decoration: none;
}
a.textLink{
	text-decoration: underline;
	color: var(--textLink);
	padding: 15px 0;
}
main a[target="_blank"] :is(p,h4,span)::after{
	font-family: "Font Awesome 5 Free";
	content:"\f35d";
	font-weight: 900;
	font-size: 90%;
	color: currentColor;
	padding-left: 5px;
}
nav{
	margin: 0 auto 20px;
	width: min(95% ,1200px);
}
nav ul{
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}
nav li a{
	text-decoration: underline;
	padding: 10px 20px;
	width: 225px;
	border-radius: 5px;
	font-weight: 550;
	text-align: center;
}
.otherLinkBtn{
	background: #ddd;
}
.report01{
	background: var(--report01);
	color: #fff;
}
.report02{
	background: var(--report02);
	color: #fff;
}
.report03{
	background: var(--report03);
	color: #fff;
}
p:is(.report01,.report02,.report03){
	padding: 10px 20px;
	width: 225px;
	border-radius: 5px;
	font-weight: 550;
	text-align: center;
}
:is(.report01,.report02,.report03) a{
	color: #fff;
	text-decoration: underline;
}
.listArea a.titleLink h4::after{
	font-family: "Font Awesome 5 Free";
	content:"\f0c1";
	font-weight: 900;
	font-size: 90%;
	color: currentColor;
	padding-left: 5px;
}
.anchorLink li a p::before{
	font-family: "Font Awesome 5 Free";
	content:"\f078";
	font-weight: 900;
	font-size: 90%;
	color: currentColor;
	padding-right: 5px;
}
figure{
	width: fit-content;
}
figure :is(img,video){
	width: 100%;
}
.flexBox{
	display: flex;
}
.twoColumnFlex{
	display: flex;
	gap: 20px;
	justify-content: space-between;
}
.twoColumnFlex figure{
	width: 100%;
}
.oneColumnFlex{
	display: flex;
	gap: 20px;
	justify-content: space-between;
	flex-direction: column;
}
section:not(section.mv),ul#breadcrumb,.titleArea div{
	width: min(95% ,1100px);
	margin: 0 auto;
}
section:not(section.mv){
	margin: 50px auto;
}
.innerBox{
	width: min(100% ,960px);
	margin: 20px auto;
}
main a{
	position: relative;
	box-sizing: border-box;
}
main a::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	box-sizing: border-box;
	
}
main a:hover::before{
	opacity: 0.3;
	transition: 0.2s;
	box-sizing: inherit;
}
/*--------------font--------------*/
.fontLarge{
	font-size: clamp(18px, (100vw - 600px) * 6 / 600 + 20px, 22px);
}
.fontMedium{
	font-size: clamp(16px, (100vw - 600px) * 6 / 600 + 18px, 20px);
}
.fontSmall{
	font-size: 16px;
}
.annotation{
	font-size: 14px;
}
.fontBold{
	font-weight: 550;
}
h1.mainTitle{
	font-size: clamp(22px, (100vw - 600px) * 6 / 600 + 30px, 35px);
}
h2,h3{
	line-height: 1.3em;
}
/*--------------パンくずリスト--------------*/
.breadcrumbWrap{
	background-color: #ccccd6;
}
ul#breadcrumb{
	padding: 10px 0;
}
/*--------------メインビュー--------------*/
section.mv{
	height: 220px;
	overflow: hidden;
	background: url(/bs/event/edix/2025/images/edix2025_image.webp) no-repeat;
	background-position: center -220px;
	background-size: 100%;
	display: flex;
	align-items: center;
}
.titleArea{
	width: 100%;
	background-color: rgba(255,255,255,0.6);
	backdrop-filter: blur(5px);
}
.titleArea div{
	padding-bottom: 20px;
}
.titleArea div img{
	width: min(100% ,400px);
}
.titleArea div span{
	width: min(100% ,550px);
}
.titleArea div span{
	display: block;
	padding: 10px;
	text-align: center;
	color: #fff;
	font-weight: 550;
	background: var(--mainTitle);
}
/*--------------ボタン--------------*/
a.btn{
	padding: 20px 5px;
	border-radius: 5px;
	text-align: center;
	line-height: 1.5em;
	box-sizing: border-box;
}
a.inquiryBtn:hover::before{
	opacity: 0.3;
	transition: 0.2s;
	border-radius: 5px;
	box-sizing: inherit;
	height: calc(100% + 8px);
}
.inquiryBtn{
	width: min(100% ,400px);
	background: var(--inquiryBtn);
	border-bottom: 8px solid var(--inquiryBtnBorder);
}
.btnArea a{
	padding: 20px 30px;
	font-weight: bold;
	width: fit-content;
	border-radius: 50px;
	margin: 0 auto;
}
.showroomBtn{
	background: var(--srBtn);
	border-bottom: 8px solid var(--srBtnBorder);
}
a.showroomBtn:hover::before{
	border-radius: 50px;
	height: calc(100% + 8px);
}
/*--------------（写真・ボタン・テキスト）エリア--------------*/
.textArea,.photoArea{
	width: 100%;
	margin: 20px auto;
}
.buttonArea{
	width: min(100% ,1100px);
	margin: 20px auto;
	padding: 20px;
	background:#daeff5;
	gap: 20px;
	align-items: center;
	justify-content: center;
}
.textArea1{
	padding: 20px;
	background:linear-gradient(-45deg,transparent 25%,var(--border-color-1) 25%,var(--border-color-1) 50%,transparent 50%,transparent 75%,var(--border-color-1) 75%,var(--border-color-1));
	background-size: 4px 4px;
	border-bottom: 4px double var(--border-color-2);
	border-top: 4px double var(--border-color-2);
	background-clip: padding-box;
}
.textArea2{
	padding: 50px 0 0;
}
.textArea2 div{
	padding: 20px 30px;
	background: none;
	border:1px solid #ccc ;
	position: relative;
	margin: 0 0 30px;
	font-size: clamp(18px, (100vw - 600px) * 6 / 600 + 25px, 30px);
}
.textArea2 div:after{
	background-color:#eee;
	border:none;
	content: '';
	position: absolute;
	top: 7px;
	left: 7px;
	width: 100%;
	height: 100%;
	z-index: -1;
}
/*--------------目次--------------*/
.tableOfContents li{
	display: flex;
	padding: 20px;
	gap: 30px;
}
.tableOfContents a{
	text-decoration: underline;
	font-weight: 550;
	color: #fff;
}
/*--------------アンカーリンク--------------*/
.anchorLink{
	padding: 20px 40px;
}
.anchorLink li a p{
	padding-left: 20px;
	text-indent: -20px;
}



.explanation{
	margin: 20px 0;
}
.figcaptionText{
	margin: 10px 0 50px;
	line-height: 1.3em;
}
:is(.explanation,.figcaptionText) a{
	width: fit-content;
	display: inline;
	font-weight: 700;
}
:is(.explanation,.figcaptionText) a p{
	display: inline;
}
.explanation p{
	margin: 10px 0 0;
}
:is(.explanation,.figcaptionText) p span{
	font-weight: 700;
}
.marker{
	background: var(--marker);
}
h4{
	line-height: 1.3em;
}
.explanation h4{
	font-weight: 700;
	color: var(--sectionTitle);
	margin: 30px 0 0;
}
.explanation a{
	width: fit-content;
}
.explanation h4 span{
	padding: 0 5px;
}

h2{
	position: relative;
	padding: 100px 20px 10px;
	border-bottom: 6px solid var(--mainTitle);
	font-size: clamp(18px, (100vw - 600px) * 6 / 600 + 25px, 35px);
}
h2:before {
	position: absolute;
	bottom: -5.5px;
	left: 0;
	width: 20%;
	height: 6px;
	content: '';
	background: var(--h2border);
}
.h3TitleArea{
	margin-top: 40px;
	align-items: center;
}
.h3TitleArea h3{
	border-left: 7px solid var(--mainTitle);
	font-size: clamp(18px, (100vw - 600px) * 6 / 600 + 20px, 25px);
	padding-left: 10px;
	flex: 1;
}
.h3TitleArea span{
	line-height: 1.5em;
	font-size: clamp(18px, (100vw - 600px) * 6 / 600 + 19px, 20px);
}
.h3TitleArea div{
	color: var(--mainTitle);
	font-weight: 700;
	font-size: clamp(18px, (100vw - 600px) * 6 / 600 + 19px, 20px);
}

p{
	line-height: 1.6em;
	letter-spacing: 0.03em;
}
.photoArea div{
	width: 10%;
}
.buttonArea a{
	align-items: center;
	justify-content: center;
}
.footerNotes{
	width: min(100%, 960px);;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin: 60px auto 0;
	padding: 20px;
	color: #666;
	font-size: 12px;
	text-align: left;
}
.footerNotes li{
	position: relative;
	margin: 0 0 10px 1em;
	padding: 0;
	line-height: 1.4;
}
.footerNotes li:last-child {
	margin-bottom: 0;
}
.footerNotes li::before {
	content: "•";
	font-size: 14px;
	margin: 0 0.5em 0 -1em;
	top: -1px;
}
/*--------------トップへ戻るボタン--------------*/
.topPage{
	position: relative;
	opacity: 0;	visibility: hidden;	
	transition: all 1s;
}
.is-active{
	display: block;
	opacity: 1;
	visibility: visible;
}
.topPage p{
	position: fixed;
	z-index: 9999999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	bottom: 20px;
	right: 20px;
	width: 100px;
	height: 100px;
	background: #357578;
	color: #fff;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 100px;
	padding-bottom: 10px;
}
.topPage p::before{
	font-family: "Font Awesome 5 Free";
	content:"\f077";
	font-weight: 900;
	font-size: 90%;
	color: currentColor;
}
.topPage p:hover{
	background: #4a878a;
	cursor : pointer;
}
@media (max-width: 900px){
	.photoArea div{
		width: 100%;
	}
	.photoArea.flexBox,.photoArea .flexBox,.twoColumnFlex,.oneColumnFlex{
		display: block;
	}
	figure{
		margin: 0 auto 20px;
		width: 100%;
	}
	figure video{
		width: 100%;
		max-height: 500px;
	}
	h2{
		padding: 10px;
	}
	.buttonArea p{
		text-align: center;
	}
	.pc{
		display: none;
	}
}

@media (max-width: 750px){
	section.mv{
		background-position: center;
	}
	.buttonArea.flexBox{
		flex-direction: column;
	}
	.btn{
		width: min(100%, 500px);
		margin: 0 auto;
	}
	.buttonArea{
		padding: 20px 10px;
	}
	.buttonArea a{
		width: 100%;
	}
	h1.mainTitle{
		text-align: center;
	}
	.titleArea div{
		margin: 0 auto;
	}
	.tableOfContents li{
		flex-direction: column;
		gap: 10px;
	}
}
@media (max-width: 500px){
	.sp{
		display: inline;
	}
	.titleArea div span{
		line-height: 1.5em;
	}
	h2{
		line-height: 1.5em;
		text-align: center;
	}
}