/* カスタマイズ用CSS */
@import 'https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=M+PLUS+Rounded+1c:wght@500&display=swap';
/*
フォントファミリー

使用するフォントファミリー

*/
body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
	color:#231815;}
button, input, select, textarea {
  font-family: "Noto Sans JP", sans-serif; }
/*
見出し

商品紹介等で利用される、一般的な見出しのスタイルです。

ex [商品詳細ページ　商品見出し部分](http://demo3.ec-cube.net/products/detail/27)

Markup:
.ec-headingTitle マトリョーシカ

Styleguide 1.1.1
*/
.ec-headingTitle {
  color: #231815; }

.ec-rectHeading h1, .ec-rectHeading h2, .ec-rectHeading h3,
.ec-rectHeading h4, .ec-rectHeading h5, .ec-rectHeading h6 {
  background: #b5871b;
  margin: 0 0 8px;
  padding: 8px 10px;
  color: #FFF; 
  font-size: 20px;
  font-weight: normal; }
	
.ec-orderRole .ec-rectHeading h2 {
	margin: 20px 0;
}
	
.ec-borderHeading {
  font-size: 20px;
  font-weight: normal;
	color:#231815;
	border-bottom: solid 3px #b5871b;
  margin: 0 0 20px;
	padding-bottom: 5px;
}
.ec-pageHeader h1 {
  margin: 0 0 20px;
	text-align:center;
  border-bottom: 1px solid #b5871b;
  border-top: 1px solid #b5871b;
  padding: 8px 0 12px;
  font-size: 16px;
  font-weight: bold; }
/*
ボタン
*/
.btn01 a {
  display: block;
	text-align:center;
	color:#FFF;
	background: #b5871b;
	border-radius: 5px;
	padding: 8px 0;
	margin: 10px auto;
    -webkit-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}
.btn01 a:hover {
	background: #222;
  text-decoration: none !important;
}
.btn01__itemLink {
		display:inline-block;
    margin-right: 5px;
    font-size: 16px;
    vertical-align:top;
     }

.btn01__itemIcon {
		display:inline-block;
		vertical-align:bottom;
    font-size: 18px;
    color: white; }
a.btn02 {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight:700;
	font-size: 16px;
  display:inline-block;
	width: 80%;
	text-align:center;
	color:#FFF;
	background: #222;
	border-radius: 50px;
	border:3px solid #222;
	padding: 30px 0;
	margin: 20px auto;
	transition: all 0.3s;
}
a.btn02:hover {
  text-decoration: none;
	background: #FFF;
	color: #222;
}

a.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn-flat {
  overflow: hidden;

  padding: 1.5rem 6rem;

  color: #fff;
  border-radius: 0;
  background: #000;
}
a.btn-flat.min {
  font-size: 1.1rem;
  padding: 1.5rem 4rem;
}

a.btn-flat:visited ,
a.btn-flat:active {
  color: #fff;
}

a.btn-flat span {
  position: relative;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 100px;
  height: 100px;

  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-80%) translateY(-25px);
  transform: translateX(-80%) translateY(-25px);

  border-radius: 50%;
  background: #b6871b;
}

a.btn-flat:hover:before {
  width: 400px;
  height: 400px;

  -webkit-transform: translateX(-1%) translateY(-175px);

  transform: translateX(-1%) translateY(-175px);
}

/*
 text
*/
.fcBrown {
	color: #b5871b;
}
.fcRed {
	color:#F00;
}
.bold {
	font-weight: bold;
}
.fontSizeS {
	font-size: 12px;
}
.breakall {
	word-break:break-all;
}

/*
 ul
*/
.square > li {
	list-style:square;
	color:black;
}
.allergy{
  margin: 20px 0 0 0;
}
.allergy > li{
  background: #ffe5bf;
  border-radius: 5px;
  padding: 5px 10px;
  color: #c28937;
  font-size: 14px;
  display: inline-block;
  margin: 0 5px 5px 0;
}
.allergy > li:last-child{
  margin: 0;
}
.allergy > li.off{
  background: #eee;
  color: #ccc;
}

/*
ボックスデザイン
*/
.inlinebox {
	display: inline-block;
}
.box01{
	margin: 30px 5px 10px;
	padding: 40px 15px;
	background-color: #fff;
	box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 0px 0px 0px 1px rgba(10, 10, 10, 0.02);
	}
.box01 h3 {
	font-size: 16px;
	margin: 20px 0 ;
	padding: 20px 0;
	text-align:center;
	border-top: #222 1px solid;
	border-bottom: #222 1px solid;
}
.box01 h3:first-child {
	margin-top: 0!important;
}
.box02 {
 position:relative;
 text-align:left;
 padding: 35px 20px 15px;
 margin: 2.5em auto;
 width: 90%;
 color: #555555; /* 文字色 */
 background-color: #e8ddbd;
 box-shadow: inset 0 0 40px rgba(204, 186, 136,1), 0 2px 2px #ccc;
}
.box02 .box02title {
 position: absolute;
 top: -15px;
 left: 30px;
 padding: 4px 20px;
 color: #555555; /*タイトル色*/
 font-weight: bold;
 background-color: rgba(255,255,255,.4);
 border-left: 2px dotted rgba(0,0,0,.1);
 border-right: 2px dotted rgba(0,0,0,.1);
 box-shadow: 0 0 5px rgba(0,0,0,0.2); 
 transform: rotate(-5deg);
}
/*
ラインデザイン
*/
.line_deco {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: #1d68c5 2px solid;
  position: relative;
}
.line_deco::before,
.line_deco::after {
  width: 8px;
  height: 8px;
  content: '';
  background: #1d68c5;
  display: block;
  border-radius: 50%;
  position: absolute;
  bottom: -5px;
  left: 0;
  margin: auto;
}
.line_deco::after {
  left: auto;
  right: 0;  
}
/*
標準セクション

通常のコンテナブロックです。

ex [商品詳細ページ　コンテナ](http://demo3.ec-cube.net/products/detail/33)

Markup:
include /assets/tmpl/elements/11.1.role.pug
+ec-roleRole

Styleguide 11.1
*/
.ec-role {
  color: #231815;
	padding-left: 3.906vw;
	padding-right: 3.906vw;
  max-width: 1280px; }
	.sponly {
		display: block;
	}
	.pconly {
		display:none;
	}
/*
下線つき定義リスト
*/
.ec-borderedDefs dd {
    padding: 0 0 10px;
 }

/*
基本レイアウト
*/
.ec-layoutRole .ec-layoutRole__contents {
		margin-top: 20px;
    max-width: 1280px;
    flex-wrap: wrap; }

.ec-layoutRole .ec-layoutRole__left {
	padding: 0;
	margin:0 auto;
}
.ec-headerRole {
  color: #FFF;
  max-width: 1280px;
 }
 
  .ec-layoutRole .ec-layoutRole__mainWithColumn {
    order: 1;
    max-width: 100%; }
  .ec-layoutRole .ec-layoutRole__left {
    order: 2;
    width: 100%;
		display:block;
    max-width: 100%;
    margin-top: 6.25vw;
    padding-left: 6.25vw;
    padding-right: 6.25vw; }
 
.ec-headerNaviRole {
	padding-top: 10px;
  flex-wrap: wrap;
}
.ec-headerNaviRole .ec-headerRole {
    display: none; }
.ec-headerNaviRole .ec-headerNaviRole__left {
    width:10%; }
.ec-headerTitle .ec-headerTitle__title a {
      margin-bottom: 10px;
}

.ec-headerNaviRole .ec-headerNaviRole__right {
  width: 87%;
  flex-wrap: wrap;
 }

 .ec-headerNaviRole .ec-headerNaviRole__shipping {
	 flex:0 1 100%;
	 display: flex;
	 justify-content: flex-end;
 }

 .ec-headerNaviRole .ec-headerNaviRole__shipping dl {
	 background: #f5eddd;
	 padding: 5px 10px 5px 80px;
	 position:relative;
	 display: block;
	 margin-bottom: 20px;	 
		font-size: 12px;
 }
 .ec-headerNaviRole .ec-headerNaviRole__shipping dl::before {
	 content:'';
	 position:absolute;
	 left: 5px;
	 top:5px;
	 width: 60px;
	 height: 46px;
	 background:url(../img/common/icon_track.png) no-repeat left center;
	 background-size: cover;
 }

 .ec-headerNaviRole .ec-headerNaviRole__shipping dd {
	 color:#F00;
 }
 .ec-headerNaviRole .ec-headerNaviRole__shipping dd span {
	 font-size: 20px;
	 line-height: 1;
 }
 .ec-headerNaviRole .ec-headerNaviRole__logo {
	 flex:0 1 100%;
	 text-align:center;
	 margin-top: 10px;
	background:url(../img/common/logo_back.png) no-repeat right bottom;
	background-size: 100% auto;
 }
 .ec-headerNaviRole .ec-headerNaviRole__logo img {
	 width: 80%;
	 height:auto;
 }
      .ec-headerNaviRole .ec-headerNaviRole__sns {
				margin-right: 10px;
				display:flex;
  			justify-content: space-between;
        flex:1 1 40%; }
				.ec-headerNaviRole .ec-headerNaviRole__sns .ec-headerNav__item {
					flex:0 1 22%;
					position: relative;
				}
				.ec-headerNaviRole .ec-headerNaviRole__sns .ec-headerNav__item .hoverimg {
  position:absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s;
				}
				.ec-headerNaviRole .ec-headerNaviRole__sns .ec-headerNav__item:hover .hoverimg {
					opacity: 1;
				}
				.ec-headerNaviRole .ec-headerNaviRole__sns img {
					width: 100%;height:auto;
				}
.ec-headerNav .ec-headerNav__itemIcon {
	margin: 0;
}
/*
ヘッダー：カテゴリナビ
*/
.ec-itemNav__nav > li:hover > a {
  background: #dcb65e; }

.ec-sliderRole {
  max-width: 1600px;
}
/*
サイドバー：カテゴリナビ
*/
.sidebarRole__nav {
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1.4;
	width: 100%;
	background: #f5eddd;
	padding: 18px;
	margin-bottom: 20px;
}
.sidebarRole__nav .sidebarRole__nav__item {
	margin-bottom: 20px;
	text-align:center;
}
.sidebarRole__nav .sidebarRole__nav__item a {
	display:block;
	padding: 10px 0;
	color: #FFF;
	border-radius: 5px;
     }
.sidebarRole__nav .sidebarRole__nav__item a:hover {
	text-decoration:none;
	opacity: 0.7;
}
.sidebarRole__nav .sidebarRole__nav__item a:first-child {
	background: #c30d23;
}
.sidebarRole__nav .sidebarRole__nav__cart {
	background: #b5871b;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	margin-bottom: 20px;
}
.sidebarRole__nav .sidebarRole__nav__cart .cartTitle {
	color:#FFF;
	padding: 10px 0;
	margin-right: 10px;	
}
.ec-layoutRole__left .sidebarRole__nav__itemLink {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: auto;
  height: auto;
  list-style-type: none;
  text-align: center;
  vertical-align: bottom;
}
.ec-layoutRole__left .sidebarRole__nav__itemLink li {
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center; }

.ec-layoutRole__left .sidebarRole__nav__itemLink li a{
  	display: block;
		color: #241511;
		text-align:left;
    margin-bottom: 10px;
		padding-bottom: 5px;
    font-size: 14px;
		border-bottom:dotted 2px #bababb;
}
.sidebarRole__nav__itemLink li a .ec-icon img {
    width: 1.5em;
		height:auto;
		margin-right: 8px;
    vertical-align: text-bottom; }

.ec-layoutRole__left .sidebarRole__nav__itemLink li a:hover {
	text-decoration: none;
	color:#b5871b;
}
.sidebarRole__bnr {
	display: flex;
  flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
}
.sidebarRole__bnr a:hover {
	text-decoration:none;
}
.sidebarRole__bnr .sidebarRole__bnr__item {
	flex:0 0 48%;
	margin-bottom: 20px;
}
.sidebarRole__bnr .sidebarRole__bnr__item a {
	display:block;
	background: url(../img/common/icon_logo.png) no-repeat -30px -40px , #b5871b;
	background-size: auto 100px;
	color:#FFF;
	font-size: 16px;
	text-align:center;
	padding: 30px 10px;
	border-radius: 5px;
}
.sidebarRole__bnr .sidebarRole__bnr__item.grn a {
	background-color: #9faf1d;
}
.sidebarRole__bnr .sidebarRole__bnr__item a:hover ,
.sidebarRole__bnr ul li:hover img {
	opacity: 0.7;
}
.sidebarRole__bnr .sidebarRole__bnr__itemimg img {
	width: 100%;
	height:auto;
}
.sidebarRole__bnr ul {
	width: 100%;
	display:block;
}
.sidebarRole__bnr ul li {
	margin-bottom: 20px;
}
.sidebarRole__bnr ul li img {
	width: 100%;
	height:auto;
}
.sidebarRole__bnr .moviebnr a {
	display: block;
	color: #FFF;
	background: #c30d23;
	padding: 10px 0 5px;
}
.sidebarRole__bnr .moviebnr dl {
	text-align:center;
}
.sidebarRole__bnr .moviebnr dl dt {
	font-size: 18px;
	margin-bottom: 10px;
}
.sidebarRole__bnr .moviebnr dl dd img {
	width: 80px;
	height:auto;
}

.sidebarRole__category {
	margin-bottom: 20px;
	padding: 18px;
}
.sidebarRole__sns {
	margin-bottom: 20px;
}
.sidebarRole__sns.mb10 {
	margin-bottom: 10px;
}
.sidebarRole__sns img {
	width: 100%;
	height: auto;
}
.sidebarRole__sns a:hover img {
	opacity: 0.7;
}
/*
フッター

全ページで使用されるフッターのプロジェクトコンポーネントです。
*/
.ec-footerRole {
  border-top: 3px solid #b5871b;
  margin-top: 30px;
	background-color: white;
   }
.ec-footerLogo {
	text-align:center;
  display: block;
  margin: 20px auto 0;
	padding-left: 6.25vw;
	padding-right: 6.25vw;
  width: auto;
  height: auto;
  list-style-type: none;
  vertical-align: bottom;
}
.ec-footerLogo > li {
	margin: 0 0 10px;
  padding: 0;
  width: 100%;
  text-align: center; }
.ec-footerLogo > li img {
	max-width: 100%;
	height:auto;
}
.ec-footerNavi {
  color: #231815;
}
.ec-footerInfo {
	color: #231815;
	margin-top: 20px;
	text-align:center;
	padding-left: 3.906vw;
	padding-right: 3.906vw;
}
.ec-footerInfo ul {
  display: flex;
	justify-content: center;
	flex-wrap: wrap;
  margin: 0 auto;
  padding: 0;
  width: auto;
  height: auto;
  list-style-type: none;
  vertical-align: bottom;
}
.ec-footerInfo ul li {
	position:relative;
	padding-right:1em;
	line-height:2;
}

.ec-footerTitle {
  color: #231815; }

/*
各ページ：タイトルイメージ他
*/
.titleimgWrap {
	text-align:center;
}
.titleimgWrap img {
	max-width: 100%;
	height:auto;
}
.img {
	margin-bottom: 20px;
	text-align:center;
}
.img img {
	max-width: 100%;
	height:auto;
}
.mblittle {
	margin-bottom: 10px;
}

.mbmedium {
	margin-bottom: 20px;
}
.mtmedium {
	margin-top: 20px;
}
.pdmedium {
	padding: 20px;
}

/*
各ページ：ぱんくず
*/
.breadcrumb {
	display: none;
}

/*
各ページ：備考
*/
p.remarks {
	color: red;
	font-size: 14px;
}

/*
商品詳細：アイキャッチ
*/
.ec-eyecatchRole {
	padding: 10px;
}
.ec-eyecatchRole.miso {
	background:url(../img/product/miso_img01btm.jpg) no-repeat right bottom ,url(../img/product/miso_img01.jpg) repeat;
	background-size: 70% auto, 100% auto;
	padding-bottom: 80px;
}
.ec-eyecatchRole.shoyu {
	background:url(../img/product/shoyu_img01btm.jpg) no-repeat right bottom ,url(../img/product/shoyu_img01.jpg) repeat;
	background-size: 70% auto, 100% auto;
	padding-bottom: 80px;
}
.ec-eyecatchRole.sumotu {
	background:url(../img/product/motu_img01.jpg) no-repeat right bottom;
	background-size: 100% auto;
}
.ec-eyecatchRole.yuzu {
	background:url(../img/product/yuzu_img01.jpg) no-repeat right bottom;
	background-size: auto 100%;
}
.ec-eyecatchRole.basashi {
	background:url(../img/product/basashi_img01.jpg) no-repeat center bottom;
	background-size: auto 100%;
	padding-bottom: 70px;
}
.ec-eyecatchRole.mentai {
	background:url(../img/product/mentai_img01.jpg) no-repeat center top;
	background-size: auto 100%;
	padding-bottom: 40px;
}

.ec-eyecatchRole .ec-eyecatchRole__introDescription {
	color:#222;
}
.ec-eyecatchRole.miso .ec-eyecatchRole__introDescription ,
.ec-eyecatchRole.shoyu .ec-eyecatchRole__introDescription {
	color:#FFF;
}
.ec-eyecatchRole .ec-eyecatchRole__introTitle {
	color:#222;
	white-space:nowrap;
	font-weight: normal;
	text-align:center;
}
.ec-eyecatchRole.miso .ec-eyecatchRole__introTitle ,
.ec-eyecatchRole.shoyu .ec-eyecatchRole__introTitle {
	color:#FFF;
}
/*
商品詳細：タグ
*/
.ec-productRole .ec-productRole__tag {
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
		background: #b5871b;
    color: #FFF;
    border: none;
}
/*
商品詳細：カテゴリ
*/
.ec-productRole .ec-productRole__category a {
      color: #b5871b;
			font-size: 90%; }
.ec-productRole .ec-productRole__category ul {
      list-style:disc;
      padding-left: 10px;
			margin-left: 10px;
}

/*
こだわり
*/
.quality01 {
	background:url(../img/page/kodawari_01sp.jpg) no-repeat center bottom;
	background-size: 100% auto;
	padding:0 3.6vw 90px;
	margin-bottom: 20px;
}
.quality02 {
	background:url(../img/page/kodawari_02sp.jpg) no-repeat center bottom;
	background-size: 100% auto;
	padding:0 3.6vw 90px;
	margin-bottom: 20px;
}
.quality03 {
	background:url(../img/page/kodawari_03sp.jpg) no-repeat center bottom;
	background-size: 100% auto;
	padding:0 3.6vw 90px;
	margin-bottom: 20px;
}
.quality04 {
	background:url(../img/page/kodawari_04sp.jpg) no-repeat center bottom;
	background-size: 100% auto;
	padding:0 3.6vw 90px;
}
.quality h2 {
	color:#a37e39;
	line-height: 1.8;
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
	white-space:nowrap;
}
.quality p {
	line-height: 1.8;
}
/*
店舗案内
*/
.ecshopRole {
	display:block;
}
.ecshopRole .img {
	margin-bottom: 20px;
}
.ecshopRole table {
  width: 100%;
}
.ecshopRole table th, .ecshopRole table td {
  padding: 10px;
	display:block;
	border-bottom: dotted 1px #333333;
}
.ecshopRole table th {
	text-align:center;
	font-weight: bold;
}
/*
作り方動画
*/
.ecmovieRole {
	background:url(../img/page/movie.jpg) no-repeat right bottom;
	background-size: cover;
}
.w640 {
	width: 100%;
	margin: 20px auto;
}
.movie-wrap {
	   width: 100%;
     position: relative;
     padding-bottom: 56.25%;
     height: 0;
     overflow: hidden;
}
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

/*
初めての方へ
*/
.ecbiggnerRole ,
.ecbiggnerRole p {
	line-height: 1.8;
}
.ecbiggnerRole .en {
  color: #b5871b;
    font-size: 14px;
}
.ecbiggnerRole h2 {
  color: #000;
    font-size: 24px;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
.ecbiggnerRole h2::before {
  width: 35px;
  height: 2px;
  content: '';
  background: #000;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.ecbiggnerRole .intro ,
.ecbiggnerRole .cooking {
	margin: 20px 0;
}
.ecbiggnerRole .intro > li  {
	margin-bottom: 40px;
}
.ecbiggnerRole .intro > li:last-child {
	margin-bottom: 0;
}
.ecbiggnerRole .intro > li .txtWrap {
    max-width: 85%;
  	text-align: center;
    padding: 15px;
    margin: 0 auto 30px;
  	border: #091138 1px solid;
  	outline: rgba(255,255,255,0.8) 15px solid;
  	position: relative;
		background:rgba(255,255,255,0.8);
}
.ecbiggnerRole .intro > li .txtWrap::before ,
.ecbiggnerRole .intro > li .txtWrap::after {
  width: 15px;
  height: 15px;
  content: '';
  background: #000;
  display: block;
  position: absolute;
  top: -15px;
  left: -15px;
}
.ecbiggnerRole .intro > li .txtWrap::after {
  top: auto;
  bottom: -15px;
  left: auto;
  right: -15px;
}
.ecbiggnerRole .cooking > li {
	margin-bottom: 20px;
}
.ecbiggnerRole .cooking > li dl {
	display:block;
}
.ecbiggnerRole .cooking > li dl dt {
	margin-bottom: 20px;
}
.ecbiggnerRole .cooking > li dl dt img {
	width:100%;
	height:auto;
}
.ecbiggnerRole h4 {
  position: relative;
  padding: 10px 0 10px 7em;
	margin-bottom: 1em;
}

.ecbiggnerRole h4 span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 1.5rem;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  background: #c30d23;
}

.ecbiggnerRole h4 span i {
  margin-right: 1rem;
}

.ecbiggnerRole h4 span:after {
  position: absolute;
  top: calc(50% - 7px);
  right: -11px;
  width: 0;
  height: 0;
  content: '';
  border-width: 7px 0 7px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #c30d23;
}
/*
Ｑ＆Ａ
*/
.faqRole ul > li {
	margin-bottom: 20px;
}
.faqRole .box01 h3 {
	text-align:left;
}
.faqRole .box01 {
	padding-bottom: 0;
}
.faqRole ul > li i {
	margin-right: 10px;
	font-size: 30px;
	line-height: 1;
}
.faqRole ul > li .img {
	width: 70%;
	margin: 20px auto 0;
}
/*
会員登録募集
*/
.membersRole .merit {
	margin-top: 20px;
}
.membersRole .merit > dl {
  background: linear-gradient(to right, #e8b744, #b5871b);
  color: #fff;
	margin-bottom: 20px;
  position: relative;
}
.membersRole .merit .point {
  width: 60px;
  font-size: 12px;
  background: linear-gradient(to bottom, #e95738, #ff785b);
  text-align: center;
  padding: 15px 0;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 1;
	box-sizing: border-box;
}
.membersRole .merit .point::before {
  width: 0;
  height: 0;
  content: '';
  border: #ff785b 30px solid;
  border-top: none;
  border-bottom: transparent 10px solid;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.membersRole .merit .point span {
  font-size: 26px;
  display: block;
}
.membersRole .merit > dl dd {
    font-size: 16px;
    padding: 0 15px 15px;
}
.membersRole ul li {
	margin-bottom: 20px;
	text-align:center;
}
.membersRole ul li .circle {
	background: #b5871b;
	border-radius: 50%;
	width: 220px;
	height: 220px;
	text-align:center;
	margin:0 auto 10px;
	padding-top: 30px;
}
.membersRole ul li .circle img {
	width: 70%;
	height:auto;
}
.membersRole ul li h3 {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 500;
	color: #b5871b;
	text-align:center;
	font-size: 24px;
	margin-bottom: 20px;
}
.membersRole ul li h3 span {
	display:block;
	font-size: 14px;
}
/*
お鍋の絵募集
*/
.oekakiRole h2.oekaki {
	background:url(../img/page/oekaki_title.png) no-repeat center center;
	background-size: 100% auto;
	text-align:center;
	padding: 0.75em 2em 1em;
	display: inline-block;
	color: #FFF;
	font-size: 20px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}
.oekakiRole .merit {
	margin-top: 20px;
}
.oekakiRole .merit > dl {
  background: linear-gradient(to right, #acddf7, #50bfe0);
  color: #fff;
	margin-bottom: 20px;
  position: relative;
}
.oekakiRole .merit .point {
  width: 60px;
  font-size: 12px;
  background: linear-gradient(to bottom, #e95738, #ff785b);
  text-align: center;
  padding: 15px 0;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 1;
	box-sizing: border-box;
}
.oekakiRole .merit .catch {
	background:url(../img/page/oekaki_catch.png) no-repeat center center;
	background-size: 100% auto;
	box-sizing: border-box;
	margin-bottom: 20px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 20px;
	padding-top: 75%;
	position: relative;
}
.oekakiRole .merit .catch p {
	width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.oekakiRole .merit .point::before {
  width: 0;
  height: 0;
  content: '';
  border: #ff785b 30px solid;
  border-top: none;
  border-bottom: transparent 10px solid;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.oekakiRole .merit .point span {
  font-size: 26px;
  display: block;
}
.oekakiRole .merit > dl dd {
    font-size: 16px;
    padding: 0 15px 15px;
}
.oekakiRole .gallery {
	width: 90%;
	margin:auto;
}
	.oekakiRole .gallery h3 {
		font-family: 'M PLUS Rounded 1c', sans-serif;
		font-size: 20px;
		margin-bottom: 30px;
	}

.oekakiRole ul li {
	margin-bottom: 20px;
}
.oekakiRole ul li .circle {
	background: #50bfdf;
	border-radius: 50%;
	width: 220px;
	height: 220px;
	text-align:center;
	margin:0 auto 10px;
	padding-top: 30px;
}
.oekakiRole ul li .img img {
	border-radius: 20px;
	border: solid 4px #55c1e1;
	transform: rotate(3deg);
}

.oekakiRole ul li .circle img {
	width: 70%;
	height:auto;
}
.oekakiRole ul li h3 {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 500;
	color: #50bfdf;
	text-align:center;
	font-size: 24px;
	margin-bottom: 20px;
}
.oekakiRole ul li h3 span {
	display:block;
	font-size: 14px;
}
.oekakiRole ul li h4 {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 500;
	color: #50bfdf;
	text-align:center;
	font-size: 20px;
	transform: rotate(3deg);
}


/*
トップページ：新着情報
*/
    .ec-newsRole {
      padding: 20px 0 0; }

.ec-newsRole .ec-newsRole__newsTitle {
    color: #000; }
/*
トップページ：リサーチバナー
*/
.reserchRole {
	flex-direction: column;
}
.reserchRole ul {
	display:flex;
	justify-content:space-between;
	box-sizing:border-box;
}
.reserchRole ul > li {
	flex:0 0 31%;
}
.reserchRole ul > li > img {
	width: 100%;
	height:auto;
}
.reserchRole dl {
	display: flex;
	flex-wrap:wrap;
/*	width: 21em;*/
	width: 25em;
	font-size: 14px;
}
.reserchRole dl dt {
/*	flex: 1 0 6em;*/
	flex: 1 0 8em;
}
.reserchRole dl dd {
/*	flex: 0 1 15em; */
	flex: 0 1 17em; 
}

/*
トップページ：おすすめ商品
*/	
.recommendedRole {
	display: block;
	margin-bottom: 20px;
}
.recommendedRole .recommendedRole__listItem {
	text-align:center;
	margin-bottom: 18px;
}
.recommendedRole .recommendedRole__listItem dl dt {
	position:relative;
}
.recommendedRole .recommendedRole__listItem h3 {
	font-size: 20px;
}
.recommendedRole .detail{
	position:absolute;
	left:0;
	bottom: 0;
	width: 100%;
	text-align:left;
	font-size: 12px;
	margin-top: 10px;
	color: #fff;
	background: rgba(34,34,34,0.6);
	padding: 10px;
}

/*
トップページ：ランキング
*/	
.rankingRole {
	display: block;
	margin-bottom: 20px;
}
.rankingRole .rankingRole__listItem {
	text-align:center;
	margin-bottom: 25px;
}
.rankingRole .rankingRole__listItem h3 {
	font-size: 20px;
}

.rankingRole .rankingRole__listItem .imgWrap {
	position:relative;
}
.rankingRole .rankingRole__listItem .imgWrap .rank {
  display: inline-block;
	color:#FFF;
  position: absolute;
  top: -6px;
  left: 10px;
  margin: 0;
  padding: 10px 0;
  z-index: 2;
  width: 60px;
  text-align: center;
  color: white;
  font-size: 22px;
	font-weight:bold;
  background: linear-gradient(#ff785b 0%, #e95738 100%);
  border-radius: 2px 0 0 0;
  }
	.rankingRole .rankingRole__listItem .imgWrap .rank span {
  	font-size: 16px;			
	}

.rankingRole .rankingRole__listItem .imgWrap .rank::before {
  position: absolute;
  content: '';
  top: 0;
  right: -6px;
  border: none;
  border-bottom: solid 6px #cf4a2d;
  border-right: solid 6px transparent;
}
.rankingRole .rankingRole__listItem .imgWrap .rank::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 30px solid #e95738;
  border-right: 30px solid #e95738;
  border-bottom: 20px solid transparent;
}
/*
トップページ：さとふる
*/

.satofuruRole dl {
	display: block;
	padding: 10px;
	background: #b5871b;
	border-radius: 5px;
	text-align:center;
}
.satofuruRole dl dt {
	margin-bottom: 10px;
}
.satofuruRole dl dd {
	font-size: 14px;
	color: #FFF;
}
.satofuruRole a:hover dl {
	background: #d6b059;
}
.satofuruRole a:hover {
	text-decoration: none;
}
/*
ご利用案内：ナビ
*/
.ec-helpRole .ec-navlistRole {
	display: none;
}
.ec-helpRole .ec-rectHeading {
	margin: 20px 0;
}

.ec-helpRole h3 {
	text-align:center;
	padding: 10px 0;
	border-bottom: solid 2px #d6b059;
	border-top: solid 2px #d6b059;
	margin: 20px 0;
}
.ec-helpRole h4 {
	position: relative;
	padding: 15px 20px 10px 20px;
	height: 52px;
	display:inline-block;
	background: #f5eddd;
	margin: 10px 0 10px 30px;
}
.ec-helpRole h3+h4 {
	margin-top: 0;
}
.ec-helpRole h4:before {
  position: absolute;
  top: 0;
  left: -30px;
  content: '';
  border-width: 26px 30px 26px 0;
  border-style: solid;
  border-color: transparent #f5eddd transparent transparent;
}
.ec-helpRole h4:after {
  position: absolute;
  top: calc(50% - 7px);
  left: -10px;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 50%;
  background: #fff;
}
.ec-helpRole .ec-rectHeading + .box01 {
	margin-top: 0;
}
.ec-helpRole .fig img {
    width: auto;
    max-width: 100%;
    height: auto; }
.ec-helpRole table.general {
    margin: 20px auto;
    width: 100%;
    border-collapse: collapse;
}
.ec-helpRole table.general th ,
.ec-helpRole table.general td {
  padding: 10px;
  border: #ccc 1px solid;
  width: auto;
}
.ec-helpRole table.general th {
    background-color: #f5eddd;
    font-weight: bold;
		text-align:center;
}
/*
トップページ：カスタマーレビュー
*/
#plg_customer_review_top ul {
	list-style: none; 
	padding-left: 0!important;
}
#plg_customer_review_top ul li {
    margin: 10px 0px;
   padding: 10px;
   border: solid 2px #ddd;
	 display: flex;
   justify-content: space-between;
}
#plg_customer_review_top .review-commentLayout {
	flex: 0 0 80%;
}
#plg_customer_review_top .productImg {
	flex: 0 0 15%;
}
#plg_customer_review_top .productImg a:hover img {
	opacity: 0.7;
}
#plg_customer_review_top .review-commentLayout .reviewTitle {
    font-size: 14px;
}
#plg_customer_review_top .review-commentLayout .reviewAuthor {
    font-weight: 500;
    border-bottom: solid 1px #ccc;
    background: #fff;
    padding-bottom: 8px;
    margin: 8px 0;
    font-size: 14px;
}
#plg_customer_review_top .review-commentLayout .reviewTitle .star {
    color: #ffbb00;
}
#plg_customer_review_top .review-commentLayout .reviewComment {
    font-size: 14px;
}

/*
規約条文

規約条文の汎用スタイルです。

該当ページ：
* Help/agreement.twig
* Help/privacy.twig

Styleguide 23.2
*/
.ec-provision .ec-provision__heading {
  margin-bottom: 2em; }
.ec-provision dl {
  margin-bottom: 2em; }
.ec-provision dl dt {
    font-weight: 700;
    margin-bottom: 0.5em; }
.ec-provision dl dd {
    font-size: 1em;
		line-height: 1.8;
		margin-left: 0.5em;
    font-weight: normal;
     }
.ec-provision dd ul {
	margin-left: 0.5em;
}
		 .ec-tax {
		  font-size: 12px!important; }

.ec-drawerRole .ec-headerLink__list {
    margin-bottom: 100px;
}

@media only screen and (min-width: 768px) {
	.sponly {
		display: none;
	}
	.pconly {
		display:block;
	}
/* フォントサイズ */
.ec-font-size-1 {
  font-size: 16px; }
.ec-font-size-2 {
  font-size: 20px; }
.ec-font-size-3 {
  font-size: 24px; }
.ec-font-size-4 {
  font-size: 30px; }
.ec-font-size-5 {
  font-size: 36px; }
.ec-font-size-6 {
  font-size: 42px; }
.fontSizeS {
	font-size: 14px;
}
    .ec-price .ec-price__tax {
      font-size: 0.8em; }
		 .ec-tax {
		  font-size: 0.5em!important; }


.btn01 a {
	margin: 20px auto;
	padding: 10px 30px;
}
.btn01__itemLink {
    font-size: 22px;
}
.btn01__itemIcon {
    font-size: 32px; }
.box01{
	margin: 40px 10px;
	padding: 60px 20px;
}
.box01 h3 {
	font-size: 18px;
	margin: 30px 0;
	padding: 20px 0;
}
a.btn02 {
	width: 360px;
}
a.btn-flat.min {
	font-size: 1.6rem;
  padding: 1.5rem 6rem;
}

.ec-rectHeading h1, .ec-rectHeading h2, .ec-rectHeading h3,
.ec-rectHeading h4, .ec-rectHeading h5, .ec-rectHeading h6 {
  font-size: 26px;
	padding: 10px 20px;
}
.ec-orderRole .ec-rectHeading h2 {
	margin: 30px 0;
}

    .ec-pageHeader h1 {
      border-top: none;
			text-align:left;
      border-bottom: 2px solid #b5871b;
      margin: 10px 0 48px;
      padding: 8px;
      font-size: 32px;
      font-weight: bold; }
/*
標準セクション
*/
.ec-role {
	padding-right: 0;
}
/*
基本レイアウト
*/
.ec-layoutRole .ec-layoutRole__contents {
    flex-wrap: nowrap;
		margin-top: 30px; }
  .ec-layoutRole .ec-layoutRole__mainWithColumn {
    order: 2;
    width: 75%; }
  .ec-layoutRole .ec-layoutRole__left {
    order: 1;
		width: 25%;
		padding: 0;
		margin: 0 auto;
  }
.ec-borderHeading {
  font-size: 26px;
	margin: 0 0 30px;
	padding-bottom: 10px;
}
.ec-layoutRole__header {
	background:url(../img/common/logo_back.png) no-repeat left top;
	background-size: 50% auto;
}
.ec-headerNaviRole .ec-headerRole {
    display: block; }
				.ec-headerTitle .ec-headerTitle__title {
    text-align: left; 
		}
.ec-headerTitle img {
    width: 250px; height:auto; }

    .ec-headerNaviRole {
      padding-bottom: 0;
			flex-wrap: nowrap; }
.ec-headerNaviRole .ec-headerNaviRole__left {
    width: calc(100% / 3); }

.ec-headerNaviRole .ec-headerNaviRole__right {
  width: calc(100% * 2 / 3);
}
 .ec-headerNaviRole .ec-headerNaviRole__logo {
	 display: none;
 }
 .ec-headerNaviRole .ec-headerNaviRole__shipping dl {
	 padding: 10px 20px 10px 110px;
		font-size: 16px;
 }
 .ec-headerNaviRole .ec-headerNaviRole__shipping dl::before {
	 left: 10px;
	 top:10px;
	 width: 80px;
	 height: 61px;
 }

 .ec-headerNaviRole .ec-headerNaviRole__shipping dd span {
	 font-size: 30px;
 }
      .ec-headerNaviRole .ec-headerNaviRole__sns {
				margin-right: 20px;
  			justify-content: flex-end;
				flex:1 1 20%;
			}
				.ec-headerNaviRole .ec-headerNaviRole__sns .ec-headerNav__item {
					flex:0 0 40px;
					margin-left: 10px;
				}

/*
ヘッダー：カテゴリナビ
*/
.ec-categoryNaviRole {
  max-width: 100%;
	background: #b5871b;
}
.ec-categoryNaviRole:after {
    content:none;}

    .ec-itemNav__nav {
      display: flex;
			max-width: 1280px;
			justify-content: center;
		}
    .ec-itemNav__nav li {
      float: none;
      flex:1 1 140px; }

    .ec-itemNav__nav li a {
			background: #b5871b;
			padding: 20px 0;
			color:#FFF;
			position:relative;
       }
			 .ec-itemNav__nav li a::before {
				 content:'';
				 background: #FFF;
				 position:absolute;
				 right:0;
				 top:0;
				 height: 50px;
				 width: 1px;
				 margin: 5px 0;
			 }
			 .ec-itemNav__nav li:last-child a::before {
				 content:none;
			 }

/*
サイドバー：カテゴリナビ
*/
.sidebarRole__bnr {
	display: block;
}

.sidebarRole__bnr .moviebnr dl dt {
	font-size: 22px;
}

.sidebarRole__nav {
  font-size: 22px;
	padding: 30px;
}
.ec-layoutRole__left .sidebarRole__nav__itemLink li a{
		padding-bottom: 10px;
    font-size: 16px;
}
.sidebarRole__bnr .sidebarRole__bnr__item a {
	background: url(../img/common/icon_logo.png) no-repeat left center , #b5871b;
	background-size: auto 120%;
	font-size: 22px;
	text-align:left;
	border-radius: 0;
	padding: 20px 30px 20px 120px;
}
.sidebarRole__category {
	padding: 30px;
}
/*
フッター
*/
.ec-footerLogo {
      display: flex;
			justify-content: center;
			margin-bottom: 30px;
}
.ec-footerLogo > li {
	margin: 0 30px 0 0;
  padding: 0;
 }
 .ec-footerLogo > li:first-child {
	 width: 200px;
 }
 .ec-footerLogo > li:last-child {
	 width: 380px;
 }

.ec-footerLogo > li img {
	width: 100%;
	height:auto;
}
.ec-footerInfo {
	margin-top: 30px;
}
.ec-footerInfo ul li::before {
	content:'／';
	position:absolute;
	right:0;
	top:0;
}
.ec-footerInfo ul li:last-child::before {
	content:none;
}
/*
ページ共通：タイトルイメージ他
*/
.titleimgWrap {
	margin-bottom: 10px;
}
.img {
	margin-bottom: 30px;
}
.mbmedium {
	margin-bottom: 40px;
}
.mblittle {
	margin-bottom: 20px;
}

.mtmedium {
	margin-top: 40px;
}
.pdmedium {
	padding: 30px;
}

/*
商品詳細
*/

      .ec-productRole .ec-productRole__title .ec-headingTitle {
        font-size: 28px; }
.ec-eyecatchRole {
	padding: 0;
}

.ec-eyecatchRole.miso ,
.ec-eyecatchRole.shoyu{
	background-size: 50% auto, 100% auto;
}
.ec-eyecatchRole.yuzu {
	background-size: 100% auto;
}

.ec-eyecatchRole.basashi ,
.ec-eyecatchRole.mentai{
	background-size: 100% auto;
	background-position: right bottom;
}

      .ec-eyecatchRole .ec-eyecatchRole__image {
				padding: 40px 2% 0 0;
        order: 2; }
			.ec-eyecatchRole.sumotu .ec-eyecatchRole__image ,
			.ec-eyecatchRole.yuzu .ec-eyecatchRole__image ,
			.ec-eyecatchRole.mentai .ec-eyecatchRole__image {
				flex:0 0 400px;
			}
			.ec-eyecatchRole.basashi .ec-eyecatchRole__image  {
				flex:0 0 400px;
				padding: 100px 2% 50px 0;
			}
      .ec-eyecatchRole .ec-eyecatchRole__intro {
				padding:40px 3% 0;
				 }
.ec-eyecatchRole .ec-eyecatchRole__introDescription {
    margin: 30px 0 20px;
}
      .ec-eyecatchRole .ec-eyecatchRole__introTitle {
				text-align:left;
        margin: 0 0 1em;
        font-size: 40px; }
/*
ぱんくず
*/
.breadcrumb {
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	display:block;
	background: #FFF;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
}
.breadcrumb:last-child {
	padding-bottom: 10px!important;
	margin-bottom: -20px;
}
.breadcrumb a {
	color:#b5871b;
}
/*
こだわり
*/
.quality01 {
	background:url(../img/page/kodawari_01.jpg) no-repeat center center;
	padding:70px 52% 70px 20px;
	margin-bottom: 30px;
}
.quality02 {
	background:url(../img/page/kodawari_02.jpg) no-repeat center center;
	padding:50px 58% 60px 20px;
}
.quality03 {
	background:url(../img/page/kodawari_03.jpg) no-repeat center center;
	padding:50px 58% 60px 20px;
	margin-bottom: 30px;
}
.quality04 {
	background:url(../img/page/kodawari_04.jpg) no-repeat center center;
	padding:70px 58% 70px 20px;
}
.quality h2 {
	font-size: 40px;
	margin-bottom: 30px;
	text-align:left;
}
/*
店舗案内
*/
.ecshopRole {
	display:flex;
}
.ecshopRole .img {
	flex:0 0 350px;
	order:2;
}
.ecshopRole .info {
	flex:1 0 500px;
	order:1;
	padding-right: 50px;
}

.ecshopRole table th, .ecshopRole table td {
	display:table-cell;
	padding: 15px;
}
.ecshopRole table th {
	white-space:nowrap;
}
/*
作り方動画
*/
.ecmovieRole {
	background-size: 100% auto;
	padding-bottom: 100px;
}

.w640 {
	width: 640px;
	margin: 30px auto;
}
/*
初めての方へ
*/
.ecbiggnerRole .en {
  font-size: 20px;
  }
.ecbiggnerRole h2 {
  font-size: 40px;
  }

.ecbiggnerRole .intro ,
.ecbiggnerRole .cooking {
	margin: 30px 0;
}
.ecbiggnerRole .intro > li {
	max-width: 100%;
	min-height: 500px;
  position: relative;
  z-index: 1;
	display: flex;
	flex-direction: row-reverse;
}
.ecbiggnerRole .intro > li:last-child {
	flex-direction: row;
	min-height: 580px;
}
.ecbiggnerRole .intro > li .txtWrap {
  flex: 0 1 600px;
	max-width: 600px;
	box-sizing:border-box;
	position:absolute;
	right:0;
	top:50px;
	margin:auto;
  padding: 30px;
	outline-width: 25px;
}
.ecbiggnerRole .intro > li:last-child .txtWrap {
	right:auto;
	top:130px;
	left:0;
}
.ecbiggnerRole .intro > li .txtWrap::before ,
.ecbiggnerRole .intro > li .txtWrap::after {
  width: 25px;
  height: 25px;
  top: -26px;
  left: -26px;
}
.ecbiggnerRole .intro > li .txtWrap::after {
  top: auto;
  bottom: -26px;
  left: auto;
  right: -26px;
}
.ecbiggnerRole .intro > li .img {
  flex: 0 0 750px;
	max-width: 750px;
  z-index: -1;
	position:absolute;
	left: 0;
	top:43%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.ecbiggnerRole .intro > li:last-child .img {
	left: auto;
	right:0;
}
.ecbiggnerRole .cooking > li {
	margin-bottom: 30px;
}

.ecbiggnerRole .cooking > li dl {
	display:flex;
}
.ecbiggnerRole .cooking > li dl dt {
	margin-bottom: 0;
	flex:0 0 400px;
	order:2;
}
.ecbiggnerRole .cooking > li dl dd {
	flex:1 1 auto;
	padding-right: 50px;
	order:1;
}
.ecbiggnerRole h4 {
	margin-bottom: 2em;
}
/*
Ｑ＆Ａ
*/
.faqRole ul {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.faqRole ul > li {
	flex:0 0 46%;
	box-sizing: border-box;
	margin-bottom: 30px;
}
.faqRole ul > li:nth-child(1) {
	flex:0 0 96%;
	padding-bottom: 120px;
	position:relative;
}
.faqRole ul > li:nth-child(1) .img {
	width: 250px;
	position:absolute;
	right: 20px;
	bottom: -40px;
}
.faqRole ul > li:nth-child(1) .ec-font-size-1 {
	font-size: 16px;
}
/*
会員登録募集
*/
.membersRole .merit {
  display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
	justify-content: space-between;
}
  .membersRole .merit > dl {
    position: relative;
		flex: 0 0 48%;
		box-sizing: border-box;
		margin-bottom: 30px;
  }
  .membersRole .merit .point {
    width: 90px;
    font-size: 16px;
    padding: 20px 0;
    left: 20px;
  }
  .membersRole .merit .point::before {
    border-width: 45px;
    border-bottom-width: 20px;
    bottom: -20px;
  }
  .membersRole .merit .point span {
    font-size: 38px;
  }
  .membersRole .merit > dl dd {
    font-size: 18px;
    text-align: center;
  	padding: 0 20px 20px;
  }
	.membersRole ul {
  	display: flex;
		justify-content: space-between;
	}
.membersRole ul li {
	flex:0 0 32%;
	text-align:left;
	box-sizing: border-box;
}
.membersRole ul li h3 {
	font-size: 36px;
}
.membersRole ul li h3 span {
	font-size: 16px;
}
/*
お鍋の絵募集
*/
.oekakiRole h2.oekaki {
	font-size: 40px;
}

.oekakiRole .merit {
  display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
	justify-content: space-between;
}
.oekakiRole .merit .catch {
		flex: 0 0 48%;
		font-size: 26px;
	display:flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
		padding: 0 60px 0 80px;
}
.oekakiRole .merit .catch p {
	width: auto;
  position:static;
  transform: translateY(0) translateX(0);
  -webkit- transform: translateY(0) translateX(0);
}

  .oekakiRole .merit > dl {
    position: relative;
		flex: 0 0 48%;
		box-sizing: border-box;
		margin-bottom: 30px;
  }
  .oekakiRole .merit .point {
    width: 90px;
    font-size: 16px;
    padding: 20px 0;
    left: 20px;
  }
  .oekakiRole .merit .point::before {
    border-width: 45px;
    border-bottom-width: 20px;
    bottom: -20px;
  }
  .oekakiRole .merit .point span {
    font-size: 38px;
  }
  .oekakiRole .merit > dl dd {
    font-size: 18px;
  	padding: 0 20px 20px;
  }
	.oekakiRole .gallery {
		width: 100%;
  }
	.oekakiRole .gallery h3 {
		font-size: 36px;
		margin-bottom: 40px;
		text-align:center;
	}
	.oekakiRole ul {
  	display: flex;
		justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
	}
.oekakiRole ul li {
	flex:0 0 32%;
	text-align:left;
	box-sizing: border-box;
}
.oekakiRole ul li .img img {
	border-radius: 30px;
	border-width: 8px;
	transform: rotate(5deg);
}

.oekakiRole ul li h3 {
	font-size: 36px;
}
.oekakiRole ul li h3 span {
	font-size: 16px;
}
.oekakiRole ul li h4 {
	transform: rotate(5deg);
}

/*
トップページ：新着情報
*/
      .ec-newsRole .ec-newsRole__news {
        border: none;
        padding: 20px 5px;
				 }

      .ec-newsRole .ec-newsRole__newsTitle {
        font-size:16px;}
      .ec-newsRole .ec-newsRole__newsDate {
        font-size: 16px; }
      .ec-newsRole .ec-newsRole__newsDescription {
        font-size:16px;
			}
/*
トップページ：リサーチバナー
*/
.reserchRole ul {
	padding:0 30px;
}
.reserchRole dl {
	margin-left: auto;
	font-size: 16px;
}
/*
トップページ：おすすめ商品
*/	
.recommendedRole {
	display: flex;
  justify-content: space-between;
}
.recommendedRole .recommendedRole__listItem {
	flex:0 0 48%;
}
.recommendedRole .recommendedRole__listItem h3 {
	font-size: 20px;
}
.recommendedRole .detail{
	font-size: 15px;
	padding: 20px;
}

/*
トップページ：ランキング
*/	
.rankingRole {
	display: flex;
  justify-content: space-between;
}
.rankingRole .rankingRole__listItem {
	flex:0 0 32%;
}
.rankingRole .rankingRole__listItem h3 {
	font-size: 18px;
}
.rankingRole .rankingRole__listItem .imgWrap .rank {
  font-size: 30px;
}
/*
トップページ：さとふる
*/
.satofuruRole dl {
	display: flex;
	justify-content: center;
	align-items: center;
}
.satofuruRole dl dt {
	margin: 0 15px 0 0;
	flex:0 1 280px;
}
.satofuruRole dl dd {
	font-size: 20px;
}
/*
トップページ：カスタマーレビュー
*/
#plg_customer_review_top ul li {
   padding: 15px;
}
#plg_customer_review_top .review-commentLayout {
	flex: 0 0 80%;
}
#plg_customer_review_top .productImg {
	flex: 0 0 17%;
}
#plg_customer_review_top .review-commentLayout .reviewComment {
    margin-left: 10px;
}
/*
ご利用案内：ナビ
*/
.ec-helpRole .ec-navlistRole {
	display:block;
  margin-bottom: 1em; }
.ec-helpRole .ec-navlistRole .ec-navlistRole__navlist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
		flex-wrap: nowrap;
		border: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 1em;
    margin-bottom: 1em; }
.ec-helpRole .ec-navlistRole .ec-navlistRole__item {
    property: 27.5%, 72.5%;
		width: auto;
    border-left: solid 1px transparent;
    border-image-width: 0 0 0 1px;
    -o-border-image: linear-gradient(to top, transparent 27.5%, #ccc 27.5%, #ccc 72.5%, transparent 72.5%);
       border-image: linear-gradient(to top, transparent 27.5%, #ccc 27.5%, #ccc 72.5%, transparent 72.5%);
    border-image-slice: 1;
    transition: .2s; }
.ec-helpRole .ec-navlistRole .ec-navlistRole__item:first-child,.ec-helpRole .ec-navlistRole .ec-navlistRole__item:hover,
    .ec-helpRole .ec-navlistRole .ec-navlistRole__item:hover + li, .ec-helpRole .ec-navlistRole .ec-navlistRole__item.active,
    .ec-helpRole .ec-navlistRole .ec-navlistRole__item.active + li {
      -o-border-image: linear-gradient(to top, transparent 0%, transparent 100%);
         border-image: linear-gradient(to top, transparent 0%, transparent 100%); }
.ec-helpRole .ec-navlistRole .ec-navlistRole__item a {
      display: block;
      color: inherit;
      padding: .65em 1em;
      text-align: center;
			white-space:nowrap;
      transition: .3s; }
.ec-helpRole .ec-navlistRole .ec-navlistRole__item a:hover {
        text-decoration: none;
        background-color: #eee; }
.ec-helpRole .ec-navlistRole .ec-navlistRole__item.active a {
      background-color: #333;
      color: #fff; }
			
.ec-helpRole .ec-borderedDefs {
	width: 96%;
	margin: 0 auto 20px;
}
.ec-helpRole .ec-rectHeading {
	margin: 40px 0;
}
.ec-helpRole h3 {
	font-size: 24px;
	padding: 20px 0;
	margin: 40px 0;
}
.ec-helpRole h4 {
	margin: 30px 0 30px 30px;
	min-width: 250px;
}
.ec-helpRole table.general {
    margin: 20px 10px;
    width: 500px;
}
/* プラグイン用 */
.review-layoutRole.product_list {
		margin-top: 5px;
    text-align: left!important;
}
        .ec-orderRole .ec-orderRole__summary {
          position: -webkit-sticky;
          position: sticky;
          top: 40px;
					height: 100%; }

}

.defrost {
  margin-top: 20px;
}
.defrost h4 {
  border-radius: 10px;
  font-size: 16px;
  padding: 10px;
  text-align: center;
}
.defrost-block {
  background-color: #fff4cd;
  margin-top: 10px;
  padding: 20px 40px
}
.defrost-block-top {
  border-radius: 30px 30px 0 0;
}
.defrost-block-bottom-left {
  border-radius: 0 0 0 30px;
  margin-right: 5px;
}
.defrost-block-bottom-right {
  border-radius: 0 0 30px 0;
  margin-left: 5px;
}
.defrost-block-inner-left {
  text-align: center;
}
.defrost-block-inner-left-image {
  width: 240px;
  padding: 20px;
}
.defrost-small {
  font-size: 14px;
  width: calc(50% - 5px);
}
}
.defrost-small h4 {
  text-align: center;
}
.defrost-small .defrost-block-inner-left-image {
  width: 160px;
  padding: 10px;
}
.defrost-small .defrost-block-inner-right {
  padding: 10px;
}
.defrost-block-inner-right {
  padding-left: 20px;
}
.defrost-block-inner-right-way {
  display: flex;
  margin-top: 5px;
}
.defrost-block-inner-right-way-left {
  width: 100px;
}
.defrost-block-inner-right-way-right-cions {
  text-align: right;
  padding: 10px;
}
.defrost-block-inner-right-way-right-cions img {
  width: 50px;
}
.defrost-block-inner-right-alert {
  display: flex;
}
.defrost-block-inner-right-alert-left-image {
  width: 20px;
}
.defrost-block-inner-right-alert-right {
  padding-left: 5px;
}
.defrost-text-wave {
  color: blue;
  text-decoration: underline;
  text-decoration-style: wavy;
}
.defrost-text-remark {
  color: red;
  font-size: 14px;
}
.defrost-text-alert-remark {
  font-size: 12px;
}
.defrost-flex {
  display: flex;
}
.defrost-flex-force {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .defrost-block {
    padding: 20px;
  }
  .defrost-block-inner-left-image {
    padding: 0;
  }
  .defrost-block-bottom-left {
    border-radius: 0;
  }
  .defrost-block-inner-right {
    padding-left: 0;
  }
  .defrost-block-bottom-right {
    border-radius: 0 0 30px 30px;
    margin-left: 0;
  }
  .defrost-flex {
    display: block;
  }
  .defrost-small {
    font-size: 16px;
    width: 100%;
  }
  .defrost-small .defrost-block-inner-left-image {
    padding: 0;
  }
  .defrost-block-inner-left-image {
    width: 100%;
  }
  .defrost-small .defrost-block-inner-left-image {
    width: 100%;
  }
}






/* ギフト追加 */
.ec-giftHeading h2 {
	background: #b5871b;
    margin: 0 0 8px;
    padding: 10px 4px;
    color: #FFF;
    font-size: 26px;
    line-height: 1.5em;
    font-weight: normal;
    text-align: center;
}

.ec-giftHeading {
	margin-bottom: 30px;
}

.gift_cat_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	margin: 40px 0 70px;
	padding: 0;
}
.gift_cat_list li {
	width: 32%;
}
.gift_cat_list li a {
	display: block;
	font-size: 26px;
	line-height: 1em;
	padding: 20px 20px;
	color: #b5871b;
	border: 2px solid #b5871b;
	text-decoration: none;
	position: relative;
}
.gift_cat_list li a:hover {
	background: #b5871b;
	color: #fff;
	border: 2px solid #b5871b;
}
.yazirusi {
  	position: absolute;
    width: 40px;
    margin: 0;
  	right: 14px;
  	top: 50%;
  	transform: translateY(-50%);
}
.yazirusi .line01 {
  	height: 1px;
  	background-color: #b5871b;
}
.yazirusi .line02 {
  	position: absolute;
  	top: 0;
  	right: 0;
  	transform-origin: right bottom;
  	width: 10px;
  	height: 1px;
  	background-color: #b5871b;
  	transform: rotate(45deg);
}
.gift_cat_list li a:hover .yazirusi .line01,
.gift_cat_list li a:hover .yazirusi .line02 {
	background-color: #fff;
}


.gift_cat_price {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	margin: 40px 0 70px;
	padding: 0;
}
.gift_cat_price li {
	width: 32%;
}
.gift_cat_price li a {
	display: block;
	font-size: 22px;
	line-height: 1em;
	padding: 20px 20px;
	color: #5e5e5e;
	border: 2px solid #5e5e5e;
	text-decoration: none;
	position: relative;
}
.gift_cat_price li a .s_txt {
	font-size: 0.8em;
}
.gift_cat_price li a:hover {
	background: #5e5e5e;
	color: #fff;
	border: 2px solid #5e5e5e;
}
.gift_cat_price li a::before{
  	content: "";
  	position: absolute;
  	top: 50%;
  	right: 14px;
  	width: 7px;
  	height: 7px;
  	border-top: 2px solid #5e5e5e;
  	border-right: 2px solid #5e5e5e;
  	transform: rotate(45deg);
  	margin-top: -5px;
}
.gift_cat_price li a:hover::before {
  	border-top: 2px solid #fff;
  	border-right: 2px solid #fff;
}

.gift_cat_c2 {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}
.gift_cat_c2 li {
	width: 49%;
	margin: 1% 0;
}
.gift_cat_c2 li a {
	display: block;
}
.gift_cat_c2 li a:hover {
	opacity: 0.7;
}
.ec-giftRole-box_in {
	margin-top: 60px;
}
.ec-giftRole-box_in:first-of-type {
	margin-top: 0;
}
.gift_cat_ttl01 {
	font-size: 20px;
}
.gift_cat_ttl01:first-letter {
	color: #b5871b;
}
.gift_cat_ttl02 {
	font-size: 20px;
	line-height: 1.5em;
}
.gift_cat_ttl02:first-letter {
	color: #b5871b;
}
.ch_txt01 {
	line-height: 1.8em;
	padding-left: 1.25em;
}
.ec-giftRole-box {
	margin-bottom: 80px;
}
.ec-giftRole-box .ph {
	margin: 30px 0;
}

.gift_cat_c {
	list-style: none;
	margin: 0;
	padding: 0;
}
.gift_cat_c.outdoar li {
	border: 1px solid #ccc;
}
.gift_cat_c li {
	margin: 2% 0;
}
.gift_cat_c li a {
	display: block;
}
.gift_cat_c li a:hover {
	opacity: 0.7;
}
.sp_contents {
	display: none;
}

.page_ch_txt {
	display: flex;
	flex-wrap: wrap;
}
.page_ch_txt .page_ttl {
	width: 50%;
	text-align: center;
	padding-top: 20px;
	 position: relative;
    z-index: 2;
}
.page_ch_txt .page_ttl h2 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	font-size: 25px;
	line-height: 1.5em;
	width: 80%;
	margin: auto;
	text-align: left;
}
.page_ch_txt .page_ttl h2 ._ph {
	width: 30px;
}
.page_ch_txt .page_ttl h2 ._ttl {
	width: calc( 100% - 50px );
}
.page_ch_txt .page_ttl .ch_img {
	margin: 20px auto 0;
}
.page_ch_txt .page_ttl p {
	font-size: 0.9em;
	line-height: 1.5em;
	text-indent: -1em;
	margin-left: 1em;
	display: inline-block;
	text-align: left;
}
.page_ch_txt .page_txt {
	width: 50%;
	position: relative;
}
.page_ch_txt .page_txt h3 {
	color: #fff;
	background: #b5871b;
	display: inline-block;
	padding: 10px 24px;
    margin: 0 0 0 24px;
    font-size: 20px;
}
.page_ch_txt .page_txt p {
	color: #b5871b;
	padding: 24px 24px 24px 24px;
	line-height: 1.8em;
	background: #fffbf2;
	margin: 0 24px 0 24px
}
.page_ch_txt .page_txt ._ph {
	padding: 24px;
	background: #fff;
	box-shadow: 2px 2px 10px 10px rgb(0 0 0 / 10%);
	margin: 20px 20px 30px;
}
.ch_ph {
	margin: 0 0 40px;
}
.ec-giftRole .ec-shelfRole {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: unset;
}

.ec-giftRole .ec-shelfGrid .ec-shelfGrid__item-image {
    height: 100%;
    width: 100%;
}
.ec-giftRole .ec-shelfGrid .ec-price {
    margin-top: 10px;
}
.ec-giftRole .btn01 a {
    margin: 20px auto;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ec-giftRole .btn01__itemLink {
    font-size: 17px;
}
.ec-giftRole .btn01__itemIcon {
    font-size: 16px;
    vertical-align: middle;
    line-height: 16px;
}

.ec-giftRole h3 {
    text-align: center;
    padding: 10px 0;
    border-bottom: solid 2px #d6b059;
    border-top: solid 2px #d6b059;
    margin: 20px 0;
}

p.uchiiwai {
    line-height: 1.5em;
    text-indent: -1em;
    margin-left: 1em;
    display: inline-block;
    text-align: left;
    margin-top: 24px;
}
.page_ch_txt .page_txt.childbirth p {
    color: #f0857d;
    background: #fff0ef;
}

.page_ch_txt .page_txt.img_c2 ._ph {
    padding: 10px;
    background: #fff;
    box-shadow: 2px 2px 10px 10px rgb(0 0 0 / 10%);
    margin: 20px 20px 30px;
    width: 64%;
}
.page_ch_txt .page_txt.img_c2 ._ph.img01 {
    transform: rotate( -4deg );
    position: relative;
    left: -16%;
    margin-top: -2%;
}
.page_ch_txt .page_txt.img_c2 ._ph.img02 {
    transform: rotate( 4deg );
    margin-top: -30%;
    position: relative;
    right: -34%;
}
.page_ch_txt .page_txt.new_life p {
    color: #f0b76e;
    background: #faf4eb;
}
.page_ch_txt .page_txt.recovery p {
    color: #f0b76e;
    background: #faf4eb;
}
.page_ch_txt .page_txt.celebration p {
    color: #ec867b;
    background: #ffeeec;
}
.page_ch_txt .page_txt.return p {
    color: #a674af;
    background: #fff3ff;
}
.page_ch_txt .page_ttl.return h2 ._ph {
    width: 70px;
}
.page_ch_txt .page_ttl.return h2 ._ttl {
    width: calc( 100% - 90px );
}


@media only screen and (max-width: 768px) {
.ec-giftHeading h2 {
    font-size: 20px;
    line-height: 1.5em;
}
.gift_cat_price li a,
.gift_cat_list li a {
    font-size: 20px;
}
.gift_cat_price li,
.gift_cat_list li {
    width: 100%;
    margin-top: 14px;
}
.gift_cat_price li:first-of-type,
.gift_cat_list li:first-of-type {
    margin-top: 0;
}
.gift_cat_list {
	margin: 0 0 40px;
}
.gift_cat_price {
    margin: 0 0 0;
}
.ec-giftRole-box {
    margin-bottom: 40px;
}
.ec-giftRole-box#gift_price {
    margin-top: 40px;
}
.gift_cat_c2 li {
    width: 100%;
    margin: 2% 0;
}
.ec-giftRole-box_in {
    margin-top: 40px;
}
.ec-giftHeading {
    margin-bottom: 20px;
}
.sp_contents {
	display: block;
}
.pc_contents {
	display: none;
}


.page_ch_txt .page_ttl {
    width: 100%;
    text-align: center;
    padding-top: 10px;
    position: relative;
    z-index: 2;
}
.page_ch_txt img {
    image-rendering: -webkit-optimize-contrast;
}
.page_ch_txt .page_txt {
    width: 100%;
    z-index: 2;
}
.page_ch_txt .page_txt ._ph {
    padding: 12px;
    background: #fff;
    box-shadow: 2px 2px 10px 10px rgb(0 0 0 / 10%);
    margin: 40px 10px 30px;
}
.page_ch_txt .page_txt h3 {
    color: #fff;
    background: #b5871b;
    display: inline-block;
    padding: 10px 24px;
    margin: 0 0 0 10px;
    font-size: 20px;
}
.page_ch_txt .page_txt p {
    color: #b5871b;
    padding: 24px 24px 24px 24px;
    line-height: 1.8em;
    background: #fffbf2;
    margin: 0 10px 0 10px;
}
.ec-giftRole .btn01__itemLink {
    font-size: 13px;
}
.ec-giftRole .btn01__itemIcon {
    font-size: 13px;
    vertical-align: middle;
    line-height: 13px;
}
.ch_ph {
	margin: 0 0 30px;
}
.page_ch_txt .page_txt.img_c2 ._ph.img01 {
    left: -2%;
    margin-top: -2%;
}
.page_ch_txt .page_txt.img_c2 ._ph.img02 {
    margin-top: -18%;
    right: -22%;
}
.page_ch_txt .page_txt.img_c2 ._ph {
    width: 70%;
}
.page_ch_txt .page_ttl.return h2 {
	width: 90%;
}
.page_ch_txt .page_ttl.return h2 ._ph {
    width: 60px;
}
.page_ch_txt .page_ttl.return h2 ._ttl {
    width: calc( 100% - 80px );
}

}

a.btn{
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
}
a.btn-flat {
    overflow: hidden;
    padding: 1.2rem 4rem;
    color: #fff;
    border-radius: 0;
    background: #000;
}
a.btn-flat span {
    position: relative;
}
a.btn-flat:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(-80%) translateY(-25px);
    transform: translateX(-80%) translateY(-25px);
    border-radius: 50%;
    background: #b6871b;
}
a.btn-flat:hover {
    background-color:#212529;
}
.center{
    text-align:center;
}
.quarity-b{
    margin-bottom: 55px;
}
.clearfix::after {
    content: " ";
    display: block;
    clear: both;
}
.quality0{
    position: relative;
    background-image: url(/html/user_data/assets/img/page/kodawari17.png);
    background-position: right bottom;
    background-repeat: no-repeat;
}
.quality h2 {
	font-size: 40px;
	margin-bottom: 30px;
	text-align:left;
}
.vertical-text1,.vertical-text2,.vertical-text3,.vertical-text4,.vertical-text5{
    writing-mode: vertical-rl;
    position: absolute;
    border: 1px solid gray;
    background-color: #fff;
    color: #000;
    font-size: 2.3rem;
    padding: 1.5rem 0.5rem;
}
.vertical-text1{
    top: -2rem;
    right: 7rem;
}
.vertical-text2{
    top: 2rem;
    right: 13rem;
}
.vertical-text3{
    top: -2rem;
    left: 13rem;
}
.vertical-text4{
    top: 2rem;
    left: 7rem;
}
.vertical-text5{
    top: 19rem;
    right: 13rem;
}
.quality0{
    position: relative;
    background-image: url(/html/user_data/assets/img/page/kodawari17.png);
    background-position: right bottom;
    background-repeat: no-repeat;
}
.quality0 p,.quality00 p{
    margin: 2rem 0 3rem;
}
.quality .quality1,.quality .quality2{
    margin-bottom: 4rem;
}
.quality .quality1 .img-list{
    float: left;
    width: 48%;
    margin-top: 2.3vw;
}
.quality .quality1 .img-list img,.quality .quality2 .img-list img{
    background-repeat: no-repeat;
    background-size: calc(100% - 2.3vw) calc(100% - 2.3vw);
    background-image: url(/html/user_data/assets/img/page/kodawari18.png);
    padding-bottom: 2.3vw;
}
.quality .quality1 .img-list img{
    background-position: right bottom;
    padding-right: 2.3vw;
}
.quality .quality2 .img-list img{
    background-position: left bottom;
    padding-left: 2.3vw;
}
.quality .quality2 .img-list{
    float: right;
    width: 48%;
    margin-top: 2.3vw;
}
.quality .quality1 img,.quality .quality2 img{
    vertical-align: top;
}
.quality .quality1 h2,.quality .quality2 h2{
    border-bottom: 2px solid #a37e39;
    width: calc(52% + 2.3vw);
    color: #231815;
    font-size: 2rem;
    margin: -0.9rem 0 1rem;
    white-space: inherit;
}
.quality .quality1 h2{
    float: right;
    padding: 0 2rem 0 5rem;
    margin-left: -5rem;
}
.quality .quality1 p{
    width: 52%;
    padding: 0 0 0 2rem;
    float: right;
}
.quality .quality2 h2{
    float: left;
    padding: 0 5rem 0 0;
    margin-right: -5rem;
}
.quality .quality2 p{
    width: 52%;
    padding: 0 2rem 0 0;
    float: left;
    margin-right: -5rem;
}
.quality-img3 img{
    vertical-align: bottom;
    width: 33.33%;
    margin-right: -4px;
    margin-bottom: 4rem;
}
.quality-img2 img{
    vertical-align: bottom;
    width: 50%;
    margin-right: -3px;
    margin-bottom: 4rem;
}
.img-list img:last-of-type{
    margin-top: -2.3vw;
}
@media only screen and (max-width: 768px) {
.quality .quality1 h2,
.quality .quality1 p,
.quality .quality2 h2,
.quality .quality2 p{
    width: 100%;
    float: none;
}
.quality .quality1 .img-list,
.quality .quality2 .img-list{
    width: 100%;
    float: none;
    padding-bottom: 6vw;
}
.quality .quality1 .img-list{
    margin-left: 4vw;
}
.quality .quality2 .img-list{
    margin-right: 3vw;
}
.quality .quality1 .img-list img{
    padding-right: 6vw;
    padding-bottom: 6vw;
    margin-left: 1.5vw;
}
.quality .quality2 .img-list img{
    padding-left: 6vw;
    padding-bottom: 6vw;
}
.img-list img:last-of-type{
    margin-top: -6vw;
}
.quality .quality1 h2, .quality .quality2 h2{
    margin-left: 0;
}
.quality .quality1 img, .quality .quality2 img{
    width: 87vw;
}
.vertical-text1,
.vertical-text2,
.vertical-text3,
.vertical-text4,
.vertical-text5{
    font-size: 1rem;
    padding: 1rem 0.3rem;
}
.vertical-text1{
    top: -2vw;
    right: 4vw;
}
.vertical-text2{
    top: 2vw;
    right: 14vw;
}
.vertical-text3{
    top: -2vw;
    left: 14vw;
}
.vertical-text4{
    top: 2vw;
    left: 4vw;
}
.vertical-text5{
    top: 23vw;
    right: 14vw;
}
.quality .quality1 h2,.quality .quality2 h2{
    margin-top: 2rem;
    font-size: 1.3rem;
    text-align: center;
}
.quality .quality1 h2,.quality .quality2 h2,.quality .quality1 p,.quality .quality2 p{
    padding-left: 0;
    padding-right: 0;
}
.quality .quality1 .img-list img, .quality .quality2 .img-list img{
    background-size: calc(100% - 6vw) calc(100% - 6vw);
}
}
.breadcrumb li {
    display: inline-block;
}
.breadcrumb > .active {
    color: #777;
}
.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}
.ec-link {
    font-size: 14px;
}
@media only screen and (min-width: 768px){
.price02-default .ec-price__tax {
    font-size: 0.8em;
}}

.gift-haha{
    margin-bottom: 4vh;
    background-image: url("/html/user_data/assets/img/product/gift_02.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    height: 43vw;
    width:100%;
}
@media only screen and (min-width: 768px){
.gift-haha{
    margin-bottom: 4vh;
    height: 280px;
    background-image: url("/html/user_data/assets/img/product/gift_01.jpg");
    background-repeat: no-repeat;
    background-size: contain;
}}