@charset "utf-8";
/* ============== 共通 =================== */
#contents {
	background: #fffde9;
	padding: 0 0 10px;
}
#contents a {
	color: #0099cc;
	text-decoration: underline;
}
#contents a:hover {
	opacity: 0.7;
}
.end_txt {
	padding: 10px 0;
	font-weight: bold;
	color: #FF0004;
	font-size: 180%;
	text-align: center;
}
/*コンテンツ幅*/
.ly-block {
	margin: auto;
	max-width: 970px;
	width:calc(100% - 60px);
	border: 1px solid #e7e09d;
	border-radius: 8px;
	background-color: #fff;
	overflow: hidden;
}
.display-sp {
	display: none;
}
/* ============== top =================== */
.top {
	background-color: rgba(174, 240, 87, 0.8);
	text-align: center;
}
.top_term {
	font-size: 0;
	background-color: #FFC01C;
	padding: 10px 0;
}
.top_term img {
	height: 30px;
}
/* ============== app =================== */
.app {
	margin: 60px auto;
	text-align: center;
}
.app_note {
	color: #FF0000;
	margin: 40px auto 0;
	font-size: 18px;
}
.app_note span {
	font-weight: bold;
}
.app_qr.app_close {
	position: relative;
	display: inline-block;
}
.app_qr.app_close::after {
	content:"※本キャンペーンは終了しました";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 104%;
	height: 120%;
	background-color: rgba(0,0,0,0.7); /* ←※固定 */
	margin: 0 auto;
	z-index: 10;
	color: #fff;
	font-size: 2.8rem;
	font-weight: bold;
}
/* ============== wallet =================== */
.wallet {
	overflow: hidden;
	margin: 50px auto 55px;
	padding: 0 25px;
}
.wallet_inner {
	max-width: 830px;
	margin: 70px auto 66px;
}
.wallet_ttl {
	max-width: 480px;
	margin: 0 auto 40px;
}
.wallet_list-pc {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.wallet_list-sp {
	display: none;
}

.wallet_item {
	/*border-radius: 8px;*/
	/*border: 1px solid #ddd;*/
	overflow: hidden;
}

.wallet_list-pc .wallet_item {
	max-width: 200px;
	margin-bottom: 20px;
	width: calc(100% - 30px);
	margin-right: 10px;
}
.wallet_list-pc .wallet_item:nth-of-type(4) {
	margin-right: 0;
}
.wallet_list-pc .wallet_item:nth-of-type(5) {
	margin-left: 10px;
}
.wallet .note-txt {
	text-align: center;
	margin-top: 18px;
}
/* ============== sns =================== */
.sns {
	margin: 0 auto 50px;
}
.sns_list {
	width: 90%;
	box-sizing: border-box;
	margin: 15px auto 0;
	display: flex;
	justify-content: center;
}
.sns_item a {
	display: block;
}
.sns_item + .sns_item {
	margin-left: 15px;
}
.sns_item img {
	max-height: 30px;
}
.sns_ttl {
	text-align: center;
	font-weight: 600;
	font-size: 14px;
}
/* ============== att =================== */
.att {
	margin: 60px auto 80px;
	text-align: left;
	line-height: 1.7;
}
.att_list {
	width: calc(100% - 60px);
	max-width: 830px;
	margin: 6.8% auto;
}
.att_item + .att_item {
	margin-top: 30px;
}
.att_item_ttl{
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: bold;
	position: relative;
	padding-left: 1.5em;
	line-height: 1.3; 
}
/*「●」タイプのリスト用*/
.att_item_ttl::before {
	content: "";
	display: block;
	position: absolute;
	background-color: #FFC01C;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	left: 0;
	top: 2px;
}
.att_item_inner p {
	margin-top: 10px;
}
.att_item_inner .note-txt {
	margin-top: 0;
}
.att_item_inner p + p {
	margin-top: 0;
}
.att_item_img {
	margin: 20px auto;
	text-align: center;
}
.att_list-style {
	margin-top: 10px;
	padding-left: 1em;
	text-indent: -1em
}
.att_list-style li > ul, .att_list-style li > ol {
	margin-left: 1em;
	margin-bottom: 5px;
}
.att_small-unit {
	margin: 5px auto 10px;
}
.att_small-unit dt {
	font-weight: bold;
}
.att_list-style .att_small-unit {
	text-indent: 0;
}
.att_num-style {
    text-indent: -1.4em;
    margin-top: 10px;
    padding-left: 1.5em;
    counter-reset: number 0;
}
.att_num-style > li::before {
    counter-increment: number 1;
    content: "(" counter(number) ")";
}
/* コンテンツ（SP：767px以下）
========================================================*/
@media screen and (max-width: 767px) {
	/* ============== 共通 =================== */
	.display-pc {
		display: none;
	}
	.display-sp {
		display: block;
	}
	.end_txt {
		font-size: 150%;
	}
	.ly-block {
		width: calc(100% - 30px);
	}
	/* ============== top =================== */
	.top_term img {
		height: 23px;
	}
	/* ============== app =================== */
	.app {
		width: 76%;
		margin: 13% auto 12%;
	}
	.app_note {
		font-size: 14px;
		margin-top: 6%;
	}
	.app_note span {
		font-weight: bold;
	}
	.app_qr.app_close,
	.app_qr.app_close::after {
		display: none;
	}
	/* ============== wallet =================== */
	.wallet {
		border: unset;
		background-color: unset;
		padding: 0;
		margin: 12% auto 10%;
	}
	.wallet_inner {
		margin: 0 auto;
	}
	.wallet_ttl {
		max-width: 100%;
		margin-bottom: 6%;
		text-align: center;
	}
	.wallet_list-sp {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.wallet_list-pc {
		display: none;
	}
	.wallet_item {
		margin-bottom: 5%;
		width: calc((100% - 15px)/2);
	}
	.wallet_list-sp .wallet_item:nth-of-type(even) {
		margin-left: 15px;
	}
	.wallet .note-txt {
		margin-top: 0;
	}
	/* ============== sns =================== */
	.sns {
		width: calc(100% - 30px);
	}
	.sns_list {
		width: 100%;
		margin-top: 12px;
	}
	/* ============== btn =================== */
	.btn_wrap {
		width: calc(100% - 90px);
		margin: 11% auto;
	}
	#contents .btn {
		color: #fff;
		font-weight: bold;
		font-size: 14px;
		text-decoration: none;
	}
	.btn {
		position: relative;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 8px;
		width: 100%;
		max-width:400px;
		height: 70px;
		background-color: #07b53b;
		background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/line202410_33/img/btnarrow_right.png);
		background-size: 20px;
		background-position: center right 10px;
		background-repeat: no-repeat;
	}
/*終了対応*/
#contents .btn_close {
	pointer-events: none;
	position: relative;
}
#contents .btn_close::before {
	content:none;
}
#contents .btn_close::after {
	content:"※本キャンペーンは終了しました";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 104%;
	height: 120%;
	background-color: rgba(0,0,0,0.7); /* ←※固定 */
	margin: 0 auto;
	z-index: 10;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
}
/* ============== att =================== */
.att {
	margin: 44px auto 60px;
}
.att_list {
	width: calc(100% - 54px);
	margin: 26px auto 30px;
}
.att_item + .att_item {
	margin-top: 8%;
}
.att_item_ttl{
	padding-left: 1.5em;
	margin-bottom: 10px;
}
.att_item_inner p, .att_list-style {
	margin-top: 5px;
}
}