@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;
	background:#FFFFF;
}


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

.section-title{
	font-size:20px;
	font-weight: bold;
	color:#333;
    padding: 60px 0 20px;
	line-height: 1.6;
}

/*＝＝＝＝＝＝＝＝＝
campaign
＝＝＝＝＝＝＝＝＝*/
.cp-top img{
	display: block;
    max-width:100%;
}

.cp-nav{
	max-width: 100%;
	margin: 0 auto;
	background: #FD8923;
}

.cp-guide{
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

.cp-list:last-child{
	border-right:none;
	text-align: center;
}

.cp-title {
	letter-spacing: .2rem;
}


.cp-section{
	width: 100%;
	background: #FFFFFF;
    margin: 0 auto;
	padding: 1%;
}

.cp-box{
	width: 90%;
	height: auto;
	margin: 0 auto;
	/*margin: 200px auto 0;margin-top ヘッダー分の高さ*/
	/*padding-top: 200px;ヘッダー分の高さ*/
	position: relative;
}

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

.in-cp-box{
        width: 0 auto;
	}


/*関連商品*/
#cp02 .product-list-item img{
	border-radius:0;
}

#cp02 span.product-caption{
	color:#333333;	
	}
	
#cp02 span.product-price{
	color:#333333;	
	}

#cp03 .product-list-item img{
	border-radius:0;
}

#cp03 span.product-caption{
	color:#333333;	
	}
	
#cp03 span.product-price{
	color:#333333;	
	}

.cp-attention-list{
	border-radius: 50px;
	line-height: 1.5;
	}

.cp-attention-list li:first-child{
	font: 300;
	font-size: 120%;
	margin-bottom: 1rem;
	text-align: center;
	position: relative;
	padding: 0 55px;
	}

.cp-attention-list li:nth-child(n+2){
	margin:0 auto;
	padding:0 10rem;
}

.coupon-list{
	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.5em 0;
	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;
}

.use-coupon{
	 padding: 0 4rem;
	}

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


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

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


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


/*トップへ戻るボタン*/
/*リンクの形状*/
#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-title {
	letter-spacing: .1rem;
	font-size: 50%;
	text-align: center;
	white-space:pre-wrap;
}
	
.cp-box{
	width: 100%;
	height: auto;
	font-size: 12px;
}
	
#cp02 span.product-caption{
	color:#333333;	
	}
	
#cp02 span.product-price{
	color:#333333;
	}

/*クーポンボタン*/	
#copyTarget{
	width: 10em;
    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;
	}

.cp-attention-list{
	line-height: 1.5;
	border-radius: 10px;
	
}


.cp-attention-list li:nth-child(n+2){
	margin:0 auto;
	padding:0;
}

	
/*リンクボタンの設定*/
.item-list-btn{
	padding-left:0;
	text-align: center;
	}	
	
	
.item-list-text{
  font-size: 14px;
}


}