@charset "utf-8";

/************************************************
 import css
************************************************ */

.raku2_order_teiki_info_price {
display: none;
}

table#total_teiki_all {
display: none;
}








/************************************************
TOP 商品
************************************************ */


/* 商品　toproducts */

.top_page #toproducts {

    width: 100%;

}

.top_page #toproducts ul {

    overflow: hidden;

    width: 100%;

}

.top_page #toproducts ul li {

    width: 32%;

    margin: 0 2.6% 2% 0;

    float: left;

}

.top_page #toproducts ul li a img {

    width: 100%;

}

.top_page #toproducts ul li:nth-child(4n) {

    margin-right: 0;

}




/************************************************
TOP 各title
************************************************ */

.topbnrwaku{
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 16px;
    line-height: 28px;

}

.topbnrwaku img {
	width: 100%;

}



/************************************************
TOP 各title
************************************************ */

.toptitle{
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 16px;
    line-height: 28px;

}

.toptitle img {
	width: 40%;

}


/************************************************
TOP 各contents title
************************************************ */

.topcontentsmainwaku {
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 16px;
    line-height: 28px;

}

.topcontentsmainwaku img {
	width: 40%;

}

.topcontentsmainwaku  p.topcontentsmainwakutxt {
    font-size: 17px;
    line-height: 44px;
    text-align: center;
}






/************************************************
TOP 各contents sub
************************************************ */

.topcontentsmainwakusub {
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 16px;
    line-height: 29px;

}

.topcontentsmainwakusub img {
	width: 60%;

}

.topcontentsmainwakusub  p.topcontentsmainwakusubtxt {
    font-size: 15px;
    line-height: 28px;
	color: #000;
}





/************************************************
TOP 厳選した国産の素材たち 枠
************************************************ */

.topcontentsgensen {
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 16px;
    line-height: 29px;

}

.topcontentsgensen img {
	width: 60%;

}

.topcontentsgensen  p.topcontentsgensentxt {
    font-size: 15px;
    line-height: 28px;
	color: #000;
}


/************************************************
TOP 健康生活 枠
************************************************ */

.topcontentskenkou {
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 16px;
    line-height: 29px;

}

.topcontentskenkou img {
	width: 65%;

}

.topcontentskenkou  p.topcontentskenkoutxt {
    font-size: 15px;
    line-height: 28px;
	color: #000;
}







/************************************************
TOP 複数の画像を一定間隔で自動的に切り替えていくCSSアニメーションここから
************************************************ */

.album {
	margin: auto;
	background-color: white;
position: relative;
margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}
.album img {
	width: 100%;
	animation-name: album;
	-webkit-animation-name: album;
	animation-duration: 15s;
	-webkit-animation-duration: 15s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	opacity: 0;
	display: block;
	width: 100%;
	height: auto;
}
.album .img1 {
	display: block;
	margin: 0 auto;
}
.album .img2 {
	animation-delay:5s;
	-webkit-animation-delay:5s;
	position: absolute;
	top: 0;
	left: 0%;
}
.album .img3 {
	animation-delay:10s;
	-webkit-animation-delay:10s;
	position: absolute;
	top: 0;
	left: 0%;
}

@keyframes album {
	0% {
		opacity: 0;
	}
	
	12.5% {
		opacity: 1;
	}

	37.5% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

@-webkit-keyframes album {
	0% {
		opacity: 0;
	}
	
	12.5% {
		opacity: 1;
	}

	37.5% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}



/************************************************
FAQのアコーデオン　ここから
************************************************ */

.accordion {
    padding: 1rem;
}

.accordion-item {
    margin-bottom: 0.5rem;
}

.accordion-check {
    display: none;
}

.accordion-label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 10px 40px 10px 10px;
    border-left: 10px solid #efefef;
    background-color: #efefef;
    color: #333;
    font-size: 1.0rem;
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: 0.6px;
    margin: 10px 0 10px 0;
}

.accordion-label::after {
    position: absolute;
    top: 50%;
    right: 0px;
    height: 100%;
    width: 40px;
    transform: translateY(-50%);
    color: #2c2c2c;
    text-align: center;
    font-size: 1.5rem;
    content: '+';
}

.accordion-box {
    height: 0;
    overflow: hidden;
    opacity: 0;
    background-color: #fff;
    transition: all .5s;
}

.accordion-check:checked~.accordion-box {
    height: auto;
    opacity: 1;
    padding: 1rem;
}

.accordion-check:checked+.accordion-label:after {
    content: '-';
}

.accordion-box p {
    line-height: 2;
}


/************************************************
テーブル　ここから
************************************************ */
.table2 {
display:table;
margin: 5px 0 30px 0px;
font-size: 13px;
width: 960px;
text-align: center;
border-collapse:collapse; /*隣接する要素のborderを共有*/
}
.table2 .row {
display:table-row;
}
.table2 .cell {
display:table-cell;
text-align: center;
border:#c2bdbd 1px solid; /*境界線を指定*/
padding:10px; /*余白を指定*/
}




/************************************************
コンテンツ　横２列　ここから
************************************************ */
.contentblock{
    display: flex;
    background: #fff;
    border: 0px solid #fff;
    padding: 10px;
    font-size: 16px;
    line-height: 28px;
}
.contentblock  span {
    background: #fff;
    border: 0px solid #fff;
    padding: 0px;
    font-size: 20px;
    line-height: 38px;
    font-weight: bold;
    color: #000;
    letter-spacing: 2px;
}


.contentblock  p.title {
    background: #fff;
    border: 0px solid #fff;
    padding: 0px;
    font-size: 20px;
    line-height: 38px;
    font-weight: bold;
    color: #d7af86;
    letter-spacing: 2px;
}

.contentblock  p.green {
    background: #fff;
    border: 0px solid #fff;
    padding: 0px;
    font-size: 13px;
    line-height: 38px;
    color: #008a00;
    letter-spacing: 2px;
}


.contentblock  p.red {
    background: #fff;
    border: 0px solid #fff;
    padding: 0px;
    font-size: 16px;
    line-height: 38px;
    color: rgb(255, 0, 0);
    letter-spacing: 2px;
}

.contentblock  div{
    width: 100%;
    background: #FFF;
    border: 1px solid #fff;
    padding: 0 px;
}


/************************************************
区切り線　ここから
************************************************ */
hr.style1{
  border-top: 0.1px solid #CCC;
}



/************************************************
購入ボタン　ここから
************************************************ */

.kbtn,
a.kbtn,
button.kbtn {
  font-size: 18px;
  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: #d7b086;
  border-radius: 0.3rem;
}

.kbtn--orange,
a.kbtn--orange {
  color: #fff;
  background-color: #d7b086;
  width: 300px;
}

.kbtn--orange:hover,
a.kbtn--orange:hover {
  color: #fff;
  background: #d7b086;
}




/************************************************
TOP  購入ボタン　ここから
************************************************ */

.topkbtn,
a.topkbtn,
button.topkbtn {
  font-size: 18px;
  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: #d7b086;
  border-radius: 0.3rem;
  border: 2px solid #d7b086;
}

.topkbtn--orange,
a.topkbtn--orange {
  color: #d7b086;
  background-color: #ffffff;
  width: 300px;
}

.topkbtn--orange:hover,
a.topkbtn--orange:hover {
  color: #fff;
  background: #d7b086;
}



/************************************************
見出し　ここから
************************************************ */
.heading03 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	 line-height: 50px;
	text-align: center;
}

.heading03::before,
.heading03::after {
	content: '';
	width: 10px;
	height: 3px;
	background-color: #e3bf0000;
}

.heading03::before {
	margin-right: 5px;
}
.heading03::after {
	margin-left: 5px;
}





/************************************************
固定バナー　ここから
************************************************ */
.bottom-fixed-button {
  position: fixed;
  bottom: 0;
  width: 57%;
  height: 50px;
  padding-top: 24px;
  text-align: center;
  background: #fff7ee;
  background-color: #fff7ee;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
    border-style: none;
    margin: 0;
    left: 0;
    z-index: 1002;
    width: 100%;
  　font-size: 18px;

}

.bottom-fixed-button button {
  font-size: 18px;
  cursor: pointer;
  vertical-align: middle;
  background-color: #fff7ee;
    border-style: none;
}









/************************************************
画像サムネイル　ここから
************************************************ */
.cf:before,
.cf:after{
 content:"";
 display:table;
}
 
.cf:after{
 clear:both;
}
 
.cf{
 zoom:1;
}

#content {
 max-width: 500px;
 margin: 0rem auto;
 text-align: center;
}

#featured_img img,
#thumb_img img {
 max-width: 100%;
}

#thumb_img {
 margin-top: 2%;
 padding-top: 5px;
 img {
 float:left;
 max-width: 12%;
 width: 100px;
 cursor: pointer;
 margin-right:2%;
 border:2px solid #eee;
 box-sizing:border-box;
 background-color: #f2f2f2;

 &.active{
 border:2px solid #cac6b8;
 }
 
 &:last-child{
 margin-right:0;
 }
 }
}




/* 商品ページの表示価格表示 */
div.raku2_normal_price.normal_price{
display:block !important;
}


/*新UIによる商品詳細ページ画像表示解消用*/
#detailarea .raku2_image_lower_wrapper .photo img {
   min-width: initial !important;
   min-height: initial !important;
   max-width: initial !important;
   max-height: initial !important;
}


