@charset "utf-8";

/* Loading
------------------------------------------------------------*/

.loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
}
.loading.is-active {
	opacity: 0;
	visibility: hidden;
}
.loading-animation {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background: #000;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
}
.loading-animation.is-active {
	opacity: 1;
	visibility: visible;
}

.fwrap {
	animation: fadein 2s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}


.mv01 {
	opacity: 0;
	transition: 2s;
}
.mv02 {
	opacity: 0;
	transition: 3s;
}
.mvact {
	opacity: 1.0;
}

/* HEADER
------------------------------------------------------------*/
.header,
.lowdir .header {
	position: fixed;
	width: 100%;
	height: 70px;
	z-index: 999;
		-webkit-transition: all 0.6s;
		-moz-transition: all 0.6s;
		-ms-transition: all 0.6s;
		-o-transition: all 0.6s;
	transition: all 0.6s;
	background: #000;
}
.header.fixed {
	height: 70px;
	background: rgba(0, 0, 0, 0.6);
}
.header .inbox {
	width: 1100px;
	margin: 0 auto;
}
.logo {
	position: relative;
	float: left;
	padding: 5px 0 0;
	z-index: 2;
}
.logo img {
	width: 100%;
	max-width: 280px;
	height: auto;
}

/*------------------------------------------------------------
	gNavi
------------------------------------------------------------*/
#gNavi {
	float: right;
	display: block;
	margin: 0px;
}

#gNavi li {
	margin: 0 0 0 40px;
	padding: 10px 0 0;
	display: inline-block;
	line-height: 40px;
	vertical-align: top;
}
#gNavi a {
	display: block;
	position: relative;
	white-space: nowrap;
	padding: 14px 0 10px;
	font-size: 15px;
	color: #fff;
	line-height: 1.3em;
	text-align: left;
	letter-spacing: 1px;
}
#gNavi a::before,
#gNavi a:after {
	position: absolute;
	display: block;
	content: "";
	bottom: 0;
	width: 0;
	height: 4px;
	background-color: #cb1d1d;
	transition: width 0.3s;
}
#gNavi a::before {
	right: 50%;
}
#gNavi a::after {
	left: 50%;
}
#gNavi a:hover::before,
#gNavi a:hover::after {
	width: 50%;
}
.pgindex #gNavi .gnv01 a::before,
.pgindex #gNavi .gnv01 a::after,
.pgabout #gNavi .gnv02 a::before,
.pgabout #gNavi .gnv02 a::after,
.pgjoin #gNavi .gnv03 a::before,
.pgjoin #gNavi .gnv03 a::after,
.pgpartner #gNavi .gnv04 a::before,
.pgpartner #gNavi .gnv04 a::after,
.pgnews #gNavi .gnv05 a::before,
.pgnews #gNavi .gnv05 a::after,
.pgcontact #gNavi .gnv06 a::before,
.pgcontact #gNavi .gnv06 a::after{
	width: 50%;
}
#gNavi .gnv07 {
	margin: 0 0 0 20px;
	padding: 0;
}
#gNavi .gnv07 a {
	height: 70px;
	padding: 0 40px 0 36px;
	line-height: 70px;
	color: #fff;
	background: #cb1d1d;
		-webkit-transition: all 0.6s;
		-moz-transition: all 0.6s;
		-ms-transition: all 0.6s;
		-o-transition: all 0.6s;
	transition: all 0.6s;
}
#gNavi .gnv07 a span {
	padding: 6px 0 6px 40px;
	background: url(../images/icon_mem.png) no-repeat left center;
	background-size: 30px 25px;
}
#gNavi .gnv07 a:hover {
	color: #fff;
	background: #861313;
}
#gNavi .gnv07 a::before,
#gNavi .gnv07 a:after {
	display: none;
}


.header .logobox {
	position: relative;
	float: left;
	display: block;
	width: 9%;
	padding: 4px 0 0;
	vertical-align: middle;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
}
.header .logobox h1 img {
	width: 100%;
	height: auto;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
}
.header.fixed .logobox h1 img {
	width: 60%;
	height: auto;
}

.header .toppamf {
	float: right;
	text-align: right;
	padding: 0;
	vertical-align: middle;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
}
.header .toppamf img {
	height: 70px;
	width: auto;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
}
.header.fixed .toppamf img {
	height: 50px;
	width: auto;
}
.header .topnv {
	float: right;
	width: 90%;
}
.navibox ul {
	float: right;
	padding: 0;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
}
.navibox ul li {
	float: left;
	line-height: 1.2em;
	text-align: center;
}
.navibox ul li a {
	display: block;
	height: 70px;
	padding: 0 26px;
	font-size: 0.9em;
	color: #0c2546;
	line-height: 70px;
	text-align: center;
	text-decoration: none;
}
.header.fixed .navibox ul li a {
	height: 50px;
	line-height: 50px;
}
.navibox ul li a:hover {
	color: #fff;
	text-decoration: none;
	background: #0c2546;
}

.header #smpnavbox {
	display:none;
}
#PdNavi {
	display:none;
}




#coverWrap {
	width: 100%;
	z-index: 10;
	background: #dec49d;
}
ul#slider{
	position: relative;
	left: 0;
	z-index: 8;
}
ul#slider img {
	width: 100%;
	height: auto;
}
.bx-controls {
	display: none;
}

/* 全体
------------------------------------------------------------*/

.wrapper {
	margin: 0 auto;
	padding: 0;
	background-color:#000;
}
.lowdir .wrapper {
	margin: 0 auto;
	padding: 30px 0 0;
	background-color:#fff;
}
.widecolumn {
	float: left;
	width: 750px;
	padding: 0;
}
.sidecolumn {
	float: right;
	width: 210px;
	padding: 0;
}

.box {
	width: 1100px;
	margin: 0 auto;
	padding: 0;
}


/**************************
/* グリッド
**************************/


* html .gridWrapper{height:1%;}


.grid {
	float:left;
}
.recBox {
	margin: 0;
	background:url(../images/bg_recbox.jpg);
}
.recBox a {
	display: block;
	width: 100%;
	height: 100%;
}


.colDark,.colLight{
	padding-bottom:10px;
	color:#fff;
	background:#2871d7;
}

.colLight{
	background:#134091;
}

.colDark h3,.colLight h3{
	margin:10px 10px 5px;
	font-size:14px;
	border-bottom:1px solid #fff;
}

.colDark a,.colLight a{
	display:block;
	color:#ccc;
}

.colDark a:hover,.colLight a:hover{
	color:#fff;
}



.imgbox {
	width: 100%;
  	margin: 0 auto;
}


/*************
/* タイトル
*************/


h1.csub {
	width: 100%;
	padding: 10px 0 40px;
	text-align: center;
	font-size: 40px;
	color: #0c2546;
	line-height: 1.0em;
}
h1.csub img {
	height: 60px;
	width: auto;
	margin: 0 auto;
}
h1.csub span {
	font-size: 18px;
	color: #999;
	letter-spacing: 0.1em;
}


.subctg {
	width: 100%;
	position: relative;
	display: inline-block;
	margin-bottom: 100px;
	text-align: center;
}
.subctg:before {
	content: '';
	position: absolute;
	bottom: -30px;
	display: inline-block;
	width: 100px;
	height: 1px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 2px;
}
.subctg h1 {
	display: block;
	margin-bottom: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.2em;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
}
.subctg h6 {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4em;
	color: #cb1d1d;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
}

.fsserif {
	font-family: "游明朝", YuMincho, "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Sawarabi Mincho", serif;
}


/*************
メイン コンテンツ
*************/
section.content{
	margin-bottom:20px;
	font-size:14px;
	overflow:hidden;
}

* html section.content{height:1%;}



/* img hover
------------------------------------------------------------*/

.imghover figure {
	display: block;
	position: relative !important;
	overflow: hidden;
}
.imghover  figcaption,
.imghover :first-child figcaption {
	position: absolute !important;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	-webkit-transition: .3s;
	transition: .3s;
		filter:alpha(opacity=0);
		-moz-opacity: 0;
	opacity: 0;
}
.imghover  figcaption h3 {
	width: 100%;
	padding-top: 70%;
		-webkit-transition: .3s;
	transition: .3s;
	color: #fff;
	line-height: 1;
	text-align: center;
}
.imghover figcaption h3 {
	padding-top: 50%;
	margin-top: -26px;
}
.imghover figure:hover figcaption {
		filter:alpha(opacity=1);
		-moz-opacity: 1;
	opacity: 1;
}
.imghover figcaption h3 img {
	width: 52px !important;
	height: 52px !important;
}

/* faphgly
------------------------------------------------------------*/

.facphbox {
	width: 104%;
	margin: 40px 0 0 -2%;
	padding: 40px 40px 30px;
	color: #ccc;
	background: #1c1c1c;
	z-index: 3;
}
.faphgly {
	display: flex;
	flex-wrap: wrap;
	margin: 20px -15px 0;
}
.faphgly .faph_item {
	width: 25%;
	padding: 15px;
	box-sizing: border-box;
}
.faphgly .faph_item img {
	width: 100%;
	height: auto;
}

/* ssbox
------------------------------------------------------------*/

#ssbox {
	margin: 0 auto 10px;
}
.ssflex {
	width: 24%;
	margin: 0 auto;
	padding: 2.5% 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	justify-content: space-between;
}
.ssflex > div {
	width: 33%;
	text-align: center;
	overflow: hidden;
}
.ssflex > div img {
	width: 50%;
	height: auto;
	transition-duration: 0.3s;
}
.ssflex > div img:hover {
	transform: scale(1.1);
}

.ssflex > div p {
	padding: 0.5em 0 0;
	font-size: 0.7em;
	color: #ccc;
	text-align: center;
}


.mvitem_ss1 { transition: 0.4s; }
.mvitem_ss2 { transition: 0.8s; }
.mvitem_ss3 { transition: 1.2s; }
.mvitem_ss4 { transition: 2.0s; }


/* FOOTER
------------------------------------------------------------*/

.footer {
	width: 100%;
	background: #000;
}
.footer .inner {
	position: relative;
	width: 1100px;
	margin: 0 auto;
	padding: 20px 0 10px;
	text-align: left;
}
#footnavi {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 20px 0 20px;
	color: #fff;
	text-align: center;
	overflow: hidden;
}
#footnavi .inbox {
	width: 50%;
	margin: 0 auto 50px;
}
#footnavi .fnav {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	justify-content: space-between;
}
.fnv {
	position: relative;
	width: 17%;
	text-align: center;
	vertical-align: middle;
}
.fnv02 {
	width: 26%;
}
.fnv05 {
	width: 23%;
}
.fnv a {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: #fff;
}
.fnv a:hover {
	color: #ccc;
}
.fnv+ .fnv {
	background: url(../images/nav-spc.png) no-repeat left center;
}
.footer .ftlogo {
	width: 100%;
	padding: 0;
	font-size: 1.8em;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.6 !important;
	text-align: center;
}
.footer .ftlogo span {
	font-size: 0.8em;
	color: #cb1d1d;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}
.footer .attmsg {
	width: 100%;
	padding: 10px 0 0;
	font-size: 0.7em;
	color: #fff;
	letter-spacing: 0.1em;
	text-align: center;
}
.footer .copyright {
	width: 100%;
	padding: 0 0 20px;
	font-size: 0.8em;
	color: #fff;
	letter-spacing: 0.1em;
	text-align: center;
}

/* pagetop
------------------------------------------------------------*/

.pgtopbox {
	padding: 20px 0 100px;
	text-align: center;
	z-index: 13;
	background-color: #000;
}
.pgtopbox a {
	width: 80px;
	height: 48px;
}


/* IE6 */
* html #pageTop {
	position: absolute;
	top: expression(eval(document.documentElement.scrollTop+100));
	right:0;
}



.menu-btn,
.menu {
	display: none;
}

.morebtnbox {
	margin: 0 auto;
	padding: 20px 0;
}
.morebtn {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 60px;
	font-size: 1.1em;
	color: #fff !important;
	line-height: 59px;
	background: #000 url(../../common/images/bg_morebtn.png) no-repeat right center;
	background-size: 34px 60px;
	border: 1px solid #999;
	text-decoration: none;
	text-align: center;
}
.cmorebtn {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 60px;
	font-size: 1.1em;
	color: #fff !important;
	line-height: 59px;
	background: url(../../common/images/bg_morebtn.png) no-repeat right center;
	background-size: 34px 60px;
	border: 1px solid #999;
	text-decoration: none;
	text-align: center;
}

.wbutton {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 60px;
	font-size: 1.1em;
	color: #111 !important;
	line-height: 59px;
	background: #fff url(../../common/images/bg_morebtn.png) no-repeat right center;
	background-size: 34px 60px;
	border: 1px solid #666;
	text-decoration: none;
	text-align: center;
}

.linkbtn {
	display: block;
	width: 50%;
	margin: 0 auto;
}
.linkbtn a span:after {
	content: '';
	display: inline-block;
	width: 30px;
	height: 24px;
	margin-top: -3px;
	background: url(../../common/images/icon_arrow.png) no-repeat 50%;
	background-size: 11px 18px;
	vertical-align: middle;
}
.linkbtn a {
	display: block;
	width: 100%;
	margin: 20px auto 0;
	padding: 16px 0;
	text-align: center;
	font-size: 1.1em;
	color: #fff;
	background: #0c2546;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
}
.linkbtn a:hover {
	background: #8293aa;
}
div.nolink {
	display: block;
	width: 100%;
	margin: 20px auto 0;
	padding: 16px 0;
	text-align: center;
	font-size: 1.1em;
	color: #fff;
	background: #e3e7ec;
	cursor: default;
}

.button-icon {
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #ccc;
	vertical-align: middle;
	text-decoration: none;
	font-size: 1.2em;
}
.button-icon::before,
.button-icon::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.btnarrow::before {
	left: -6px;
	width: 20px;
	height: 20px;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	transition: 0.2s ease all;
}

.btnarrow2::before {
	left: -6px;
	width: 20px;
	height: 20px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	transition: 0.2s ease all;
}
.btnarrow3::before {
	top: 10px;
	left: -6px;
	width: 20px;
	height: 20px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	transition: 0.2s ease all;
}





/* ----------------------------- max 1100px ------------------------------------------------------------*/
@media only screen and (max-width: 1100px){
/* @media only screen and (max-width: 896px){ */


.header,
.lowdir .header {
	width: 100%;
}
.header.fixed {
	background: none;
}
.header .inbox {
	width: 100%;
    	margin: 0 auto;
}
.header .logobox {
	position: relative;
	float: left;
	display: block;
	width: 9%;
	padding: 2px 0 0;
}
.header.fixed .logobox h1 img {
	width: 80%;
	height: auto;
}
.header #smpnavbox {
	display: block;
	float: right;
	width: 60px;
	height: 50px;
}
.header #smpnavbox ul {
}
.header #smpnavbox ul li {
	margin: 0 0 0 5px;
}
.header #smpnavbox ul li img {
	width: 48px;
	height: 47px;
}
.header .toppamf {
	top: 5px;
	right: 0;
	height: 50px;
	width: auto;
}
.header .toppamf img {
	height: 50px;
	width: auto;
}
.header .navibox {
	display: none;
}


#sliderWrap {
	position: relative;
	height: auto;
	overflow: hidden;
	z-index: 9;
	padding: 50px 0 0;
}
#coverWrap {
	position: relative;
	width: 100%;
	height: auto;
	z-index: 10;
	background: #333;
}
ul#slider{
	position: relative;
	left: 0;
	height: auto;
	margin-left: 0;
	z-index: 8;
}
#sliderWrap img {
	display: block;
	width: 100%;
	height: auto;
}
.mainimg {
	width: 96%;
	height: auto;
	margin: 0 2%;
	z-index: 10;
}
.mainimg .inner {
	width: 100%;
	height: auto;
	text-align:center;
}
.mainimg .inner p {
	position: relative;
	height: auto;
	left: 0;
	margin-left: 0;
}
.mainimg img {
	width: 100%;
	height: auto;
}
.wrapper {
	width: 100%;
   		padding: 10px 0 0;
}
.box {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}



#gNavi {
	display: none;
}

a.btn-type1:hover {
      color: #329e8d;
      background-color: #fff;
}

.sp_menu_button {
	width: 50px;
	height: 30px;
	outline: none;
	border: none;
	font-size: 25px;
	margin: 9px auto 0;
	display:block;
}
.sp_menu_button .menu_icon01 {
	display: block;
	float: left;
	cursor: pointer;
	transition: all 0.2s ease-in;
}
.sp_menu_button .menu_icon01 span {
	display: block;
	width: 40px;
	height: 4px;
	background: #fff;
	margin-bottom: 8px;
	transition: all 0.4s ease-out;
}
.sp_menu_button.open .menu_icon01{
	transform: rotate(-45deg);
}
.sp_menu_button.open .menu_icon01 .bar1 {
	transform: rotate(0deg) translateY(10px);
}
.sp_menu_button.open .menu_icon01 .bar2 {
	opacity: 0;
}
.sp_menu_button.open .menu_icon01 .bar3 {
	transform: rotate(-90deg) translateX(10px);
}



.menu-btn {
	position: fixed;
	display: block;
	top: 12px;
	right: 20px;
	width: 36px;
	height: 36px;
	text-align: center;
	cursor: pointer;
	z-index: 111;
}
.menu {
	position: fixed;
	display: table;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.8);
		-webkit-transition: all .5s;
		transition: all .5s;
	visibility: hidden;
		filter:alpha(opacity=0);
		-moz-opacity: 0;
	opacity: 0;
	z-index: 9998;
}
.menu ul {
	display: table-cell;
	vertical-align: middle;
}
.menu li {
	position: relative;
	height: 40px;
	font-size: 18px;
	color: #fff;
	text-align: center;
}
.menu li.gnvlogo {
	height: 100px;
	padding: 0;
}
.menu li.gnvlogo img {
	width: 280px;
	height: auto;
}
.menu li.contact span {
	padding: 4px 30px;
	border-bottom: dotted 1px #eee;
}
.menu li a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	font-size: 18px;
	color: #fff;
}
.menu li.nvtel {
	padding: 20px 0 10px;
}
.menu li.nvtel a {
	padding: 0 24px 0 34px;
}
.menu li.gnv07 {
	margin-top: 12px;
	padding: 10px 0 10px;
}
.menu li.gnv07 a {
	padding: 0 5px 0 40px;
	color: #cb1d1d;
}
.menu li.gnv07 a::before {
	position: absolute;
	content: "";
	top: 45%;
	left: 0px;
	width: 24px;
	height: 20px;
	margin-top: -10px;
	background: url(../../common/images/icon_mem_r.png) top left no-repeat;
	background-size: 24px 20px;
}
.menu li a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .2s;
}
.menu li.gnv07 a::after {
	background: #cb1d1d;
}
.menu li a:hover::after {
	transform: scale(1, 1);
}




.open .menu {
	-webkit-transition: all .5s;
	transition: all .5s;
	visibility: visible;
		filter:alpha(opacity=100);
		-moz-opacity: 1.0;
	opacity: 1.0;
}


/*************
/* タイトル
*************/



.subctg {
	width: 100%;
	position: relative;
	display: inline-block;
	margin-bottom: 70px;
	text-align: center;
}
.subctg:before {
	content: '';
	position: absolute;
	bottom: -30px;
	display: inline-block;
	width: 100px;
	height: 1px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 2px;
}
.subctg h1 {
	margin-bottom: 16px;
	font-size: 4.0vw;
	text-align: center;
}
.subctg h6 {
	font-size: 2.4vw;
}
h1.csub {
	padding: 10px 0 20px;
	font-size: 32px;
}
h1.csub span {
	font-size: 16px;
	color: #999;
}


.lowdir .wrapper {
	width: 100%;
	margin: 0px auto;
}
.widecolumn {
	float: none;
	width: 100%;
}
.sidecolumn {
	display: none;
}
.grid {
	width: 50%;
	margin: 0;
}
.recBox {
	width: 98%;
}

.col2{
	float:none;
	width:100%;
	margin:0 0 20px;
	clear: both;
}
.newsBox {
	width: 94%;
	margin: 0 3%;
}
.bannerbox ul li img {
	width: 146px;
	height: auto;
}
.bannerbox ul li a{
	margin: 4px;
}

img.frame,#gallery img{border-width:2px;}

.alignleft,.alignright{
	float:none;
	display:block;
	margin:0 auto 10px;
}
.sub_shopname {
	width: 100%;
	padding: 8px 0;
	margin-bottom:10px;
	background:#7c6d3c;
}
.sub_shopname h2{
	margin:0 0 0 20px;
	font: 16px 'Hiragino Mincho ProN', serif;
	color: #fff;
	letter-spacing: 0.2em;
}


/* ssbox
------------------------------------------------------------*/

.ssflex {
	width: 50%;
}

.footer .inner {
	width: 94%;
	margin: 0 3%;
	padding: 30px 0 10px;
}
.footer .inner .ftlogo p {
	padding: 5px 0 0;
	font-size: 0.9em;
	letter-spacing: 0em;
}
#footnavi .inbox {
	width: 80%;
	margin: 0 auto 40px;
}
.footer .copyright {
	padding: 6px 0 4px;
	font-size: 0.8em;
	letter-spacing: 0em;
}

}


/* ----------------------------- max 896px ------------------------------------------------------------*/
@media only screen and (max-width: 896px){

.header .logobox {
	width: 12%;
	padding: 2px 0 0;
}
.header .logobox h1 img {
	width: 100%;
	height: auto;
}
.header.fixed .logobox h1 img {
	width: 100%;
	height: auto;
}
.header .topnv {
	float: right;
	width: 80%;
}


.linkbtn {
	display: block;
	width: 90%;
	margin: 0 auto;
}

/* ssbox
------------------------------------------------------------*/

.ssflex {
	width: 60%;
}

/* pagetop
------------------------------------------------------------*/

.pgtopbox {
	padding: 20px 0 40px;
}


.footer #footnavi {
	display: none;
}

.footer .ftlogo {
	padding: 50px 0 0;
}

}

/* ----------------------------- max 640px ------------------------------------------------------------*/

@media only screen and (max-width: 640px){


.loading-animation img {
	width: 100%;
	height: auto;
}

.header .logobox {
	width: 15%;
	padding: 2px 0 0;
}
/* ssbox
------------------------------------------------------------*/

.ssflex {
	width: 70%;
}


.footer .ftlogo {
	font-size: 5.0vw;
	line-height: 1.4 !important;
}
.footer .ftlogo span {
	font-size: 3.0vw;
}
.footer .attmsg {
	width: 90%;
	margin: 0 auto;
	line-height: 1.2 !important;
}


}

/* ----------------------------- max 480px ------------------------------------------------------------*/

@media only screen and (max-width: 480px){


.header .logobox {
	width: 17%;
	padding: 2px 0 0;
}

/* ssbox
------------------------------------------------------------*/

.ssflex {
	width: 80%;
}

/* FOOTER
------------------------------------------------------------*/


.footer .attmsg {
	width: 100%;
	padding: 10px 0 0;
	font-size: 0.7em;
	color: #fff;
	letter-spacing: 0.1em;
	text-align: center;
}
.footer .copyright {
	width: 100%;
	padding: 0 0 20px;
	font-size: 0.8em;
	color: #fff;
	letter-spacing: 0.1em;
	text-align: center;
}




}
