@charset "UTF-8";

/******* 共通 ********/
#contents {

}
#container {
	width: 750px;
	margin: 20px auto 0;
	padding-bottom: 6%;
}
#container img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
#container a {
	display: block;
}
#container a:hover {
	opacity: .6;
	transition-duration: .3s;
	-moz-transition-duration: .3s;
	-webkit-transition-duration: .3s;
}

.mt60 {
	margin-top: 60px !important;
}
.mt40 {
	margin-top: 40px !important;
}
.mt30 {
	margin-top: 30px !important;
}
.mt20 {
	margin-top: 20px !important;
}

@media (min-width: 769px) {
	.sp {
		display: none;
	}
}
@media (max-width: 768px) {
	*{
		box-sizing: border-box;
	}
	.pc {
		display: none;
	}
	#container {
		width: 100%;
	}
	/* 231206_iAEONアプリダウンロードページのみSP版でのグローバルナビ非表示 */
	/* 240321_下部ナビのみ非表示するように修正 */
	header#global-header nav {
	 display: none !important;
	}
}



/******* 動画 ********/
.movie_cont{
	width: 100%;
	position: relative;
	background-color: #e8e8e8;
	padding: calc(315 / 560 * 100%) 0 0;
}
.movie_cont iframe{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% ,-50%);
	width: 80%;
	height: 80%;
}



/******* 対象店舗リンク ********/

.shoplist-area {
	background-color: #dde6eb;
	margin: 6% 0;
	padding: 5%;
}
.shoplist-area .shoplist-title {
	color: #000;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}

.shoplist-area .shoplist {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4%;
}
.shoplist-area .shoplist .shoplist-item {
	background-color: #b50081;
	font-size: 1.5rem;
	font-weight: bold;
	width: 41.5%;
	border-radius: 10px;
	padding: 25px;
}
@media (max-width: 768px) {
	.shoplist-area .shoplist .shoplist-item {
		font-size: 1.25rem;
		width: calc(100% / 2 - 5px);
		padding: 20px;
	}
}
@media (max-width: 416px) {
	.shoplist-area .shoplist .shoplist-item {
		font-size: 1rem;
		padding: 15px;
	}
}


.shoplist-area .shoplist .shoplist-item a {
	color: #fff;
	position: relative;
	display: flex;
	align-items: center;
}

.shoplist-area .shoplist .shoplist-item a:before {        /*白いひし型 */
	display: block;
	position: absolute;
	content: "";
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top:45%;
	left: 95%;
	width:12px;
	height:12px;
	background: #fff;
}
.shoplist-area .shoplist .shoplist-item a:after {        /*バックグラウンドと同じ色のひし型をずらして「before要素」を隠す */
	display: block;
	position: absolute;
	content: "";
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top:45%;
	left: 94%;
	width:12px;
	height: 12px;
	background: #b50081;
}
.shoplist-area .shoplist .shoplist-item a span {
  display: table-cell;
  vertical-align:middle;
  padding-left: 10px;
}
@media (max-width: 768px) {
	.shoplist-area .shoplist .shoplist-item a span {
	  padding-left: 5px;
	}
}
@media (max-width: 416px) {
	.shoplist-area .shoplist .shoplist-item a span {
	  padding-left: 0;
	}
}

