@charset "utf-8";

/* android対策 */
p { background-image: url(../images/pix.gif); }

/*--------------------------------------------------------
★レスポンシブ■タブレット対応
--------------------------------------------------------*/
@media screen and (max-width: 1280px) {
	/* layout */
	html{
		width: 1280px;
	}
	body {
		width: 1280px;
	}
}

/*--------------------------------------------------------
★レスポンシブ■スマホ表示切替ボタン
--------------------------------------------------------*/
@media screen and (max-width: 640px) {
	a#btnSP{
		display: none;
	}
	a#btnPC{
		position: fixed;
		display: block;
		width: auto;
		height: auto;
		font-size: 12px;
		padding: 10px 20px;
		box-sizing: border-box;
		border: 1px solid #000;
		background-color: #EEE;
		text-align: center;
		color: #000;
		text-decoration: none;
		line-height: 1em;
		margin-top: 4px;
		left: 5%;
		bottom: 3%;
		z-index: 2;
		border-radius: 5px;
	}
}
@media screen and (min-width: 641px) {
	.switch{
		display: none;
		height: 0;
	}
	a#btnSP{
		display: none;
	}
	a#btnPC{
		display: none;
	}
}

@media screen and (min-width:1021px) {
	.switch{
		display: block;
		height: auto;
	}
	a#btnPC{
		display: none;
	}
}
@media screen and (min-width: 1023px) {
	.switch{
		display: none;
		height: 0;
	}
	a#btnSP{
		display: none;
	}
	a#btnPC{
		display: none;
	}
}
/*--------------------------------------------------------
★レスポンシブ■ヘッダ部分
--------------------------------------------------------*/
@media screen and (min-width: 641px) {
	.pc_none{
		display: none!important;
	}
}
@media screen and (max-width: 640px) {
	.sp_none{
		display: none!important;
	}

	/* スマホ用メニュー */
	.index #wrapper {
		overflow: hidden;
		min-width: 20pc;
		height: auto;
		padding: 0;
	}
	.drawer .contents {
		-webkit-transition: -webkit-transform 0.6s;
		transition: transform 0.6s;
	}
	.drawer #navTgl:checked~.contents {
		-webkit-transform: translateX(-250px);
		transform: translateX(-250px);
	}
	.index #navTgl {
		display: none;
		overflow: hidden;
	}
	.drawer label.pc_none {
		cursor: pointer;
		position: fixed;
		top: 0;
		right: 0;
	}
	.drawer .open{
		z-index: 101;
		width: 50px;
		height: 50px;
		color: #fff;
		background-color: #C89100;
		font-size: 2em;
		line-height: 34px;
		text-align: center;
		-webkit-transition: background-color 0.6s,-webkit-transform 0.6s;
		transition: background-color 0.6s,transform 0.6s;
	}
	.index #navTgl:checked+.open {
		color: #C89100;
		background-color: #EEE;
		-webkit-transform: translateX(-250px);
		transform: translateX(-250px);
	}
	.drawer .open span{
		position: relative;
		display: block;
		font-size: 10px;
		font-weight: 600;
		line-height: 1;
		letter-spacing: 0;
	}
	.drawer .close {
		pointer-events: none;
		z-index: 1;
		width: 100%;
		height: 100%;
		transition: background-color 0.6s;
	}
	.drawer #navTgl:checked~.close {
		pointer-events: auto;
		background-color: rgba(0,0,0,.3);
		z-index: 2;
	}
	.fixed_btn{
		position: fixed;
		display: block;
		width: 55px;
		height: 50px;
		color: #C89100;
		font-size: 1.0rem;
		font-weight: 600;
		text-align: center;
		line-height: 1;
		letter-spacing: -.03em;
		top: 0;
		right: 50px;
		z-index: 30;
		background: #ECE3CB url(../images/icon_cartBrown.svg);
		background-repeat: no-repeat, no-repeat;
		background-position: center top 11px, 0 0;
		background-size: auto 18px, cover;
		padding: 35px 0 5px;
		box-sizing: border-box;
	}
	.menu{
		z-index: 3;
		position: fixed;
		overflow: auto;
		top: 0;
		right: 0;
		width: 250px;
		height: 100%;
		padding: 60px 10px 10px;
		background-color: rgba(255,255,255,.4);
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: -webkit-transform 0.6s;
		transition: transform 0.6s;
		box-sizing: border-box;
		z-index: 200;
	}
	.index #navTgl:checked~.menu {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.menu li a{
		position: relative;
		color: #000;
	}
	.menu li a.arrow_d:after{
		content: "＞";
		position: absolute;
		display: block;
		font-size: 10px;
		height: 10px;
		top: 0;
		right: 1.5em;
		bottom: 0;
		margin: auto 0;
		transform: rotate(90deg);
	}
	.menu ul{
		padding: 0;
	}
	.menu li{
		position: relative;
		border-bottom: 1px solid rgba(200,200,200,.7);
		font-size: 0.9em;
		line-height: 1.4;
	}
	.menu li a{
		display: block;
		padding: 1em 2em .9em;
		text-decoration: none;
		transition: background-color 0.6s;
	}
	.menu ul li ul{
		background: rgba(150,150,150,.7);
	}
	.menu ul li ul li a{
		color: #FFF;
	}
	.menu ul li.insta{
		padding: 1em 2em .9em;
	}
	.menu ul li.insta a{
		width: 33px;
		height: 32px;
		font-size: 0;
		background: url(../images/icon_instaBrown.svg) no-repeat center center;
		background-size: contain;
	}
}


/*--------------------------------------------------------
★レスポンシブ■コンテンツ部分
--------------------------------------------------------*/
/* メインコンテンツ */
@media screen and (max-width: 640px) {
	html{
		max-width: 640px;
		width: 100%;
		overflow-x: hidden;
		-webkit-text-size-adjust: 100%!important;
	}
	body {
		max-width: 640px;
		min-width: 320px;
		width: 100%;
		overflow-x: hidden!important;
		font-size: 1.4rem;
		line-height: 1.9;
		letter-spacing: .05em;
		-webkit-text-size-adjust: 100%!important;
		top: 0!important;
	}
	body.archive header,
	body.archive main,
	body.archive footer{
		width: 100%;
	}
	/* layout
	------------------------------ */
	.wrapper{
		max-width: 640px;
		width: 90%;
		margin: 0 auto;
		padding: 0 5%;
	}

	/* Common
	------------------------------ */
	.fl_l,.fl_r{
		display: block;
		float: none;
	}
	.float::before,
	.float::after{
		content: " ";
		display: block;
		clear: both;
	}
	.btn{
		display: block;
		width: 220px;
		height: 50px;
		line-height: 50px;
		padding-left: 18px;
		margin: 0 auto 10px;
	}
	.btn:last-child,
	.btn:last-of-type{
		margin: 0 auto;
	}
	.btn::after{
		right: 18px;
	}
	.btn:hover::after{
		right: 13px;
	}
	.flex{
		display: block;
	}
	.caution{
		font-size: 1.4rem;
		line-height: 1.7;
	}
	.btn.contact::before,
	.btn.netshop::before{
		margin-right: 8px;
	}

	/* Header
	------------------------------ */
	header{
		position: relative;
		display: block;
		width: 100%;
		height: auto;
		padding: 0;
		border-top: 50px solid #000
	}
	header div.wrapper{
		padding-top: 0;
	}
	header .flex,#gnav,
	header.is-show, header .float{
		display: none;
	}
	nav.globalMenuSp ul li {
	    border-bottom: 1px dotted #333;
	    display: block;
	    font-size: 1.1em;
	    list-style-type: none;
	    padding: 0;
	    width: 100%;
	}
	nav.globalMenuSp ul li a {
	    -webkit-box-sizing: border-box;
	    box-sizing: border-box;
	    color: #000;
	    display: block;
	    font-size: 14px;
	    height: 50px;
	    padding: 1em 0 1em 1em;
	    text-align: left;
	}
	.sp_menu{
	   	z-index: 10;
	   	position: fixed;
	   	height: 50px;
	   	width: 100%;
	   	top: 0;
	   	background: #fff;
	   	box-shadow: 0px 2px 2px rgba(0,0,0,.2);
	}
	.sp_menu .logo{
	    background: url(../images/logo.png) no-repeat;
	    background-position: left 10px center;
	    background-size: 33% auto;
	    display: block;
	    height: 50px;
	    text-indent: -9999px;
	    font-size: 0;
	}
	.sp_menu .sp_header_contact{
	   	position: absolute;
	   	height: 50px;
	   	width: 50px;
	   	background: #fff;
	   	box-sizing: border-box;
	   	border:1px solid #000;
	   	padding-top: 33px;
	   	font-size: 9px;
	   	letter-spacing: 0;
	   	line-height: 1em;
	   	top: 0;
	   	right: 50px;
	   	color: #000;
	   	text-align: center;
	   	font-weight: 600;
	}
	.sp_menu .sp_header_contact::before{
		content: " ";
	    position: absolute;
	    background: url(../images/icon_tel.svg) no-repeat;
	    -webkit-background-size: contain;
	    background-size: contain;
	    background-position: center center;
	    width: 30px;
	    height: 20px;
	    margin-left: -15px;
	    left: 50%;
	    top: 8px;
	    transition: .4s;
   	}
   nav.globalMenuSp {
	    position: absolute;
	    z-index: 2;
	    top: 0;
	    left: 0;
	    background: #fff;
	    color: #000;
	    text-align: center;
	    transform: translateY(-100%);
	    transition: all 0.6s;
	    width: 100%;
	    height: auto;
	    bottom: auto;
	}
	nav.globalMenuSp ul {
	    background: #e5e5e5;
	    margin: 0 auto;
	    padding: 0;
	    width: 100%;
	}
    nav.globalMenuSp li {
		display: block;
	    font-size: 1.1em;
	    list-style-type: none;
	    padding: 0;
	    width: 100%;
	    border-bottom: 1px dotted #333;
	}
	nav.globalMenuSp li::before,nav.globalMenuSp li::after{
		content: none;
	}
	nav.globalMenuSp li a::after{
		content: none;
	}
	nav.globalMenuSp li:last-child {
	    padding-bottom: 0;
	    border-bottom: none;
	}
	nav.globalMenuSp li a {
	    display: block;
	    color: #000;
	    padding: 1em 0 1em 1em;
	    font-size: 14px;
	    text-align: left;
	    box-sizing: border-box;
	    height: 50px;
	}
	nav.globalMenuSp li.sub_m{
		background: #ccc;
	}
	nav.globalMenuSp li.sub_m a{
		padding-left: 2em;
	}
	nav.globalMenuSp.active{
	    transform: translateY(0%);
	}
	/* ボタン */
	.navToggle {
	    display: block;
	    position: absolute;
	    right: 0;
	    top: 0;
	    width: 50px;
	    height: 50px;
	    cursor: pointer;
	    z-index: 3;
	    background: #000;
	    text-align: center;
	    box-sizing: border-box;
	}
    .navToggle span {
	    display: block;
	    position: absolute;
	    width: 30px;
	    border-bottom: solid 3px #eee;
	    -webkit-transition: .35s ease-in-out;
	    -moz-transition: .35s ease-in-out;
	    transition: .35s ease-in-out;
	    left: 6px;
	    left: 50%;
	    margin-left: -15px;
	}
    .navToggle span:nth-child(1) {
	    top: 9px;
	}
	.navToggle span:nth-child(2) {
	    top: 18px;
	}
	.navToggle span:nth-child(3) {
	    top: 27px;
	}
	.navToggle span:nth-child(4) {
	    border: none;
	    color: #eee;
	    font-size: 9px;
	    font-weight: bold;
	    top: 34px;
	    line-height: 1em;
	}
	/* 最初のspanをマイナス45度に */
	.navToggle.active span:nth-child(1){
	    top: 18px;
	    left: 50%;
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	/* 2番目と3番目のspanを45度に */
	.navToggle.active span:nth-child(2),
	.navToggle.active span:nth-child(3){
	    top: 18px;
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.main_catch {
		margin-bottom: 50px;
	}
	/* index
	------------------------------ */
	#index #about{
		margin-bottom: 40px;
	}
	#index #about .wrapper{
		padding: 50px 0;
	}
	#index #about .wrapper::before{
	    height: 50px;
	    top: -30px;
	}
	#index #about p{
		line-height: 2;
	}
	#index h2{
		position: relative;
		display: block;
	    margin: 0 auto;
	    margin-bottom: 40px;
	    font-size: 0;
	}
	#index #about h2{
		width: 164px;
		height: 28px;
		background: url(../images/about_us.svg) no-repeat center center;
	}
	#index .content .flex #service,
	#index .content .flex #company{
		width: 585px;
	}
	#index #service p{
		line-height: 1.88;
	}
	#index .content .flex #service{
		border-right: none;
		padding: 30px 0 20px;
		width: 100%;
	}
	#index h3{
		margin: 30px 0 20px;
		padding-bottom: 5px;
	}
	#index #service ul li img{
	    height: 100%;
	    width: 367px;
	    display: block;
	    margin: 0 auto;
	    margin-bottom: 5px;
	}
	#index #service ul li p{
		padding: 10px 0 0 0;
	}
	#index .content .flex #company{
		padding-top: 30px;
		width: 100%;
	}
	#index #company dl{
		margin: 20px 0;
	}
	#index #company dl dd{
	    padding: 12px 0 12px 90px;
	}
	#index #company dl dt{
		padding: 12px 0 12px 6px;
	}
	footer img{
		width: 100%;
		margin: 50px 0 0;
	}
	footer .copyright{
		padding: 40px 0 70px;
	}
	/* Page Top
	------------------------------ */
	.pagetop{
		right: 20px;
	}
	.pagetop.show{
		bottom: 3%;
		right: 20px;
	}
	.pagetop a{
		width: 50px;
		height: 50px;
	}
	.pagetop a::before{
		top: 19px;
	}
}