@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap');


/*======================================

	common 
	
========================================*/


html {
	color: #555555;
	background-color: #ffffff;
	font-family: sans-serif;
	background-color: #ffffff;
}




	


/*======================================

	common text
	
========================================*/



p {
	color: #555555;
	font-size: 15px;
	line-height: 30px;
}

a{
	color:#555555;
	text-decoration: underline;	
}

a:hover{
	color: #fc864c;
}


a img{
border:none;
padding:0 0 0 0;
margin:0 0 0 0;
transition: all  0.5s ease;
}
a img:hover{
opacity: 0.7;
filter: alpha(opacity=70);
-ms-filter: "alpha(opacity=70)";
}


figure{
	width:100%;
	margin: 0 0 0 0;
	padding:0 0 0 0;
}
figure img{
	width:100%;
	height:auto;
	margin: 0 0 0 0;
	padding:0 0 0 0;
}

section{
	text-align: left;
}

*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	word-break: break-all; /* 枠からはみ出る際は改行 */
}



.clear{
	clear:both;
	height: 0px;
	overflow: hidden;
}






/*======================================

	page-top
	
========================================*/
#page-top {
display: none;
position: fixed;
bottom: 15px;
right: 15px;
font-size: 12px;
	}
#page-top a {
	background: #fc864c;
	text-decoration: none;
	color: #fff;
	width: 45px;
	padding: 3px 0;
	text-align: center;
	display: block;
	border-radius: 3px;
	}
#page-top a:hover {
	text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	}




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







/*======================================

	common text
	
========================================*/

body {
	margin: 0px 0px 0px 0px;
	padding: 0px 0% 0px 0% ;
	text-align : center ;
	background-color: #ffffff;
	border-top: 0px solid #333;
}

p {
	color: #333333;
	font-size: 15px;
	line-height: 30px;
}

a{
	color:#333333;
	text-decoration: underline;	
}

a:hover{
	color: #fc864c;
}


a img{
border:none;
padding:0 0 0 0;
margin:0 0 0 0;
}

a:hover img{
	border:none;
	padding:0 0 0 0;
	margin:0 0 0 0;
	opacity:0.7;
}





/*======================================

	ハンバーガー
	
========================================*/


/* =============================
Configurable CSS Variables
（ここを調整するだけで見た目を変更可能）
============================== */
:root {
/* ハンバーガー本体 */
--burger-size: 48px; /* クリック領域の一辺 */
--burger-thickness: 4px; /* 線の太さ */
--burger-gap: 6px; /* 線の間隔 */
--burger-color: #fc864c; /* 線の色 */
--burger-offset-x: 9px; /* 画面左端からの余白 */
--burger-offset-y: 15px; /* 画面上端からの余白 */
--burger-bg: transparent; /* ボタン背景（必要なら） */


/* ドロワー（メニュー本体） */
--drawer-width: min(86vw, 320px); /* 横幅 */
--drawer-bg: #003163; /* 背景色 */
--drawer-text: #222; /* 文字色 */
--drawer-divider: #eee; /* 仕切り線 */


/* マージン（メニュー外のオーバーレイ） */
--overlay-bg: rgba(0, 0, 0, 0.35);/* 透過率付き色（クリックで閉じる）*/


/* Z-index 設定 */
--z-overlay: 9997;
--z-drawer: 9998;
--z-burger: 9999;


/* アニメーション */
--anim-ms: 600ms; /* 開閉の速度 */
--easing: cubic-bezier(.2,.6,.2,1);
}


/* 画面固定のハンバーガーボタン */
.hamburger-btn {
position: fixed;
top: var(--burger-offset-y);
left: var(--burger-offset-x);
width: var(--burger-size);
height: var(--burger-size);
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--burger-bg);
border: 0;
padding: 0;
margin: 0;
cursor: pointer;
z-index: var(--z-burger);
-webkit-tap-highlight-color: transparent;
}
.hamburger-btn:focus-visible { outline: 2px solid #4c9ffe; outline-offset: 2px; }


/* ハンバーガーの3本線 */
.hamburger-icon {
position: relative;
width: calc(var(--burger-size) * 0.55);
height: calc(var(--burger-thickness) * 3 + var(--burger-gap) * 2);
}
.hamburger-icon::before,
.hamburger-icon::after,
.hamburger-icon span {
content: "";
position: absolute;
left: 0;
right: 0;
height: var(--burger-thickness);
background: var(--burger-color);
border-radius: 2px;
transition: transform var(--anim-ms) var(--easing), opacity var(--anim-ms) var(--easing), background var(--anim-ms) var(--easing);
}
.hamburger-icon::before { top: 0; }
.hamburger-icon span { top: calc(50% - var(--burger-thickness)/2); }
.hamburger-icon::after { bottom: 0; }


/* 開いたときに×印に変形 */
.hamburger-btn[aria-expanded="true"] .hamburger-icon::before {
transform: translateY(calc(var(--burger-gap) + var(--burger-thickness))) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] .hamburger-icon span {
opacity: 0;
}
.hamburger-btn[aria-expanded="true"] .hamburger-icon::after {
transform: translateY(calc(-1 * (var(--burger-gap) + var(--burger-thickness)))) rotate(-45deg);
}

/* ---- Drawer/Overlay 強制版（最後に置く） ---- */
#js-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(86vw, 320px);
  max-width: 100vw;
  background: #fff;
  color: #222;
  z-index: 9998;
  /* 初期は画面外（古い環境向けに transform を使用） */
  transform: translateX(-100%);
  transition: transform var(--anim-ms) var(--easing);
  box-shadow: 2px 0 16px rgba(0,0,0,.15);
}
#js-drawer.is-open {
  transform: translateX(0);
}

#js-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--anim-ms) var(--easing);
  z-index: 9997;
}
#js-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* 背面スクロール抑止 */
.no-scroll { overflow: hidden; touch-action: none; }


#js-drawer{ background: none; background-color: var(--drawer-bg); }


.drawer-nav{
	margin-top: 60px;
}

.to-home{
	font-size: 14px;
	list-style: none;
	padding: 0;
	width: 80%;
	margin: 0 auto 21px auto;
}

.to-home li{
	font-size: 14px;
}

.to-home li a{
	display: block;
	width: 100%;
	font-size: 14px;
	padding: 9px;
	color: #fff;
	border: 1px solid #fff;
	text-decoration: none;
}


.to-catalog{
	font-size: 14px;
	list-style: none;
	padding: 0;
	width: 80%;
	margin: 0 auto 21px auto;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}

.to-catalog li{
	font-size: 14px;
}

.to-catalog li a{
	display: block;
	width: 100%;
	font-size: 14px;
	padding: 9px;
	color: #fff;
	border-bottom: 1px solid #fff;
	text-decoration: none;
}



.to-page{
	font-size: 14px;
	list-style: none;
	padding: 0;
	width: 80%;
	margin: 0 auto 0px auto;
}

.to-page li{
	font-size: 14px;
	margin-bottom: 12px;
}

.to-page li a{
	display: block;
	width: 100%;
	font-size: 14px;
	padding: 0px;
	color: #fff;
	text-decoration: none;
}


/*======================================

	layout
	
========================================*/



.contents-wrapper{
	width:90%;
	min-height: 95%;
	text-align: left;
	margin: 0 auto 60px auto;
	padding: 0 0px 0 0px ;
}

.contents-wrapper-catalog{
	width:90%;
	text-align: left;
	margin: 0 auto 60px auto;
	padding: 0 0px 0 0px ;
	display: block;
	justify-content: space-between;
	flex-direction: row-reverse;
}




.main-col{
	width:100%;
	position: relative;
	text-align: left;
	margin: 0 0px 0 0;
	padding: 0px 0 0px 0 ;
	background: transparent;
}

.side-col{
	width:100%;
	position: relative;
	text-align: left;
	margin: 0 0px 0 0;
	padding: 0px 0 0px 0 ;
	background: transparent;
}

.center-col{
	width:90%;
	min-height: 100%;
	position: relative;
	text-align: left;
	margin: 0 auto 60px auto;
	padding: 0px 0 0px 0 ;
	background: transparent;
}



/*======================================

	h2
	
========================================*/

.catalog-h2{
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size:30px;
	line-height: 1.5;
	letter-spacing:0em;
	text-indent:0em;
	padding: 0 0 0 0;
	margin:12px auto 30px auto;
	width: 100%;
	min-width: 100%;
}

.catalog-h2 a{
	text-decoration: none;
}


.page-h2{
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size:30px;
	line-height: 1.5;
	letter-spacing:0em;
	text-indent:0em;
	padding: 0 0 0 0;
	margin:24px auto 30px auto;
	width: 100%;
	min-width: 100%;
}

.page-h2 a{
	text-decoration: none;
}


/*======================================

	header
	
========================================*/




header#header{
	width:100%;
	min-width: 100%;
	text-align: center;
	margin: 0 auto 0px auto;
	padding: 0 42px 0 42px ;
	background: #003163;
	border-bottom: 6px solid #fc864c;
	position: relative;
}







/*======================================

	page-head
	
========================================*/

.page-head{
	width:100%;
	margin:  auto; 
	display: flex;
	justify-content: flex-start;
	margin-bottom: 12px;
}


.page-head-left{
	width:100%;
	text-align: center;
	margin: 0 0 0 0;
	padding: 0 0 0 0px ;
	background-color: transparent;
}

.description{
	width:100%;
	text-align: left;
	margin: 0 0 0 0;
	padding: 12px 0 0px 0 ;
	background-color: transparent;
}

.description p{
	font-size:11px;
	line-height: 12px;
	padding:0 0 0 0;
	margin: 0 0 0 0;
	font-style: normal;
	color:#aaaaaa;
}

.description h1{
	display: block;
	font-size:11px;
	line-height: 12px;
	padding:0 0 0 0;
	margin: 0 0 0 0;
	font-style: normal;
	font-weight: normal;
	color:#aaaaaa;
}


.page-head-right {
	display: none;
	width:520px;
	height:35px;
	margin: 0 0 0 0;
	padding:0 0px 0 0;
	text-align: right;
}

.gnavi {
	display: none;
	width:100%;
	height:35px;
	margin: 0 auto 0 auto;
	padding:0 0 0 0;
	text-align: right;
}

.gnavi ul {
	margin:0 0 0 0;
	padding:0 0 0 0; 
	list-style-type:none;
	display: flex;
	justify-content: flex-end;
}

.gnavi li {
	display: block;
	font-size: 12px;
	padding:0 0 0 0; 
	margin: 0 0 0 9px;
	width: 90px;
	height: 60px;
}

.gnavi li a{
	display: block;
	color:#fff;
	text-align: center;
	text-decoration: none;
	margin: 0 0 0 0px;
	padding: 5px 0 5px 0;
	border-left:1px solid #ccc;
	border-bottom:1px solid #ccc;
	border-right:1px solid #ccc;
	border-radius: 0px 0px 6px 6px;
}
.gnavi li a.now{
	display: block;
	background: #fc864c;
	color: #fff;
	text-align: center;
	text-decoration: none;
	margin: 0 0 0 0px;
	padding: 5px 0 5px 0;
	border-left:1px solid #fc864c;
	border-bottom:1px solid #fc864c;
	border-right:1px solid #fc864c;
	border-radius: 0px 0px 6px 6px;
}

.gnavi li a:hover{
	background: #fc864c;
	color: #fff;
	border-left:1px solid #fc864c;
	border-bottom:1px solid #fc864c;
	border-right:1px solid #fc864c;
	border-radius: 0px 0px 6px 6px;
}



/*======================================

	head-navi
	
========================================*/

.head-navi{
	width: 100%;
	margin: 0px auto 9px auto;
	padding: 0 0px 0 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #003163;
}

.head-navi-left{
	width: 100%;
	text-align: center;
}

.head-navi-right{
	display: none;
	width: 600px;
	padding: 0px 0 21px 0;
}

.head-main-logo{
	width: 270px;
	height: auto;
	margin: 0px auto 0px auto;
}

.head-main-logo img{
	width: 100%;
	height: auto;
}


.head-navi-common{
	width: 600px;
	display: flex;
	justify-content: flex-end;
}

.head-navi-common a{
	display: inline-block;
	color:#fff;
	font-size: 14px;
	text-decoration: none;
	margin-left: 15px;
}

.head-navi-common a:hover{
	display: inline-block;
	color:#fc864c;
	font-size: 14px;
	text-decoration: none;
	margin-left: 15px;
}

/*======================================

	head-function 
	
========================================*/

.head-function {
	width: 100%;
	padding: 0px 0px 0px 0px;
	margin: 0px auto 0px auto;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}


.head-function-left {
	width: 100%;
	display: block;
	justify-content: space-between;
}



.head-function-search{
	width: 100%;
}
.head-function-category{
	width: 100%;
}


.navi-category {
	margin:12px 0 0 0;
	padding:0 0 0 0; 
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border-left: 1px solid #fff;
}

.navi-category a {
	display: block;
	margin:0 0 0 0px;
	padding:0 0 0 0; 
	width: 132px;
	height:42px;
	border-right: 1px solid #fff;
	text-decoration: none;
	color: #fff;
	padding: 3px 0px 0 0;
	font-size: 13px;
	line-height: 1.2;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	background: #003163;
	word-break: normal;
}

.navi-category a:hover {
	color:#fc864c;
	border-right: 1px solid #fc864c;
}

#navi-category-to-all{
	display: none;
}


.head-cart-wrapper{
	position: fixed;
	top:15px;
	right: 15px;
	z-index: 99;
}
a.head-cart{
	display: block;
	width: 45px;
	height:45px;
	border-radius: 50%;
	background: #fc864c;
	margin: 0 0 0 0;
	position: relative;
}

a.head-cart:hover{
	opacity: 0.7;
}




img.head-cart-icon{
	width: 21px;
	height: 21px;
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-55%,-50%);
}


.search_container{
  position: relative;
  border: 0px solid #999;
  padding: 3px 10px;
  border-radius: 12px;
  height: 36px;
  width: 100%;
  overflow: hidden;
  background: #eee;
}
.search_container input[type="text"]{
  width: 270px;
  border: none;
  height: 32px;
  font-size: 16px;
  background: #eee;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  font-family: FontAwesome;
  border: none;
  background: #fff;
  color: #003163;
  position: absolute;
  width: 27px;
  height: 27px;
  right:12px;
  top: 3px;
  outline : none;
  font-size: 18px;
  background: #eee;
}



/*======================================

	breadcrumbs
	
========================================*/

.breadcrumbs-wrapper {
	width:90%;
	text-align: center;
	margin: 0 auto 0px auto;
	padding: 0 0px 0 0px ;
	text-align: center;
}


.breadcrumbs {
	width:100%;
	text-align: left;
	margin:18px auto 0px auto;
	padding:6px 0 0px 0;
	display: flex;
}

.breadcrumbs li{
	font-size:12px;
	display:inline-block;
	margin:0 0 0 0;
	padding:0 0 0 0;
}
.breadcrumbs li a{
	text-decoration: none;
}






/*======================================

	footer
	
========================================*/



#footer-wrapper {
	background: #003163;
	width: 100%;
	padding: 33px 0 20px 0;
	margin: 0px 0 0 0;
	clear: both;
	text-align: center;
	color: #fff ;
	border-top:3px solid #fc864c;
}

#footer {
	width: 90%;
	padding: 0 0 0 0;
	margin: 0px auto 0 auto;
	clear: both;
	text-align: left;
	color: #000000 ;
	border-top:0px solid #cccccc;
}

#footer-wrapper p {
	font-size:12px;
	line-height: 20px;
	color:#333;
}




/*======================================

	footernavi-nav
	
========================================*/

.footer-nav01{
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 0 0 33px 0;
}

.footer-nav01 a{
	font-size:14px;
	width: 90px;
	text-decoration: none;
	display: block;
	padding: 3px 0px 3px 0px;
	margin: 0 0px 0 0px;
	border-left:1px solid #fff;
	text-align: center;
	color:#fff;
}

.footer-nav01 a.last-child{
	border-right:1px solid #fff;
}

.footer-nav01 a:hover{
	color: #fc864c;
}


.footer-nav02{
	width: 100%;
	display: flex;
	justify-content:center;
	flex-flow: center;
	flex-wrap: wrap;
	margin: 0 0 24px 0;
	color:#fff;
}


.footer-nav02 a{
	font-size:13px;
	text-decoration: none;
	display: inline-block;
	padding: 2px 15px 2px 15px;
	border-left:1px solid #fff;
	color:#fff;
	margin-bottom: 12px;
}

.footer-nav02 a:hover{
	color: #fc864c;
}

.last-child{
	border-right:1px solid #fff;
}





/*======================================

	copyright
	
========================================*/



#copyright {
	width:100%;
	clear:both;
	margin: 30px auto 0 auto;
	padding:0 0 0 0;
	text-align: center;
}

#copyright p {
	color:#fff;
	font-size:12px;
}


/*======================================

	breadcrumbs
	
========================================*/

#breadcrumbs-wrapper {
	width: 100%;
	min-width: 1080px;
	padding: 0px 0 0px 15px;
	margin: 0px auto 0 auto;
	clear: both;
	text-align: center;
}


#breadcrumbs {
	width: 100%;
	min-width: 1080px;
	text-align: left;
	margin:0px auto 12px auto;
	padding: 0px 0 0px 15px;
	color: #cccccc ;
	height:20px;
	}

#breadcrumbs li{
	font-size:12px;
	float:left;
	display:inline;
	margin:0 0 0 0;
	padding:0 0 0 0;
	color:#999;
}

#breadcrumbs li a{
	color:#555555;
}

#breadcrumbs li a:hover{
	color:#fc864c;
}



/*======================================

	footer-mid
	
========================================*/

.footer-mid{
	width:100%;
	border-top:0px solid #ccc;
	border-bottom:0px dotted #f9e7a9;
	margin:0px auto 0px auto;
	padding:60px 0 60px 0;
	text-align: center;
}

section#footer-recent{
	background: #faf6f0;
}


.footer-mid-inner{
	width:90%;
	margin: 0 auto;
}




/*======================================

	footer-recent
	
========================================*/




h2.footer-recent-h2{
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size:21px;
	line-height: 1;
	border-bottom:0px solid #ccc;
	padding: 0 0 0px 0;
	margin: 0px auto 60px auto;
}



.recent-list-wrapper{
	width:100%;
	border-top:0px solid #ccc;
	margin:0px auto 0px auto;
	text-align: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	background: transparent;
	gap:4%;
}


.recent-list{
	display: block;
	width:47%;
	margin-bottom: 24px;
	text-align: left;
	text-decoration: none;
	margin-bottom:21px;
}

.recent-list-image{
	width:120px;
	height: 120px;
	margin: 0 auto 12px auto;
}

.recent-list-thumbnail{
	width:120px;
	height: 120px;
	margin-bottom: 12px;
	object-fit:contain;
}

.recent-list-h3{
	font-size:14px;
	line-height: 1.5;
	text-decoration: none;
	padding: 0;
	margin: 0;
	font-weight: normal;
}

.recent-list-h3 span{
	display: block;
}


.recent-list-title{
	font-size:14px;
}
.recent-list-note{
	font-size:14px;
}










}/*//end  max-width: 480px ///////////////////////*/











@media only screen and (min-width: 481px) {



.mobile-menu{
	display: none;
}

/*======================================

	common text
	
========================================*/

body {
	margin: 0px 0px 0px 0px;
	padding: 0px 0% 0px 0% ;
	text-align : center ;
	background-color: #ffffff;
	border-top: 0px solid #333;
}

p {
	color: #333333;
	font-size: 15px;
	line-height: 30px;
}

a{
	color:#333333;
	text-decoration: underline;	
}

a:hover{
	color: #fc864c;
}


a img{
border:none;
padding:0 0 0 0;
margin:0 0 0 0;
}

a:hover img{
	border:none;
	padding:0 0 0 0;
	margin:0 0 0 0;
	opacity:0.7;
}




/*======================================

	layout
	
========================================*/



.contents-wrapper{
	width:1060px;
	min-height: 500px;
	text-align: left;
	margin: 0 auto 60px auto;
	padding: 0 40px 0 40px ;
}

.contents-wrapper-catalog{
	width:1060px;
	min-height: 500px;
	text-align: left;
	margin: 0 auto 60px auto;
	padding: 0 40px 0 40px ;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}




.main-col{
	width:700px;
	position: relative;
	text-align: left;
	margin: 0 0px 0 0;
	padding: 0px 0 0px 0 ;
	background: transparent;
}

.side-col{
	width:220px;
	position: relative;
	text-align: left;
	margin: 0 0px 0 0;
	padding: 0px 0 0px 0 ;
	background: transparent;
}

.center-col{
	width:780px;
	min-height: 500px;
	position: relative;
	text-align: left;
	margin: 0 auto 60px auto;
	padding: 0px 0 0px 0 ;
	background: transparent;
}



/*======================================

	h2
	
========================================*/

.catalog-h2{
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size:36px;
	line-height: 1.5;
	letter-spacing:0em;
	text-indent:0em;
	padding: 0 0 0 0;
	margin:12px auto 45px auto;
	width: 100%;
	min-width: 1060px;
}

.catalog-h2 a{
	text-decoration: none;
}


.page-h2{
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size:36px;
	line-height: 1.5;
	letter-spacing:0em;
	text-indent:0em;
	padding: 0 0 0 0;
	margin:12px auto 45px auto;
	width: 100%;
	min-width: 1060px;
}

.page-h2 a{
	text-decoration: none;
}


/*======================================

	header
	
========================================*/




header#header{
	width:100%;
	min-width: 1060px;
	text-align: center;
	margin: 0 auto 0px auto;
	padding: 0 40px 0 40px ;
	background: #003163;
	border-bottom: 6px solid #fc864c;
	position: relative;
}







/*======================================

	page-head
	
========================================*/

.page-head{
	width:100%;
	height:42px;
	margin:  auto; 
	display: flex;
	justify-content: flex-start;
}


.page-head-left{
	width:70%;
	height:35px;
	text-align: center;
	margin: 0 0 0 0;
	padding: 0 0 0 0px ;
	background-color: transparent;
}

.description{
	width:100%;
	text-align: left;
	margin: 0 0 0 0;
	padding: 12px 0 0px 0 ;
	background-color: transparent;
}

.description p{
	font-size:11px;
	line-height: 12px;
	padding:0 0 0 0;
	margin: 0 0 0 0;
	font-style: normal;
	color:#aaaaaa;
}

.description h1{
	font-size:11px;
	line-height: 12px;
	padding:0 0 0 0;
	margin: 0 0 0 0;
	font-style: normal;
	font-weight: normal;
	color:#aaaaaa;
}


.page-head-right {
	width:520px;
	height:35px;
	margin: 0 0 0 0;
	padding:0 0px 0 0;
	text-align: right;
}

.gnavi {
	width:100%;
	height:35px;
	margin: 0 auto 0 auto;
	padding:0 0 0 0;
	text-align: right;
}

.gnavi ul {
	margin:0 0 0 0;
	padding:0 0 0 0; 
	list-style-type:none;
	display: flex;
	justify-content: flex-end;
}

.gnavi li {
	display: block;
	font-size: 12px;
	padding:0 0 0 0; 
	margin: 0 0 0 9px;
	width: 90px;
	height: 60px;
}

.gnavi li a{
	display: block;
	color:#fff;
	text-align: center;
	text-decoration: none;
	margin: 0 0 0 0px;
	padding: 5px 0 5px 0;
	border-left:1px solid #ccc;
	border-bottom:1px solid #ccc;
	border-right:1px solid #ccc;
	border-radius: 0px 0px 6px 6px;
}
.gnavi li a.now{
	display: block;
	background: #fc864c;
	color: #fff;
	text-align: center;
	text-decoration: none;
	margin: 0 0 0 0px;
	padding: 5px 0 5px 0;
	border-left:1px solid #fc864c;
	border-bottom:1px solid #fc864c;
	border-right:1px solid #fc864c;
	border-radius: 0px 0px 6px 6px;
}

.gnavi li a:hover{
	background: #fc864c;
	color: #fff;
	border-left:1px solid #fc864c;
	border-bottom:1px solid #fc864c;
	border-right:1px solid #fc864c;
	border-radius: 0px 0px 6px 6px;
}



/*======================================

	head-navi
	
========================================*/

.head-navi{
	width: 100%;
	margin: 0px auto 9px auto;
	padding: 0 0px 0 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #003163;
}

.head-navi-left{
	width: 380px;
	text-align: left;
}
.head-navi-right{
	width: 600px;
	padding: 0px 0 21px 0;
}

.head-main-logo{
	width: 380px;
	height: auto;
	margin: 0px 0 0px 0;
}

.head-main-logo img{
	width: 100%;
	height: auto;
}


.head-navi-common{
	width: 600px;
	display: flex;
	justify-content: flex-end;
}

.head-navi-common a{
	display: inline-block;
	color:#fff;
	font-size: 14px;
	text-decoration: none;
	margin-left: 15px;
}

.head-navi-common a:hover{
	display: inline-block;
	color:#fc864c;
	font-size: 14px;
	text-decoration: none;
	margin-left: 15px;
}

/*======================================

	head-function 
	
========================================*/

.head-function {
	width: 100%;
	padding: 0px 0px 0px 0px;
	margin: 0px auto 18px auto;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}


.head-function-left {
	width: 840px;
	display: flex;
	justify-content: space-between;
}



.head-function-search{
	width: 270px;
}
.head-function-category{
	width: 720px;
}


.navi-category {
	margin:0 0 0 0;
	padding:0 0 0 0; 
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.navi-category a {
	display: block;
	margin:0 0 0 0px;
	padding:0 0 0 0; 
	width: 172px;
	height:32px;
	border-right: 1px solid #fff;
	text-decoration: none;
	color: #fff;
	padding: 6px 9px 0 0;
	font-size: 14px;
	font-family: 'Noto Serif JP', serif;
	text-align: right;
	background: #003163;
}

.navi-category a:hover {
	color:#fc864c;
	border-right: 1px solid #fc864c;
}



.head-cart-wrapper{
	position: absolute;
	bottom:12px;
	right: 40px;
}
a.head-cart{
	display: block;
	width: 72px;
	height:72px;
	border-radius: 50%;
	background: #fc864c;
	margin: 0 0 0 0;
	position: relative;
}

a.head-cart:hover{
	opacity: 0.7;
}




img.head-cart-icon{
	width: 27px;
	height: 27px;
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-55%,-50%);
}


.search_container{
  position: relative;
  border: 0px solid #999;
  padding: 3px 10px;
  border-radius: 12px;
  height: 36px;
  width: 300px;
  overflow: hidden;
  background: #eee;
}
.search_container input[type="text"]{
  width: 270px;
  border: none;
  height: 32px;
  font-size: 16px;
  background: #eee;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  font-family: FontAwesome;
  border: none;
  background: #fff;
  color: #003163;
  position: absolute;
  width: 27px;
  height: 27px;
  right:12px;
  top: 3px;
  outline : none;
  font-size: 18px;
  background: #eee;
}



/*======================================

	breadcrumbs
	
========================================*/

.breadcrumbs-wrapper {
	width:100%;
	min-width: 1060px;
	text-align: center;
	margin: 0 auto 0px auto;
	padding: 0 40px 0 40px ;
	text-align: center;
}


.breadcrumbs {
	width:100%;
	text-align: left;
	margin:18px auto 0px auto;
	padding:6px 0 0px 0;
	display: flex;
}

.breadcrumbs li{
	font-size:12px;
	display:inline-block;
	margin:0 0 0 0;
	padding:0 0 0 0;
}
.breadcrumbs li a{
	text-decoration: none;
}






/*======================================

	footer
	
========================================*/



#footer-wrapper {
	background: #003163;
	width: 100%;
	padding: 33px 0 20px 0;
	margin: 0px 0 0 0;
	clear: both;
	text-align: center;
	color: #fff ;
	border-top:3px solid #fc864c;
}

#footer {
	width: 1080px;
	padding: 0 0 0 0;
	margin: 0px auto 0 auto;
	clear: both;
	text-align: left;
	color: #000000 ;
	border-top:0px solid #cccccc;
}

#footer-wrapper p {
	font-size:12px;
	line-height: 20px;
	color:#333;
}




/*======================================

	footernavi-nav
	
========================================*/

.footer-nav01{
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 0 0 33px 0;
}

.footer-nav01 a{
	font-size:15px;
	width: 150px;
	text-decoration: none;
	display: block;
	padding: 3px 0px 3px 0px;
	margin: 0 0px 0 0px;
	border-left:1px solid #fff;
	text-align: center;
	color:#fff;
}

.footer-nav01 a.last-child{
	border-right:1px solid #fff;
}

.footer-nav01 a:hover{
	color: #fc864c;
}


.footer-nav02{
	width: 100%;
	display: flex;
	justify-content:center;
	flex-flow: center;
	margin: 0 0 24px 0;
	color:#fff;
}


.footer-nav02 a{
	font-size:13px;
	text-decoration: none;
	display: inline-block;
	padding: 2px 15px 2px 15px;
	border-left:1px solid #fff;
	color:#fff;
}

.footer-nav02 a:hover{
	color: #fc864c;
}

.last-child{
	border-right:1px solid #fff;
}





/*======================================

	copyright
	
========================================*/



#copyright {
	width:100%;
	clear:both;
	margin: 30px auto 0 auto;
	padding:0 0 0 0;
	text-align: center;
}

#copyright p {
	color:#fff;
	font-size:12px;
}


/*======================================

	breadcrumbs
	
========================================*/

#breadcrumbs-wrapper {
	width: 100%;
	min-width: 1080px;
	padding: 0px 0 0px 15px;
	margin: 0px auto 0 auto;
	clear: both;
	text-align: center;
}


#breadcrumbs {
	width: 100%;
	min-width: 1080px;
	text-align: left;
	margin:0px auto 12px auto;
	padding: 0px 0 0px 15px;
	color: #cccccc ;
	height:20px;
	}

#breadcrumbs li{
	font-size:12px;
	float:left;
	display:inline;
	margin:0 0 0 0;
	padding:0 0 0 0;
	color:#999;
}

#breadcrumbs li a{
	color:#555555;
}

#breadcrumbs li a:hover{
	color:#fc864c;
}



/*======================================

	footer-mid
	
========================================*/

.footer-mid{
	width:100%;
	border-top:0px solid #ccc;
	border-bottom:0px dotted #f9e7a9;
	margin:0px auto 0px auto;
	padding:60px 0 60px 0;
	text-align: center;
}

section#footer-recent{
	background: #faf6f0;
}


.footer-mid-inner{
	width:1060px;
	margin: 0 auto;
}




/*======================================

	footer-recent
	
========================================*/




h2.footer-recent-h2{
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size:24px;
	line-height: 1;
	border-bottom:0px solid #ccc;
	padding: 0 0 0px 0;
	margin: 0px auto 60px auto;
}



.recent-list-wrapper{
	width:1080px;
	border-top:0px solid #ccc;
	margin:0px auto 0px auto;
	text-align: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	background: transparent;
}


.recent-list{
	display: block;
	width:145px;
	margin-bottom: 24px;
	text-align: left;
	text-decoration: none;
	margin: 0 12px 24px 12px;
}

.recent-list-image{
	width:120px;
	height: 120px;
	margin: 0 auto 12px auto;
}

.recent-list-thumbnail{
	width:120px;
	height: 120px;
	margin-bottom: 12px;
	object-fit:contain;
}

.recent-list-h3{
	font-size:14px;
	line-height: 1.5;
	text-decoration: none;
	padding: 0;
	margin: 0;
	font-weight: normal;
}

.recent-list-h3 span{
	display: block;
}


.recent-list-title{
	font-size:14px;
}
.recent-list-note{
	font-size:14px;
}






}/*//end  min-width: 481px ///////////////////////*/







