@charset "UTF-8";
/*------------------------------------------------------------------
********************************************************************
 * ▼構成
 * ・ベースとなるCSS
 * ・スマホ用（@media screen and (max-width: 767px) {} ）
 *
 * 共通系
 * 一覧ページ
 * 検索結果ページ
 * 詳細ページ
********************************************************************
--------------------------------------------------------------------*/

/*--- 共通系 ---*/
.sales_box{
	display: flex;
	flex-direction: row-reverse;
	gap: 60px;
	max-width: 1280px;
	width: 90%;
	margin: 120px auto 0;
	padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
	.sales_box{
		flex-direction: column;
		margin-top: 30px;
		padding-bottom: 0;
	}
}

.sales_box .sales_main{
	max-width: 860px;
	width: 100%;
}

.sales_sidebar{
	max-width: 360px;
	width: 100%;
}

.sales_sidebar .heading_4{
	padding-top: 5px;
}

.sales_sidebar .heading_4 .en{
	font-size: 40px;
}

.sales_sidebar .heading_4 .ja{
	font-size: 18px;
}

#btn_condition{
	position: relative;
	display: block;
	padding: 12px 15px;
	background-color: #0f1f3f;
	font-size: 4.26vw;
	font-weight: 500;
	color: #fff;
}

#btn_condition > span{
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%) rotate(45deg);
	display: inline-block;
	width: 20px;
	height: 20px;
	border: #fff 1px solid;
}

#btn_condition > span::before,
#btn_condition > span::after{
	content: '';
	position: absolute;
	display: inline-block;
	width: 10px;
	height: 1px;
	background-color: #fff;
}

#btn_condition > span::before,
#btn_condition.active > span::after{
	top: 9px;
	left: 4px;
	transform: rotate(-45deg);
}

#btn_condition > span::after{
	top: 8px;
	left: 4px;
	transform: rotate(45deg);
}

.sales_box .section_heading{
	position: relative;
	width: 100%;
	padding: 0 0 10px;
	border-bottom: #ced1d8 1px solid;
	font-size: 20px;
	font-weight: 500;
	color: #0f1f3f;
}
@media screen and (max-width: 767px) {
	.sales_box .section_heading{
		font-size: 4.26vw;
	}
}

.sales_sidebar .section_heading{
	font-size: 18px;
	line-height: 1;
}

.sales_box .section_heading::after{
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	display: block;
	width: 50%;
	height: 1px;
	background-color: #0f1f3f;
}
@media screen and (max-width: 767px) {
	.sales_box .section_heading::after{
		width: 30%;
	}
}

.sales_sidebar .section_heading::after{
	width: 40%;
}

.sales_sidebar .conditions{
	width: 100%;
	margin-top: 40px;
	padding: 40px;
	background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
	.sales_sidebar .conditions{
		margin-top: 0;
		padding: 25px 15px;
	}
}

.sales_sidebar .conditions .item{
	margin-bottom: 40px;
}

.sales_sidebar .conditions .input_box{
	margin-top: 24px;
}

.sales_sidebar .conditions .input_box .checkbox{
	margin-bottom: 10px;
}

.sales_sidebar .conditions .input_box input[type="checkbox"]{
	appearance: none;
	cursor: pointer;
	position: relative;
	width: 30px;
	height: 30px;
	margin-right: 15px;
	background-color: #fff;
	border: #d4d4d4 1px solid;
	border-radius: 4px;
	vertical-align: -8px;
}
 
.sales_sidebar .conditions .input_box input[type="checkbox"]:checked:before{
	content: '';
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-40%, -50%) rotate(50deg);
	width: 8px;
	height: 14px;
	border-right: #004bb1 1px solid;
	border-bottom: #004bb1 1px solid;
}

.sales_sidebar .conditions .input_box label{
	font-size: 16px;
}

.sales_sidebar .conditions .input_box input[type="text"]{
	width: 100%;
	padding: 12px 20px 14px;
	background-color: #fff;
	border: #cdd6dd 1px solid;
	font-size: 16px;
}

.sales_sidebar .conditions button{
	appearance: none;
	width: 100%;
	padding: 12px 0;
	background-color: #0f1f3f;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	transition: all .5s ease;
}

.sales_sidebar .conditions button:hover{
	background-color: #2f3c5f;
}


/*--- 一覧ページ ---*/
@media screen and (max-width: 767px) {
	.sales_box .anchor_link_box{
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		width: 100%;
		margin-top: 40px;
	}

	.sales_box .anchor_link_box a{
		display: block;
		/* width: calc(50% - 4px); */
		padding: 11px 15px 12px;
		background-color: #fff;
		border: #0f1f3f 1px solid;
		text-align: center;
		font-size: 3.1vw;
		font-weight: 500;
		color: #0f1f3f;
	}
}

.sales_box .sales_main .list_section{
	margin-top: 120px;
}
@media screen and (max-width: 767px) {
	.sales_box .sales_main .list_section{
		margin-top: 0;
		padding-top: 85px;
	}
}

.sales_box .sales_main #sales1.list_section{
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.sales_box .sales_main #sales1.list_section{
		margin-top: 0;
		padding-top: 85px;
	}
}

.sales_box .list_section > ul{
	display: flex;
	flex-wrap: wrap;
	gap: 25px 20px;
	width: 100%;
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.sales_box .list_section > ul{
		margin-top: 25px;
	}
}

.sales_box .list_section > ul > li{
	/* max-width: 420px; */
	width: 420px;
	height: 470px;
	border: #cdd1d8 1px solid;
}
@media screen and (max-width: 767px) {
	.sales_box .list_section > ul > li{
		height: auto;
	}
}

.sales_box .list_section > ul > li a{
	display: block;
	width: 100%;
	height: 100%;
}

.sales_box .list_section > ul > li .image{
	position: relative;
}

.sales_box .list_section > ul > li .image img{
	object-fit: cover;
	max-width: 100%;
	width: 100%;
	height: 230px;
}

.sales_box .list_section > ul > li .image .sold_text{
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.48);
	color: #fff;
}

.sales_box .list_section > ul > li .image .sold_text .en{
	font-family: "Poppins", sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1;
}

.sales_box .list_section > ul > li .image .sold_text .ja{
	font-size: 18px;
	font-weight: 500;
}

.sales_box .list_section > ul > li .text{
	height: 237px;
	padding: 20px 20px 25px;
	background-color: #fff;
	transition: all 1s ease;
}
@media screen and (max-width: 767px) {
	.sales_box .list_section > ul > li .text{
		padding: 15px 15px 20px;
	}
}

.sales_box .list_section > ul > li a:hover .text{
	background-color: #0f1f3f;
	transition: all 1s ease;
}

.sales_box .list_section > ul > li a:hover .text p{
	color: #fff;
}

.sales_box .list_section > ul > li .text .name{
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
}
@media screen and (max-width: 767px) {
	.sales_box .list_section > ul > li .text .name{
		font-size: 5.32vw;
	}
}

.sales_box .list_section > ul > li .text .address{
	font-size: 18px;
	font-weight: 400;
	color: #1a1a1a;
}
@media screen and (max-width: 767px) {
	.sales_box .list_section > ul > li .text .address{
		font-size: 4.26vw;
	}
}

.sales_box .list_section > ul > li .text .price_tsubo{
	display: flex;
	flex-direction: column;
	margin-top: 15px;
}
@media screen and (max-width: 767px) {
	.sales_box .list_section > ul > li .text .price_tsubo{
		margin-top: 15px;
	}
}

.sales_box .list_section > ul > li .text .price{
	font-family: "Poppins", sans-serif;
	font-size: 26px;
	font-weight: 400;
	color: #1a1a1a;
}
@media screen and (max-width: 767px) {
	.sales_box .list_section > ul > li .text .price{
		font-size: 5.32vw;
	}
}

.sales_box .list_section > ul > li .text .tsubo{
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #1a1a1a;
}
@media screen and (max-width: 767px) {
	.sales_box .list_section > ul > li .text .tsubo{
		font-size: 4.26vw;
	}
}


/*--- 検索結果ページ ---*/
.result_box{
	margin-top: 50px;
}
@media screen and (max-width: 767px) {
	.result_box{
		margin-top: 40px;
	}
}

.result_info{
	width: 100%;
}

.result_num{
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	color: #0f1f3f;
}
@media screen and (max-width: 767px) {
	.result_num{
		font-size: 4.26vw;
	}
}

.result_num .num{
	font-family: "Poppins", sans-serif;
	font-size: 40px;
	font-weight: 400;
	color: #0f1f3f;
}
@media screen and (max-width: 767px) {
	.result_num .num{
		font-size: 7.98vw;
	}
}

.result_conditions_name{
	text-align: center;
	font-size: 14px;
}
@media screen and (max-width: 767px) {
	.result_conditions_name{
		font-size: 3.72vw;
	}
}

.result_item_box{
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
}

.result_item_box > div{
	max-width: 210px;
	width: 100%;
}
@media screen and (max-width: 767px) {
	.result_item_box > div{
		width: calc(50% - 3px);
	}
}

.result_item_box .result_item_name{
	width: 100%;
	padding: 8px;
	background-color: #f8f8f8;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: #0f1f3f;
}
@media screen and (max-width: 767px) {
	.result_item_box .result_item_name{
		padding: 10px;
		font-size: 3.72vw;
	}
}

.result_item_content{
	padding: 12px 0;
	text-align: center;
	color: #1a1a1a;
}
@media screen and (max-width: 767px) {
	.result_item_content{
		padding: 10px 0;
		font-size: 3.72vw;
	}
}

.result_reset{
	display: block;
	width: 100%;
	margin-top: 20px;
	padding: 10px 10px 14px;
	background-color: #979797;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
}
@media screen and (max-width: 767px) {
	.result_reset{
		margin-top: 24px;
		padding: 15px;
		font-size: 3.72vw;
	}
}

.result_reset:hover{
	background-color: #555;
	color: #fff;
}

.result_box .list_section{
	margin-top: 80px !important;
}
@media screen and (max-width: 767px) {
	.result_box .list_section{
		margin-top: 40px !important;
		padding-top: 0 !important;
	}
}


/*--- 詳細ページ ---*/
.heading_1 .name{
	font-size: 32px;
	font-weight: bold;
	color: #0f1f3f;
}
@media screen and (max-width: 767px) {
	.heading_1 .name{
		font-size: 4.26vw;
	}
}

.sales_box.single{
	margin-top: 80px;
}
@media screen and (max-width: 767px) {
	.sales_box.single{
		margin-top: 40px;
	}
}

.sales_box.single .main-slider img{
	object-fit: cover;
	max-width: 860px;
	width: 100%;
	height: 535px;
}
@media screen and (max-width: 767px) {
	.sales_box.single .main-slider img{
		height: 200px;
	}
}

.sales_box.single .main-slider .swiper-button-next{
	right: 20px;
	width: 70px;
	height: 70px;
	background: url(../imgs/other/arrow_diamond_white_right_1.svg) no-repeat left top / 70px;
}
@media screen and (max-width: 767px) {
	.sales_box.single .main-slider .swiper-button-next{
		right: 15px;
		width: 45px;
		height: 45px;
		background-size: cover;
	}
}

.sales_box.single .main-slider .swiper-button-next::after{
	content: '';
}

.sales_box.single .main-slider .swiper-button-prev{
	left: 20px;
	width: 70px;
	height: 70px;
	background: url(../imgs/other/arrow_diamond_white_left_1.svg) no-repeat left top / 70px;
}
@media screen and (max-width: 767px) {
	.sales_box.single .main-slider .swiper-button-prev{
		left: 15px;
		width: 45px;
		height: 45px;
		background-size: cover;
	}
}

.sales_box.single .main-slider .swiper-button-prev::after{
	content: '';
}

.sales_box.single .thumb-slider{
	overflow: hidden;
	max-width: 100%;
	margin: 30px 0 0;
}
@media screen and (max-width: 767px) {
	.sales_box.single .thumb-slider{
		margin-top: 15px;
	}
}

.sales_box.single .thumb-slider .swiper-wrapper{
	flex-wrap: wrap;
	gap: 13px;
}
@media screen and (max-width: 767px) {
	.sales_box.single .thumb-slider .swiper-wrapper{
		gap: 3px;
	}
}

.sales_box.single .thumb-slider .swiper-slide {
	cursor: pointer;
	max-width: 132px;  /* サムネイルのサイズ調整 */
	width: 100%;
}
@media screen and (max-width: 767px) {
	.sales_box.single .thumb-slider .swiper-slide{
		max-width: none;
		width: calc(25% - 3px) !important;
	}
}

.sales_box.single .thumb-slider img {
	object-fit: contain;
	width: 100%;
	height: 70px;
}
@media screen and (max-width: 767px) {
	.sales_box.single .thumb-slider img{
		height: 45px;
	}
}

.sales_box.single .swiper-slide-thumb-active{
	border: #0f1f3f 1px solid;
}

.sales_box.single .single_content.first{
	margin-top: 80px;
}
@media screen and (max-width: 767px) {
	.sales_box.single .single_content.first{
		margin-top: 24px;
	}
}

.sales_box.single .single_content h2{
	position: relative;
	padding-bottom: 10px;
	border-bottom: #abb1bc 1px solid;
	font-size: 20px;
	font-weight: 500;
	color: #0f1f3f;
}
@media screen and (max-width: 767px) {
	.sales_box.single .single_content h2{
		font-size: 4.26vw;
	}
}

.sales_box.single .single_content h2::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	display: inline-block;
	max-width: 425px;
	width: 30%;
	height: 1px;
	background-color: #0f1f3f;
}

.sales_box.single .single_info_layout{
	display: flex;
	gap: 24px;
}
@media screen and (max-width: 767px) {
	.sales_box.single .single_info_layout{
		flex-direction: column;
		gap: 0;
	}
}

.sales_box.single .single_info_layout > div{
	max-width: calc(50% - 12px);
	width: 100%;
}
@media screen and (max-width: 767px) {
	.sales_box.single .single_info_layout > div{
		max-width: none;
	}
}

.sales_box.single .info_item{
	display: flex;
}

.sales_box.single .info_item .name,
.sales_box.single .info_item .content{
	padding-top: 30px;
	padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
	.sales_box.single .info_item .name,
	.sales_box.single .info_item .content{
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

.sales_box.single .info_item .name{
	width: 115px;
	border-bottom: #0f1f3f 1px solid;
}
@media screen and (max-width: 767px) {
	.sales_box.single .info_item .name{
		width: 28%;
	}
}

.sales_box.single .info_item .name p{
	font-size: 15px;
	font-weight: 500;
	color: #0f1f3f;
}
@media screen and (max-width: 767px) {
	.sales_box.single .info_item .name p{
		font-size: 3.46vw;
	}
}

.sales_box.single .info_item .content{
	width: 100%;
	padding-left: 15px;
	border-bottom: #abb1bc 1px solid;
}


.sales_box.single .info_item .content p{
	font-size: 15px;
	color: #1a1a1a;
}
@media screen and (max-width: 767px) {
	.sales_box.single .info_item .content p{
		font-size: 3.46vw;
	}
}

