/*展覧会タイトル*/
.ex_title{
   position: absolute;
   top: 0%;
   left: 50%;
   transform: translateX(-50%);
}


.topimg{
	width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 20px;
}


/*グローバルメニュー*/

.nav{
    list-style: none;
    display: flex;
    padding: 0;
	margin-left: auto;}

.nav li{
    display: flex;
    margin: 0;
	font-size: 12px;
	font-weight: bold;
	border-left:1.5px solid rgb(0,30,170);
	border-right:1.5px solid rgb(0,30,170);
    text-align:center;
    width:100%;
    letter-spacing: 1px;
}
	
.nav a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0;
}

.nav li+li{
	border-left: 0;
	border-right:1.5px solid rgb(0,30,170);
}


@media screen and (max-width: 760px){
.nav {
	flex-wrap: wrap;
	}

.nav li {
	width: calc(100% / 3); 
	margin-bottom: 10px;	
	border-left:1px solid rgb(0,30,170);
	border-right:1px solid rgb(0,30,170);
	}
	
.nav li+li{
	border-left: 0;
	border-right:1px solid rgb(0,30,170);
}
	
.nav li:nth-of-type(4n) {
border-left: 1px solid rgb(0, 30, 170);
}

}


/*情報*/
* {
  box-sizing: border-box;
}

dl {
  display: grid;
  grid-template-columns: auto 1fr;
  width: max-content;
  max-width: 100%;
  line-height: 2;
}

dt {
  padding-left: 0pt;
  text-align-last: justify;
}

.access_img{  
	border: 1px solid #5D5D5D;
	margin-bottom: 10px;
}

p.indent{
  text-indent: -3em;
  padding-left:3em;
}


p.list{
	padding-left: 7em;
	margin-bottom: -1em;
	margin-top: -1em;
}

p.list_e{
	padding-left: 3em;
	margin-bottom: -1em;
	margin-top: -1em;
}



/*協賛者一覧*/

.sponsor{
	list-style: none;
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
}

.sponsor li{
	width: 24%;
	margin-bottom: 10px;
}

.sponsor::after, .sponsor::before{
	width: 24%;
	content: "";
	display: block;
}

.sponsor::before{
	order: 1;
}

@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/
.sponsor li{
	width: 50%;
	margin-bottom: 10px;}

.sponsor::after, .sponsor::before{
	width: 50%;
	content: "";
	display: block;}
}



/*文章*/




#contents p.pc-words {

}
#contents p.sp-words {
	display: none;

}
 
@media only screen and (max-width : 640px){
#contents p.pc-image,
#contents p.pc-words {
	display: none;
}
#contents p.sp-image,
#contents p.sp-words {
	display: block;
}
}