@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');


/************************************************** reset */
*{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
/*	font-size: 100%; */
	vertical-align: baseline;
	background: transparent;
}
input,select{
	vertical-align: middle;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/************************************************** height_adjust */
.haj{
	display: block;
	min-height: 0;
}
.haj:after{
	content: " ";
	display: block;
	visibility: hidden;
	clear: both;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
}
* html .haj{
	display: inline-block;
}
/* exclude ie mac \*/
* html .haj{
	height: 1%;
}


/************************************************** font-size等 */

html{ 
	font-size: 62.5%;
}
body{
	font-family: 'メイリオ','Meiryo',verdana,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',Osaka,'MS Pゴシック','MS PGothic',Sans-Serif;
	font-size: 10px; /* IE8対応 */
	font-size: 1.0rem;  
	line-height: 1.7rem;
	-webkit-text-size-adjust: 100%;
}

.min{
	font-family: 'ヒラギノ明朝 ProN W6', 'HiraMinProN-W6', 'HG明朝E', 'MS P明朝', 'MS PMincho', 'MS 明朝', serif;
}
.got{
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'MS Pゴシック', 'MS PGothic', sans-serif;
}







/************************************************* common */

body{
	padding: 10px;
	background: #000;
	color: #bbb;
	line-height: 1.7;
	font-size: 1.5rem;
	font-family: 'Questrial', sans-serif;
}

h1 a{
	margin: 0 auto;
	width: 250px;
	height: 78px;
	background: url(/img/title.png) no-repeat;
	background-size: contain;
	display: block;
}
h1 span{
	display: none;
}

h2{
	padding: 0 0 0 10px;
	border-bottom: 1px #bbb solid;
	line-height: 1.2em;
	font-size: 3rem;
	font-weight: normal;
}
h3{
	padding: 30px 0 0 10px;
	border-bottom: 1px #333 solid;
	font-size: 2rem;
	font-weight: normal;
}
h4{
	padding: 20px 0 0 10px;
	border-bottom: 1px #222 solid;
}

.contents{
	margin-top: 20px;
	padding: 0 10px;
}
ul.contents{
	padding-left: 40px;
	list-style: disc;
}
p{
	margin-top: 15px;
}
img{
	max-width: 100%;
	max-height: 100%;
}

a{
	color: #ddd;
	text-decoration: none;
}
a:hover{
	color: #fff;
	text-decoration: underline;
}
.l200 a{
	color: #467bbd;
	text-decoration: underline;
}
.l200 a:hover{
	color: #81bd46;
}

#credit{
	text-align: center;
}
#welcome span{
	display: none;
}
#navisw{
	display: none;
}


/************************************************* base */

#header{
	text-align: center;
}

#contents{
	margin: 20px auto 0 auto;
	width: 100%;
	max-width: 1200px;
	display: flex;
}
	#main{
		width: -webkit-calc(100% - 250px);
		width: calc(100% - 250px);
	}
		#main ul.list{
			margin-top: 20px;
			padding: 10px;
		}
	#navi{
		padding-left: 20px;
		width: 250px;
		height: 100%;
		position: -webkit-sticky;
		position: sticky;
		top: 10px;
	}
		#navi ul{
			margin-top: 20px;
			padding: 10px;
			font-size: 1.8rem;
			line-height: 2em;
		}
#footer{
	margin: 20px auto 0 auto;
	padding: 20px 10px;
	width: 100%;
	max-width: 1200px;
	border-top: 1px #bbb solid;
	font-size: 1.6rem;
	text-align: center;
	/* プリント用のロード */
	background: url(/img/title-print.png);
	background-size: 1px 1px;
}
#footer br{
	display: none;
}


/************************************************* to top */

#totop{
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
}
#totop div{
	margin: 0 auto;
	padding: 0 10px 10px 0;
	width: 100%;
	max-width: 1200px;
	text-align: right;
}
#totop a{
	padding: 3px 8px 2px 8px;
	background: #000;
	font-size: 2rem;
	font-weight: bold;
	text-decoration: none;
	border: 1px #aaa solid;
	border-radius: 3px; 
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
#totop a:hover{
	background: #aaa;
	color: #000;
}


/************************************************* home */

#home #navi h2{
	display: none;
}
#home #navi ul{
	margin-top: 0;
}

#contents ul.home li{
	padding: 5px;
	width: 50%;
	display: inline-block;
}
	#contents ul.home li img{
		vertical-align: top;
	}

#home #footer{
	border-top: none;
}


/************************************************* commercial_work */

.list2{
	margin-top: 30px;
	padding: 0 10px 0 20px;
}

.list2 li{
	
}

/************************************************* photo list */

.list li{
	padding: 5px;
	width: 25%;
	height: 240px;
	display: inline-block;
	text-align: center;
	vertical-align: top;
}
	.list li img{
		max-width: 200px;
		max-height: 200px;
	}

@media screen and (max-width:1100px){
	.list li{ width: 33.3333%; }
}
@media screen and (max-width:850px){
	.list li{ width: 50%; }
}
@media screen and (max-width:768px){
	.list li{ width: 33.3333%; }
}
@media screen and (max-width:650px){
	.list li{ width: 50%; }
}
/* 中央に寄せる */
@media screen and (max-width:413px){
	.list li{
		margin: 0 auto;
		width: 100%;
		height: auto;
		display: block;
		text-align: center;
	}
}


/************************************************* exhibitions */

.date{
	padding: 5px 0 0 10px;
	color: #777;
}

.images{
	text-align: center;
}
.images img{
	margin: 100px auto 0 auto;
	display: block;
	text-align: center;
}


/************************************************* upcoming_events */

.upcomeeve{
	margin: 100px auto 0 auto;
	max-width: 100%;
	text-align: center;
}
.upcomeeve img{
	width: 100%;
	max-width: 600px !important;
	max-height: auto !important;
}

/************************************************* list */

/* 左100px */
.l120{
	margin-top: 20px;
}
.l120 li{
	margin-top: 15px;
	line-height: 1.3em;
	display: flex;
}
.l120 li div:nth-of-type(1){
	padding-right: 20px;
	width: 120px;
	height: 100%;
	text-align: right;
}
.l120 li div:nth-of-type(2){
	width: -webkit-calc(100% - 120px);
	width: calc(100% - 120px);
}

/* 左200px */
.l200{
	margin-top: 20px;
}
.l200 li{
	margin-top: 15px;
	line-height: 1.3em;
	display: flex;
}
.l200 li div:nth-of-type(1){
	padding-right: 20px;
	width: 200px;
	height: 100%;
	text-align: right;
}
.l200 li div:nth-of-type(2){
	width: -webkit-calc(100% - 200px);
	width: calc(100% - 200px);
}
@media screen and (max-width:500px){
	.l200 li{
		display: block;
	}
	.l200 li div:nth-of-type(1){
		margin-top: 15px;
		padding-right: 0;
		width: 100%;
		text-align: left;
	}
	.l200 li div:nth-of-type(2){
		padding-left: 30px;
		width: 100%;
	}
}

/* 上下二段 */
.updn{
	margin-top: 20px;
	padding: 0 5px 0 15px;
}
.updn li{
	margin-top: 15px;
	line-height: 1.3em;
}
.updn li div:nth-of-type(1){
	width: 100%;
}
.updn li div:nth-of-type(2){
	padding-left: 20px;
	width: 100%;
}






/************************************************* side */

/* iPad 10.5 以下でナビは開閉にする */
@media screen and (max-width:834px){
	#main{
		width: 100%;
	}
	#navi{
		padding: 30px 10px 10px 10px;
		background: #121212;
		/*
		border-bottom-left-radius: 5px;
		-webkit-border-bottom-left-radius: 5px;
		-moz-border-bottom-left-radius: 5px;
		*/
		box-shadow: 0px 0px 5px #fff;  
		-moz-box-shadow: 0px 0px 5px #fff;  
		-webkit-box-shadow: 0px 0px 5px #fff;
		position: fixed;
		top: 0;
		right: 0;
		display: none;
	}
	#navisw{
		width: 50px;
		height: 43px;
		background: url(/img/navi-o.png) no-repeat;
		background-size: contain;
		position: fixed;
		top: 5px;
		right: 5px;
		cursor: pointer;
		display: block;

		opacity:0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha(opacity=70)";
		-moz-opacity:0.7;
		-khtml-opacity: 0.7; 
	}
	#navisw span{
		display: none;
	}
}

/* iPhone plus 未満 */
@media screen and (max-width:413px){
	/* クレジットを改行する */
	#footer br{
		display: block;
	}
	/* タイトルを縮小する ナビ開閉との被り防止 */
	h1 a{
		width: 200px;
		height: 58px;
	}
}



/************************************************* print  */

@media print{
	body,h1,h2,h3,h4,div,a,#footer{
		color: #000;
		background: #fff;
	}
	#contents{
		width: 100%;
		display: block;
	}
		#main{
			width: 100%;
		}
		#navi{
			display: none;
		}
	h1 a{
		background: url(/img/title-print.png) no-repeat;
		background-size: contain;
	}
	#footer{
		border-top: 1px #bbb solid;
	}
}

