@charset "utf-8";

/*フォントスタイル*/

html{
	font-size: 62.5%;
}

body{
	font-size: 1.4rem;
	font-family: Meiryo, sans-serif;
}

h1{
	font-size: rem;
	font-weight: normal;
}

/*リンクスタイル*/
a{
	text-decoration: none;
	color: black;
	/*font-style: italic;*/
}

/*全体レイアウト*/

li{
	list-style: none;
}

body{
	text-align: center;
}

/*タイトル*/
header{
	margin: 8% 0;
}

img{
	width: 100%;
	height: 100%;
}



/*ナビゲーション*/

nav{
	width: 100%;
	margin: 8% 0;
	background: black;
	padding: 1% 0;
}

nav a{
	color: white;
	display:block;
	transition: 1.0s;
}

nav a:hover{
	color: lightblue;
}

nav ul li{
	margin: auto -0.5px;
	width: 100%;
	border-left: solid 0.5px white;
	border-right: solid 0.5px white;
}

nav ul{
	display: flex;
	flex-wrap: nowrap;
	margin: auto;
	width: 75%;
	justify-content: space-around;
	padding: 0;

}




/*各セクション*/
section{
	width: 100%;
	margin-top: 15%;
}

h2{
font-weight: normal;
}

#artImages{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: auto;
	width: 70%;
}

#artImages img{
	width: 100px;
	height: 100px;
	background: blue;
	margin: 2% auto;
	object-fit: cover;
}

.object-fit-img{
	object-fit: cover;
	font-family: 'object-fit: contain;';
}

/*フッター*/
footer{
	margin-top: 10%;
	margin-bottom: 5%;
}

/*ページTOPボタン*/
#pageTop{
	position: fixed;
	top: 85%;
	left: 80%;

}

#pageTop a{

	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	padding: auto 10% ;
	background: black;
	color: white;
	transition: 1.0s;
}

/*ページTOPマウスオーバー時*/
#pageTop a:hover{
	transition: 1.0s;
}

/*モーダルウィンドウ*/
#liteWindow{
	width:50%;
	margin:1.5em auto 0;
	padding:10px 20px;
	border:2px solid #aaa;
	background:#fff;
	z-index:2;
}

.overlay{
	z-index:1;
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:120%;
	background-color:rgba(0,0,0,0.75);
}

#modal01,
#modal02,
#modal03{
	display: none;
	position: relative;
	width: 50%;
}


/*snsアイコン*/
#sns img{
	margin-top: 5%;
	width: 18%;
}

@media screen and (min-width: 720px) {
   /* 表示領域が800px以上の場合に適用するスタイル */
   img{
		width: 50%;
		height: 50%;
	}

	#sns img{
		margin-top: 3%;
		width: 100px;
	}

	section{
		margin-top: 10%;
	}

	footer{
		margin-top: 5%;
		margin-bottom: 3%;
	}



}