@charset "UTF-8";
/* CSS Document */

/*＝＝＝＝＝＝＝＝＝
共通
＝＝＝＝＝＝＝＝＝*/

*{
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	font-family: 'Sawarabi Gothic', sans-serif;
	font-style: normal;
}

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

a:link { 
	color:#FFF;
}

a:visited { 
	color: #3333333; 
}
a:hover { 
	color:#6E6E6E;
}

a:active { 
	color:#6E6E6E;
}

html{
	scroll-snap-type: y proximity;
    scroll-padding-top: 200px;/*ページ内リンクのズレ直し*/
	scroll-behavior: smooth;
}

.wrapper{
	height: 100%;
	overflow-x: hidden;
	position: relative;
	display: block;
}

.main{
  padding-top:230px;  /*ヘッダー分の高さ*/
}

/*＝＝＝＝＝＝＝＝＝
campaign
＝＝＝＝＝＝＝＝＝*/
.cp-top{
	max-width:100%;
	margin-bottom:50px;
}

.cp-top img{
	display: block;
	margin: 0 auto;
}

.cp-nav{
	max-width: 100%;
	margin-bottom: 50px;
}

.cp-guide{
	height: 3em;
	display: flex;
  	padding: 0;
 	margin: 0;
	justify-content: space-around;
	align-items: center;
}

.cp-list img{
	width: 100%;               /* liの幅に合わせる */
    height: auto;              /* 高さは自動調整 */
    display: block;            /* 余計な余白をなくす */
}


.cp-section{
	max-width: 100%;
	margin: 0 auto 50px;
}

.cp-box{
	width: 70%;
	height: auto;
	margin: 0 auto;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content:space-around;
	align-content: center;
}

.cp-box img{
	margin-bottom: 25px;
	}

/*セールサーチ商品のカテゴリー*/
.ss-category{
	margin: 0 auto 30px;
	display: grid;
	grid-auto-columns: 1fr;
	grid-auto-flow: column;
	gap: 1rem;
}

.ss-category li{
	text-align: center;
}

.ss-category li a{
	display: inline-block;
	width: 200px;
	text-align: center;
	text-decoration: none;
	line-height: 3;
	outline: none;
	color: #fff;
	background: #7C0404;
	-webkit-transition: all .3s;
	transition: all .3s;
	border-radius: 5rem 0 5rem 0;
	margin-top:10px;
}

/*見出し*/
.headline {
	position: relative;
	margin-bottom: 10px;
	padding: 0.5em;
	color: #ffffff;
	line-height: 1.2;
	text-align: center;
	background:#DD1114;
	border-radius: 5em 0 5em 0;
}
/*キャッチコピー*/
.catchcopy{
	display: flex;
	justify-content: center;
	align-items: center;
	color:#333;
	font-size: 24px;
	text-align: center;
	margin: 0;
}
	
.catchcopy::before,
.catchcopy::after {
	content: '';
	width: 3px;
	height: 30px;
	background-color: #333;
}

.catchcopy::before {
	margin-right: 24px;
	transform: rotate(-35deg)
}
.catchcopy::after {
	margin-left: 24px;
	transform: rotate(35deg)
}

/*グリッドレイアウト*/
.grid-container01{
	margin: 0 auto 50px;;
	display: grid;
	width: fit-content;
	grid-template-columns: repeat(3,3fr);
	grid-auto-rows: auto; /* 行数は自動 */
	grid-gap:10px 10px;
	position: relative;
	background:#FFF;
}

/*共通の商品画像デザイン*/
.grid-item{
	display: grid;
  	grid-template-columns: repeat(1, auto);
	grid-auto-rows: auto;
  	max-width: 300px;
	height: auto;
	padding:60px 5px 10px;
	position: relative;
	font-size: 14px;
	border-radius: 5em 0 5em 0;
}

.item-img{
	max-width:100%;
	height:auto;
	margin: 0;
    padding: 0;
}

.item-img img{
	margin: 0;
    padding: 0;
}

.item-name{
	display: block;
  	max-width: 100%;
	text-align:center;
	line-height: 2;
	color:#5A5959;
	border-top:1px solid #5A5959;
	border-bottom:1px solid #5A5959;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
  vertical-align: top;
}

.item-price{
	text-align: center;
	margin:0;
	color:#999;
	display: flex;  /* フレックスボックスで縦並びに */
    flex-direction: column;  /* 縦方向に並べる */
    align-items: center;  /* 中央揃え */
}

/* 変更前の価格の取り消し線 */
.del {
    text-decoration: line-through;
    color: #999; /* 色を薄く */
}

/* 矢印（変更前価格の下） */
.arrow-down {
   display: block; /* ブロック要素として配置 */
    width: 0;
    height: 0;
    border-left: 8px solid transparent;  /* 左側の透明な三角 */
    border-right: 8px solid transparent; /* 右側の透明な三角 */
    border-top: 16px solid #DF191C;  /* 上側に赤い矢印 */
    margin:5px auto 0; /* 少し上に余白 */
}

.sale-price{
	text-align: center;
	color:#971A1C;
	font-size: 1.2em;
}

/*割引*/
.per85{
	border:1.5px solid #DF191C;
}

.per85:before{
	content: "85%0FF";
	width: 100%;
	height: 50px;
	color: #ffffff;
	background: #DF191C;
	text-align: center;
	z-index: 10;
	position: absolute;
	top:0;
	left:0;
	padding: 1px;
	font-size: 1.2em;
	line-height:3;
	border-radius: 5em 0 5em 0;
	letter-spacing: 0.5em; 
}

.per75{
	border:1.5px solid #F05493;
}

.per75:before{
	content: "75%0FF";
	width: 100%;
	height: 50px;
	color: #ffffff;
	background: #F05493;
	text-align: center;
	z-index: 10;
	position: absolute;
	top:0;
	left:0;
	padding: 1px;
	font-size: 1.2em;
	line-height:3;
	border-radius: 5em 0 5em 0;
	letter-spacing: 0.5em; 
}

.per70{
	border:1.5px solid  #F592BA;
}

.per70:before{
	content: "70%0FF";
	width: 100%;
	height: 50px;
	color: #ffffff;
	background:  #F592BA;
	text-align: center;
	z-index: 10;
	position: absolute;
	top:0;
	left:0;
	padding: 1px;
	font-size: 1.2em;
	line-height:3;
	border-radius: 5em 0 5em 0;
	letter-spacing: 0.5em; 
}

.per65{
	border:1.5px solid #F76201;
}

.per65:before{
	content: "65%0FF";
	width: 100%;
	height: 50px;
	color: #ffffff;
	background:#F76201;
	text-align: center;
	z-index: 10;
	position: absolute;
	top:0;
	left:0;
	padding: 1px;
	font-size: 1.2em;
	line-height:3;
	border-radius: 5rem 0 5rem 0;
	letter-spacing: 0.2em;
}

.per63{
	border:1px solid #F57624;
}

.per63:before{
	content: "63%0FF";
	width: 100%;
	height: 50px;
	color: #ffffff;
	background:#F57624;
	text-align: center;
	border-radius: 100%;
	z-index: 10;
	position: absolute;
	top:0;
	left:0;
	padding: 1px;
	line-height:3;
	border-radius: 5rem 0 5rem 0;
	letter-spacing: 0.2em; 
}

.per60{
	border:1.5px solid #F8A169;
}

.per60:before{
	content: "60%0FF";
	width: 100%;
	height: 50px;
	color: #ffffff;
	background:#F8A169;
	text-align: center;
	border-radius: 100%;
	z-index: 10;
	position: absolute;
	top:0;
	left:0;
	padding: 1px;	
	font-size: 1.2em;
	line-height:3;
	border-radius: 5em 0 5em 0;
	letter-spacing: 0.2em; 
}

.per55{
	border:1.5px solid #0247B1;
}

.per55:before{
	content: "55%0FF";
	width: 100%;
	height: 50px;
	color: #ffffff;
	background:#0247B1;
	text-align: center;
	z-index: 10;
	position: absolute;
	top:0;
	left:0;
	padding: 1px;
	font-size: 1.2em;
	line-height:3;
	border-radius: 5em 0 5em 0;
	letter-spacing: 0.5em; 
}

.per50{
	border:1.5px solid #02B9DC;
}

.per50:before{
	content: "50%0FF";
	width: 100%;
	height: 50px;
	color: #ffffff;
	background:#02B9DC;
	text-align: center;
	z-index: 10;
	position: absolute;
	top:0;
	left:0;
	padding: 1px;
	font-size: 1.2em;
	line-height:3;
	border-radius: 5em 0 5em 0;
	letter-spacing: 0.5em; 
}

.per30{
	border:1.5px solid #228B22;
}

.per30:before{
	content: "30%0FF";
	width: 100%;
	height: 50px;
	color: #ffffff;
	background:#228B22;
	text-align: center;
	z-index: 10;
	position: absolute;
	top:0;
	left:0;
	padding: 1px;
	font-size: 1.2em;
	line-height:3;
	border-radius: 5em 0 5em 0;
	letter-spacing: 0.5em; 
}

.20per:before{
		content: "20%0FF";
		width: 70px;
		height: 70px;
		color: #ffffff;
		background:#26896D;
		text-align: center;
		border-radius: 100%;
		z-index: 10;
		position: absolute;
		top:0;
		right:0;
		padding: 1px;
		font-size: 1em;
		line-height:5;
		border-radius: 100%;
		letter-spacing: 0em; 
	}

/*Pick UP!*/
.pickup	:before{
	content: "Pick up";
	width: 100px;
	height: 100px;
	color: #ffffff;
	text-align: center;
	border-radius: 100% 100% 0% 100%; /* 右下	以外に角丸を指定 */
	background: #DF191C;
	z-index: 10;
	position: absolute;
	top:0;
	left:0;
	padding: 2px;
	line-height:6;
}

.pickup > a p{
	overflow: hidden;
	padding: 10px;
}

.pickup .item-name{
	clear: both;
}

.pickup .item-img{
	width: clac(100%/2 -20px);
	float: left;
}

.pickup .pickup-explan{
	border: 1px solid #C73C3E;
	font-size: 100%;
	}


/*クーポン*/
.coupon-list{
	font-size: 1.6rem;
	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;
  	letter-spacing: 0.1em;
  	color: #212529;
  	border-radius: 0.5rem;
}

/*クーポンボタン*/
#copyTarget{
　　display: inline-block;
	width: 15em;
	max-width: 100%;
    padding: 1em;
    border: 1px solid #999;
    box-sizing: border-box;
    background: #f2f2f2;
    margin: 0 50px;
	font-size: 80%;
}

.coupon-btn01{
  display: inline-block;
  width: 250px;
  text-align: center;
  text-decoration: none;
  line-height: 50px;
  outline: none;
  color: #fff;
  background-color:#E13134;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 10rem;
  margin-top:10px;
}

.coupon-btn01:hover {
	transform: scale(0.9,0.9);
	font: #FFF;
}

.in-cp-box{
	margin: 0 auto;
	padding: 10px 50px;
}

.use-coupon{
	 width:100%;
	}
	
.use-coupon li{
	display: block;
	text-align: left; /* 左揃え */
}

/*リンクボタンの設定*/
.item-list-btn{
	text-align: center;
}

.item-list-btn a{
  display: inline-block;
  width: 250px;
  text-align: center;
  text-decoration: none;
  line-height: 3;
  outline: none;
  color: #fff;
  background-color:#DF191C;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 10rem;
}

.item-list-btn :hover {
	transform: scale(0.9,0.9);
}


.item-list-text {
  font-size: 16px;
}

.member-explain{
	text-align: center;
	margin-bottom: 25px;
}

.member-explain li{
	margin-bottom: 10px;
}
   /* 会員登録のボタン*/
    .signup-button {
		width: 50%;
		margin:0 auto;
		padding: 15px 20px;
		background-color:#FDBF2B; /* ボタンの背景色 */
		color: #fff; /* テキストの色 */
		font-size: 16px; /* フォントサイズ */
		font-weight: bold;
		text-align: center;
		border-radius: 50px; /* 丸みを帯びた角 */
		cursor: pointer;
		transition: all 0.3s ease;
    }

    /* ホバー時のエフェクト */
    .signup-button:hover {
      background-color:#F4D079; /* ホバー時の背景色 */
      border-color: #F4D079;
      box-shadow: 0 8px 12px rgba(255, 234, 184, 0.5); /* ホバー時の影の効果 */
      transform: translateY(-2px); /* 上に浮き上がる感じ */
    }

    /* アクティブ時のエフェクト */
    .signup-button:active {
      transform: translateY(0); /* クリック時の反動 */
      box-shadow: 0 2px 4px rgba(255, 234, 184, 0.2);
    }

    /* フォーカス時のエフェクト */
    .signup-button:focus {
      outline: none; /* フォーカス時のアウトラインを消す */
      box-shadow: 0 0 10px rgba(255, 234, 184, 0.5); /* フォーカス時の光るエフェクト */
    }


/*トップへ戻るボタン*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#EEAE6B;
	border-radius: 50px;
	width: 80px;
	height: 80px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #FE832A;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:100px;
	z-index: 10;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

#page-top a{
	font-weight: bold;
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}


/*＝＝＝＝＝＝＝＝＝スマホー＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width:767px){
/*画面サイズが767px以内の時に適用する*/

	/*＝＝＝＝＝＝＝＝＝
	Campaign
	＝＝＝＝＝＝＝＝＝*/

.cp-section{
		width: 100%;
		}


	.cp-list{
		width: calc(100%/3);
		text-align: center;
		border-right: 1.5px solid #FFF;
	}

	.cp-box{
		width: 100%;
		height: auto;
		font-size: 12px;
		margin: 0 auto;
	}

	/*クーポンボタン*/	
	#copyTarget{
		width: 10em;
		margin:0 auto;
		padding: 1em;
		border: 1px solid #999;
		box-sizing: border-box;
		background: #f2f2f2;
		margin: 1rem 0;
		font-size: 14px;
	}

	.coupon-btn01{
		width: 200px;
		height: 40px;
		font-size: 14px;
		line-height: 25px;
		margin: 5px auto;
		padding:0.5rem;
	}

	.use-coupon{
		width: 100%;
		margin: 0 auto;
		padding: 5px 0;
		}

	.ss-category{
		margin: 0 auto 15px;
		display:flex;
		flex-direction: column;
		}
	
	/*キャッチコピー*/
	.catchcopy{
		font-size: 16px;
	}

	.catchcopy::before,
	.catchcopy::after {
		content: '';
		width: 1.5px;
		height: 15px;
		background-color: #333;
	}

	.catchcopy::before {
		margin-right: 16px;
		transform: rotate(-35deg)
	}

	.catchcopy::after {
		margin-left: 16px;
		transform: rotate(35deg)
	}

	@media screen and (max-width:767px) {
  .grid-container01 { 
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列レイアウト */
    gap: 10px;
    width: 100%;   /* 画面幅いっぱいに */
    margin: 0 auto;
  }

  .grid-item {
    max-width: 100%; /* 各アイテムが列に収まるように */
  }
}


	.item-name{
		font-size: 12px;
		text-align:center;
		line-height: 2;
		color:#333333;
		border-top:3px solid #5A5959;
		border-bottom:3px solid #5A5959;
		font-weight: bold;
		overflow: hidden;
	}

	.item-img{
		max-width:100%;
		height:auto;
		text-align:center;
	}

	.item-price{
		font-size:80%;
		text-align: center;
		margin:0 auto;
		color:#333333;
	}
	
	.sale-price{
		text-align: center;
		color:#971A1C;
		font-size: 1em;
	}
	
/* 会員登録のボタン*/
    .signup-button {
		font-size: 1em; /* フォントサイズ */
    }


	/*割引のpop*/
	/*.per85:before{
		content: "85%0FF";
		width: 70px;
		height: 70px;
		color: #ffffff;
		background: #DF191C;
		text-align: center;
		z-index: 10;
		position: absolute;
		top:0;
		left:0;
		padding: 1px;
		line-height:5;
		padding: 1px;
		font-size: 1em;
		line-height:5;
		border-radius: 100%;
		letter-spacing: 0em; 
	}


	.per75:before{
		content: "75%0FF";
		width: 70px;
		height: 70px;
		color: #ffffff;
		background: #2035CE;
		text-align: center;
		z-index: 10;
		position: absolute;
		top:0;
		padding: 1px;
		font-size: 1em;
		line-height:5;
		border-radius: 100%;
		letter-spacing: 0em; 
	}

	.per65:before{
		content: "65%0FF";
		width: 70px;
		height: 70px;
		color: #ffffff;
		background:#F76201;
		text-align: center;
		border-radius: 100%;
		z-index: 10;
		position: absolute;
		top:0;
		left:0;
		padding: 1px;
		font-size: 1em;
		line-height:5;
		border-radius: 100%;
		letter-spacing: 0em; 
	}


	.per63:before{
		content: "63%0FF";
		width: 70px;
		height: 70px;
		color: #ffffff;
		background:#F57624;
		text-align: center;
		border-radius: 100%;
		z-index: 10;
		position: absolute;
		top:0;
		left:0;
		padding: 1px;
		font-size: 1em;
		line-height:5;
		border-radius: 100%;
		letter-spacing: 0em; 
	}

	.per60:before{
		content: "60%0FF";
		width: 70px;
		height: 70px;
		color: #ffffff;
		background:#F8A169;
		text-align: center;
		border-radius: 100%;
		z-index: 10;
		position: absolute;
		top:0;
		left:0;
		padding: 1px;
		font-size: 1em;
		line-height:5;
		border-radius: 100%;
		letter-spacing: 0em; 
	}

	.per50:before{
		content: "50%0FF";
		width: 70px;
		height: 70px;
		color: #ffffff;
		background:#02B9DC;
		text-align: center;
		border-radius: 100%;
		z-index: 10;
		position: absolute;
		top:0;
		right:0;
		padding: 1px;
		font-size: 1em;
		line-height:5;
		border-radius: 100%;
		letter-spacing: 0em; 
	}*/

       
	
/*リンクボタンの設定*/
	.item-list-btn a{
	  width: 110px;
	  outline: none;
	  color: #fff;
	  background-color:#FD3923;
	  border-radius: 2rem;
	  margin-top:2px;
	}
	
	.item-list-text{
		font-size: 10px;
	}
	

 .grid-container01 {
    grid-template-columns: repeat(2, 1fr); /* 2列レイアウト */
    gap: 10px; /* 列間余白 */
  }

  .grid-item {
    max-width: 100% !important; /* 固定幅を解除 */
    width: 100%; 
    padding: 20px 5px;
    box-sizing: border-box;
  }

  .item-img img {
    width: 100%;   /* 画像を親幅にフィット */
    height: auto;
  }


}
