/*  クイックカートイン CSS  */
.cart_in_modal,
.cart_in_error_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .7);
  z-index: 20000;
  display: flex;
  overflow: auto;
}

@media screen and (min-width: 960px) {
  .cart_in_modal,
  .cart_in_error_modal {
    align-items: center;
  }
}

.cart_in_modal__bg {
  background-color: rgba(0, 0, 0, .7);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20000;
}

.cart_in_modal__outline {
  width: 90%;
  margin: 20px 5%;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
  box-sizing: border-box;
  text-align: center;
  position: absolute;
}

@media screen and (min-width: 960px) {
  .cart_in_modal__outline {
    width: 900px;
    margin: auto;
    padding: 20px 70px;
    position: relative;
  }
}

.cart_in_modal__heading {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0;
  line-height: 1.4;
}

@media screen and (min-width: 960px) {
  .cart_in_modal__heading {
    font-size: 26px;
    margin: 30px 0;
    line-height: 1.2;
  }
}

.cart_in_error_modal__heading {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 20px;
  line-height: 1.4;
}

@media screen and (min-width: 960px) {
  .cart_in_error_modal__heading {
    margin: 30px 0;
    line-height: 1.2;
  }
}

.cart_in_modal__detail {
  display: flex;
  padding: 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  align-items: center;
  flex-direction: column;
}

@media screen and (min-width: 960px) {
  .cart_in_modal__detail {
    flex-direction: row;
  }
}

.cart_in_modal__name {
  font-size: 16px;
  flex: 1;
  line-height: 1.4;
  text-align: left;
  margin: 0;
}

@media screen and (min-width: 960px) {
  .cart_in_modal__name {
    font-size: 18px;
  }
}

.cart_in_modal__image-wrap {
  padding: 5px;
  width: 170px;
  height: 170px;
  background: rgba(0, 0, 0, .1);
  position: relative;
  border: 5px solid transparent;
  box-sizing: border-box;
}

@media screen and (min-width: 960px) {
  .cart_in_modal__image-wrap {
    margin: 0 30px 0 0;
    flex-basis: 170px;
  }
}

.cart_in_modal__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.cart_in_modal__text-link {
  color: #2169f3;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 20px 0 0;
  padding: 0 0 0 20px;
  line-height: 1.15;
}
.cart_in_modal__text-link::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2169f3;
  border-right: 2px solid #2169f3;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.cart_in_modal__button-wrap {
  width: 100%;
  margin: 30px auto;
  font-size: 17px;
}

@media screen and (min-width: 960px) {
  .cart_in_modal__button-wrap {
    width: 350px;
  }
}
.cart_in_modal__button {
  font-size: 17px;
  font-weight: bold;
  line-height: 23px;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
  border: 0;
  border-radius: 4px;
  width: 100%;
  height: 58px;
  padding: 15px;
  background: #2169f3;
  box-shadow: 0 2px 0 #1a54c2;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cart_in_modal__button:hover,
.cart_in_modal__button:focus {
  height: 58px;
  color: #e9f0fe;
  background-color: #1e5fdb;
  box-shadow: none;
  transform: translate3d(0, 2px, 0);
}

.cart_in_modal__close-icon {
  cursor: pointer;
}

.cart_in_modal__close-icon::before,
.cart_in_modal__close-icon::after {
  content: "";
  width: 35px;
  height: 6px;
  display: block;
  position: absolute;
  top: 30px;
  right: 20px;
  background: #eee;
  border-radius: 4px;
}

.cart_in_modal__close-icon::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cart_in_modal__close-icon::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.spinner::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  width: 100px;
  margin-top: -50px;
  margin-left: -50px;
  border-radius: 50%;
  border: 5px solid #eee;
  border-top-color: #fd7f23;
  animation: spinner 0.5s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@media screen and (min-width: 960px) {
  .sp-br {
    display: none;
  }
}


/* ------------------------------ */
/*　お気に入りボタン　*/
/* ------------------------------ */
.product__fav-item {
  margin-top: 10px;
}

.product__fav-item button {
  padding: 0;
  cursor: pointer;
  transition: .2s;
  color: #777;
  border: 0;
  outline: none;
  background: transparent;
}

.product__fav-item .fav-items {
  color: #ff7373;
}

.product__fav-item svg {
  width: 20px;
  height: 20px;
  vertical-align: -.35em;
  fill: currentColor;
}
.fav_20 {
	font-size: 0.9em;
}

/* ------------------------------ */
/*　レビュー（カラーミー）星5段階に　*/
/* ------------------------------ */
.reviewlist_datas {
overflow: hidden;
zoom: 1;
margin-bottom: 10px;
}
.product-review-star {
float: left;
width: 75px;
overflow: hidden;
}
.product-review-star img {
max-width: inherit;
}
.review_poster li {
float: left;
margin-left: 10px;
}
.review_poster li {
list-style: none;
}
.reviewlist {
padding-bottom: 15px;
margin-bottom: 15px;
border-bottom: 1px dotted #ccc;
}
.review_ttl,
.shopcomment_ttl {
font-size: 14px;
font-weight: bold;
margin-bottom: 10px;
}
.review_img {
float: right;
margin: 0 0 10px 10px
}
.reviewlist_content {
overflow: hidden;
zoom: 1;
}
.shopcomment {
margin-top: 10px;
margin-bottom: 10px;
background: #eee;
padding: 15px;
border-radius: 6px;
}
/* ------------------------------ */
/*　レシピ　*/
/* ------------------------------ */
#recipe_h1 {
	width: 100%;
	height: 58px;
	margin: 10px 0px 5px 0px;
	background: url(https://sakaikikaku.com/03_detail_page/img/tit_recipe.gif) no-repeat left top;
	border-radius:8px;
	clear:both;
}
.recipe_h1_txt {
	font-size: 120%;
	color:#593920;
	line-height: 160%;
	font-weight:bold;
	padding: 8px 0px 0px 58px;
}
.recipe_h2_txt {
	font-size: 100%;
	color:#ff6600;
	width: auto;
	line-height: 160%;
	font-weight:bold;
	padding-bottom:5px;
}
.recipe_box{
	width: auto;
	margin: 0px 0px 15px 0px;
	padding-bottom: 15px;
	background: url(https://sakaikikaku.com/03_detail_page/img/recipe_line.gif) repeat-x left bottom;
    clear: both;
}
.recipe_box_l{
	width: 35%;
	float:left;
}
.recipe_box_r{
	width: 65%;
	float:left;
}
.recipe_box_link{
	width: 100%;
	float:left;
	text-align:right;
}
/* ------------------------------ */
/*　レシピ レスポンシブ　*/
/* ------------------------------ */
@media screen and (max-width: 640px){
.recipe_box_l{
	width: 100%;
	float:left;
    margin-bottom: 1em;
}
.recipe_box_l img{
	width: 100%;
}
.recipe_box_r{
	width: 100%;
	float:left;
}
}
/* ------------------------------ */
/*　table　与える量　*/
/* ------------------------------ */
.kyuuyo {
	width: auto;
	margin: 0px 10px 38px 10px;
}
.kyuuyo_tit {
	font-size: 130%;
	line-height: 160%;
	font-weight:bold;
	color:#6D5038;
}
.kyuuyo_color {
	padding: 3px;
	font-weight: noraml;
	text-align: center;
	background-color:#826b57;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
}
.kyuuyo_clr {
	background-color:#ece9e6;
}
.kyuuyo_h1 {
	width: 100%;
	color:#FFF;
	text-align: center;
}
.kyuuyo table {
	width: 100%;
	font-size: 95%;
	border-bottom: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-collapse: collapse;
}
.kyuuyo table th {
	padding: 5px;
	font-weight: noraml;
	text-align: left;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
}
.kyuuyo table td {
	padding: 5px;
	vertical-align: middle;
	text-align: center;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
}
.kyuuyo_dog {
	width: auto;
	height: 34px;
	padding: 5px 0px 0px 45px;
	font-size: 110%;
	color:#ff6600;
	font-weight:bold;
	background: url(https://sakaikikaku.com/03_detail_page/img/icon_dog.gif) no-repeat left top;
}
.kyuuyo_cat {
	width: auto;
	height: 34px;
	padding: 5px 0px 0px 42px;
	font-size: 110%;
	color:#ff6600;
	font-weight:bold;
	background: url(https://sakaikikaku.com/03_detail_page/img/icon_cat.gif) no-repeat left top;
}
.kyuuyo ul {
	margin-bottom: 10px;
	padding: 0px;
}
.kyuuyo li {
	margin: 0px 0px 2px 0px;
	padding: 0px 0px 0px 12px;
	list-style:none;
	background: url(https://sakaikikaku.com/03_detail_page/img/li_pt.gif) no-repeat left top ;
}
/* ------------------------------ */
/*　table　原材料　*/
/* ------------------------------ */
.zairyo {
	width: auto;
	margin: 0px 0px 38px 0px;
}
.zairyo table {
	width: 100%;
	border-bottom: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-collapse: collapse;
	margin-bottom:10px;
}
.zairyo table th {
	padding: 5px;
	font-weight: noraml;
	text-align: center;
	background-color:#ffeba2;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
}
.zairyo table td {
	padding: 5px;
	vertical-align: top;
    text-align: left;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
}
/* ------------------------------ */
/*　お客様レビュー　*/
/* ------------------------------ */
#rev_box {
	width: auto;
	margin: 0px 0px 50px 0px;
	padding: 70px 10px 10px 10px;
	background: url(https://sakaikikaku.com/03_detail_page/img/tit_review_new.gif) no-repeat left top;
	border: solid #ffd33c 5px;
}
#rev_h1 {
	width: 100%;
	height: 58px;
	margin: 10px 0px 5px 0px;
	background: url(https://sakaikikaku.com/03_detail_page/img/tit_review.gif) no-repeat left top;
	border-radius:8px;
	clear:both;
}
.rev_h1_txt {
	font-size: 120%;
	color:#593920;
	line-height: 160%;
	font-weight:bold;
	padding: 8px 0px 0px 58px;
}
#rev {
	padding:10px 0px 20px 0px;
	margin-bottom:16px;
	background: url(https://sakaikikaku.com/03_review/img/line.gif) repeat-x left bottom;
	clear:both;
}
#rev_title {
	font-size:120%;
	color:#ea5927;
	font-weight:bold;
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 0px 20px;
	background: url(https://sakaikikaku.com/03_review/img/icon.gif) no-repeat left top;
}
#rev_name {
	color:#735136;
	font-weight:bold;
	text-align:right;
	padding-bottom:10px;
}
#rev_txt {
	margin: 0px 0px 10px 0px;
}
/* ------------------------------ */
/*　こんな子にオススメ　*/
/* ------------------------------ */
.link_ossm{
	margin: 0px 10px 10px 0px;
	padding: 0.2em 1.5em;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    float: left;
}
.link_ossm a{
	color: #fff;
    text-decoration: none;
}
.osc01{background-color: #a970db;}
.osc02{background-color: #f24f79;}
.osc03{background-color: #65b358;}
.osc04{background-color: #1ca5b8;}
.osc05{background-color: #e98400;}
.osc06{background-color: #a245ad;}
.osc07{background-color: #5670e2;}
.osc08{background-color: #b4c218;}
.osc09{background-color: #d79d13;}
.osc10{background-color: #37b0e9;}
.osc11{background-color: #7e8fa6;}
.osc12{background-color: #b78957;}
.osc13{background-color: #ef5d5d;}
.osc14{background-color: #f38062;}
/* ------------------------------ */
/*　youtube動画　*/
/* ------------------------------ */
.y_video_box{
  width:90%;
  margin: 0 auto;
}
.y_video{
  position:relative;
  width:100%;
  padding-top:56.25%;
}
.y_video iframe{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
}
/* ----------------------------------------------- */
/*　畜種別カテゴリーリンク　*/
/* ----------------------------------------------- */
.type_link_box {
	padding: 5px 0px;
	margin-bottom:40px;
	width:100%;
	border-top: 2px #ffba00 dotted;
	border-bottom: 2px #ffba00 dotted;
}
.type_link_tit {
	padding: 0px 0px 0px 10px;
	margin: 0;
	color:#6a4d37;
	font-weight:bold;
}
.type_link {
	padding: 0;
	margin: 0;
	width:100%;
}

.type_link li{
	padding:0;
	margin: 0;
	float: left;
	width: 10%;
	list-style: none;
}
.type_link a{
	text-decoration:none;
}
/* ----------------------------------------------- */
/*　レスポンシブ　イメージレイアウト　*/
/* ----------------------------------------------- */
.imagevox{
	width: 200px;
    margin-bottom: 1em;
}
.voxfl{float: left; margin-right: 10px;}
.voxfr{float: right; margin-left: 10px;}
.vox100 {width: 100%;}
.vox5 {padding: 0 0%;}
.vox10 {padding: 0 0%;}
@media screen and (max-width: 640px){
.type_link li {
	width: 20%;
}
}
@media screen and (max-width: 320px){
/* 320px以下は２列 */
.type_link li {
	width: 20%;
}
}
/* ----------------------------------------------- */
/*　レスポンシブ　イメージレイアウト　*/
/* ----------------------------------------------- */
@media screen and (max-width: 999px){
.imagevox{
	width: 100%;
    margin-bottom: 1em;
}
.vox0 {width: 100%;}
.vox5 {padding: 0 5%;}
.vox10 {padding: 0 10%;}
}