@charset "UTF-8";
/* CSS Document */
* {
    box-sizing: border-box;
}
body {
    background-color: #000;
    color: #fff;
}
.inner {
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: 1080px;
}
/* ヘッダー　*/
#head_logo {
    text-align: center;
    margin: 20px 0;
}
#head_logo h1 {
    font-size: 1.3rem;
}
#head_logo img {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    width: 600px;
}

#header-image {
   display: block;
    margin: 0 auto;
    width: 100%;
    height: 300px;
    overflow: hidden;
    
    
}

/*レストラン*/
#restaurant #header-image {
    background: url("../img/restaurant/restaurant_top.jpg");
    background-size: cover;
    background-position:center;
}
/*大型施設*/
#large-facility #header-image {
    background: url("../img/large-facility/large-facility_top.jpg");
    background-size: cover;
    background-position:center;
}

/*家具トップ*/
#shopping-mall #header-image {
    background: url("../img/shopping-mall/shopping-mall_top.jpg");
    background-size: cover;
    background-position:center;
}

/*家具トップ*/
#furniture #header-image {
    background: url("../img/furniture/furniture_top.jpg");
    background-size: cover;
    background-position:center;
}
/*展覧会*/
#exhibition #header-image {
    background: url("../img/exhibition/exhibition_top.jpg");
    background-size: cover;
    background-position:center;
}
/*海外*/
#overseas #header-image {
    background: url("../img/overseas/overseas_top.jpg");
    background-size: cover;
    background-position:center;
}




/*グローバルナビ*/
nav.spNav { display: none; }
#g_nav ul {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
#g_nav ul li {
     text-align: left;
    position: relative;
    width: 18%;
    
}
#g_nav ul li a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    margin: 0 10px;
    text-align: left;
}
#g_nav ul li a:hover {
    color: #84D8FF;
}

#g_nav ul li ul {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 0;
	z-index: 99999;
	display: block;
}

#g_nav ul li ul li {
	width: 100%;
	display: block;
	padding: 0;
	overflow: hidden;
	max-height: 0;
	transition: 0.3s;
	opacity: 0;
}

#g_nav ul li:hover ul li {
	max-height: 6em;
	overflow:visible; 
	background: rgba(0,0,0,0.70);
	
	border-top: 1px solid rgba(255,255,255,0.50);
	opacity: 1;
    
   
}
#g_nav ul li ul li a {
    padding: 5px 0 ;
    display: inline-block;
    font-size: 0.9em;
}


/* 共通メインコンテンツ*/
main {
    margin:70px 0 100px;
    display: block;
}
#header-image h1 {
    max-width: 1080px;
    margin: auto;
    padding: 30px 5%;
    font-size: 2rem;
    
    line-height: 1.2;
    font-weight: normal;
}
#header-image h1 span {
    font-size: 3rem;
    font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-weight: bold;
}
.text h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/*フッター*/
footer {
    text-align: center;
    padding: 10px;
}


/*スマホ*/
@media screen and (max-width:600px) {
/*ヘッダー*/
#head_logo h1 {
    font-size: 1.1rem;
}
    
/*ナビメニューのスタイルを指定*/
	nav.spNav {
		z-index: 2; /*重ね順を変更*/
		background: #fff;/*背景を白にする*/
		color: #000; /*文字色を黒にする*/
		text-align: center; /*テキストを中央揃え*/
		width: 100%; /*全幅表示*/
		transition: all 0.6s; /*アニメーションの時間を指定*/
		display: block;
		max-height: 0;
		overflow: hidden;
        
        margin-bottom: 20px;
	}

	nav.spNav ul{
		background: #fff; 
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}

	nav.spNav ul li{
		list-style-type: none;
		padding: 0;
		width: 100%;
		border-top: 1px solid #bbb;
	}
	nav.spNav ul li:last-child {
		border-bottom: 1px solid #bbb;
	}

	nav.spNav ul li a {
		display: block;
		color: #000;
		text-decoration: none;
		padding: 10px 0;
	}
	nav.spNav ul li span.directory {
		display: block;
		background-color: #4970B7;
		color: #fff;
	}
	nav.spNav ul li ul {
		width: 90%;
		margin: 10px auto 20px;
		border-left: solid 1px #bbb;
		border-right: solid 1px #bbb;
	}
	
	
	header .inner {
		position: relative;
	}
	/*トグルボタンが押されたときに付与するクラス*/
	nav.spNav.active{
		max-height: 750px;
	}

	/*トグルボタンのスタイルを指定*/
	.Toggle {
		display: block;
		width: 42px;
		height: 42px;
		cursor: pointer;
		z-index: 3;
		border: 1px solid #444;
		background-color:  #5E5E5E;
		border-radius: 5px;
		position: absolute;
		margin: 10px;
		
		right: 0;
		top: 50px;
	}

	.Toggle span {
		display: block;
		position: absolute;
		width: 30px;
		border-bottom: solid 3px #fff;
		-webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
		-moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
		transition: .35s ease-in-out;			/*変化の速度を指定*/
		left: 6px;
	}

	.Toggle span:nth-child(1) {
		top: 9px;
	}

	.Toggle span:nth-child(2) {
		top: 18px;
	}

	.Toggle span:nth-child(3) {
		top: 27px;
	}

	/* 最初のspanをマイナス45度に */
	.Toggle.active span:nth-child(1) {
		top: 18px;
		left: 6px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	/* 2番目と3番目のspanを45度に */
	.Toggle.active span:nth-child(2),
	.Toggle.active span:nth-child(3) {
		top: 18px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	    
    
    
/* 共通メインコンテンツ*/
main {
    margin:50px 0 60px;
    display: block;
}    
   
#header-image,
#top-slide {
   display: block;
    margin: 0 auto;
   
}
#header-image img,
#top-slide img { 
    display: block;
    overflow: hidden;
    width: 600px;
}  
   
/* 作品ページ　*/

    .works [class^="col-"]{
        width: 45%;
        margin-bottom: 20px;
    }
}


