/* * * * * * * * * * * * * * * * * *
 smart.css
* * * * * * * * * * * * * * * * * */

/* common
--------------------------------- */

body {
	-webkit-text-size-adjust: 100%;
}

.sm { display: inline; }

#main {
	width: auto;
	padding: 10px 10px 20px;
	margin: 0;
}

/* header */
#header,
#main div.box,
ul.scheList li {
	background: rgba(255, 255, 255, 0.7);
}

.headIn {
	display: block;
	width: auto;
	padding: 10px;
}
#header h1 {
	width: 30%;
}
	#header h1 img {
		height: 25px;
		width: auto;
	}

	ul#gNavi {
		text-align: center;
		display: none;
		max-height: 0; /* 初期状態では非表示 */
		overflow: hidden; /* 見えない部分を隠す */
    transition: max-height 0.3s ease-in-out; /* アニメーションを付ける */  
	}

	ul#gNavi.on {
    display: block;
    max-height: 300px; /* クリック時に表示する高さ */
		margin-top: 10px;
    
  }


		ul#gNavi li {
			font-size: 17px;
			margin-bottom: 4px;
			background: rgba(255, 255, 255, 0.7);
			border-bottom: 1px solid;
			border-color: rgba(0,0,0, 0.1)
		}
			ul#gNavi li a {
				display: block;
				padding: 10px 0;
			}




ul#social,
div#movie {
	display: none;
}


#btn{
  /* display: block; */
  position: fixed;
  right: 15px;
  top: 9px;
  width: 25px;
  height: 30px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  cursor: pointer;
 }
 
  #btn span {
  display: block;
  background-color: #757575;
  width: 25px;
  height: 2px;
  transition: all 0.5s ease;
  }

  #btn.on span {
    background-color: #757575;
  }

  #btn.on span:nth-of-type(1){
    transform: translateY(10px) rotate(45deg);
  }
  #btn.on span:nth-of-type(2){
    transform: scale(0);
  }
  #btn.on span:nth-of-type(3){
    transform: scale(0);
  }

  #btn.on span:nth-of-type(4){
    transform: translateY(-9px) rotate(-45deg);
  }


/* naka */
body.naka {
	padding-top: 60px;
}

/* footer */
#footer p.copy {
	font-size: 9px;
	padding: 0 10px;
	color: #888;
}
	#footer p.copy a {
		color: #888;
	}

#left ul.bnrList {
	overflow: hidden;
	margin: 0 -5px;
}
#left ul.bnrList li {
	width: 50%;
	float: left;
	text-align: center;
}
	#left ul.bnrList li img {
		width: 96%;
		height: auto;
	}


/* index
--------------------------------- */
#entrance h1 {
	padding: 40px 0;
}
#entrance h1 img {
	width: 150px;
	height: auto;
}

#entrance p.enter {
	margin: 0;
	padding: 10px;
}
	#entrance p.enter img {
		width: 100%;
		height: auto;
	}



/* home
--------------------------------- */
#home {
	padding-top: 120px;
}

#main #left,
#main #right {
	width: auto;
	float: none;
}

#main div.box {
	padding: 10px;
	margin-bottom: 10px;
	box-shadow: 0 1px 2px #EEE;
}

#main h2 {
	font-size: 17px;
}

p.bnr img {
	width: 100%;
	height: auto;
}

div.release p.l, div.release p.r {
	width: 30%;
}
div.release p.l img, div.release p.r img {
	width: 100%;
	height: auto;
}
div.release div {
	width: 66%;
	font-size: 90%;
}



/* profile
--------------------------------- */
#profile p.img,
#profile #main div.txt {
	float: none;
	width: auto;
	font-size: 80%;
}
	#profile p.img {
		margin-bottom: 15px;
	}
	#profile p.img img {
		width: 100%;
		height: auto;
	}

#main div.txt p.ttl {
	font-size: 16px;
}
#profile #main div.txt .mb40 {
	margin-bottom: 20px;
}
p.txt_catch {
	font-size: 15px;
}



/* goods
--------------------------------- */
ul.goodsList li {
	width: 40%;
	padding: 0 5%;
}
ul.goodsList li img {
	width: 100%;
	height: auto;
}



/* contact
--------------------------------- */
#contact #area-side-a {
	width: 100%;
	margin: 0;
}
#contact #area-side-a th {
	font-size: 12px;
	white-space: nowrap;
}

#contact #area-side-a td input,
#contact #area-side-a td textarea {
	width: 90%;
	padding: 0 4%;
	height: 20px;
	line-height: 20px;
	margin: 0;
	border: 1px solid #CCC;
	border-radius: 0;
}
#contact #area-side-a td textarea {
	padding: 10px 4%;
	height: 60px;
	resize: none;
}

