@media screen and (max-width: 740px) {

#container{width:100%; margin-left:auto; margin-right:auto;}

.contents{
	padding:0 10px 0 10px; margin-left:auto; margin-right:auto;
}

.nav-list{
	display:none;
}

/*-------線三本--------*/
.hamburger{
	position:relative;   /*-------親要素のrelativeで場所をきめる--------*/
	display:block;
	width:30px;
	height:25px;
	margin:0 0 0 auto;
}

.hamburger span{
	position:absolute;/*-------子要素はrelativeの範囲内で決めた場所の中で--------*/
	top:50%;/*-------上から50％の位置に--------*/
	left:0;
	display:block;
	width:100%;
	height:3px;
	border-radius:2px;
	background-color:#fff;
	transform:translateY(-50%);/*-------3pxの上辺が50％の位置なので1p上げる（要素の高さの50％上に上げるという意味）--------*/
}

.hamburger::before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	display:block;
	width:100%;
	height:3px;
	border-radius:2px;
	background-color:#fff;
}

.hamburger::after{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	display:block;
	width:100%;
	height:3px;
	border-radius:2px;
	background-color:#fff;
}


/*-------スマホメニュー--------*/
.sp-list{
	z-index:1;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100vh;
	display:block;
	background:rgba(0,0,0,.9);
	transition:all .2s ease-in-out;
	opacity: 0;
	transform: translateY(-100%);
	}

.sp-list li a{
	text-decoration: none;
	color:#fff; 
}

.sp-list ul{
	padding:0;
	display:flex;
	flex-direction:column;  /*---縦に-----*/
	justify-content:center;
	align-items:center;
	height:100%;
	list-style: none;
}

.sp-list li{
	margin:0;
	padding:0;
}

.sp-list li span{
	font-size:15px;
	color:#fff;
}

.sp-list li a, .sp-list li span{
	display:block;
	padding:20px 0;
}

/*基準となるli要素*/
.sp-list .close {
   position: relative;
   padding-left: 20px;
}
/*バツ印線1*/
.sp-list .close::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 0;
   display: block;
   width: 16px;
   height: 1px;
   background: #fff;
   transform: rotate( 45deg );
}
/*バツ印線2*/
.sp-list .close::after {
   content: '';
   position: absolute;
   top: 50%;
   left: 0;
   display: block;
   width: 16px;
   height: 1px;
   background: #fff;
   transform: rotate( -45deg );
}

.toggle {
   transform: translateY( 0 );
   opacity: 1;
}

/* フッター */
.footlist{
	display:block;
	text-align: center;
	line-height:40px;
}

.footer-jusho{
	display:block;
}

.footer-left p{
	padding:20 0 0 0px;
	text-align:center;
}

.footer-center,.footer-right{
	padding:0 0 10px 0;
	text-align:center;
}



/*-------about--------*/
.kokininsatu-towa{
	display:block;

}

.img-illust{
	margin-left:auto;
	margin-right:auto;
	max-width:80%;
}

.teigi2{
	margin:20px -10px 20px -10px;
	padding:0 10px 0 10px;
	background-color:#f3f3f3;
}

.teigi2-ex-box{
	width: 48%;
	padding:0 20px 0 20px;
}


.kokinse-ex{
	display:block;
	text-align:center;
}

.kokinse-ex p{
	width:100%;
}

.niowanainki-logo img{
	width:80%;
}

.siaa{
	width:100%;
	display:block;
}

.siaa-ex{
	width:100%;
}

.siaa-img{

 text-align: center;
}

.siaa-img-items{
	display:block;
	width:100%;
}

.toroku{
	width:100%;
}

.g-siaa{
	display:block;
	width:100%;
	text-align: center;
	padding:0 20px;
}

.g-siaa p{
 width:100%;
 margin-bottom:20px;
}

.g-siaa-shomeisho{

	width:100%;
}
.g-siaa-img{
	max-width:100%;
	
}

.siaa2{
	display:block;
}

.siaa2-box{
	width:100%;
	text-align:center;
}

.siaa2-text:nth-child(2){
	text-align: left;
	display:inline-block;
}

/*-------limex--------*/
.limex1{
	display:block;
	width:100%;
	margin:0 auto;
}

.limex1-img {
	max-width:100%;
	margin-left:15%;
}

.limex1-tx{
	width:100%;
	margin-top:-50px;
}

.limex2{
	display:block;
	width:100%;
}

.limex2-ex img{
	max-width:40%;
	margin:0 20px 0 0;
}


.limex2-ex{
	display:flex;
	width:100%;
	align-items:center;
}

.limex2-meishi{
	width:100%;
}






/*メディアクエリ閉じカッコ*/
}
