@charset "UTF-8";
@import url("root.css");

/***************************************
------------- TOP MAIN IMG -------------
***************************************/
/* #mv {
	width: 100%;
	height: auto;
	max-height: 600px;
	background: url(../img/main_bg.webp) no-repeat;
	background-position: top center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: -1;
}
.mv_wrap {
	position: relative;
	width: min(100%, 1500px);
	height: min(100%, 600px);
	margin: auto;
}
.mv_wrap .container img {
	display: block;
	width: min(100%, 1066px);
	aspect-ratio: 1066/456;
	object-fit: contain;
	margin: 4.7% auto 4.9%;
	position: relative;
}
img.mv_item_l {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	aspect-ratio: 515/600;
	object-fit: contain;
}
img.mv_item_r {
	position: absolute;
	top: 0;
	right: 0;
	width: auto;
	height: 100%;
	aspect-ratio: 962/600;
	object-fit: contain;
}
@media (max-width: 1024px) {
	#mv {
		margin-top: 80px;
	}
}
@media (max-width: 599px) {
	#mv {
		max-height: auto;
		margin-top: 60px;
	}
	.top_img_sp {
		margin-top: 0px;
	}
} */

/***************************************
------------- desc -------------
***************************************/
.desc {
	font-size: calc(17px + 3 * (100vw - 320px) / 880);
	line-height: 160%;
}
@media only (min-width: 1200px) {
	.desc {
		font-size: 2rem;
	}
}

/***************************************
------------- NEWS -------------
***************************************/
#news {
	margin-bottom: clamp(50px, 10vw, 100px);
}
.news_wrap {
	width: 94%;
	margin: auto;
}
.news_list {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	dt a,
	dd a {
		width: fit-content;
		display: flex;
		flex-shrink: 0;
		font-size: 1.8rem;
	}
	dd a {
		color: var(--text-color);
		font-weight: 500;
	}
	dd a:hover {
		text-decoration: underline;
	}
}
.news_list:not(:last-of-type) {
	padding-bottom: 2rem;
	border-bottom: 2px dotted #999;
	margin-bottom: 2rem;
}
@media (max-width: 599px) {
	.news_list {
		flex-wrap: wrap;
		dt {
			width: 100%;
			margin-bottom: 1rem;
		}
		dd {
			width: 100%;
		}
	}
}

/***************************************
------------- GREETING -------------
***************************************/
#greeting {
	width: 100%;
	padding: clamp(50px, 10vw, 100px) 0;
	background: url(../img/contents_bg01.webp) repeat;
	background-position: top center;
	background-size: cover;
	position: relative;
	z-index: -1;
}
#greeting h2 {
	font-size: min(calc(18px + 30 * (100vw - 320px) / 880),64px);
	font-weight: 700;
	width: 100%;
	text-align: center;
	padding-bottom: 2rem;
	margin-bottom: min(10vw, 5rem);
	position: relative;
}
#greeting h2::before,
#greeting h2::after {
	content: "";
	position: absolute;
	display: block;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	width: clamp(74px, 15vw, 148px);
	height: auto;
	aspect-ratio: 148/235;
	object-fit: cover;
	top: 50%;
	z-index: -1;
}
#greeting h2::before {
	background-image: url("../img/midashi_object_l.webp");
	transform: translate(0%, -50%);
	left: 0;
}
#greeting h2::after {
	background-image: url("../img/midashi_object_r.webp");
	transform: translate(-0%, -50%);
	right: 0;
}
@media (min-width: 1025px) {
	#greeting h2::before {
		background-image: url("../img/midashi_object_l.webp");
		transform: translate(50%, -50%);
		left: 0;
	}
	#greeting h2::after {
		background-image: url("../img/midashi_object_r.webp");
		transform: translate(-50%, -50%);
		right: 0;
	}
}

#greeting h2 span {
	display: block;
	font-family: "Noto Serif JP", serif !important;
	font-weight: 700;
	font-size: min(calc(32px + 32 * (100vw - 320px) / 880),84px);
	color: var(--base-color01);
}
@media only (min-width: 1200px) {
	#greeting h2 {
		font-size: 4.8rem;
	}
	#greeting h2 span {
		font-size: 6.4rem;
	}
}

#greeting .contents_wrap {
	display: flex;
	flex-wrap: nowrap;
	gap: 5%;
	align-items: flex-start;
}
.greeting_img {
	flex-shrink: 0;
	width: calc(100% / 3);
	order: 2;
}
.greeting_txt {
	flex-shrink: 1;
	order: 1;
}

@media (max-width: 599px) {
	#greeting .contents_wrap {
		flex-wrap: wrap;
	}
	.greeting_img {
		flex-shrink: 0;
		width: 100%;
		margin: 0 auto clamp(15px, 3vw, 30px);
		text-align: center;
		order: 1;
	}
	.greeting_txt {
		flex-shrink: 0;
		width: 100%;
		order: 2;
	}
}
/***************************************
------------- 買取実績 -------------
***************************************/
#result {
	margin-bottom: clamp(50px, 10vw, 100px);
}
#result .desc {
	text-align: center;
	margin: 0 auto clamp(15px, 3vw, 30px);
}
#result .contents_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: clamp(25px, 5vw, 50px) 2%;
}
.result_box {
	width: calc(94% / 4);
	border-radius: 5px;
	overflow: hidden;
	background-color: #fff;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}
.result_box .result_img img {
	aspect-ratio: 5 / 3;
	object-fit: cover;
	width: 100%;
	height: auto;
	display: block;
}
.txt_wrap {
	padding: 0 10px 20px;
}
.txt_wrap p.cat {
	width: 100%;
	background: var(--base-color01);
	padding: 5px;
	text-align: center;
	font-size: 1.4rem;
	color: #fff;
	font-weight: 700;
	margin: 0;
}
.txt_wrap .date {
	text-align: right;
	width: 100%;
	justify-content: flex-end;
	margin: 10px 0;
	line-height: 1;
	font-size: 90%;
}
@media (max-width: 768px) {
	.result_box {
		width: calc(96% / 3);
	}
	#result .desc {
		text-align: left;
	}
}
@media (max-width: 599px) {
	.result_box {
		width: calc(98% / 2);
	}
}
/***************************************
------------- 買取品目 -------------
***************************************/
#itemlist {
	width: 100%;
	background: url(../img/contents_bg02.webp) repeat;
	background-position: top center;
	background-size: cover;
	position: relative;
	z-index: -1;
}
/*#itemlist::before {
	content: "";
	position: absolute;
	display: block;
	background: url(../img/contents_bg04.webp) no-repeat;
	background-position: top center;
	background-size: contain;
	width: clamp(150px,33vw, 340px);
	height: auto;
	aspect-ratio: 340/150;
	object-fit: cover;
	top: 0;
	right: 2.5%;
	transform: translate(0,-50%);
}
#itemlist::after {
	content: "";
	position: absolute;
	display: block;
	background: url(../img/contents_bg02.webp) no-repeat;
	background-position: top center;
	background-size: contain;
	width: clamp(250px,50vw, 550px);
	height: auto;
	aspect-ratio: 550/320;
	object-fit: cover;
	bottom: -5%;
	left: 10%;
	transform: translate(-50%, 0);
	z-index: -1;
}*/

#itemlist .midashi_ttl {
	margin: 0 auto;
	padding: clamp(50px, 10vw, 100px) 0 clamp(35px, 5vw, 50px);
}

#itemlist .contents_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: clamp(10px, 1.2vw, 12px) 1%;
	padding-bottom: clamp(50px, 10vw, 100px);
}
.itemlist_box {
	width: calc(97% / 4);
}
.itemlist_box {
	border-radius: 5px;
	overflow: hidden;
	background-color: #fff;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}

.itemlist_box a {
	color: #fff;
}

.itemlist_box p {
	display: flex;
	align-items: center;
	background-color: var(--base-color01);
	padding: 5px 5px 8px 8px;
	font-weight: 500;
	text-align: left;
	font-size: calc(16px + 4 * (100vw - 320px) / 880);
}
.itemlist_box p::before {
	content: "";
	display: block;
	background: url(../img/svg/icn_arw_right_gd.svg) no-repeat;
	background-position: top center;
	background-size: contain;
	width: 10px;
	height: auto;
	aspect-ratio: 10/17;
	object-fit: cover;
	margin-top: 5px;
	margin-right: 5px;
}

@media only (min-width: 1200px) {
	.itemlist_box p {
		font-size: 2rem;
	}
}

@media (max-width: 1024px) {
	.itemlist_box {
		width: calc(96% / 3);
	}
}

@media (max-width: 768px) {
	#itemlist .contents_wrap {
		gap: clamp(10px, 1.2vw, 12px) 2%;
	}
	.itemlist_box {
		width: calc(98% / 2);
	}
}
/***************************************
------------- 査定方法 -------------
***************************************/

#method .desc {
	text-align: center;
	margin: 0 auto clamp(15px, 3vw, 30px);
}

#method .desc span {
	color: var(--base-color01);
}

#method .contents_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: clamp(25px, 5vw, 50px) 2.5%;
}
.method_box {
	border-radius: 5px;
	overflow: hidden;
	background-color: #fff;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
	width: calc(97.5% / 2);
}
.method_txt {
	padding: 0 15px;
	margin-top: clamp(10px, 2vw, 20px);
}
.method_box p {
	text-align: center;
}
.method_txt a {
	width: clamp(200px, 24vw, 240px);
	background: var(--base-color03);
	color: #fff;
	font-size: clamp(1.4rem, 2vw, 1.6rem);
	line-height: 1;
	margin: clamp(10px, 2vw, 20px) auto;
	padding: 10px 20px 13px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 35px;
	position: relative;
}
.method_txt a::after {
	content: "";
	position: absolute;
	display: block;
	background: url(../img/svg/icn_arw_right_gd.svg) no-repeat;
	background-position: top center;
	background-size: contain;
	width: 10px;
	height: auto;
	aspect-ratio: 10 / 14;
	object-fit: cover;
	top: 50%;
	right: min(10%, 20px);
	transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
	#method .desc {
		text-align: left;
	}
}

@media (max-width: 768px) {
	.method_box {
		width: 100%;
	}
}
.method_line,
.method_clean {
	width: 100%;
}

#mv .slick-slider.slick-initialized {
	opacity: 1;
	transition: all 0.3s;
}
#mv img {
	width: 100%;
	max-width: 100%;
}

#mv {
	position: relative;
	/*overflow: hidden;*/
}

#mv .slider {
	width: 100%;
	margin: 0 auto;
	height: auto;
	overflow: hidden;
	max-height: 650px;
	padding: 0;
	border: none;
	text-align: center;
	position: relative; /* スライダーコンテナを相対位置指定 */
	overflow: visible; /* ドットがはみ出しても表示されるように */
}
#mv .slick-dots {
	position: absolute; /* 絶対位置指定 */
	bottom: calc(min(3.2vw, 32px) * -1); /* スライダーの下に配置（お好みで調整） */
	left: 50%;
	transform: translateX(-50%); /* 中央揃え */
	display: flex !important;
	justify-content: center;
	z-index: 10;
}

#mv .slick-dots li button {
	background: #ccc; /* 非アクティブ時の色 */
	border-radius: 50%;
	width: min(1.6vw, 16px);
	height: min(1.6vw, 16px);
	border: none;
	margin: 0 4px;
	transition: background 0.3s;
	font-size: 0;
	outline: none;
	display: inline-block;
}
#mv .slick-dots li.slick-active button {
	background: #e60012; /* アクティブ時の色（例：赤） */
}

.slick-dots li button:before {
	content: none!important;
}


#mv .slider img {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: block;
	height: auto;
	object-fit: cover;
	vertical-align: bottom;
}

/* slickの両端スライドをグレー透かしに */
#mv .slider .slick-slide {
	position: relative;
	opacity: 1;
	filter: none;
	transition: filter 0.3s, opacity 0.3s;
}
#mv .slider .slick-slide:not(.slick-center)::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4); /* 黒の半透明 */
	pointer-events: none;
	border-radius: inherit;
	z-index: 2;
}
#mv .slider .slick-center::after {
	display: none;
}
#mv .slider .slick-slide:not(.slick-center) {
	filter: blur(4px) grayscale(80%);
	opacity: 1;
	transition: filter 0.3s, opacity 0.3s;
}
#mv .slider .slick-center {
	filter: none;
	opacity: 1;
}

@media (max-width: 1024px) {
	#mv {
		margin-top: 82px;
	}

	#mv .slider .slick-slide {
		opacity: 1 !important;
		filter: none !important;
	}
	#mv .slider .slick-slide:not(.slick-center)::after {
		display: none !important;
	}
}

@media (max-width: 767px) {
	#mv {
		margin-top: 80px;
	}
	#mv .slider {
		max-height: none;
	}
	#mv img {
		max-width: 100%;
		aspect-ratio: 9/8;
		object-fit: cover;
	}

	#mv .slider .slick-slide {
		opacity: 1 !important;
		filter: none !important;
	}
	#mv .slider .slick-slide:not(.slick-center)::after {
		display: none !important;
	}
}
@media (max-width: 599px) {
 #mv {
		margin-top: 60px;
	}
}




#mv .slide01 {
	position: relative;
}
#mv .slide01 .sliderTxt {
	position: absolute;
	top: 80%;
	left: 5%;
	width: 90%;
	text-align: left;
	font-size: clamp(1.4rem, 2.1vw, 2.2rem);
	.eventDate {
		text-align: left;
		font-weight: 600;
		padding-bottom: .35em;
		border-bottom: 1px solid;
		margin-bottom: .35em;
		font-size: clamp(1.4rem, 2.1vw, 2.2rem);
		line-height: 1.0;
	}
	.notice {
		font-size: .8em;
		text-align: left;
		line-height: 1.4;
	}
}

@media (max-width: 767px) {
	#mv .slide01 .sliderTxt {
		top: 85%;
	}
}


/***************************************
------------- 貴金属買取相場表 -----------
***************************************/

#souba { display: none; }
@media (max-width: 767px) {
	#souba { display:block; }
	.souba_list_wrap {
		display: flex;
		flex-wrap: wrap;
		gap: 10px 10px;
		width: 100%;
		margin: clamp(50px, 10vw, 100px) auto;
		border: 2px solid var(--base-color01);
		padding: 20px;
	}
	.souba_list_wrap h2 {
		width: 100%;
		margin: auto;
		text-align: center;
		font-size: 1.2em;
		font-weight: bold;
		color: var(--base-color01);
	}
	.souba_list_wrap .gold {
		width: calc((100% - 10px) / 2);
		dl.souba_list {
			border: 2px solid #d9c074;
			display: flex;
			flex-wrap: wrap;
			dt,dd {
				display: flex;
				justify-content: center;
				align-items: center;
				padding: clamp(10px, 2.5vw, 20px);
				line-height: 1.0;
			}
			dt {
				background: #d9c074;
				width:min(100px, 40%);
				flex-shrink: 0;
				font-weight: bold;
				color: #fff;
			}
			dd {
				font-size: 1.2em;
				flex-grow: 1;
				align-items: flex-end;
				span {font-size: .6em;} 
			}
		}
		dl.souba_list:last-of-type {
			margin-top: 10px;
		}
	}
	.souba_list_wrap .platinum {
		width: calc((100% - 10px) / 2);
		dl.souba_list {
			border: 2px solid #90bdda;
			display: flex;
			flex-wrap: wrap;
			dt,dd {
				display: flex;
				justify-content: center;
				align-items: center;
				padding: clamp(10px, 2.5vw, 20px);
				line-height: 1.0;
			}
			dt {
				background: #90bdda;
				width:min(100px, 40%);
				flex-shrink: 0;
				font-weight: bold;
				color: #fff;
			}
			dd {
				font-size: 1.2em;
				flex-grow: 1;
				align-items: flex-end;
				span {font-size: .6em;} 
			}
		}
		dl.souba_list:last-of-type {
			margin-top: 10px;
		}
	}
}

@media (max-width: 599px) {
	.souba_list_wrap {
		padding: 10px;
	}
	.souba_list_wrap .gold,
	.souba_list_wrap .platinum {
		dl.souba_list {
			flex-direction: column;
			dt,dd { width: 100%;}
		}
	}
}

.souba_list_wrap .souba_link {
	width: 100%;
	margin: auto;
	text-align: center;
	a {
		width: min(100%, 400px);
		margin: 0 auto;
		padding: .5em;
		background: var(--base-color01);
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		position: relative;
	}
	a::after {
		content: "";
		position: absolute;
		display: block;
		background: url(../img/svg/icn_arw_right_gd.svg) no-repeat;
		background-position: top center;
		background-size: contain;
		width: 15px;
		height: auto;
		aspect-ratio: 10 / 14;
		object-fit: cover;
		top: 50%;
		right: min(10%, 20px);
		transform: translate(-50%, -50%);
	}
}




