@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
}
#sale_tpl {
	font-size: 16px;
}
#sale_tpl {
	font-feature-settings: "palt";
	-webkit-font-feature-settings: "palt";
	margin: 0 auto;
	font-family: 'Noto Sans JP', sans-serif;
}
ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, p, figure {
	margin: 0;
	padding: 0;
	font-weight: normal;
}
/* テキストリンク */
a {
	text-decoration: none;
	outline: none;
	color: #000;
}
a:hover {
	color: #588639;
}
/* 本文 */
p {
	padding: 0;
	margin: 0;
	word-wrap: normal;
	word-break: break-all;
}
/* clear */
.cle:before, .cle:after {
	content: " ";
	display: table;
}
.cle:after {
	clear: both;
}
.cle {
*zoom: 1;
}
/* -------------------------- */
/* --------全体囲み------------ */
/* -------------------------- */

#sale_tpl {
}
/* -------------------------- */
/* --------header------------ */
/* -------------------------- */
.sale_tpl_header {
	background: #f6aa00 url(../images/saletpl_header.png) no-repeat top center;
	text-align: center;
	padding-bottom: 1rem;
}
.sale_tpl_header .inner {
	max-width: 1000px;
	margin: auto;
}
.sale_tpl_title {
	display: inline-block;
	background: #000;
	padding: 0.5rem 3rem;
	margin-top: 7rem;
	margin-bottom: 1rem;
	position: relative;
}
.sale_tpl_title .star {
	position: absolute;
	margin-top: -2rem;
	margin-left: -3rem;
}
.sale_tpl_title .specials {
	position: absolute;
	right: -4rem;
	bottom: -2rem;
}
.sale_tpl_title h1 {
	color: #ffe000;
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 0.4rem;
	text-shadow: 2px 2px 5px rgb(0, 0, 0, 0.5);
}
.sale_period {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.15rem;
	text-shadow: 1px 1px 2px rgb(119, 25, 32, 0.5);
}
.sale_period {
	position: relative;
	display: inline-block;
	padding: 0 13rem;
}
.sale_period:before, .sale_period:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 11rem;
	height: 2.5px;
	background-color: #fff;
	box-shadow: 2px 2px 3px rgb(119, 25, 32, 0.7);
}
.sale_period:before {
	left: 0;
}
.sale_period:after {
	right: 0;
}
.sale_period span {
	font-size: 70%;
}
.sale_period .wave {
	margin-left: 0.3rem;
	margin-right: 0.3rem;
}
.sale_cate_header {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	text-align: center;
}
.sale_cate_header_in {
	width: 45%;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.15rem;
	text-shadow: 1px 1px 2px rgb(119, 25, 32, 0.5);
	padding: 1%;
	margin: 1%;
	background-color: #FFF;
	border-radius: 10px;
}
/* ------------------------------- */
/* --カテゴリリンク---sale_tpl_cat-- */
/* ------------------------------- */

#sale_tpl ul {
	list-style: none;
}
.sale_tpl_cat ul {
	max-width: 90vw;
	margin: 2rem auto;
	display: flex;
	flex-wrap: nowrap;
	border: #000 solid 1px;
}
.sale_tpl_cat ul li {
	width: 100%;
	text-align: center;
}
.sale_tpl_cat ul li:nth-child(1), .sale_tpl_cat ul li:nth-child(2), .sale_tpl_cat ul li:nth-child(3), .sale_tpl_cat ul li:nth-child(4) {
	border-right: #000 solid 1px;
}
.sale_tpl_cat ul li {
	position: relative;
	padding: 1rem 0;
	letter-spacing: 0.15rem;
}
.sale_tpl_cat ul li::before {
	content: "";
	position: absolute;
	top: 1.5rem;
	right: 0.8rem;
	border: 6px solid transparent;
	border-top: 7px solid #ff0000;   /* 好みで色を変えてください */
	z-index: 5;
}
.sale_tpl_cat ul li a {
	color: #000;
	display: block;
}
.sale_tpl_cat ul li a:hover {
	color: #fff;
}
/* ボタン共通設定 */
.sale_tpl_cat ul li {
	position: relative;
	overflow: hidden;
	transition: ease .2s;
}
/*ボタン内spanの形状*/
.sale_tpl_cat ul li span {
	position: relative;
	z-index: 3;
}
/*== 背景が流れる（斜め） */
.bgskew01::before, .bgskew02::before, .bgskew03::before, .bgskew04::before, .bgskew05::before {
	content: '';
	position: absolute;
	top: 0;
	left: -130%;
	width: 120%;
	height: 100%;
	transform: skewX(-25deg);
}
.bgskew01::before {
	background: linear-gradient(to top, #a80000 0%, #d91016 100%);
}
.bgskew02::before {
	background: linear-gradient(to top, #0028b9 0%, #005aff 100%);
}
.bgskew03::before {
	background: linear-gradient(to top, #e37f1e 0%, #f6aa00 100%);
}
.bgskew04::before {
	background: linear-gradient(to top, #037d48 0%, #03af7a 100%);
}
.bgskew05::before {
	background: linear-gradient(to top, #a80000 0%, #d91016 100%);
}
/*hoverした時のアニメーション*/
.bgskew01:hover::before, .bgskew02:hover::before, .bgskew03:hover::before, .bgskew04:hover::before, .bgskew05:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}
 @keyframes skewanime {
100% {
 left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
}
}
/* -------------------- */
/* --ale_tpl_contents-- */
/* -------------------- */

.sale_tpl_contents {
	padding: 3vh 5vw;
}
/* --カテゴリ別背景-- */
.cat_back01 {
	background: url(../images/saletpl_backg_top.png)no-repeat top, url(../images/saletpl_backg_bottom.png)no-repeat bottom, -moz-linear-gradient(top, #d91016 0%, #a80000 100%);/* カテゴリに合わせた色 */
	background: url(../images/saletpl_backg_top.png)no-repeat top, url(../images/saletpl_backg_bottom.png)no-repeat bottom, -webkit-linear-gradient(top, #d91016 0%, #a80000 100%);/* カテゴリに合わせた色 */
	background-size: 100% auto;
	margin-bottom: 3rem;
}
.cat_back02 {
	background: url(../images/saletpl_backg_top.png)no-repeat top, url(../images/saletpl_backg_bottom.png)no-repeat bottom, -moz-linear-gradient(top, #005aff 0%, #0028b9 100%);/* カテゴリに合わせた色 */
	background: url(../images/saletpl_backg_top.png)no-repeat top, url(../images/saletpl_backg_bottom.png)no-repeat bottom, -webkit-linear-gradient(top, #005aff 0%, #0028b9 100%);/* カテゴリに合わせた色 */
	background-size: 100% auto;
	margin-bottom: 3rem;
}
.cat_back03 {
	background: url(../images/saletpl_backg_top.png)no-repeat top, url(../images/saletpl_backg_bottom.png)no-repeat bottom, -moz-linear-gradient(top, #f6aa00 0%, #e37f1e 100%);/* カテゴリに合わせた色 */
	background: url(../images/saletpl_backg_top.png)no-repeat top, url(../images/saletpl_backg_bottom.png)no-repeat bottom, -webkit-linear-gradient(top, #f6aa00 0%, #e37f1e 100%);/* カテゴリに合わせた色 */
	background-size: 100% auto;
	margin-bottom: 3rem;
}
.cat_back04 {
	background: url(../images/saletpl_backg_top.png)no-repeat top, url(../images/saletpl_backg_bottom.png)no-repeat bottom, -moz-linear-gradient(top, #03af7a 0%, #037d48 100%);/* カテゴリに合わせた色 */
	background: url(../images/saletpl_backg_top.png)no-repeat top, url(../images/saletpl_backg_bottom.png)no-repeat bottom, -webkit-linear-gradient(top, #03af7a 0%, #037d48 100%);/* カテゴリに合わせた色 */
	background-size: 100% auto;
	margin-bottom: 3rem;
}
.cat_back05 {
	background: url(../images/saletpl_backg_top.png)no-repeat top, url(../images/saletpl_backg_bottom.png)no-repeat bottom, -moz-linear-gradient(top, #d91016 0%, #a80000 100%);/* カテゴリに合わせた色 */
	background: url(../images/saletpl_backg_top.png)no-repeat top, url(../images/saletpl_backg_bottom.png)no-repeat bottom, -webkit-linear-gradient(top, #d91016 0%, #a80000 100%);/* カテゴリに合わせた色 */
	background-size: 100% auto;
	margin-bottom: 3rem;
}
.sale_tpl_contents h2 {
	text-align: left;
	color: #fff;
	font-size: 1.7rem;
	font-weight: 600;
	letter-spacing: 0.3rem;
	text-shadow: 0px 2px 5px rgb(0, 0, 0, 0.5);
	margin-bottom: 0.8rem;
	border-left: none;
	border-bottom: none;
}
.wrap {
	background-color: #fff;
	padding: 1rem 1.5rem;
	border-radius: 5px;
	box-shadow: 0px 2px 5px rgb(0, 0, 0, 0.5);
	margin-bottom: 1.5rem;
}
.l_box, .w_half {
	display: -moz-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.prod_box {
	display: -moz-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-end;
}
.s_box {
	display: -moz-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
/* -------------------- */
/* ------調整色々------ */
/* -------------------- */

/* ------幅調整------ */
.half_box {
	width: 48%;
}
.m_box {
	width: 44%;
}
.w_s {
	width: 36%;
}
.w_ss {
	width: 20%;
}
.w_l {
	width: 65%;
}
 @media (max-width: 890px) {
/* 横幅が890px以下の場合に適用するスタイル */
.l_box, .w_half, .s_box {
	display: block;
}
.half_box, .w_s, .w_ss {
	width: 100%;
}
.m_box {
	width: 94%;
}
}
.half_box ul, .m_box ul, .w_s ul {
	display: flex;
	align-items: flex-end;
}
.half_box ul li:nth-child(2), .m_box ul li:nth-child(2), .w_s ul li:nth-child(2) {
	flex-basis: auto;
}
.sen_r {
	border-right: solid #b3b3b3 1px;
}/* --境界線--縦-- */
.sen_b {
	border-bottom: solid #b3b3b3 1px;
}/* --境界線--下-- */
 @media (max-width: 890px) {
/* 横幅が890px以下の場合に適用するスタイル */
.sen_r {
	border-right: none;
	border-bottom: solid #b3b3b3 1px;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
}
}
/* ------位置調整------ */
.poji1 {
	margin-top: 0.5rem;
	margin-bottom: -1rem;
}
.poji2 {
	margin-bottom: 0.8rem;
	padding-bottom: 0.8rem;
	margin-top: 0.8rem;
}
.poji3 {
	padding-right: 1rem;
}
.poji4 {
	padding-right: 1rem;
	margin-right: 1rem;
}
.poji5 {
	margin-top: 1rem;
	margin-bottom: -1rem;
}
.m_btm_s {
	margin-bottom: 0.5rem;
}
.m_l_s {
	margin-left: 1rem;
}
/* --商品の見出し-- */
.sale_tpl_contents h3 .big {
	font-size: 1.5rem;
}
.sale_tpl_contents h3 {
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}
/* ラインマーカー */
.lineMarker.scroll-in {
	background-position: -100% 0.9rem;
}
.lineMarker {
	background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255,250,90) 10%);
	background-image: -moz-linear-gradient(left, transparent 50%, rgb(255,250,90) 10%);
	background-image: linear-gradient(left, transparent 50%, rgb(255,250,90) 10%);
	background-repeat: repeat-x;
	background-size: 200% .7em;
	background-position: 0 .8em;
	transition: all 1.2s ease;
	font-weight: bold;
}
/* --商品画像-- */
.sale_tpl_contents img {
	margin-right: 1rem;
}
.img_l {
	width: 215px;
	height: 215px;
	border: 1px solid #CCC;
}
.img_s {
	width: 130x;
	height: 130px;
	border: 1px solid #CCC;
}
/* --メーカー名-- */
.mfr {
	font-size: 0.6rem;
	margin-bottom: 0.3rem;
}
.mfr::before {
	content: "【 ";
}
.mfr::after {
	content: " 】";
}
/* --商品名-- */
.prod {
	font-size: 0.85rem;
}
/* --商品価格-- */
p.big {
	font-size: 2.8rem;
}/* --目玉商品--商品価格-- */
.price {
	display: inline-block;
	font-family: 'Roboto', sans-serif;
	font-size: 2rem;
	font-weight: 900;
	color: #ed1c24;
	/*
	text-shadow: 4px 4px 0 #000, 0px 0px 0 #000, 0px 0px 0 #000, 0px 0px 0 #000;
	-webkit-text-stroke: 1.5px #ffff00;
	text-stroke: 1.5px #ffff00;
	*/
}
.price span {
	font-size: 70%;
	text-shadow: 3px 3px 0 #000, 0px 0px 0 #000, 0px 0px 0 #000, 0px 0px 0 #000;
	text-stroke: 1px #ffff00;
	-webkit-text-stroke: 1px #ffff00;
	font-weight: 900;
}
/* --文字数制限-- */
.line-clamp {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.line-clamp2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.line-clamp3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.line-clamp4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}
