@charset "utf-8";

:root{
  --nav-height: 60px;
  --width-item: 570px;
}

*, *.before, *.after{box-sizing: border-box;}

body {
	font-family: Font Awesome 5 Free, Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-color: #fffffe;
	color: #222222;
	margin: 0;
	background-position: top 1000px center;
	background-image: url("../img/studio/blue_print.jpg");
	background-repeat: no-repeat;
	font-size: 14px;
}
h1, h2, h3, h4{margin: 1px;}
h1 {font-size: 24px;}
h2 {font-size: 22px;}
h3 {font-size: 1.3rem;}

.list-inline {margin: 1em;}
li {	list-style-type: none;}
a,a:hover,a:active {text-decoration: none;}
a:active i{color:#fffffe}
small {	margin: 0 1em;}
.text-left{text-align: left;}
.text-center{text-align: center;}
.text-right{text-align: right;}

main{
	margin: var(--nav-height) 0 0 0;
	min-height: 3400px;
}
.vessel{
	width:1280px;
	margin: 0 auto;
}

ul, menu, dir {
	display: block;
	list-style-type: disc;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px;
	-webkit-padding-start: 2em;
}

/* contents message */
.message{
	max-width:1140px;
	margin: 0 auto 32px auto;
	padding: 24px;
	font-size: 18px;
	background-color: rgba(255,255,255,0.8);
}
.message ul{margin: 0;padding: 0;}

/* footer */
footer {
	margin-top: 60px;
	padding: 24px 0 0 0;
	background-color: #333333;
	color: #eeeeee;
}
.grid-footer{
	display:grid;
	grid-template-columns: 568px 1fr 1fr;
	gap: 16px;
}	
footer a {color: #fefefe;}
footer a:hover {color: #dcdcdc;}
footer li {font-size: 1em;}
footer p {font-size: 1em;margin: 0;padding:1em;}
footer .fa {margin-right: 1em;}
footer .sitemap li {line-height: 2.4em;}

/* 2023-01 */
.studio-contents {
  margin: 0;
  padding: 0;
}
.studio-blue-print {
  width: 100%;
  opacity: 0.3;
}
.sitemap i {
  width: 32px;
  margin: 0 12px 0 0;
  padding: 0;
  text-align: center;
}

/* Page Top */
.moveTop {
	position: absolute;
	right:24px;
	margin-top: 60px;
}
#pagetop-btn{
	display: block;
	width:48px;
	height:48px;
	padding: 0px 9px 0px 9px;
	margin: -24px 24px 0 0;
	color:#eee;
	background-color: red;
	border-radius: 50%;
	text-align: center;
}

/* nav normal */
nav{
	position: fixed;
	top:0;
	left: 0;
	height:60px;
	padding: 0 16px;
	width:100%;
	background-color: #fffffe;
	display: grid;
	align-items: center;
	border-bottom: solid 2px #111;
	z-index: 999;
}
.nav-logo{width:100%;}
.sns{
	display: grid;
	grid-template-columns: repeat(3, 64px);
	justify-items: stretch;
}
.item-text ul{
	margin: 0;
	padding: 0 0 0 1em;
}

@media screen and (min-width: 1200px) {
	.smart{display: none;}
	/* body{width:calc(100svw - 16px);} */
	body{width:100%;}
	nav{
		grid-template-columns: 262px 1fr;
	}
	.nav-items{
		display: grid;
		grid-template-columns: repeat(8, 88px);
		grid-template-rows: 60px;
		white-space: nowrap;
		justify-content: end;
		align-items: center;
		z-index: 999;
	}
	.nav-item{
		width:100%;
		text-align: center;
	}
	.nav-item a, .nav-item a:visited{color: #888;}
	.nav-items a, .nav-items a:visited{color: #888;}
	.nav-logo img{height:28px;}

	.jumbotron {
		height: 735px;
		width:100%;
		margin: var(--nav-height) 0 32px 0;
		padding: 16px 0;
		color: #fefefe;
		background-image: url("../img/studio/jumbotron.jpg");
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
	/* .jumbotron h1{font-size: 2em;} */
	.jumbotron small{font-style: italic;}
	.jumbotron p {font-size: 1em;}

	/* contents grid */
	.contents-grid{
		width:calc(var(--width-item) * 2);
		margin: 32px auto 32px auto;
	}
	.contents-grid::before, .contents-grid::after{display: none !important;}

	.booth{
		margin: 96px auto;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 360px;
		grid-template-areas: "l r";
	}
	.booth .item-img{
		filter:drop-shadow(-15px 15px rgba(65, 51, 22, 0.7));
		position: relative;
		width:100%;
		background-color: #bcbcbc;grid-area: l;
	}
	.booth-reverse{
		margin: 96px auto;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		/* grid-template-rows: 420px; */
		grid-template-areas: "r l";
	}
	.booth-reverse .item-img{
		filter:drop-shadow(15px 15px rgba(65, 51, 22, 0.7));
		z-index: 888;
	}
	.item-text{
		padding:1rem;
		color:#fffffe;
		background-color: rgba(65, 51, 22, 0.7);/*#413316;*/
		width:100%;
		max-height:440px;
		grid-area: r;
	}
	.item-img img{width:100%;height: 100%;z-index: 888;}
	
	.grid-footer{
		grid-template-columns: 568px, 1fr, 1fr;
	}
}

@media screen and (max-width: 1199px) {
	.pc{display: none;}

	body{width:100%;}
	h2{font-size: 20px;}
	nav{
		width:100%;
		grid-template-columns: 1fr 96px;
	}
	.nav-logo img{height:20px;}
	.top-image{
		display: block;
		width:100%;
		overflow: hidden;
	}
	.top-image img{position: relative;width:100%;}
	.vessel{
		width:100%;
		margin: 0 auto;
		padding: 0 1rem;
	}
	.booth, .booth-reverse{
		width:100%;
		max-width:570px;
		margin: 96px auto;
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		grid-template-areas: "l" "r";
		gap:0;
	}
	.item-img{
		width:100%;
		max-height:360px;
		filter:drop-shadow(-15px -15px rgba(65, 51, 22, 0.7));
	}
	.item-text{
		width:100%;
		padding:1rem 0.5rem;
		color:#fffffe;
		background-color: rgba(65, 51, 22, 0.7);/*#413316;*/
		width:100%;
		grid-area: r;
	}
	.item-img{width:100%;grid-area: l;}
	.item-img img{width:100%;max-height: 360px;}
	/* Page Top */
	.moveTop {
		position: absolute;
		right:24px;
		margin-top: 0;
	}
	.grid-footer{
		grid-template-columns: 1fr;
	}
	

/* NAV */

body {
	margin: 0;
	font-family: "Futura", Helvetica, sans-serif;
  }
  
  /* Navbar & Navmenu color */
  :root {
	--background-navbar: rgba(55, 55, 55, 0.98);
  }
  
  /* Nav items */
  .menu {
	list-style: none;
	position: absolute;
	width: 100%;
	height: auto;
	top: 0;
	right:0;
	margin-top: 52px;
	padding: 0 0 10px 0;
	clear: both;
	background: var(--background-navbar);
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
	transform: scale(1, 0);
	transform-origin: top;
  }
  
  /* Hamburger menu button */
  .menu-btn:checked ~ .menu {
	transform: scale(1, 1);
	transform-origin: top;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  /* Hamburger menbu text */
  .menu a {
	display:block;
	padding:8px 0 8px 8px;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 2px;
	font-size: 16px;
	text-transform: capitalize;
	color: #ddd;
	opacity: 0;
	transition: 0.5s;
  }
  
  .menu li {
	border-top: 1px solid rgb(75, 75, 75);
	padding: 8px 0;
	margin: 0 32px;
	opacity: 0;
	transition: 0.5s;
  }
  
  .menu-btn:checked ~ .menu a,
  .menu-btn:checked ~ .menu li {
	opacity: 1;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }
  
  .menu-btn {
	display: none;
  }
  
  .menu-icon {
	display: inline-block;
	position: relative;
	cursor: pointer;
	padding: 24px 14px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	color: #333333;
  }
  
  .navicon {
	background: #888;
	display: block;
	height: 3px;
	width: 26px;
	position: relative;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  .navicon:before,
  .navicon:after {
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	background: #333333;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  .navicon:before {
	top: 9px;
  }
  
  .navicon:after {
	bottom: 9px;
  }
  
  /* Hamburger Menu Animation Start */
  .menu-btn:checked ~ .menu-icon .navicon:before {
	transform: rotate(-45deg);
  }
  
  .menu-btn:checked ~ .menu-icon .navicon:after {
	transform: rotate(45deg);
  }
  
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
	top: 0;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
	bottom: 0;
  }
  
  .menu-btn:checked ~ .menu-icon .navicon {
	background: rgba(0, 0, 0, 0);
	transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  /* Hamburger Menu Animation End */
  
  /* Navbar Container */
  .navtext-container {
	width: 100%;
	height: 52px;
	position: absolute;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  /* Navbar Text */
  /* .navtext {
	position: absolute;
	text-transform: uppercase;
	color: #ddd;
	letter-spacing: 4px;
	font-size: 20px;
  } */


}