@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');




/* --------------------------------------------------------------------------------
	html & body
-------------------------------------------------------------------------------- */
html{
	
}
body {
	margin: 0 auto;
	padding: 0;
	max-width: 800px;
	line-height: 1.5;
	text-size-adjust: 100%;
	font-size: 3.8vw;
	
	color: #333;
	font-family: "Lato", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
img{
	max-width: 100%;
	height: auto;
}
address{
	font-style: normal;
}


/* --------------------------------------------------------------------------------
	共通 リセット タグ等
-------------------------------------------------------------------------------- */
.common {
	font-size: 3.8vw;
}

.common * {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	font-family: "Lato", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 400;
}

.common h1,
.common h2,
.common h3,
.common h4,
.common h5,
.common h6 {
	font-size: 1em;
	letter-spacing: 0.1em;
}
.common ol,
.common ul {
	list-style: none;
}
.common table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1em;
}
.common a,
.common a:link,
.common a:visited {
	text-decoration: none;
	color: #333;
    -webkit-tap-highlight-color:rgba(0,0,0,0.1);
	tap-highlight-color:rgba(0,0,0,0.8);
}
.common a:hover,
.common a:active {
	text-decoration: none;
}


/* --------------------------------------------------------------------------------
	共通クラス
-------------------------------------------------------------------------------- */
.clear{
	clear:both;
}
br.clear{
	display:block;
	margin:0;
	padding:0;
	clear:both;
	height:0;
	border:none;
	visibility:hidden;
	font-size:0;
}
.clearfix::after{
	content:".";
	display:block;
	clear:both;
	height:0;
	visibility:hidden;
}
.clearfix{
	min-height:1%;
}
* html .clearfix{
	height:1%;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/********** プレースホルダー **********/
::-webkit-input-placeholder{
	color:#000;
}

.font-mincho,
.font-mincho *{
	font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 400;
}



/* --------------------------------------------------------------------------------
	デバイスごとの表示・非表示
-------------------------------------------------------------------------------- */
.device-sp{
	display:block;
}
.device-sp-inline{
	display:inline;
}
.device-pc{
	display:none;
}
.device-pc-inline{
	display:none;
}

/* --------------------------------------------------------------------------------
	container
-------------------------------------------------------------------------------- */
#container{
}





/* --------------------------------------------------------------------------------
	header-sp
-------------------------------------------------------------------------------- */
#header-sp{
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;

	background: #fff;
}


/* 送料無料 */
#header-sp .h-txt{
	text-align: center;
	background: #1a1a1a;
	color: #fff;
	height: 13vw;
	font-size: 3.2vw;
	padding-top: 2.2vw;
	line-height: 1.3;
}


#header-sp .h-nav{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5vw;
	height: 19vw;
	border-bottom: 1px solid #eae9e5;
}

/* ロゴ */
#header-sp .h-logo{
	width: 46vw;
	margin:0 auto;
}
#header-sp .h-logo h1 a{
	display: block;
}
#header-sp .h-logo h1 a img{
	display: block;
}

/* カート */
#header-sp .h-nav .cart{
	width: 7vw;
	margin-top: 1vw;
}
#header-sp .h-nav .cart a{
	position: relative;
	
	display: block;
}
#header-sp .h-nav .cart a img{
	display: block;
	opacity: 0.6;
}


/* カート数量 */
#header-sp .h-nav .cart a .fs-client-cart-count{
	position: absolute;
	top: -1vw;
	right: -1.5vw;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4.5vw;
	height: 4.5vw;
	padding: 0;
	border: none;
	border-radius: 20px;
	font-size: 10px;
	color: #fff;
	background: #1a1a1a;
	line-height: 1;
	z-index: 1;
}


/*ログインメニュー表示内容切り替え
-------------------------- */
#header-sp .list .login.my-true {
	display: none;
}
#header-spr .list .logout.my-false {
	display: none;
}


/*--------------------------------------------------------------------------------
  左からスライドメニュー
-------------------------------------------------------------------------------------*/
/* ハンバーガーメニュー */
#header-sp .drawer-hidden {
	display: none;
}
#header-sp .drawer-open {
	display: flex;
	height: 7vw;
	width:7vw;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 100;
	cursor: pointer;
}

#header-sp .drawer-open span,
#header-sp .drawer-open span:before,
#header-sp .drawer-open span:after {
	content: "";
	display: block;
	height: 1px;
	width: 7vw;
	border-radius: 3px;
	background: #999;
	transition: 0.5s;
	position: absolute;
}
#header-sp .drawer-open span:before {
	bottom: 2.5vw;
}
#header-sp .drawer-open span:after {
	top: 2.5vw;
}
#header-sp .drawer-open.clicked span {
	background: rgba(255, 255, 255, 0);
}
#header-sp .drawer-open.clicked span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#header-sp .drawer-open.clicked span::after {
	top: 0;
	transform: rotate(-45deg);
}

/* 横スライドメニュー*/
#header-sp .drawer-content {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 32vw;/*ヘッダーの高さ*/
	right: 100%;/*向き変更*/
	background: #fff;
	transition: 0.5s;
	overflow: scroll;
	border-top: 1px solid #ccc;
}
#header-sp .drawer-content.clicked {
	right: 0;/*向き変更*/
}
#header-sp .drawer-content-bg.clicked {
	left: 0;
}

/* 横スライドメニュー：上部の黒帯部分がスライドアップしているときはtopからの位置を変更 */
#header-sp.h-txt-slideup .drawer-content{
	top: 19vw;
}




/*ナビゲーションの縦スクロール*/
#header-sp #g-nav-list{
	position: fixed;
	z-index: 999; 
	width:100%;
	height: 100vh;/*表示する高さ*/
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 0 0 30vw 0;
}


/*アコーディオン*/
#header-sp .h-contents .accordion_one{
	padding: 2vw;
}
#header-sp .h-contents .border{
	border-bottom: 1px solid #ccc;	
}
#header-sp .h-contents h3{
	color: #000;
	font-size: 3.6vw;
	font-weight: 700;
	padding: 5vw;
	position: relative;
	cursor: pointer;
}
#header-sp .h-contents h3.active::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
	top: 50%;
	right: 20px;
	margin-top: -4px;
}
#header-sp .h-contents h3::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	top: 50%;
	right: 20px;
	margin-top: -10px;
}
#header-sp .h-contents .no-arrow h3 a{
	display: block;
	font-weight: 700;
}
#header-sp .h-contents .no-arrow h3.active::after,
#header-sp .h-contents .no-arrow h3::after{
	display: none;
}
#header-sp .h-contents .accordion_inner {
	display: none;
	padding: 0 5vw 15vw 5vw;
}
#header-sp .h-contents .accordion_inner ul{
	margin:0;
	padding: 0;
	line-height: 2.5;
}
#header-sp .h-contents .accordion_inner ul li.heading{
	padding-bottom: 5vw;
}
#header-sp .h-contents .accordion_inner ul li a{
	color: #000;
	display: block;
}
#header-sp .h-contents .accordion_inner ul.list li{
	padding: 0;
}

#header-sp .h-contents .btn-all-item a{
	display: block;
	color: #000;
	font-size: 3.6vw;
	font-weight: 700;
	padding: 5vw;
	position: relative;
	cursor: pointer;
}




/*検索ボックス
-------------------------------------------------------*/
#header-sp .serch {
	width: 75vw;
	margin: 7vw 0;;
}
#header-sp .serch .fs-p-searchForm__input {
	width: calc(100% - 2.2em);
	padding: 5px 10px;
}
#header-sp .serch .fs-p-searchForm__button {
	overflow: hidden;
	position: relative;
	text-indent: -999px;
	width: 2.2em;
	height: 2em;
}
#header-sp .serch .fs-p-searchForm__button::before {
	font-family: "fs-icon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e932";
	display: block;
	font-size: 2.2rem;
	line-height: 1.2;
	position: absolute;
	text-indent: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
#header-sp .fs-p-inputGroup {
	display: flex;
	align-items: stretch;
	border: 1px solid #eae9e5;
	background: #eae9e5;
}
#header-sp .fs-p-inputGroup__input {
	border: none;
	border-radius: 0;
	width: calc(100% - 3em);
	flex-grow: 1;
}
#header-sp .fs-p-inputGroup__button {
	background: #eae9e5;
	border: none;
	color: #000;
	width: auto;
	flex-shrink: 0;
}


/*ログインメニュー表示内容切り替え
-------------------------- */
#header-sp .login.my-true {
	display: none;
}
#header-sp .logout.my-false {
	display: none;
}







/* --------------------------------------------------------------------------------
	fs-l-main
-------------------------------------------------------------------------------- */
.fs-l-main{

}




/* -----------------------------------------
SERVICE
---------------------------------------- */
.service-outer{
	background: #eae9e5;
	padding: 15vw 0 0 0;
}
.service-outer .service{
	margin: 0px auto;
}
.service-outer .service h2{
	margin: 0;
	padding: 0;
	font-size: 5.5vw;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
}
.service-outer .service h2 span{
	display: block;
	font-size:3.6vw;
    font-weight: normal;
	padding-top: 3vw;
    letter-spacing: 0;
}
.service ul{
	margin: 0;
	padding:5vw 2vw 9vw 2vw;
}
.service-outer .service ul li{
	border-bottom: 1px solid #ccc;
}
.service-outer .service ul li:last-child{
	border-bottom: none;
}
.service-outer .service .service-box{
	padding:6vw 7.8vw;
	text-decoration: none;
	
	display: flex;
	justify-content: space-between;	
}
.service-outer .service ul li a{
		display: block;
}
.service-outer .service ul li a .img{
	width: 30vw;
}
.service-outer .service ul li a .img{
	width: 30vw;
}
.service-outer .service ul li a .txt-box{
	width: 47vw;
	
	display: flex;
	flex-direction: column;
}
.service-outer .service ul li a .txt-box .txt-box-inner h3{
	margin: 0;
	padding: 0;
	font-size: 3.6vw;
	font-weight: 700;
}
.service-outer .service ul li a .txt-box .txt-box-inner .txt{
	font-size: 3.4vw;
	margin-top: 4vw;
}
.service-outer .service ul li a .txt-box .more{
	font-size: 3vw;
	font-weight: 700;
	margin-top: 4vw;
    letter-spacing: 0.1em;
}
.service-outer .service ul li a .more::before{
	content: ">";
	padding-right: 1vw;
}








/* --------------------------------------------------------------------------------
	footer-sp
-------------------------------------------------------------------------------- */
#footer-sp{
}


/*ログインメニュー表示内容切り替え
-------------------------- */
#footer-sp .login.my-true {
	display: none;
}
#footer-sp .logout.my-false {
	display: none;
}



#footer-sp .f-contents{
	background: #1a1a1a;
}
#footer-sp .f-contents .accordion_one{
	padding: 10vw;
}
#footer-sp .f-contents h3 {
	color: #fff;
	font-size: 3.6vw;
	font-weight: 700;
	padding: 15px 0;
	position: relative;
	cursor: pointer;
}
#footer-sp .f-contents h3.active::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
	top: 50%;
	right: 20px;
	margin-top: -4px;
}
#footer-sp .f-contents h3::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	top: 50%;
	right: 20px;
	margin-top: -10px;
}
#footer-sp .f-contents .accordion_inner {
	display: none;
	padding-bottom: 15vw;
}
#footer-sp .f-contents .accordion_inner ul{
	margin:0;
	padding: 0;
	line-height: 2.5;
}
#footer-sp .f-contents .accordion_inner ul li.heading{
	padding-bottom: 5vw;
}
#footer-sp .f-contents .accordion_inner ul li a{
	color: #999999;
	display: block;
}

#footer-sp .f-contents .accordion_inner span.pdf{
	border: 1px solid #999;
	border-radius: 5px;
	padding: 0.5vw 2vw;
}

/* インスタアイコン  コピーライト */
#footer-sp .f-btn{
	width: 8vw;
	margin: 0 auto 1vw auto;
	opacity: 0.7;
}
#footer-sp .copyright{
	padding: 2vw 0;
	text-align: center;
	font-size:3.6vw;
	color: #999;
}




/* ページ上部へ戻るボタン 
------------------------------------------------------*/
#footer-sp #page_top_sp{
	width: 13vw;
	height: 13vw;
	position: fixed;
	right: 0;
	bottom: 10vw;
	background: #1a1a1a;
	z-index: 9999;
}
#footer-sp #page_top_sp a{
	position: relative;
	display: block;
	width: 13vw;
	height: 13vw;
	text-decoration: none;
}
#footer-sp #page_top_sp a::before{
	content: '';
	width: 3vw;
	height: 3vw;
	border: 0;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	position: absolute;
	top: 50%;
	left: 40%;
	margin-top: -4px;
	transform: rotate(-45deg);
}


