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

.mainContents *{
	box-sizing: border-box;
}
.mainContents p{
	font-size: 15px;
	line-height: 1.6rem;
}
.mainContents > section{
	margin: 40px auto 80px;
}

.mainContents > section section{
	margin: 40px auto;
}


/*--------Hタグ--------*/
/*----下に短線----*/
*.hUnderLine{
	margin: 0 auto 30px;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.8em;
	text-align: center;
	position: relative;
}
*.hUnderLine:after{
	content: "";
	display: block;
	width: 30%;
	height: 1px;
	background-color: #191919;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	margin: auto;
}
*.hUnderLine > span.minititle{
	display: inline-block;
	width: fit-content;
	margin: 0 auto 10px;
	padding: 5px 15px;
}
*.hUnderLine b{
	display: inline-block;
}

/*色変え*/
*.hUnderLine > b{
	color: #24c9ff;
}
/*上部背景*/
*.hUnderLine > span.minititle{
	background-color: #24c9ff;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.5em;
	border-radius: 10px;
}

@media screen and ( max-width: 736px ){
	/*Hタグ*/
	*.hUnderLine{
		padding-left: 5px;
		padding-right: 5px;
		font-size: 25px;
		line-height: 1.3em;
	}
	*.hUnderLine > span.minititle{
		font-size: 20px;
	}
}

@media screen and ( max-width: 480px ){
	/*Hタグ*/
	*.hUnderLine{
		font-size: 22px;
	}
	*.hUnderLine > span.minititle{
		max-width: 95%;
		font-size: 18px;
	}
}


/*----------------------------------------------------------------------------------------------
 pen　M1
----------------------------------------------------------------------------------------------*/
/*-----------------タイトル--------------------*/
.categoryTitle{
	margin-bottom: 20px;
	padding-left: 40px;
	font-size: 35px;
	font-weight: 600;
	line-height: 1.6em;
	border-left: 5px solid #24c9ff;
	position: relative;
}

.mainImg{
	margin: 0 auto 30px;
	text-align: center;
}

@media screen and ( max-width: 736px ){
	/*----カテゴリh2----*/
	.categoryTitle{
		padding-left: 20px;
		font-size: 30px;
	}
}

@media screen and ( max-width: 480px ){
	/*----カテゴリh2----*/
	.categoryTitle{
		font-size: 28px;
	}
}


/*-----------------大人気--------------------*/
.categoryPopular .popularTitle{
	margin-bottom: 20px;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.5em;
	text-align: center;
	position: relative;
}
.categoryPopular .popularTitle:after{
	content: "";
	display: block;
	width: 70%;
	height: 1px;
	background-color: #191919;
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	margin: auto;
}
.categoryPopular .popularTitle > span{
	display: inline-block;
	position: relative;
}

.categoryPopular .popularTitle b{
	color: #24c9ff;
	font-size: 33px;
}
.categoryPopular .popularTitle b.red{
	color: #ff231b;
}

.categoryPopular .popularTitle + p{
	margin: 20px auto;
}


@media screen and ( max-width: 736px ){
	.categoryPopular .popularTitle{
		font-size: 25px;
	}
	.categoryPopular .popularTitle > span{
		width: 95%;
	}
	
	.categoryPopular .popularTitle b{
		font-size: 28px;
	}
	
	.categoryPopular .popularTitle + p{
		width: 95%;
	}
	
}


@media screen and ( max-width: 480px ){
	.categoryPopular .popularTitle{
		margin-bottom: 30px;
		padding-bottom: 15px;
		font-size: 22px;
		text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97999px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.51361px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px;
	}
	.categoryPopular .popularTitle b{
		font-size: 25px;
	}
}


/*-----------------選ぶ--------------------*/

/*-----カテゴリーリスト-----*/
*.hUnderLine.category{
	font-size: 40px;
}

.categoryItemSelect ul.itemList{
	display: flex;
	flex-wrap: wrap;
	gap: 25px 30px;
	margin: 40px auto;
}
.categoryItemSelect ul.itemList > li{
	width: 280px;
}
.categoryItemSelect ul.itemList > li a{
	display: block;
	padding: 15px 20px;
	box-shadow: 0 0 3px rgba(0,0,0,0.5);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.categoryItemSelect ul.itemList > li a:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 15px solid transparent;
	border-right: 15px solid #24c9ff;
	border-bottom: 15px solid #24c9ff;
	transition: all 0.15s ease-out;
	position: absolute;
	right: 0;
	bottom: 0;
}
.categoryItemSelect ul.itemList > li h3{
	color: #24c9ff;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5em;
	text-align: center;
	transition: all 0.15s ease-out;
	position: relative;
}
.categoryItemSelect ul.itemList > li h3 > span{
	display: inline-block;
	font-size: 14px;
	line-height: 1.3em;
}
.categoryItemSelect ul.itemList > li h3:after{
	content: "";
	display: block;
	width: 85%;
	height: 1px;
	background-color: #191919;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;
	margin: auto;
}
.categoryItemSelect ul.itemList > li p{
	background-repeat: no-repeat;
	background-position: left 50%;
	min-height: 160px;
	padding-left: 120px;
	font-size: 14px;
}

.categoryItemSelect ul.itemList > li a:hover:after{
	border-right-color: #ff8c00;
	border-bottom-color: #ff8c00;
}
.categoryItemSelect ul.itemList > li a:hover h3{
	color: #ff8c00;
}


/*リスト画像*/
.categoryItemSelect ul.itemList > li.towel p{ background-image: url(../../../_images/category/cool-goods/top/select-img-towel.jpg);}
.categoryItemSelect ul.itemList > li.ring p{ background-image: url(../../../_images/category/cool-goods/top/select-img-ring.jpg);}
.categoryItemSelect ul.itemList > li.feel p{ background-image: url(../../../_images/category/cool-goods/top/select-img-feel.jpg);}
.categoryItemSelect ul.itemList > li.consumables p{ background-image: url(../../../_images/category/cool-goods/top/select-img-consumables.jpg);}

@media screen and ( max-width: 736px ){
	.categoryItemSelect *.hUnderLine{
		font-size: 24px;
	}
	.categoryItemSelect *.hUnderLine + p{
		width: 95%;
		margin: auto;
	}

	/*-----カテゴリーリスト-----*/
	.categoryItemSelect ul.itemList{
		width: 95%;
		gap: 15px 15px;
	}
	.categoryItemSelect ul.itemList > li{
		width: calc((100% - 30px) / 3);
	}
	.categoryItemSelect ul.itemList > li a{
		padding: 10px 8px;
	}
	.categoryItemSelect ul.itemList > li h3{
		padding-bottom: 5px;
		font-size: 17px;
		line-height: 1.3em;
	}
	.categoryItemSelect ul.itemList > li p{
		background-size: 80px auto;
		background-position: top center;
		min-height: auto;
		padding-left: 0;
		padding-top: 120px;
		font-size: 14px;
	}
}

@media screen and ( max-width: 480px ){
	.categoryItemSelect *.hUnderLine{
		font-size: 23px;
	}

	/*-----カテゴリーリスト-----*/
	.categoryItemSelect ul.itemList{
		justify-content: space-between;
		gap: 20px 15px;
	}
	.categoryItemSelect ul.itemList > li{
		width: calc((100% - 15px) / 2);
	}
	.categoryItemSelect ul.itemList > li h3{
		font-size: 16px;
	}
	.categoryItemSelect ul.itemList > li p{
		background-size: 70px auto;
		padding-top: 105px;
		font-size: 13px;
	}
}


/*-----------------他リンク--------------------*/
.otherLink h3{
	margin: 0 auto 15px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	border-bottom: 1px solid #333;
}
.otherLink ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.otherLink ul:not(:last-child){
	margin-bottom: 40px;
}
.otherLink ul > li{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.otherLink ul > li img{
	width: 100%;
	height: auto;
}

.otherLink ul.link-campaign > li{
	width: calc((100% - 20px) / 2);
}
.otherLink ul.link-page > li{
	width: calc((100% - 40px) / 3);
}

@media screen and ( max-width: 736px ){
	.otherLink h3{
		font-size: 21px;
	}
	
	.otherLink ul{
		gap: 15px;
		width: 95%;
		margin: auto;
	}
	.otherLink ul.link-campaign > li{
		width: calc((100% - 15px) / 2);
	}
	.otherLink ul.link-page > li{
		width: calc((100% - 30px) / 3);
	}
}
@media screen and ( max-width: 480px ){
	.otherLink h3{
		font-size: 20px;
	}
	
	.otherLink ul{
		gap: 15px 10px;
	}
	.otherLink ul.link-campaign > li,
	.otherLink ul.link-page > li{
		width: calc((100% - 10px) / 2);
	}
}

/*-----------------商品一覧--------------------*/
.itemListBox > h2{
	margin: 20px 0;
	padding: 0 10px 5px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	position: relative;
}
.itemListBox > h2:after{
	content: "";
	display: block;
	width: 25%;
	height: 2px;
	background-color: #ff7417;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;
	margin: auto;
}

@media screen and ( max-width: 736px ){
	.itemListBox > h2{
		font-size: 18px;
	}
}



