@charset "utf-8";

/*-----------------------------------
ページ共通
-----------------------------------*/
#category-page{
	margin-bottom: 30px;
	color: #333;
}
#category-page a {
	color: #333;
	transition: 0.3s all;
}
#category-page img {
	width: 100%;
}
#category-page section:not(.header){
	padding: 40px 30px;
}
#category-page .c-title-contents{
	margin: 0 0 30px;
	display: flex;
  align-items: baseline;
  gap: 25px;
  font-size: 44px;
}
#category-page .c-title-contents small{
	padding: 0;
  display: inline-block;
  vertical-align: middle;
}

/*ボタン*/
#category-page .go-btn{
	margin: 45px auto 0px;
	max-width: 400px;
	width: 100%;
	color: #fff;
	font-weight: 500;
	position: relative;
	font-size: 18px;
	transition: all 0.2s ease 0s;
	letter-spacing: 0.2em;
}
#category-page .go-btn a{
	padding: 18px 30px;
	color: rgb(255, 255, 255);
	width: 100%;
	height: auto;
	display: inline-block;
	text-align: center;
	box-sizing: border-box;
	background: #202020;
	border-radius: 3px;
	line-height: 1.6;
}
#category-page .go-btn a::before{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	transform: translateY(50%) rotate(45deg);
	bottom: 50%;
	right: 20px;
	transition: all 0.2s ease 0s;
	border-top: 2px solid;
	border-right: 2px solid;
}

@media screen and (min-width: 600px){
	.sp-only{
		display: none;
	}
	#category-page a:hover img{
		opacity: 1;
	}
	#category-page .go-btn a:hover{
		opacity: 0.5;
	}
}

@media screen and (max-width: 599px){
	.p-special__contents{
		margin-inline: 0;
	}
	#category-page section:not(.header){
		padding: 30px 15px;
	}
	#category-page .c-title-contents{
		flex-direction: column;
    gap: 6px;
    margin: 0 0 20px;
    font-size: 33px;
    line-height: 1.3;
	}
	#category-page .c-title-contents small{
		font-size: 16px;
	}
	
	/*ボタン*/
	#category-page .go-btn{
		margin: 30px auto 0px;
		width: 70%;
		font-size: 16px;
	}
	#category-page .go-btn a{
		padding: 15px 30px;
	}
	#category-page .go-btn a::before{
		margin: 30px auto 0px;
		width: 8px;
		height: 8px;
	}
}

/*-----------------------------------
ヘッダー
-----------------------------------*/
#category-page .header{
	margin-bottom: 40px;
}
#category-page .header .page-lead{
	margin-top: 40px;
	padding: 0 30px;
	text-align: center;
}
#category-page .header .page-lead .page-title{
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 0.04em;
	line-height: 1.4;
	margin-bottom: 18px;
	color: #333;
}
#category-page .header .page-lead .lead-tx{
	color: #666;
}

@media screen and (max-width: 599px){
	#category-page .header{
		margin-bottom: 25px;
	}
	#category-page .header .page-lead{
		margin-top: 20px;
		padding: 0 15px;
		text-align: left;
	}
	#category-page .header .page-lead .page-title{
		font-size: 22px;
		line-height: 1.5;
		margin-bottom: 12px;
    text-align: center;
	}
	#category-page .header .page-lead .lead-tx{
		font-size: 14px;
	}
}

/*-----------------------------------
スライダー
-----------------------------------*/
#category-page .swiper-container{
	position: relative;
	margin-bottom: 20px;
}
#category-page .swiper-container {
	position: relative;
}
#category-page .common-mv-slide .swiper-wrapper{
	height: auto;
}
#category-page .common-mv-slide .swiper-slide {
	width: 500px;
	border-radius: 10px;
	overflow: hidden;
}
#category-page .common-mv-slide .swiper-slide .mv-image {
	position: relative;
}
#category-page .common-mv-slide .swiper-slide .mv-image .mask{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	text-align: center;
}
#category-page .common-mv-slide .swiper-slide .mv-image .mask .brand{
	font-size: 18px;
}
#category-page .common-mv-slide .swiper-slide .mv-image .mask .name{
	margin: 5px 0 8px;
	font-size: 17px;
}
#category-page .common-mv-slide .swiper-slide .mv-image .mask .price span{
	font-size: 20px;
}
#category-page .common-mv-slide .swiper-slide .mv-image .mask .brand,
#category-page .common-mv-slide .swiper-slide .mv-image .mask .price{
	font-weight: bold;
}
#category-page .common-mv-slide .swiper-button-prev,
#category-page .common-mv-slide .swiper-button-next {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.5);
	top: 50%;
	transform: translateY(-50%);
	background-image: none;
}
#category-page .common-mv-slide .swiper-button-prev {
	left: 10px;
}
#category-page .common-mv-slide .swiper-button-next {
	right: 10px;
}
#category-page .common-mv-slide .swiper-button-prev::before,
#category-page .common-mv-slide .swiper-button-next::before{
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	position: absolute;
	top: 50%;
	left: 50%;
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
}
#category-page .common-mv-slide .swiper-button-prev::before{
	transform: translate(-38%, -50%) rotate(-45deg);
}
#category-page .common-mv-slide .swiper-button-next::before{
	transform: translate(-75%, -50%) rotate(135deg);
}
#category-page .swiper-pagination {
	position: inherit;
	width: 90%;
	margin: 0 auto;
	padding: 45px 0 0;
	bottom: 0 !important;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
#category-page .swiper-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #b4b2b1;
	margin: 0 8px !important;
	opacity: 1;
}
#category-page .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #3e9c72 !important;
}

@media screen and (min-width: 600px){
	#category-page .common-mv-slide .swiper-slide a:hover{
		opacity: 1;
	}
	#category-page .common-mv-slide .swiper-slide a:hover .mv-image img{
		opacity: 0.3;
		transition: 0.3s all;
	}
	#category-page .common-mv-slide .swiper-slide a:hover .mask{
		opacity: 1;
		transition: 0.3s all;
	}
}

@media screen and (max-width: 599px) {
	#category-page .swiper-container{
		margin-bottom: 10px;
	}
	#category-page .common-mv-slide{
		padding: 0 20px;
	}
	#category-page .common-mv-slide .swiper-slide{
		width: 100%;
	}
	#category-page .common-mv-slide .swiper-button-prev, 
	#category-page .common-mv-slide .swiper-button-next{
		width: 55px;
		height: 55px;
	}
	#category-page .common-mv-slide .swiper-button-prev::before, 
	#category-page .common-mv-slide .swiper-button-next::before{
		width: 12px;
		height: 12px;
	}
	#category-page .swiper-pagination{
		padding: 28px 0 0;
	}
}

/*-----------------------------------
キーワード
-----------------------------------*/
#category-page .keyword{
	padding: 22px 40px;
	background: #f3f3f3;
}
#category-page .keyword .key-wrap{
	display: grid;
	grid-auto-flow: column;
	justify-content: center;
	line-height: 1.3333333333;
	gap: 23px;
}
#category-page .keyword .key-wrap::after{
	display: none;
}
#category-page .keyword .key-wrap .key-title{
	line-height: 38px;
	font-size: 16px;
	color: #666;
	font-weight: 500;
}
#category-page .keyword .key-wrap .key-list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#category-page .keyword .key-list .c-button{
	padding: 9px 15px;
	border-radius: 100vh;
	border: solid 1px #cccccc;
	background-color: #fff;
	color: #666666;
	display: inline-grid;
	font-size: 14px;
}

@media screen and (min-width: 600px) {
	#category-page .keyword{
		border-radius: 12px;
	}
	#category-page .keyword .key-wrap .key-title{
		border-right: 1px dashed;
		padding-right: 20px;
	}
	#category-page .keyword .c-button:hover{
		opacity: 0.5;
	}
}

@media screen and (max-width: 599px) {
	#category-page .keyword{
		padding: 20px 15px 28px;
	}
	#category-page .keyword .key-wrap{
		grid-auto-flow: row;
		gap: 15px;
	}
	#category-page .keyword .key-list .c-button{
		padding: 7px 14px;
		font-size: 14px;
	}
}


/*-----------------------------------
カテゴリ
-----------------------------------*/
#category-page .category-column .category-wrap{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}
#category-page .category-column .category-wrap .category-item{
	border: 1px solid #714819;
}
#category-page .category-column .category-wrap .category-item .category-link{
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 8px;
	height: 100%;
}
#category-page .category-column .category-wrap .category-item .category-link .category-image{
	width: 40%;
}
#category-page .category-column .category-wrap .category-item .category-link .category-name{
	width: calc((100% - 12px) - 40%);
	font-size: 16px;
	font-weight: 500;
}

@media screen and (min-width: 600px){
	#category-page .category-column .category-wrap .category-item .category-link:hover{
		opacity: 0.5;
	}
}

@media screen and (max-width: 599px){
	#category-page .category-column .category-wrap{
		grid-template-columns: repeat(2, 1fr);
	}
	#category-page .category-column .category-wrap .category-item .category-link{
		flex-direction: column;
		gap: 8px;
	}
	#category-page .category-column .category-wrap .category-item .category-link .category-image{
		width: 100%;
	}
	#category-page .category-column .category-wrap .category-item .category-link .category-name{
		width: 100%;
		font-size: 15px;
		text-align: center;
		line-height: 1.6;
	}
}

/*-----------------------------------
ブランド
-----------------------------------*/
#category-page section.brand{
	margin-top: 30px;
	padding: 45px 30px 60px;
	background: #f3f3f3;
}
#category-page .brand .brand-wrap{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

@media screen and (min-width: 600px){
	#category-page .brand .brand-wrap .brand-item .brand-link:hover{
		opacity: 0.5;
	}
}

@media screen and (max-width: 599px){
	#category-page section.brand{
		margin-top: 20px;
		padding: 35px 15px 45px;
	}
	#category-page .brand .brand-wrap{
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

/*-----------------------------------
バナー
-----------------------------------*/
#category-page .topics .topics-area{
	display: flex;
  flex-direction: column;
  gap: 20px;
}
#category-page .topics .topics-wrap{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
#category-page .topics .banner-wrap{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
#category-page .topics .long-banner-wrap{
	display: grid;
  gap: 20px;
}

@media screen and (min-width: 600px){
	#category-page .topics a:hover{
		opacity: 0.7;
	}
}

@media screen and (max-width: 599px){
	#category-page .topics .topics-area{
		gap: 12px;
	}
	#category-page .topics .topics-wrap{
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	#category-page .box-inner.banner{
		padding: 0 20px 50px;
	}
	#category-page .topics .banner-wrap{
		grid-template-columns: 1fr;
		gap: 12px;
	}
	#category-page .topics .long-banner-wrap{
		gap: 12px;
	}
}

/*-----------------------------------
コラム
-----------------------------------*/
#category-page .column .c-title-contents {
	color: #7c674f;
}
#category-page .column .c_card__list:has(.c_card__item:nth-child(2)) {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
#category-page .column .c_card__list .c_card__item .c_card__link {
  display: flex;
	gap: 15px;
}
#category-page .column .c_card__list .c_card__item .c_card__link .imgbox {
	width: 42%;
  overflow: hidden;
}
#category-page .column .c_card__list .c_card__item .c_card__link .imgbox img {
  height: 100%;
	object-fit: cover;
  transition: 0.3s;
}
#category-page .column .c_card__list .c_card__item .c_card__link .textbox {
	display: flex;
	gap: 8px;
	justify-content:center;
	flex-direction: column;
  width: calc((100% - 15px) - 42%);
  min-height: 170px;
  border-top: 1px solid #cecdcd;
  border-bottom: 1px solid #cecdcd;
  transition: 0.3s;
	font-weight: 600;
}
#category-page .column .c_card__list .c_card__item .c_card__link .textbox h3 {
  font-size: 14px;
  line-height: 1.5;
}
#category-page .column .c_card__list .c_card__item .c_card__link .textbox .lower {
  line-height: 1;
}
#category-page .column .c_card__list .c_card__item .c_card__link .textbox .lower .day {
  font-size: 10px;
}
  
@media screen and (min-width: 600px){
	#category-page .column .c_card__list .c_card__item .c_card__link:hover img {
		transform: scale(1.1);
	}
	#category-page .column .c_card__list .c_card__item .c_card__link:hover .textbox {
		opacity: 0.6;
	}
}

@media screen and (max-width: 599px) {
	#category-page .column .c_card__list:has(.c_card__item:nth-child(2)){
		gap: 20px;
	}
	#category-page .column .c_card__list .c_card__item .c_card__link {
		flex-direction: column;
	}
	#category-page .column .c_card__list .c_card__item .c_card__link .imgbox,
	#category-page .column .c_card__list .c_card__item .c_card__link .textbox {
		width: 100%;
	}
	#category-page .column .c_card__list .c_card__item .c_card__link .imgbox img{
		aspect-ratio: 7 / 5;
	}
	#category-page .column .c_card__list .c_card__item .c_card__link .textbox {
		gap: 5px;
		padding: 12px 0;
		min-height: auto;
	}
}



