@charset "utf-8";

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family: "IBM Plex Sans JP", sans-serif;
  color: #333;
}

@media(min-width:961px){
	.sponly{
	  display:none !important;
	}
  }
@media(max-width:960px){
  .pconly{
    display:none !important;
  }
}
@media(min-width:561px){
	.show_sp{display: none !important;}
 }
 @media(min-width:961px){
	.show_sptb{display: none !important;}
 }
 @media(max-width:560px){
	.show_tbpc{display: none !important;}
 }
 @media(max-width:960px){
	.show_pc{display: none !important;}
 }
/*変数*/
:root{
	--basecolor: #b9ac8a ; /*基本色*/
	--sabcolor: #fffbef; /*サブカラー*/
	--sabcolor2: #fff2cc; /*サブカラー2*/
}

img{
  max-width:100%;
  vertical-align:bottom;
}


p{
	margin:0
}

h3{
	margin:0;
}

a{
	color: #333;
  text-decoration: none;

}

a:visited{
    color: #333;
}

a:hover{
  /*filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;*/
}
.tac{
	text-align: center;
}
.tal{
	text-align: left;
}
.tar{
	text-align: right;
}
.mg0{
	margin: 0 auto;
}


.margin1{
	margin:10px
}
.margin2{
	margin:20px
}
.margin3{
	margin:30px
}
.margin4{
	margin:40px
}
.margin5{
	margin:50px
}
.mgb1{
	margin-bottom:10px
}
.mgb2{
	margin-bottom:20px
}
.mgb3{
	margin-bottom:30px
}
.mgb4{
	margin-bottom:40px
}
.mgb5{
	margin-bottom:50px
}
.mgt1{
	margin-top:10px
}
.mgt2{
  margin-top:20px
}
.mgt3{
	margin-top:30px
}
.mgt4{
	margin-top:40px
}
.mgt5{
	margin-top:50px
}
.mgl1{
	margin-left:10px
}
.mgl2{
	margin-left:20px
}
.mgl3{
	margin-left:30px
}
.mgl4{
	margin-left:40px
}
.mgl5{
	margin-left:50px
}
.mgr1{
	margin-right:10px
}
.mgr2{
  margin-right:20px
}
.mgr3{
	margin-right:30px
}
.mgr4{
	margin-right:40px
}
.mgr5{
	margin-right:50px
}
.n_mgt5{
	margin-top:5%
}

.padding1{
	padding:10px
}
.padding2{
	padding:20px
}
.padding3{
	padding:30px
}
.padding4{
	padding:40px
}
.padding5{
	padding:50px
}
.pdt1{
	padding-top:10px
}
.pdt2{
  padding-top:20px
}
.pdt3{
  padding-top:30px
}
.pdt4{
  padding-top:40px
}
.pdt5{
	padding-top:50px
}
.pdt6{
	padding-top:60px
}
.pdt7{
	padding-top:70px
}
.pdt8{
	padding-top:80px
}
.pdt9{
	padding-top:90px
}
.pdt10{
	padding-top:100px
}
.pdb1{
	padding-bottom:10px
}
.pdb2{
  padding-bottom:20px
}
.pdb3{
  padding-bottom:30px
}
.pdb4{
  padding-bottom:40px
}
.pdb5{
	padding-bottom:50px
}
.pdb6{
	padding-bottom:60px
}
.pdb7{
	padding-bottom:70px
}
.pdb8{
	padding-bottom:80px
}
.pdb9{
	padding-bottom:90px
}
.pdb10{
	padding-bottom:100px
}
.pdr5{
	padding-right:30% ;

}

/*----------
特殊例
-----------*/
/*----------
マーカー下線
----------*/
.marker_line {
    background: linear-gradient(transparent 60%, var(--basecolor) 0%);
}
.marker_line_oreng{
	background: linear-gradient(transparent 50%, #ffd95d9f 50%);
}
/*---------
 題字下下線
 ----------*/
.hr-green {
    border-top: 2px solid #3ca27e;
    width: 80px;
}



/*------------*/

.flex{
	display: flex;
}
.flex_wrap_reverse{
	display: flex;
}

/*--------------------------------
       ここまでtemplate
---------------------------------*/
.top_menu_bar{
	/*max-width: 1500px;*/
	width: 100%;
	margin: 0px auto;
	align-items: center;
	justify-content:space-evenly;
	background: var(--sabcolor);
}
.logo_design.flex{
	align-items: flex-end;
}
.logo_design h1 img{
	width: auto;
	height: 50px;
}


/*==================================================
共通　横並びのための設定
===================================*/

.gnavi{
    display: flex;
    flex-wrap: wrap;/*スマホ表示折り返し用なのでPCのみなら不要*/
    list-style: none;
}

.gnavi li a{
    display: block;
    padding:10px ;
    text-decoration: none;
    color: #333;
}

.gnavi li{

}

/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#333;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#c00000;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}
.gnavi img{
	width: auto;
	height: 60px;
	margin: 0 0 0 5px;
}

#dummy_block{
	height: 112px;
}

.hide{
	display: none;
}
.fixed{
	z-index: 4;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.contact_link a{
	color: #fff;

}
.contact_link img{
	width: auto;
	height: 60px;
	margin: 0 0 0 10px;
}


#slider{
	width: 100%;
	height: 100vh
}

@media(max-width:768px){
	#slider{
		height:60vh;	
	}
}
/*---content--*/
.section_box{
	position: relative;
	margin: 0 auto;
}
.section_box.back_1{
	background: var(--sabcolor);
	padding: 30px 0;
	z-index: 0;
}
.section_box.back_2{
	background: var(--sabcolor2);
	padding: 30px 0;
	z-index: 0;
}
.section_box.left_orange{

}
.section_box.left_orange::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 20%;
	height: 100%;
	background: var(--sabcolor2);
	z-index: -1;
}
.section_box.right_orange::after{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 20%;
	height: 100%;
	background: var(--sabcolor2);
	z-index: -1;
}
.contents_box{
	max-width: 1500px;
	width: 90%;
	margin: 0 auto;
}

/*---intro--*/
.about_syohin img{
	margin: 30px auto 20px;
}
.about_syohin p{
	font-size: 130%;
	margin: 50px auto;
	line-height: 1.6;
	font-weight: bold;
}


/*---beme_wrap--*/
.about_us_wrap {
	margin: 0px auto ;
	padding: 50px 0;
}
.about_us_wrap .flex{
	position: relative;
	align-items: center;
	justify-content: space-around;
	margin: 50px auto;
}
.about_us_txt{
	position: relative;
	text-align: center;
	padding: 0 0 0 120px;
	line-height: 2;
	width: 50%;
}
.about_us_wrap::after{
	content: "";
	position: absolute;
	width: 70%;
	height: 100%;
	top: -0%;
	left: 0;
	background: var(--sabcolor2);
	z-index: -1;
}
.about_us_ttl{
	margin: 0 auto 50px;
}
.about_us_txt p{
	margin: 20px auto;
}
.about_us_txt p span{
	display:inline-block;
}
.about_us_img {
	width: 50%;
	text-align: center;
}
.about_us_img img{
	width: 70%;
}

/*----about me---*/
.section_box.about_me_wrap{
	padding: 100px 0 50px;
}
.about_me_wrap .flex{
	background: #fff;
	padding: 40px;
	align-items: center;
}
.about_me_ttl img{
	width: 30%;
} 
.about_me_txt{
	width: 50%;
	line-height: 2;
}
.about_me_txtbox{
	width: fit-content;
	margin: 40px auto 0;
}
.about_me_txtbox p{
	max-width:390px
}
.about_me_txt p{
	margin: 20px auto;
	line-height:1.8;
}
.about_me_img {
	width: 50%;
}
.about_me_img{
	text-align: center;
}
.about_me_img img{
	width: 75%;
}
.about_me_txt h3{
	text-align: right;
}

/*---会社概要---*/
.company_wrap.section_box{

}
.company_wrap h2{
	color: #ff6699;
	font-weight: normal;
}
.company_wrap h2 span{
	display: block;
	color: #333;
	font-weight: bold;
}
.contents_box .history_link{
	background: #dbd3c9;
	padding: 20px;
	font-weight: bold;
}
.company_box{
	margin: 100px auto 0;
}
.company_box h5{
	font-size: 120%;
}
.company_box h5 span{
	display: block;
	font-weight: normal;
	color: #ff6699;
	margin: 0 auto 30px;
}
.company_box dl{
	display: flex;
}
.company_box dl dt{
	width: 10%;
}
.online_logo img{
	width: 40%;
}


/*----*/
.history_ttl h2{
	color: #ff6699;
	text-align: center;
}
.history_ttl h2 span{
	display: block;
	color: #333;

}
.history_wrap .flex{
	position: relative;
	align-items: flex-start;
}
.history_wrap::after{
	content: "";
	position: absolute;
	width: 70%;
	height: 100%;
	top: -0%;
	left: 0;
	background: #fff;
	z-index: -1;
}
.history_img{
	margin: 50px auto 0;
	width: 40%;
}
.history_txt{
	width: 60%;
	margin: 0 10% 0 5%;
	padding: 50px 0 30px;

}
.history_txt .tac{
	/* margin: 50px auto; */
}
.history_txt .tar{
	margin: 20px auto;
}




/*------------- footer -------------*/
footer{
	margin: 0px 0 0;
	text-align: center;
	padding: 30px 0;
	background: var(--sabcolor);
}


/*--商品一覧--*/
.product_wrap{
	position: relative;
	margin: 0px 0 0 0;
	width: 60%;
	padding: 70px 0 100px;
	z-index: 1;
}
.product_ttl {
	text-align: center;
	background: var(--sabcolor2);
	padding: 50px 0;
}
.product_ttl p{
	font-weight: bold;
	margin: 20px auto 0;
	font-size: 120%;
	letter-spacing: 2px;
}
.product_txt{
	text-align: center;
	margin: 70px 0 0;
}
.product_txt h3{
	margin: 20px auto;
}
.product_txt p{
	margin: 20px 0 0;
	line-height: 2;
}
.product_txt p span{
	font-weight: bold;
}
.inner{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: inset(0);
}
.bg{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url('../img/product_img.jpg');
	background-size: cover;
	background-position: center;
	z-index: -4;
}

/*----*/
.product_list{
	padding: 50px 0;
}

/*--how to--*/
.howto_wrap{
	margin: 50px auto;
}
.howto_wrap h3{
	color: #ff6699;
	text-align: center;
	font-size: 150%;
	font-weight: normal;
}
.howto_wrap h3 span{
	display: block;
	color: #333;
	font-weight: bold;
}
.howto_txt{
	width: fit-content;
	margin: 30px auto 0;
}
.howto_txt span{
	font-weight: bold;
}
.howto_img {
	width: fit-content;
	margin: 0 auto;
}
.howto_img p{
	margin: 50px 0;
}

/*----*/
.shop_ttl{
	width: 60%;
	text-align: center;
	background: #e1cad1;
	padding: 50px 0;
}
.shop_ttl p{
	font-weight: bold;
    margin: 20px auto 0;
    font-size: 120%;
    letter-spacing: 2px;
}
.shop_wrap .contents_box{
	margin: 50px auto 0;
}
.shop_wrap .contents_box a{
	width: 30%;
	margin: 0 5% 0 0;
	background: #fff;
	border: 1px solid #ccc;
	padding: 20px;
}
.contents_box a:nth-child(3){
	margin: 0;
}
.price.flex{
	align-items: baseline;
	justify-content: space-between;
}
.price h2{
	margin: 0;
	line-height: 1;
}
.price h2 span{
	font-size: 80%;
	font-weight: normal;
}
.contents_box a .tar{
	color: #555;
}
.category{
	font-weight: bold;
	margin: 10px auto;
}
.shop_txt p{
	margin: 10px 0;
}
.shop_txt .bold{
	font-weight: bold;
}
.shop_link {
	text-align: center;
	margin:calc(20px + 1vw) auto 0;
}
.shop_link a{
	display: inline-block;
	border: 1px solid;
	padding: 10px 30px;
	background: var(--sabcolor2);
}

/*--お取り扱い店舗--*/
.toriatsukai_wrap{
	background: var(--sabcolor2);
	padding:20px;
}
.toriatsukai_ttl{
	background:#ffe699;
	width:fit-content;
	padding:3px 10%;
	letter-spacing:5px;
	border:2px solid #fff;
	margin:0 0 10px 0;
}
.store_box{
	margin:10px auto 0
}
.store_box .store_img{
	border:4px solid #ffc000;
}
.store_txt{
	margin:0 0 0 20px
}
.store_txt h4{
	margin:10px 0;
}
.store_txt p{
	margin:10px 0
}



/*--contact--*/
.contact_wrap{
	position: relative;
	margin: 0px 0 0 0;
	width: 90%;
	max-width: 1000px;
	padding: 00px 0 100px;
	z-index: 1;
}
.mail_txt{
	margin: 30px auto 30px;
}
.mail_txt p{
	margin: 30px 0 30px 30px;
}
.co_table{
	max-width: 900px;
	width: 90%;
	margin: 0px 0 40px auto;
	display: flex;
	align-items: center;
}

.co_table dt{
	width: 30%;
}
.co_table dd{
	width: 70%;
}
.co_table span{
	padding:3px 8px;
	display: inline-block;
	margin-right: 20px;
	background: var(--basecolor);
	color: #fff;
}

input[type=text],
input[type=radio],
textarea {
	width: 100%;
	border-top: none;
	border-right: none;
	border-left: none;
	height: 60px;
	border: #333 solid 1px;
	background-color: #fff;
	padding: 0.5em;
}
textarea{
	height: 100px;
}
input[type=text],
input[type=radio],
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

.submit_tac{
	text-align: center;
}
input[type="submit"],
a.back {
	width: auto;
	height: auto;
	text-align: center;
	border: 0px solid;
	padding: 10px 20px;
	color: #333;
	background: var(--basecolor);
	font-size: 16px;
	margin-top: 40px;
	min-width: 200px;
	display: inline-block;
}

.fff_block.mail{
	max-width: 900px;
	width: 90%;
	margin: 0 auto;
}




/*----------- sp_menu -------------*/
/*--SPメニュー--*/
/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:5;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background:var(--sabcolor);
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
	background: url(../img/back_sp.jpg) no-repeat;
	background-position: center;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
	position: absolute;
	z-index: 999;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	padding: 0;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
	animation-name:gnaviAnime;
	animation-duration:1s;
	animation-delay:.2s;/*0.2 秒遅らせて出現*/
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes gnaviAnime{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}

.sp_menu_logo{
	position: absolute;
	top: 10px;
	width: calc(100% - 80px );
	left:10px
	/*left: 50%;

	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);*/
}

/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	text-decoration: none;
	padding:0px 0 8px ;
	margin:0 0 8px;	
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	border-bottom:1px dashed var(--basecolor)
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top: 10px;
	right: 0px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
	width: 50px;
	height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 9px;
    height: 2px;
    border-radius: 2px;
	background-color: #333;
  	width: 60%;
  }

.openbtn span:nth-of-type(1) {
	top:5px;	
}

.openbtn span:nth-of-type(2) {
	top:13px;
}

.openbtn span:nth-of-type(3) {
	top:21px;
}

.openbtn.active span:nth-of-type(1) {
    top: 3px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 15px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.openbtn p{
	position: absolute;
	right: 10px;
	bottom:13px;
	font-size:10px;
	letter-spacing:0;
	color:#333
	
}





/*--------------SP--------------■■■■■■■■■■■*/
@media(max-width:1100px){



	/*-------- contact page ----------*/



}
@media(max-width:960px){
	/*------共通---------*/
	.flex_wrap_reverse{
		flex-wrap: wrap-reverse;
	}
	.flex{
		flex-wrap: wrap;
	}
	#dummy_block{
		height: 52px;
	}
	.top_menu_bar{
		justify-content: unset;
		padding: 10px 0;
	}
	.logo_design{
		width: 68%;
		padding: 0 0 0 5px;
	}
	.logo_design h1{
		margin: 0;
		line-height: 1;
	}
	.contact_link{
		width: 30%;
	}
	.logo_design h1 img{
		height:8.2vw;
		width: auto;
	}
	.contact_link img{
		height:8.2vw;
		width: auto;
		margin: 0 0 0 5px;
	}

	.section_box.left_orange::after,
	.section_box.right_orange::after{
		width: 10%;
	}

	.about_syohin p{
		font-size: 100%;
		margin: 30px auto;
	}
	.about_us_wrap .flex{
		margin: 50px auto 20px;
	}
	.about_us_txt{
		width: 100%;
		padding: 0;
	}
	.about_us_wrap::after{
		width: 100%;
	}
	.about_us_ttl{
		margin: 0 auto 30px;

	}
	.about_us_ttl img{
		width: 70%;
	}
	.about_us_txt .sponly{
		margin: 0px 0 30px;
	}
	.about_us_txt p{
		margin: 10px auto;
	}
	.about_me_wrap .flex{
		padding: 0px;
		background: none;
	}
	.about_me_txt{
		width: 100%;
	}

	.section_box.about_me_wrap{
		padding: 60px 0 ;
	}
	.about_me_txt h3{
		font-size: 110%;
	}
	.about_me_ttl {
		margin: 0 auto 30px;
	}
	.about_me_ttl img{
		width: 50%;
	}


	.company_box dl dt{
		width: 20%;
	}

	.history_txt {
		width: 90%;
		margin: 0 10% 0 0%;
		padding: 0px 0 30px;
	}
	.history_wrap::after{
		width: 90%;
	}


	/*--product--*/
	.shop_wrap .contents_box a{
		width: 100%;
		margin: 0 auto 30px;
	}
	.shop_wrap .contents_box a:last-child{
		margin-bottom:5px
	}

	.product_ttl{
		padding: 30px 0;
	}
	.product_ttl img{
		width: 60%;
	}
	.product_wrap{
		width: 80%;
		height: 80vh;
		padding: 30px 0;
	}
	.bg{
		/*background-position: left 600px bottom 80px;*/
		background-position: left 80% bottom 50px;
	}

	/*--shop--*/
	.shop_ttl{
		width: 80%;
		padding: 30px 0;
	}
	.shop_ttl img{
		width: 50%;
	} 



}

@media(max-width:560px){
	.howto_img img{
		width: auto;
		height: 170px;
	}
	.flex.price div,
	.flex.price h2{
		width: 100%;
	}
	.flex.price h2{
		text-align: right;
		margin: 10px 0 0 0;
	}
	.co_table{
		flex-wrap: wrap;
	}
	.co_table dt{
		width: 100%;
	}
	.co_table dd{
		width: 100%;
		margin: 10px 0;
	}

}

