@charset "utf-8";

/*----------------------
 common
----------------------*/
.mode_pc {
	display: block;
}
.mode_pc_ib {
	display: inline-block;
}
.mode_sp {
	display: none;
}
.inner {
	min-width: 1000px;
	margin: auto;
}
.sp_inner {
	max-width: initial;
	max-width: auto;
	padding-left: 0;
	padding-right: 0;
}
#container {
	padding-top: 120px;
	/*min-width: 1000px;*/
}
hr.top,
hr.bottom {
	display: none;
}
hr.mt-20 {
	margin-top: 0;
}

@media screen and (max-width: 767px) {
	.mode_pc,
	.mode_pc_ib {
		display: none;
	}
	.mode_sp {
		display: block;
	}
	img {
		max-width: 100%;
	}
	img.full {
		width: 100%;
	}
	.inner {
		min-width: inherit;
		min-width: auto;
		max-width: 94%;
		padding-left: 3%;
		padding-right: 3%;
	}
	.sp_inner {
		max-width: 94%;
		padding-left: 3%;
		padding-right: 3%;
	}
	#container {
		min-width: initial;
		min-width: auto;
		padding-top: 100px;
	}
	hr.top {
		display: block;
		background-image: url(/ecochil/img/common/bg_sp_top.png);
		background-position: left bottom;
		background-repeat: repeat-x;
		background-size: contain;
		border: none;
		height: 32px;
		margin: 0;
		position: relative;
		z-index: 1;
	}
	hr.bottom {
		display: block;
		background-image: url(/ecochil/img/common/bg_sp_bottom.png);
		background-position: left bottom;
		background-repeat: repeat-x;
		background-size: contain;
		border: none;
		height: 32px;
		margin: 0;
		position: relative;
		z-index: 1;
	}
	hr.mt-20 {
		margin-top: -20px;
	}
}
/*----------------------
 header
----------------------*/
header {
	background-image: url(/ecochil/img/common/header_bg.png);
	background-repeat: repeat-x;
	background-position: left top;
	padding: 20px 0 54px;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}
header img {
	width: 152px;
	margin-left: 5px;
}
header>div {
	position: relative;
	max-width: 1400px;
}
header>div>a {
	float: left;
}
header #inner_menu {
	display: block;
}
header nav ul {
	float: right;
	margin-right: 5px;
}
header nav ul li {
	text-align: center;
	display: inline-block;
	color: #fff;
	line-height: 1.2;
	margin-left: 30px;
}

@media screen and (max-width: 767px) {
	header {
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 1000;
		padding: 0;
		background-image: none;
		/*background-size: contain;*/
	}
	header .inner {
		width: 100%;
		padding: 10px 0 0;
		max-width: inherit;
		max-width: none;
		background-image: url(/ecochil/img/top/bg03.png);
		background-repeat: repeat;
		background-position: left top;
	}
	header #inner_menu {
		display: none;
		position: relative;
		z-index: 1000;
	}
	header img {
		/* margin-left: 3%; */
	}
	#menu_btn,
	#menu_btn span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	#menu_btn {
		position: absolute;
		top: 16px;
		right: 3%;
		margin: auto;
		width: 36px;
		height: 30px;
		cursor:pointer;
		text-align: center;
	}
	#menu_btn>div {
		width: 36px;
		height: 30px;
	}
	#menu_btn span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: rgba(255,255,255,0.9);
	}
	#menu_btn span:nth-of-type(1) {
		top: 0;
	}
	#menu_btn span:nth-of-type(2) {
		top: 14px;
	}
	#menu_btn span:nth-of-type(3) {
		bottom: 0;
	}
	#menu_btn.open span:nth-of-type(1) {
		-webkit-transform: translateY(14px) rotate(-45deg);
		transform: translateY(14px) rotate(-45deg);
	}
	#menu_btn.open span:nth-of-type(2) {
		opacity: 0;
	}
	#menu_btn.open span:nth-of-type(3) {
		-webkit-transform: translateY(-14px) rotate(45deg);
		transform: translateY(-14px) rotate(45deg);
	}
	#menu_btn p {
		font-size: 7px;
		font-size: 0.7rem;
		margin-top: 7px;
		letter-spacing: 0.05em;
	}
	#inner_menu {
		display: none;
		position: relative;
		z-index: 100;
	}
	#inner_menu div {
		background-color: rgba(255,255,255,0.5);
	}
	#inner_menu ul {
		position: fixed;
		top: 0;
		width: 100%;
		height: 100%;
		background-color:rgba(255,255,255,0.8);
		padding-top: 90px;
	}
	#inner_menu li {
		border-bottom: 1px solid rgba(200,174,100,0.4);
		letter-spacing: 0.1em;
		width: 100%;
		margin-left: 0;
		background-color:rgba(255,255,255,0.8);
		text-align: left;
		font-size: 20px;
		font-size: 2.0rem;
		line-height: 1.6;
	}
	#inner_menu li:first-child {
		border-top: 1px solid rgba(200,174,100,0.4);
	}
	#inner_menu li span {
		letter-spacing: 0.2em;
		padding: 0 0.25em;
	}
	#inner_menu li a {
		display: block;
		position: relative;
		padding: 12px 4% 12px 2%;
		color: #000;
	}
	#inner_menu li a:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		right: 10px;
		width: 6px;
		height: 6px;
		margin: -4px 0 0 0;
		border-top: solid 2px rgba(200,174,100,1.0);
		border-right: solid 2px rgba(200,174,100,1.0);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}
/*----------------------
 bnr_cont
----------------------*/
#bnr_cont {
	padding: 60px 0;
}
#bnr_cont>div {
	max-width: 1000px;
	margin: auto;
}
#bnr_cont ul {
	width: 100%;
}
#bnr_cont li {
	float: left;
}
#bnr_cont li img {
	max-width: 100%;
}
#bnr_cont li:nth-child(2n) {
	float: right;
}
#bnr_cont li:nth-child(2),
#bnr_cont li:first-child {
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	#bnr_cont {
		padding: 30px 0;
	}
	#bnr_cont>div {
		max-width: initial;
		max-width: none;
		width: 90%;
		margin: auto;
	}
	#bnr_cont li,
	#bnr_cont li:nth-child(2n),
	#bnr_cont li:first-child,
	#bnr_cont li:last-child {
		float: none;
		text-align: center;
		width: 90%;
		margin: 0 auto 10px;
	}
}
/*----------------------
 footer
----------------------*/
footer {
	background-image: url(/ecochil/img/common/footer_bg.png);
	background-repeat: repeat-x;
	background-position: left top;
	padding: 48px 0 20px;
	text-align: center;
	color: #fff;
}
footer>div {
	max-width: 730px;
	margin: auto;
}
footer>div img,
footer>div p {
	display: inline-block;
	vertical-align: middle;
}
footer>div img {
	margin-right: 26px;
	width: 224px;
}
footer>div p,
footer small {
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.4;
}
#page_top {
	position: fixed;
	right: 0;
	bottom: 50px;
	display: none;
	z-index: 100;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	footer {
		background-image: url(/ecochil/img/top/bg03.png);
		padding: 10px;
		background-size: 45%;
		background-repeat: repeat;
	}
	footer>div img {
		margin-bottom: 10px;
	}
}

/*----------------------
 page_top
----------------------*/
#page_top {
	position: fixed;
	right: 25px;
	bottom: 45px;
	display: none;
}
@media screen and (max-width: 767px) {
	#page_top {
		right: 10px;
		bottom: 100px;
		width: 60px;
		height: auto;
	}
	#page_top img {
		width: 100%;
	}

}
