main#neo{
	margin:148px auto 48px;
	width:auto;
}

article{
	section{
		margin:0 auto;
		width:1000px;
	}

	h2{
		position:relative;
		margin:48px 0 36px;
		font-size:26px;
		border:none;
		text-align:center;

		&::before{
			content:'';
			position:absolute;
			bottom:-10px;
			left:50%;
			display:inline-block;
			width:40%;
			height:5px;
			border-radius:5px;
			background:linear-gradient(to right, #fa709a 0%, #fee140 100%);
			transform:translateX(-50%);
		}

		&::after{
			content:"";
			position:absolute;
			top:50%;
			left:50%;
			width:50px;
			height:50px;
			border-radius:50%;
			background:#f9f9f9;
			transform:translate(-50%, -50%);
			z-index:-1;
		}

		&+p{
			text-align:center;
		}
	}
}

/* MENU -----------------------------------------------------*/
.denma_menu{
	display:flex;
	margin:48px auto;
	width:1000px;
	justify-content:center;

	li{
		display:flex;
		margin-left:16px;
		width:150px;
		justify-content:center;

		&:first-child{
			margin-left:0;
		}

		img{
			border-radius:50%;
			overflow:hidden;
		}

		p{
			margin-top:8px;
			text-align:center;
		}
	}

	&.fixed{
		position:fixed;
		bottom:0;
		margin:0;
		padding:24px;
		width:100%;
		background:#fff;
		z-index:9999;
		transition:transform 0.5s ease-in-out;
		transform:translateY(100%); /* 初期は画面下に隠す */

		&.active{
			transform: translateY(0); /* エフェクトで表示 */
		}
	}
}



/* RECOMMEND ITEM ---------------------------------------------*/
.recomend-item{
	display:flex;
	padding:8px;
	overflow-x:auto;

	li{
		position:relative;
		margin-right:8px;
		border-radius:4px;
		box-shadow:0px 3px 1px -2px rgba(0,0,0,.2), 0px 2px 2px 0px rgba(0,0,0,.14), 0px 1px 5px 0px rgba(0,0,0,.12);
		flex:0 0 170px;

		&::after{
			display:flex;
			position:absolute;
			top:-5px;
			left:-5px;
			width:50px;
			height:50px;
			font-size:11px;
			color:#fff;
			border-radius:50%;
			align-items:center;
			justify-content:center;
			text-align:center;
			white-space:pre;
		}

		&.pickup::after{
			content:'イチ\A押し';
			background:#fa744f;
		}

		&.newrelease::after{
			content:'新作';
			background:#40bad5;
		}

		&.restock::after{
			content:'再入荷';
			background:#61b15a;
		}

		&.recommend::after{
			content:'オススメ';
			line-height:1;
			background:#fa744f;
		}

		&.hot::after{
			content:'人気';
			background:#d8345f;
		}

		&.trend::after{
			content:'急上昇';
			background:#e0144c;
		}

		&.sale::after{
			content:'お得';
			background:#d8345f;
		}

		img{
			width:100%;
		}

		.name{
			display:-webkit-box;
			margin:4px 8px 0;
			height:24px;
			font-size:12px;
			color:#363540;
			overflow:hidden;
			text-align:left;
			text-overflow:ellipsis;
			-webkit-line-clamp:2;
		}

		.price{
			margin:8px;
			font-size:12px;
			color:#d00;
			text-align:right;

			s{
				font-size:10px;

				&::after{
					content:'→';
					margin:0 4px;
					font-size:10px;
				}
			}
		}
	}
}


.recommend_header h1+p{
	font-size:12px;
	line-height:1.8;
	padding:0 15px;
	letter-spacing:3px;
}

/* RANKING LIST -----------------------------------------------*/
.ranking-list{
	display:grid;
	padding:8px 4px;
	flex-wrap:wrap;
	grid-template-columns: repeat(auto-fill, calc((100% - 32px) / 24));

	li{
		position:relative;
		margin:4px;
		border-radius:4px;
		box-shadow:0px 3px 1px -2px rgba(0,0,0,.2), 0px 2px 2px 0px rgba(0,0,0,.14), 0px 1px 5px 0px rgba(0,0,0,.12);
		counter-increment:ranking;
		grid-column:span 6;
		grid-row:span 1;

		&:first-child{
			grid-column:1 / 11;
			grid-row:1 / 3;
		}

		&:nth-child(2){
			grid-column:11 / 25;
			grid-row:1 / 2;
		}

		&:nth-child(3){
			grid-column:11 / 25;
			grid-row:2 / 3;
		}

		&:nth-child(4){
			grid-column:1 / 9;
		}

		&:nth-child(5){
			grid-column:9 / 17;
		}

		&:nth-child(6){
			grid-column:17 / 25;
		}

		&::after{
			content:counter(ranking);
			display:flex;
			position:absolute;
			top:5px;
			left:0;
			width:20px;
			height:20px;
			font-size:10px;
			color:#fff;
			background:#58727F;
			border-radius:50%;
			align-items:center;
			justify-content:center;
		}

		img{
			display:block;
			width:100%;
		}

		.name{
			display:-webkit-box;
			margin:16px 16px 0;
			height:41px;
			line-height:1.3;
			font-size:16px;
			color:#393e46;
			overflow:hidden;
			text-align:left;
			text-overflow:ellipsis;
			-webkit-box-orient:vertical;
			-webkit-line-clamp:2;
		}
	}
}


.ranking-list li:nth-child(2) a,
.ranking-list li:nth-child(3) a{
	display:flex !important;
}
.ranking-list li:nth-child(2) div:first-child,
.ranking-list li:nth-child(3) div:first-child{
	width:50%;
}

.ranking-list li:nth-child(2) .contents,
.ranking-list li:nth-child(3) .contents{
	display:flex;
	flex-direction:column;
	justify-content:end;
}


.ranking-list li:nth-child(1) .name{
	height:48px;
	font-size:20px;
}

.ranking-list li:nth-child(2) .name,
.ranking-list li:nth-child(3) .name{
	height:45px;
	font-size:18px;
}

.ranking-list .eval{
	display:flex;
	margin:16px 16px 0;
	align-items:end;
	justify-content:flex-end;
}

.ranking-list p[data-rate='0']{
	display:none;
}

.ranking-list .eval span:first-child{
	display:block;
    font-family:'Material Symbols Outlined';
	font-variation-settings:'FILL' 1,
	'wght' 400,
	'GRAD' 0;
    font-size:24px;
    color:transparent;
    background:linear-gradient(90deg, #ddd);
    background-clip:text;
}

.ranking-list li:first-child .eval span:first-child{
	font-size:36px;
}

.ranking-list li:nth-child(2) .eval span:first-child,
.ranking-list li:nth-child(3) .eval span:first-child{
	font-size:28px;
}

.ranking-list .eval span:last-child{
	margin-left:8px;
	font-size:14px;
	color:#393e46;
}

.ranking-list li:first-child .eval span:last-child{
	font-size:18px;
}

.ranking-list li:nth-child(2) .eval span:last-child,
.ranking-list li:nth-child(3) .eval span:last-child{
	font-size:16px;
}

.ranking-list .tag{
	display:flex;
	margin:16px 16px 0;
	flex-wrap:wrap;
}

.ranking-list .tag span{
	display:flex;
	margin-right:8px;
	padding:4px;
	font-size:12px;
	background:#f9f9f9;
	border:1px solid #ddd;
	border-radius:2px;
	align-items:center;
	justify-content:center;
}

.ranking-list .tag span:nth-child(n+3){
	display:none;
}

.ranking-list li:first-child .tag span:nth-child(2){
	display:flex;
}

.ranking-list .tag span.movie_tag{
	color:#fff;
	background:#d61c4e;
	border:1px solid #d61c4e;
}

.ranking-list .price{
	margin:16px;
	font-size:18px;
	color:#d00;
	text-align:right;
}

.ranking-list .price s{
	font-size:12px;
	color:#555;
}

.ranking-list .price s::after{
	content:'→';
	margin:0 2px;
	font-size:12px;
	color:#555;
}


/* TAG LIST ---------------------------------------------------*/
.list-card{
	display:flex;
	margin-top:16px;
	justify-content:space-between;
	flex-wrap:wrap;

	li{
		position:relative;
		margin:4px;
		width:calc(100% / 3 - 8px);
		border-radius:8px; 
		box-shadow:0px 3px 1px -2px rgba(0,0,0,.2), 0px 2px 2px 0px rgba(0,0,0,.14), 0px 1px 5px 0px rgba(0,0,0,.12);

		.contents{
			padding:0 16px;

			.thumb{
				img{
					width:100%;
				}
	
				&+div{
					display:flex;
					height:100%;
					flex-direction:column;
					justify-content:space-between;
				}
			}

			.name{
				display:-webkit-box;
				margin:16px 16px 0;
				line-height:1.3;
				font-size:14px;
				text-overflow: ellipsis;
				-webkit-box-orient: vertical;
				-webkit-line-clamp:2;
			}

			.tag{
				display:none;
			}
			.detail{
				display:flex;
				margin:16px 16px 0;
				align-items:center;
				justify-content:space-between;
			}

			.eval{
				display:flex;
				align-items:end;
				justify-content:flex-end;
	
				&[data-rate='0']{
					height:0;
					overflow:hidden;
				}

				span:first-child{
					display:block;
					font-family:'Material Symbols Outlined';
					font-variation-settings:'FILL' 1,
					'wght' 400,
					'GRAD' 0;
					font-size:24px;
					color:transparent;
					background:linear-gradient(90deg, #ddd);
					background-clip:text;
				}
	
				span:last-child{
					margin-left:8px;
					font-size:14px;
				}
			}

			.price{
				margin:16px;
				font-size:18px;
				color:#d00;
				text-align:right;

				s{
					font-size:12px;
					color:#555;

					&::after{
						content:'→';
						margin:0 2px;
						font-size:12px;
						color:#555;
					}
				}
			}
		}
	}
}



.list-card>li .review{
	position:relative;
	display:flex;
	margin:8px;
	padding:8px;
	background:var(--surface);
	border:1px solid #eee;
	border-radius:4px;
}

.list-card>li .review::before{
	content:'口コミ';
	display:flex;
	margin-right:8px;
	padding:8px;
	width:40px;
	height:40px;
	font-size:13px;
	color:#fff;
	background:#00b16a;
	border-radius:50%;
	align-items:center;
	justify-content:center;
}

.list-card>li .review:empty{
	display:none;
}

.list-card>li .review span{
	display:-webkit-box;
	height:50px;
	line-height:1.3;
	font-size:13px;
	flex:1;
	overflow:hidden;
	text-overflow:ellipsis;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3;
}

.list-card>li .double-button{
	display:flex;
	padding:8px;
	justify-content:space-between;
	flex-wrap:wrap;
}

.list-card>li .double-button ul{
	display:flex;
	margin-bottom:8px;
	padding:0 4px 4px;
	width:100%;
	flex-wrap:wrap;
	justify-content:center;
}

.list-card>li .double-button li{
	margin-right:8px;
	width:45px;
}

.list-card>li .double-button li:last-child{
	margin:0;
}

.list-card>li .double-button input{
	display:none;
}

.list-card>li .double-button img{
	display:block;
	width:45px;
	height:45px;
	border:2px solid #ddd;
	border-radius:50%;
}

.list-card>li .double-button input:checked+img{
	border:2px solid #0cc;
}

.list-card>li .double-button input:checked+img+span{
	font-weight:bold;
	transform:scale(0.8);
}

.list-card>li .double-button input[disabled]+img{
	-webkit-filter:grayscale(1) brightness(50%);
	filter:grayscale(1) brightness(50%);
}

.list-card>li .double-button li span{
	display:block;
	margin-top:4px;
	line-height:1;
	font-size:8px;
	text-align:center;
}

.list-card>li .double-button button{
	display:flex;
	padding:8px;
	width:calc(50% - 8px);
	font-size:16px;
	color:#fff;
	background:linear-gradient(to bottom,#FCC314,#f90);
	border:1px solid #c77800;
	border-radius:4px;
	text-shadow:0px -1px 1px #c77800;
	align-items:center;
	justify-content:center;
}

.list-card>li .double-button a{
	display:flex !important;
	padding:8px;
	width:calc(50% - 8px);
	font-size:16px;
	align-items:center;
	justify-content:center;
}

.list-card>li .double-button a::after{
	content:'arrow_forward_ios';
	display:block;
	margin-left:8px;
    font-family:'Material Symbols Outlined';
	font-variation-settings:'FILL' 1, 'wght' 400, 'GRAD' 0;
	font-size:16px;
}

/* SEARCH -----------------------------------------------------*/
.review_slide{
	margin-top:24px;
	padding:10px 0 0;
	width:100%;
	overflow:hidden;
	/* animation:slide 20s ease-in-out; */

	ul{
		display:inline-flex;
	}

	li{
		/* margin-right:2.5vw;
		width:63.4375vw;
		margin-right:2.5vw; */
		margin-right:16px;
		width:300px;
		background:var(--back);

		.primary{
			display:flex;

			&>a{
				margin-right:10px;
				width:56px;
				height:56px;
				border-radius:100px;
				box-shadow:0 1px 5px #ddd;
				overflow:hidden;
			}

			.data{
				flex:1;

				.item{
					display:flex;
					align-items:center;

					&:before{
						content:"口コミ";
						display:block;
						margin:0 5px 0 0;
						padding:3px 7px;
						width:fit-content;
						font-size:10px;
						font-weight:normal;
						color:#fff;
						border-radius:3px;
						background:#79ceda;
						word-break:keep-all;
					}
				}

				.user{
					margin-top:8px;
					font-size:14px;

					a{
						display:inline;
					}

					span{
						font-size:12px;
					}
				}

				.eval{
					display:flex;
					margin-top:8px;
					align-items:end;
					justify-content:flex-end;
		
					&[data-rate='0']{
						height:0;
						overflow:hidden;
					}
	
					span:first-child{
						display:block;
						font-family:'Material Symbols Outlined';
						font-variation-settings:'FILL' 1,
						'wght' 400,
						'GRAD' 0;
						font-size:18px;
						color:transparent;
						background:linear-gradient(90deg, #ddd);
						background-clip:text;
					}
		
					span:last-child{
						margin-left:8px;
						font-size:12px;
					}
				}
			}
		}

		.secondary{
			display:-webkit-box;
			/* position:relative; */
			margin-top:8px;
			padding:10px;
			line-height:1.8;
			height:75px;
			font-size:11px;
			border:1px solid #ffecce;
			border-radius:5px;
			background:#fffbde;
			text-overflow:ellipsis;
			-webkit-box-orient:vertical;
			-webkit-line-clamp:3;
			overflow:hidden;
		}

		time{
			display:block;
			padding:5px;
			font-size:10px;
			color:#363540;
			text-align:right;
		}
	}
}

@keyframes slide{
	0%{transform:translateX(0)}
	100%{transform:translateX(-3160px);}
}

/* SEARCH -----------------------------------------------------*/

/* CART IN SHEAT ----------------------------------------------*/
.cart-sheat{
	display:flex;
	position:fixed;
	bottom:0;
	left:0;
	padding:16px;
	width:100%;
	min-height:100px;
	background:#fcc314;
	border-radius:20px 20px 0 0;
	transform:translateY(100%);
	transition:all 0.3s ease-in-out;
	flex-wrap:wrap;
}

.cart-sheat.in-cart{
	transform:translateY(0);
}

.cart-sheat .in-item{
	margin:4px 4px 0 0;
	width:36px;
	height:36px;
	border-radius:50%;
	animation:bounds 1s forwards;
	overflow:hidden;
}

.cart-sheat .in-item img,
.act-img img{
	width:auto;
	height:100%;
}

@keyframes bounds{
	  0%{transform:scale(0%);}
	100%{transform:scale(100%);}
}

.act-img{
	position:absolute;
	width:36px;
	height:36px;
	border-radius:50%;
	box-shadow:0 0 10px rgba(0,0,0,.5);
	overflow:hidden;
	transform:scale(5);
	transition:all 1s ease-in-out;
	z-index:99;
}


/* YES NO CHART -----------------------------------------------*/
.chart_block{
	width:640px;
	margin:20px auto;
	padding:20px;
	background:#f9f9f9;
	border:3px solid #4CAF50;
	border-radius:5px;
	box-shadow:0 5px 5px rgba(0,0,0,0.1);
}

.chart_block h2{
	font-size:24px;
	margin:0 0 16px;
}

.chart_block h3 a{
	display:block !important;
	margin-top:8px;
	font-size:20px;
}

.chart_block h2 a{
	color:#08c;
	text-decoration:underline;
}

.chart_block h2+p,
#result_area>p,
.chart_block img+p,
.chart_block a+p{
	line-height:1.4;
	font-size:16px;
	text-align:center;
}

#question_area{
    margin:36px 0;
    font-size:18px;

}

#result_area{
	background:#fff;
	border-radius:5px;
	padding:16px;
}

#result_area img{
	width:100%;
	display:block;
}

.txt_hide{
    display:none;
}

.txt_display{
    display:block;
    text-align:center;
}

div[id^=q].txt_display{
	padding:8px;
	font-size:18px;
	background:var(--back);
	border-radius:4px;
}

div[id^=q].txt_display mark{
	font-size:18px;
}

div[id^=a]{

}

.ans-area{
	display:flex;
}

.ans-area a{
	display:block !important;
}

.ans-area a:first-child{
	margin-right:8px;
	width:50%;
}

.ans-area div{
	display:flex;
	flex:1;
	flex-direction:column;
	justify-content:flex-end;
}

.ans-area p{
	line-height:1.3;
	font-size:16px;
	text-align:left;
}

.ans-area p+a{
	display:block !important;
	margin-top:16px;
    padding:8px;
	width:100%;
    height:auto;
    font-size:16px;
    color:#08c;
    border:1px solid #ddd;
    border-radius:8px;
    background:#f9f9f9;
}

#btn_area.txt_display{
    margin-top:30px;
	display:flex;
    /* text-align:center; */
	justify-content:center;
}

#btn_yes,
#btn_no,
#btn_re{
    display:flex !important;
    padding:8px;
    width:160px;
	height:160px;
    font-size:30px;
	font-weight:bold;
    color:#fff;
	border-radius:50%;
	align-items:center;
	cursor:pointer;
	justify-content:center;
    /* text-align:center; */
    text-decoration:none;
}

#btn_yes{
	margin-right:8px;
    background:#00a03e;
    opacity: 0.7;
}

#btn_no{
	background:#ffa200;
	opacity:0.7;
}

#btn_yes:hover,
#btn_no:hover{
    opacity:1;
}	

#btn_re{
	margin:16px auto 0;
    color:#08c;
    background:#f9f9f9;
    border:1px solid #ddd;
}

.txt_display p+a{
	width:100%;
}


/* ATTACHMENT AREA --------------------------------------------------------------*/
.denma_attachment2{
	margin:auto;
	width:640px;

	h2+p{
		line-height:1.7;
		font-size:16px;
		text-align:center;
	}

	.at-toggle{
		display:flex;
		margin-top:8px;
		padding:8px;
		border-radius:19px;
		background:#f9f9f9;
		justify-content:center;

		li{
			padding:5px 10px;
			font-size:12px;
			color:#ddd;
			border-radius:30px;

			&.checked{
				font-weight:bold;
				color:#fff;
				background:#dd0;
			}
		}
	}

	.attach-conte{
		&>div{
			display:none;

			&.checked{
				display:block;
			}
		}
	}

	.slide-icon{
		display:flex;
		margin:8px 0;
		justify-content:center;

		li{
			margin-right:8px;
			width:80px;
			height:80px;
			border:2px solid #ddd;
			border-radius:50%;
			overflow:hidden;
			
			&:last-child{
				margin-right:0;
			}

			&.checked{
				border:2px solid #dd0;
			}
		}
	}
	
	.item-select{
		li{
			display:none;

			&.checked{
				display:flex;
				flex-wrap:wrap;
				justify-content:center;

				a{
					display:block !important;
					margin-bottom:5px;
					width:100%;
					line-height:1.4;
					font-size:16px;
					font-weight:bold;
					color:#363540;
					text-align:center;
				}

				.main-item{
					margin-right:16px;
					width:calc(50% - 16px);
					/* display:flex;
					flex-wrap:wrap;
					align-items:center; */

					img{
						margin:auto;
						display:block;
						width:65%;
						height:auto;
					}

					&>div{
						padding:5px;
						flex:1;

						p{
							line-height:1.8;
							font-size:12px;
							color:#363540;

							&.price{
								font-size:18px;
								font-weight:bold;
								color:#d00;
								text-align:right;
							}
						}
					}
				}
			}
		}
	}

}



/* ATTACHMENT AREA --------------------------------------------------------------*/
.denma_attachment{
	margin:5%;
	border-radius:10px;
}


input[name="type_select"],input[name="type_select_item"]{
	display: none;
}
.tab_content{
	display: none;
	padding: 2% 2%;
	clear: both;
	overflow: hidden;
}

.tab_content>.tab_content{
	padding: 2% 0 0;
}

#spot_1:checked ~ #spot_1_tab,
#spot_2:checked ~ #spot_2_tab,
#spot_1_1:checked ~ #spot_1_1_tab,
#spot_1_2:checked ~ #spot_1_2_tab,
#spot_2_1:checked ~ #spot_2_1_tab,
#spot_2_2:checked ~ #spot_2_2_tab,
#spot_2_3:checked ~ #spot_2_3_tab{
	display: block;
}
.denma_attachment input:checked + .type_select{
	background-color: #37beb0 ;
	color: #fff;
}

.tab_content label{
	display:inline-block;
}

.tab_content label img{
	width:50px;
	height:50px;
	border-radius:50px;
	display:block;
	border:2px solid #ddd;
}

.tab_content .type_select:checked+label img{
	border-color:#dd0;
}

.denma_attachment>.type_select+label{
	background:#f9f9f9;
	font-size:12px;
	color:#ddd;
	border-radius:30px;
	padding:5px 10px;
}

.denma_attachment>.type_select:checked+label{
	background:#dd0;
	color:#fff;
	font-weight:bold;
}

.item_select{
	display:flex;
	flex-wrap:wrap;
	align-items: center;
}

.item_select img{
	display:block;
	width:45%;
	height:auto;
}

.item_select.tying_item img{
	width:45px;
	height:45px;
	border-radius:50px;
	display:inline-block;
	border:2px solid #ddd;
}

.tab_content>a{
	font-size:16px;
	display:block;
	font-weight:bold;
	color:#363540;
	margin-bottom:5px;
	line-height:1.4;
}

.item_select>div{
	flex:1;
	padding:5px;
}

.item_select>div p{
	font-size:12px;
	line-height:1.8;
	color:#363540;
}

.item_select.tying_item>div p{
	font-size:11px;
}

.item_select>div p.price{
	font-size:18px;
	font-weight:bold;
	color:#d00;
	text-align:right;
}

.item_select>div+div span{
	display:none;
}

.item_select>div+div:before{
	content:"\e821";
	font-family:"fontello";
	font-size: 18px;
}

.item_select button{
	width:30px;
	height:30px;
	background:#00B16A;
	color:#fff;
	flex:none;
	line-height: 30px;
    text-align: center;
    border-radius: 30px;
    padding:0;
}

.item_select.tying_item{
	background:#fffee5;
	border-radius: 10px;
	padding:0 5px;
}