@charset "UTF-8";

/*-----------------------------------
ページ共通
-----------------------------------*/
#temiyage {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
  text-align: center;
}
#temiyage img {
  width: 100%;
}
#temiyage section{
	padding: 35px 0;
}
#temiyage h2{
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 600;
}
#temiyage h2 span{
  padding-bottom: 4px;
	border-bottom: 2px solid #0070bf;
}

@media screen and (min-width: 600px){
	.sp-only{
		display: none;
	}
	#temiyage a:hover img{
		opacity: 1;
	}
}

@media screen and (max-width: 599px){
	#temiyage section{
		padding: 25px 15px;
	}
	#temiyage h2{
		font-size: 20px;
	}
}

/*-----------------------------------
ヘッダー
-----------------------------------*/
#temiyage .header{
	padding-top: 0;
}
#temiyage .header h1{
	margin: 40px auto 15px;
	font-size: 30px;
	font-weight: 600;
}

@media screen and (max-width: 599px){
	#temiyage .header h1{
		margin: 25px auto 15px;
		font-size: 24px;
	}
	#temiyage .header .lead-tx{
		font-size: 15px;
	}
}

/*-----------------------------------
カテゴリ
-----------------------------------*/
#temiyage .category .category-list {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
  justify-content: center;
}
#temiyage .category .category-list .category-btn{
	width: calc((100% - 120px) / 5);
}
#temiyage .category .category-list .category-btn .category-img{
	border-radius: 50%;
  overflow: hidden;
	transition: 0.3s all;
}
#temiyage .category .category-list .category-btn .category-tx{
  margin-top: 15px;
	font-weight: 500;
}

@media screen and (min-width: 600px){
	#temiyage .category .category-list .category-btn a:hover .category-img{
		transform: scale(0.9);
	}
}

@media screen and (max-width: 599px){
	#temiyage .category .category-list{
		gap: 25px 20px;
		width: 90%;
    margin: 0 auto;
	}
	#temiyage .category .category-list .category-btn{
		width: calc((100% - 20px) / 2);
	}
	#temiyage .category .category-list .category-btn .category-tx{
		margin-top: 12px;
		font-size: 15px;
	}
}

/*-----------------------------------
予算
-----------------------------------*/
#temiyage .budget .budget-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:16px;
}
#temiyage .budget .budget-grid .budget-btn{
	position:relative;
	border:1px solid #333;
	text-align:center;
	padding:14px 20px;
	font-weight: 500;
	transition: 0.3s all;
}
#temiyage .budget .budget-grid .budget-btn::after{
	position: absolute;
	content: "";
	top: 50%;
	right: 12px;
	width: 8px;
	height: 8px;
	border-top: 2px solid;
	border-right: 2px solid;
	transform: translateY(-50%) rotate(45deg);
}
#temiyage .budget .budget-grid .budget-btn .budget-num{
	margin-right: 2px;
	font-size: 19px;
}

@media screen and (min-width: 600px){
	#temiyage .budget .budget-grid .budget-btn:hover{
		opacity: 0.6;
	}
}

@media screen and (max-width: 599px){
	#temiyage .budget .budget-grid{
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	#temiyage .budget .budget-grid .budget-btn{
		padding: 10px 20px;
		font-size: 14px;
		line-height: 1.5;
	}
	#temiyage .budget .budget-grid .budget-btn .budget-num{
		font-size: 18px;
	}
}

/*-----------------------------------
スライダー
-----------------------------------*/
#temiyage .swiper-area{
	position: relative;
	padding: 0 25px 40px;
}
#temiyage .swiper-container{
	position: relative;
}
#temiyage .item-slider .osusume-item a{
	transition: 0.3s all;
}
#temiyage .item-slider .osusume-item .item-info{
	margin-top: 10px;
	text-align: left;
	line-height: 1.6;
	font-size: 15px;
}
#temiyage .item-slider .osusume-item .item-info .brand{
	font-weight: 600;
}
#temiyage .item-slider .osusume-item .item-info .name{
	margin: 3px 0;
}
#temiyage .item-slider .osusume-item .item-info .price{
	font-size: 14px;
  font-weight: 600;
  text-align: right;
}
#temiyage .item-slider .osusume-item .item-info .price span{
  margin: 0 2px;
	font-size: 18px;
}
#temiyage .swiper-button-prev,
#temiyage .swiper-button-next{
	content: "";
  top: 50%;
  width: 50px;
  height: 50px;
	z-index: 200;
	color: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
	background: #333;
	transition: 0.3s all;
}
#temiyage .swiper-button-prev{
	left: 0;
	transform: translate(-50%, -50%);
}
#temiyage .swiper-button-next{
	right: 0;
	transform: translate(50%, -50%);
}
#temiyage .swiper-button-prev::before,
#temiyage .swiper-button-next::before{
  position: absolute;
	content: "";
  display: block;
  bottom: 50%;
  right: 50%;
  width: 10px;
  height: 10px;
  z-index: 2;
  border-top: 2px solid;
  border-left: 2px solid;
}
#temiyage .swiper-button-prev::before{
	transform: translateX(65%) translateY(44%) rotate(-45deg);
}
#temiyage .swiper-button-next::before{
	transform: translateX(36%) translateY(50%) rotate(135deg);
}
#temiyage  .swiper-button-prev::after,
#temiyage .swiper-button-next::after{
	display: none;
}
#temiyage .swiper-pagination{
  bottom: 0;
  left: 0;
}
#temiyage .swiper-pagination .swiper-pagination-bullet{
  border-radius:0;
  height:3px;
  margin: 0!important;
  width: 40px;
}
#temiyage .swiper-pagination .swiper-pagination-bullet-active{
  background: #4b4b4b;
}

@media screen and (min-width: 600px){
	#temiyage .item-slider .osusume-item a:hover{
		opacity: 0.7;
	}
}

@media screen and (max-width: 599px){
	#temiyage .swiper-area{
		padding: 0 25px 25px;
	}
	#temiyage .swiper-wrapper .swiper-slide{
		opacity: 0.3;
		transition: 1.0s all;
	}
	#temiyage .swiper-wrapper .swiper-slide-active{
		opacity: 1;
	}
	#temiyage .swiper-pagination .swiper-pagination-bullet{
		width: 20px;
	}
}

/*-----------------------------------
	特集
-----------------------------------*/
#temiyage .feature .bnr-wrap{
	display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#temiyage .feature .bnr-wrap .bnr-item a{
	transition: 0.3s all;
}

@media screen and (min-width: 600px){
	#temiyage .feature .bnr-wrap .bnr-item a:hover{
		opacity: 0.7;
	}
}

@media screen and (max-width: 599px){
	#temiyage .feature .bnr-wrap{
		gap: 15px;
		grid-template-columns: repeat(2, 1fr);
	}
}



