/*
Theme Name: テーマ名
Theme URI: テーマのURLを記入します
Author: 作者名
Author URI: テーマの作者のURLを記入します
Description: ここにテーマの説明文を記入します
Version: 1.0
*/
@charset "utf-8";

/*-----------------------------------
				common
-----------------------------------*/
header{
	background-color: white;
	border-bottom: solid 1px black;
}
header #header-content{
	display: block;
	max-width: 820px;
	margin: 0 auto;
	padding: 2rem 0;
}
header,body,footer{
	width: 100%;
}
body{
	font-family: "Noto Sans JP", sans-serif;
	font-style: normal;
	font-optical-sizing: auto;
}
/*-----------------------------------
				header
-----------------------------------*/
h1#SiteLogo{
	margin: 0 1rem;
}
h1#SiteLogo img{
	width: 8rem;
}
h1#SiteLogo img:hover{
	opacity: 0.5;
	transition: 0.3;
}
@media screen and (min-width: 962px) {
	h1#SiteLogo{
		margin: 0;
	}
	h1#SiteLogo img{
		width: 10rem;
	}
}

/*-----------------------------------
		お得なキャンペーン情報(TOP)
-----------------------------------*/
.toppage-content{
	max-width: 820px;
	margin: 0 auto;
	display: block;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}
.toppage-content img{
	max-width: 100%;
	width: auto;
}
.tophead{
	margin: 5.5rem auto 6rem;
	text-align: center;
	display: block;
}
.topheadTi{
	display: block;
	background-color: #E73881;
	padding: 1.3rem 2rem;
	width: 15rem;
	position: relative;
	color: white;
	margin: 0 auto;
	font-weight: bold;
}
.topheadTi::before{
	content: 'お得なキャンペーン情報';
	position: absolute;
	bottom: -2.5rem;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	color: black;
	width: 30rem;
	font-family: "Noto Sans JP", sans-serif;
	font-style: normal;
	font-optical-sizing: auto;
}
p.topCPtext{
	margin: 7rem 1rem;
	text-align: left;
	font-size: 0.9rem;
	line-height: 1.5rem;
}
.topCP{
	display: block;
}
h3.Topcptitle{
	background-color: #DA0024;
	padding: 1rem 2rem;
	color: white;
	width: 10rem;
	font-weight: bold;
}
h3.Topcptitle > span{
	text-align: center;
}
.topCPsubarea{
	margin: 1.5rem 0 7rem;
}
.topCPsubarea li{
	margin: 1rem 0;
}
.topCPsubarea li a:hover,.topCPsubarea li img:hover{
	opacity: 0.7;
	transition: 0.3;
}

/*-----------------------------------
			campaignページ
-----------------------------------*/
.CPpageArea{
	margin: 0 0 4rem;
}
.CPpage-content{
	display: block;
	max-width: 820px;
	margin: 0 auto;
}
.CPcategoryarea{
	margin: 2rem 0;
}
.CPpage-content .CPimg{
	text-align: center;
}
.CPpage-content .CPimg img{
	max-width: 100%;
	width: auto;
}
.CPitem{
	margin: 1rem 0rem;
}
.CPitem ul{
	display: flex;
	padding: 0;
	margin: 0;
	gap: 0.5rem;
	flex-wrap: wrap;
	box-sizing: border-box;
	overflow: hidden;
}
.CPitem li{
	display: flex;
	flex: 0 0 calc(50% - 0.5rem);
	margin: 0 auto;
}
.CPitem li img{
	width: 100%;
}
.CPitem li img:hover{
	opacity: 0.7;
	transition: .5;
}
.CPbuttonArea{
	margin: 4rem 0;
}
.CPbutton{
	text-align: center;
	margin: 3rem 0;
}
.CPbutton a{
	display: inline-block;
	width: 20rem;
	padding: 1.5rem;
	border-radius: 0.5rem;
	font-size: 1rem;
}
.CPbutton a:hover{
	opacity: 0.5;
	transition: .3;
}
@media screen and (min-width: 962px) {
	.CPpage-content{
		width: 100%;
	}
	.CPpage-content .CPimg img{
		width: auto;
	}
	.CPitem{
		margin: 1rem auto;
	}
	.CPitem li{
		display: flex;
		flex: 0 0 calc(25% - 0.5rem);
	}
	.CPbuttonArea{
		margin: 6rem 0;
	}
	.CPbutton{
		margin: 5rem 0;
	}
	.CPbutton a{
		width: 25rem;
	}
}