@charset "UTF-8";
/* CSS Document */


#cate_rank,
.item_list_all_wrapper,
.summer_sweets_wrapper,
.sw_petit_price_wrapper,
#search_category {
	max-width: 90vw;
	width: 100%;
	margin: 0 auto;
	text-align: left;
	padding-bottom: 8rem;
}


#cate_rank {
	padding-bottom: 0rem;
}

@media screen and (max-width: 480px) {

	#cate_rank,
	.item_list_all_wrapper,
	.summer_sweets_wrapper,
	.sw_petit_price_wrapper,
	#search_category {
		max-width: 95vw;
		padding-bottom: 0rem;
	}

}


/*==================================================
category_top
===================================*/
#category_top {
	width: 100vw;
	height: 500px;
	display: flex;
}

#category_top .cate_top_img {
	width: 50%;
	height: 500px;
}

#category_top .cate_top_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: bottom;
}

#category_top .cate_top_text {
	width: 50%;
	background-color: #EBEDED;
	box-sizing: border-box;
	padding: 112px 50px;
	text-align: left;
}

#category_top .cate_top_text span {
	font-size: 2rem;
}

#category_top .cate_top_text h2 {
	font-size: 4rem;
	font-weight: 400;
	margin: 3rem 0 6rem 0;
}

#category_top .cate_top_text p {
	font-size: 1.8rem;
	line-height: 3.6rem;
	font-weight: 400;
}

.pc_cate_top_disc {
	display: block;
}

.sp_cate_top_disc {
	display: none;
}

@media screen and (max-width: 480px) {
	#category_top {
		padding-top: initial;
		flex-direction: column;
		height: auto;
		padding-top: 50px;
	}

	#category_top .cate_top_img {
		width: 100%;
		height: auto;
	}

	#category_top .cate_top_text {
		width: 100%;
		padding: 25px 10px;
	}

	#category_top .cate_top_text span {
		font-size: 1.4rem;
	}

	#category_top .cate_top_text h2 {
		font-size: 2rem;
		margin: 1.5rem 0 2rem 0;
	}

	#category_top .cate_top_text p {
		font-size: 1.2rem;
		line-height: 2.2rem;
	}

	.pc_cate_top_disc {
		display: none;
	}

	.sp_cate_top_disc {
		display: block;
	}
}

/*==================================================
cate_rank
===================================*/

.ranking {
	counter-reset: rank;
}

.ranking .rank_item {
	position: relative;
}

.ranking .rank_item dl {
	box-sizing: border-box;
	padding: 2rem 0 8rem 0;
}


.ranking .rank_item:not(:last-child) {
	margin-bottom: 10px;

}

.ranking .rank_item::before {
	/* ラベルのスタイル */
	content: "";
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	width: 5rem;
	height: 5rem;
	border-radius: 50px;
	background-color: #281E11;
}

.ranking .rank_item::after {
	/* 順位（文字）のスタイル */
	counter-increment: rank;
	content: counter(rank) " ";
	position: absolute;
	top: 16px;
	left: 23px;
	font-size: 2.5rem;
	color: #fff;
}

.ranking .rank_item_last::after { 
    /* 順位（文字）のスタイル */
	left: 17px;
}

.ranking .rank_item:nth-child(1):before {
	background: #c99a00;
}

.ranking .rank_item:nth-child(1):hover::before {
	opacity: 1 !important;
}

.ranking .rank_item:nth-child(2):before {
	background: #bbbbbb;
}

.ranking .rank_item:nth-child(2):hover::before {
	opacity: 1 !important;
}

.ranking .rank_item:nth-child(3):before {
	background: #993300;
}

.ranking .rank_item:nth-child(3):hover::before {
	opacity: 1 !important;
}

.ranking img {
	width: 400px;
	height: 400px;
	object-fit: cover;
}

object.item_maker {
	display: block;
	padding: 0rem 0rem 0.8rem 0rem;
	color: #949494;
}

.rank_item .item_ttl {
	padding: 0rem 0rem 0.8rem 0rem;
}

@media screen and (max-width: 480px) {
	.ranking img {
		width: 160px;
		height: 160px;
	}

	.ranking .rank_item::before {
		/* ラベルのスタイル */
		content: "";
		position: absolute;
		top: 0.5rem;
		left: 0.5rem;
		width: 3rem;
		height: 3rem;
	}

	.ranking .rank_item::after {
		/* 順位（文字）のスタイル */
		top: 7px;
		left: 15px;
		font-size: 1.6rem;
	}

	.ranking .rank_item dl {
		padding: 1rem 0 4rem 0;
	}

}

/*==================================================
cate_link
===================================*/
#cate_link {
	padding: 7rem 0 9rem 0;
}

#cate_link h3 {
	font-size: 2.4rem;
	font-weight: 500;
	margin: 0 0 4rem 0;
}

#cate_link .cate_btn_wrapper {
	margin: 0 auto;
	max-width: 80vw;
}

#cate_link .cate_btn_wrapper ul {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-gap: 8px;
}

#cate_link .cate_btn_wrapper li {
	height: 100px;
	border: solid 0.5px #C7C7C7;
	border-radius: 8px;
	box-sizing: border-box;
}

#cate_link .cate_btn_wrapper a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	height: auto;
}

#cate_link .cate_btn_wrapper img {
	width: 70px;
	height: 70px;
	object-fit: cover;
}

#cate_link .cate_btn_wrapper span {
	display: block;
}

.button {
	padding: initial !important;
}

.button a {
	padding: 15px 0 !important;
}

.button i {
	margin-left: 5px;
}

@media screen and (max-width: 1240px) {

	/* #cate_link .cate_btn_wrapper li {
		width: 100%;
		height: 80px;
	} */

	/* #cate_link .cate_btn_wrapper a {
		padding: 10px 15px;
	} */

	#cate_link .cate_btn_wrapper img {
		width: 70px;
		height: 70px;
	}
}

@media screen and (max-width: 760px) {
	#cate_link {
		padding: 5rem 0 5rem 0;
	}

	#cate_link .cate_btn_wrapper {
		max-width: 95vw;
	}

	#cate_link .cate_btn_wrapper ul {
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 5px;
	}

	#cate_link .cate_btn_wrapper li {
		width: 100%;
		height: auto;
		border: solid 0.5px #C7C7C7;
		border-radius: 50px;
		box-sizing: border-box;
	}

	#cate_link .cate_btn_wrapper a {
		padding: 3px 5px;
	}

	#cate_link .cate_btn_wrapper img {
		width: 35px;
		height: 35px;
		border-radius: 50%;
	}

	#cate_link .cate_btn_wrapper span {
		font-size: 1.2rem;
	}

	#cate_link i {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 480px) {

	#cate_link .cate_btn_wrapper span {
		font-size: 1rem;
	}

	#cate_link i {
		font-size: 1rem;
	}
}


/*==================================================
section_summer_sweets
===================================*/
#section_summer_sweets {
	background-color: #e8f6fb;
	margin-top: 6rem;
	padding-bottom: 3rem;
}

#section_summer_sweets h3 {
	color: #005d98;
}

#section_summer_sweets p {
	color: #005d98;
}

#section_summer_sweets .more_watch_pc {
	color: #005d98;
}

#section_summer_sweets dl {
	color: #333;
}

/*==================================================
section_keiro_sweets
===================================*/
#section_keiro_sweets {
	background-color: #fff0de;;
	margin-top: 6rem;
	padding-bottom: 3rem;
}

/* #section_keiro_sweets h3 {
	color: #005d98;
}

#section_keiro_sweets p {
	color: #005d98;
}

#section_keiro_sweets .more_watch_pc {
	color: #005d98;
} */

#section_keiro_sweets dl {
	color: #333;
}


/*==================================================
search_category　カテゴリーから探す
===================================*/
#search_category ul {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
	width: 100%;
}

#search_category ul li {
	border-radius: 10px;
	border: solid 1px #EBEBEB;
}

.cate_item_list_wrapper {
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}


.cate_item_list .item_ttl {
	padding: 1rem 0rem 0.8rem 0rem;
}

.cate_item_list .item_maker {
	padding: 0rem 0rem 0.8rem 0rem;
	color: #949494;
}

.cate_item_list img {
	width: 100%;
}

.cate_item_list_wrapper .cate_item_list {
	height: auto;
	overflow: hidden;
}

#search_category h5 {
	box-sizing: border-box;
	padding: 1.5rem;
	text-align: center;
	font-size: 1.6rem;
}

@media screen and (max-width:480px) {

	#search_category .cate_item_list_wrapper {
		grid-template-columns: repeat(9, 1fr);
		grid-gap: 5px;
		width: 280vw;
		overflow-x: scroll;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
	}

	#search_category ul li {
		display: inline-block;
		width: calc((95vw-10px)/3);
	}

	#search_category h5 {
		padding: 0.8rem;
		font-size: 1.4rem;
	}
}

/*--------------------------------------
search_brand
---------------------------------------*/

/*-------タブ-----------*/

/*tabの形状*/
.tab {
	display: flex;
	flex-wrap: wrap;
}

.tab li a {
	display: block;
	background: #ddd;
	margin: 0 2px;
	padding: 10px 20px;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
	background: #fff;
}


/*エリアの表示非表示と形状*/
.area_kana {
	display: none;
	/*はじめは非表示*/
	opacity: 0;
	/*透過0*/
	background: #fff;
	padding: 50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area_kana.is-active {
	display: block;
	/*表示*/
	animation-name: displayAnime;
	/*ふわっと表示させるためのアニメーション*/
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

.area_alphabet {
	display: none;
	/*はじめは非表示*/
	opacity: 0;
	/*透過0*/
	background: #fff;
	padding: 50px 20px;
}

.area_alphabet.is-active {
	display: block;
	/*表示*/
	animation-name: displayAnime;
	/*ふわっと表示させるためのアニメーション*/
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

.area {
	display: none;
	/*はじめは非表示*/
	opacity: 0;
	/*透過0*/
	background: #fff;
	padding: 50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
	display: block;
	/*表示*/
	animation-name: displayAnime;
	/*ふわっと表示させるためのアニメーション*/
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

@keyframes displayAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}