@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
}


a {
	text-decoration: none;
	color: #333;
	outline: none;
}
a:hover {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	opacity: 0.5;
	filter: alpha(opacity=50);
	-webkit-transition: 0.6s;
	transition: 0.6s;
}
a img:hover {
	opacity: 0.5;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}


ul{
	list-style-type: none;
}




/* --------------------------------
 * トップ
 * -------------------------------- */




.pagetop{
	
	margin:100px auto 0;
	width:100%;
	text-align: center;
}

.pagetop img{
	width: 50%;
	
}


@media (max-width:768px) {
	
	.pagetop img{
	width: 100%;
	
}
	
	.coupon_sheet img{
		width: 80%;
	}	
	
}




/* --------------------------------
 * 内容
 * -------------------------------- */


.comment{
	
	width: 50%;
	margin: 0 auto 5%;
	 font-size: 1.3rem;
}

h1 {
    margin: 4% auto 1%;
    font-size: 2.1rem;
    line-height: 1.8;
    font-weight: 600;
}

.pagetop_text_intro {
    
}

.pagetop_text_kikan {
    margin: 2% auto 1%;
    font-weight: 600;
}



@media (max-width:768px) {
	
	
.comment{
	
	width: 98%;
	margin: 0 auto 5%;
	 font-size: 1.1rem;
}	
	
	
h1 {
    margin: 4% auto 1%;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
}	
	
.pagetop_text_intro {
    font-size: 1.2rem;
	line-height: 1.6;
	letter-spacing: 0.1rem
}	
	
}


/* クーポン取得 */




.coupon {
    background-color: #e1e0e0;
	width: 100%;
	
    
}

.coupon_title {
    font-weight: 600;
    text-align: center;
    line-height: 2;
    font-size: 1.5rem;
	padding-top: 5%;
	
	
}


.coupon_attention {
    padding: 1em 1.5em 0;
    margin: 2em 0;
	width: 40%;
	margin: 0 auto;
}



.img_coupon {
    max-width: 480px;
    margin: 0 auto;
    display: block;
	
}

.non_display{
	font-size:0.8rem;
	text-align: center;
}


.att1 {
	font-weight: bold;
	font-size:1rem;
	text-align: left;
	margin-top:5%;
}
.att2 {
	font-size: 0.95rem;
	text-align: left;
}

.att_red{
	font-size: 0.95rem;
	text-align: left;
	color: red;
}




@media (max-width:768px) {
	
	
.comment{
	
	width: 98%;
	margin: 0 auto 5%;
	 font-size: 1.3rem;
}	
	
	
	.coupon{width: 100%;}
	
.coupon_attention {
    padding: 1em 0 0;
    margin: 2em 0;
	width: 98%;
	margin: 0 auto;
}
	
	
.coupon_link{
		width: 100%;
		margin: 0 auto;
	}
	
}



/* クーポン注意事項 */



.caution {
    width: 100%;
}

.caution_topic {
    display: flex;
    flex-wrap: wrap;
}


.caution_topic_title {
    background-color: #d4d4d4;
    width: 100%;
    padding: .8em;
	font-size: 1.0rem;
	font-weight: 600;
	
}

.caution_topic_text {
    width: 100%;
    padding: 1em;
	font-size: 1.0rem;
    background-color: #f9f9f9;
}


.red{
	font-size: 1rem;
	color: red;
}


.shopping {
    padding: 0 2%;
	text-align: center;
}











 /* ボタン */

/*塗りから線に変わる*/
.btnchangeline {
    position: relative;
    color: #333;
    padding: 10px 30px;
    display: inline-block;
    text-decoration: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    width: 100%;
    text-align: center;
    /* margin: auto; */
	margin-bottom: 1%;
	font-size: 1rem;
}

/*線の設定*/
.btnchangeline::before {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    /*線の形状*/
    width: 100%;
    height: 100%;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    /*はじめは透過0に*/
    opacity: 0;
    transform: scale(0, 1);
    /*アニメーションの指定*/   
    transition: all 0.3s;
}

/*背景の設定*/
.btnchangeline::after {
    content: '';
    /*絶対配置で背景の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    /*背景の形状*/
    width: 100%;
    height: 100%;
    background-color:#333;
    /*アニメーションの指定*/ 
    transition: all 0.3s;
}

/*hoverした際の背景と線の形状*/
.btnchangeline:hover::before {
    opacity: 1;/*不透明に*/ 
    transform: scale(1, 1);/*X方向に線を伸ばす*/
}

.btnchangeline:hover::after {
    opacity: 0;/*透過0に*/
    transform: scale(0, 1);/*X方向に背景を縮小*/
}

/*テキストの設定*/
.btnchangeline span {
    /*テキストを前面に出すためz-indexの値を高く設定*/  
	position: relative;
	z-index: 2;
    /*テキストの形状*/
	color: #fff;
    /*アニメーションの指定*/   
    transition: all 0.3s;
}

/*hoverした際のテキストの形状*/
.btnchangeline:hover span {
    letter-spacing: 2px;
	color: #333;
}



@media (max-width:768px) {
	
	
	.btnchangeline {
    position: relative;
    color: #333;
    padding: 10px 0px;
    display: inline-block;
    text-decoration: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    width: 90%;
    text-align: center;
     margin: auto; 
	margin-bottom: 1%;
	font-size: 1rem;
}
	
}




/*【クーポン対象】商品一覧を見る*/

.btnarrow6 {
    position: relative;
	color: #fff;
    background: #333;
    width: 100%;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px auto;
    padding: 40px 60px 40px 30px;
    display: inline-block;
    text-align: center;
    transition: all .2s linear;
    text-decoration: none;
    border: transparent 2px solid;
    outline: none;
    line-height: 1;
	
}
.btnarrow6:active {
	color: #fff;
	
}

.btnarrow6:visited {
	color: #fff;
	
}

/*hoverした際のボタンの形状*/
.btnarrow6:hover{
	background:#fff;
	color:#333;
	border-color:#333;
	
}

/*矢印と線の形状*/

.btnarrow6:before{
	content:"";
    /*絶対配置で線の位置を決める*/
	position: absolute;
	top:50%;
	right:20px;
    /*線の形状*/
	width:20px;
	height:1px;
	background:#fff;
}

.btnarrow6::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 45%;
    right: 12px;
    /*矢印の形状*/
    border: 4px solid transparent;
    border-top-width: 4px;
    border-bottom-width: 4px;
    border-left-color: #fff;
    /*アニメーションの指定*/
    transition: all .2s linear;
	
}

/*hoverした際の矢印の形状*/
.btnarrow6:hover::before{
	background:#333;
	right:25px;
}

.btnarrow6:hover::after{
    border-left-color: #333;
    right: 20px;
}



