@charset "utf-8";

/*----------------------------
	common
------------------------------*/
* {
	box-sizing: border-box;
}
html {
	font-size: 10px;
	color: #333;
}
@media (max-width: 1200px) {
	html {
		font-size: 0.83vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 1.3vw;
	}
}
body {
	font-size: 1.6rem;
	line-height: 1;
	font-family: "Noto Sans CJK JP", sans-serif;
}
a {
	color: #333;
	text-decoration: none;
	transition: opacity 0.3s ease-out;
}
a:hover {
	opacity: 0.7;
}
img {
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
	width: 100%;
	height: auto;
}
/* a[href^="tel:"]:hover {
	opacity: inherit;
	color: inherit;
	cursor: default;
} */

.wrapper {
	margin: 0 auto;
	max-height: 100%; /*for android*/
}

.sp {
	display: none;
}

/*非表示設定*/
.invisible {
	display: none;
}


@media (max-width: 768px) {
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
}

/*----------------------------
	common ここまで
------------------------------*/

/* ttl */
.ttlWrap {
	background: url(/base/pc/store/special/campaign_list/img/bg.png) center center;
	background-size: cover;
	text-align: center;
}
.ttlWrap h1 {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 11.25rem;
	font-size: 3.4rem;
	color: #fff;
	font-weight: 600;
	padding-bottom: 0.5rem;
}
.ttlWrap h1 span {
	position: relative;
	display: inline-block;
	padding: 0 1em;
}
.ttlWrap h1 span::before,
.ttlWrap h1 span::after {
	content: "";
	position: absolute;
	display: inline-block;
	background: #fff;
	width: 0.2rem;
	height: 4.5rem;
	bottom: -0.6rem;
}
.ttlWrap h1 span::before {
	left: 0;
	transform: rotate(-25deg);
}
.ttlWrap h1 span::after {
	right: 0;
	transform: rotate(25deg);
}
@media (max-width: 768px) {
	.ttlWrap {
		background: url(/base/pc/store/special/campaign_list/img/bg_sp.png) center center;
		background-size: cover;
	}
	.ttlWrap h1 {
		height: 20rem;
		font-size: 4.9rem;
	}
	.ttlWrap h1 span {
		position: relative;
		display: inline-block;
		padding: 0 0.9em;
	}
	.ttlWrap h1 span::before,
	.ttlWrap h1 span::after {
		height: 5.8rem;
		bottom: -0.6rem;
	}
}

/* inner */
.inner {
	max-width: 120rem;
	padding: 0 10rem;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.inner {
		padding: 0 4rem;
	}
}

/* bnr */
.bnrWrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 6rem auto 3rem;
}
.bnrWrap li {
	width: 48.8%;
	margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
	.bnrWrap {
		display: block;
		margin: 10rem auto 10.5rem;
		padding: 0 1.1rem;
	}
	.bnrWrap li {
		width: 100%;
		margin-bottom: 5.5rem;
	}
}

/* btn */
.btn {
	width: 43rem;
	text-align: center;
	margin: 0 auto 5rem;
}
.btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 600;
	padding: 0 3rem;
	height: 6.1rem;
	position: relative;
}
.btn a:after {
    position: absolute;
    content: "";
    top: calc(50% - 0.6rem);
    left: 3rem;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
@media (max-width: 768px) {
	.btn {
		width: 100%;
		margin: 0 auto 13rem;
	}
	.btn a {
		font-size: 2rem;
		height: 7.8rem;
	}
	.btn a:after {
		top: calc(50% - 0.8rem);
		left: 2.2rem;
		width: 1.1rem;
		height: 1.1rem;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
	}
}
