@charset "UTF-8";

:root {
	--_pearl_point_color: #89c4bd;
}

/* ==========================================================================

	カテゴリーTOP

============================================================================ */

/* 宝石買取で選ばれている理由
------------------------------------ */
.elected-reason-jewelry {
	padding: 0 10px;
}
.elected-reason-jewelry__title {
	margin-bottom: 30px;
	font-family: var(--font_mincho);
	font-size: 1.2rem;
	line-height: 1.6em;
	text-align: center;
	position: relative;
}
.elected-reason-jewelry__title-catch {
	display: block;
	margin-bottom: 0.4rem;
	padding-bottom: 1.2rem;
	width: 100%;
	background-image: url(../image/common/icon_question_lb.svg) ;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: auto 1.18rem;
	color: #ada591;
	font-size: 1rem;
	font-weight: bold;
	font-family: var(--font_gothic);
	position: relative;
}
.elected-reason-jewelry__title-catch::before,
.elected-reason-jewelry__title-catch::after {
	content: '';
	display: block;
	width: 46%;
	height: 1px;
	background: #ada591;
	position: absolute;
	bottom: 0.5rem;
}
.elected-reason-jewelry__title-catch::before {
	left: 0;
}
.elected-reason-jewelry__title-catch::after {
	right: 0;
}
.elected-reason-jewelry__title--pink {
	display: block;
	color: #b3405a;
	font-size: 1.6rem;
}
.elected-reason-jewelry__title--point {
	position: relative;
}
.elected-reason-jewelry__title--point::after {
	content: '・・・・';
	display: block;
	position: absolute;
	left: 0;
	bottom: -0.7em;
}
.elected-reason-jewelry__list {
	margin-top: 1em;
	counter-reset: section;
}
.elected-reason-jewelry__item {
	width: 100%;
	position: relative;
}
.elected-reason-jewelry__item:not(:last-of-type) {
	margin-bottom: 2rem;
}
.elected-reason-jewelry__item-image {
	width: 12rem;
	height: calc(12rem * 0.81);
	position: absolute;
	top: -20px;
}
.elected-reason-jewelry__item-image img {
	max-width: 100%;
	max-height: 100%;
	overflow: hidden;
	position: absolute;
}
.elected-reason-jewelry__item:nth-of-type(odd) .elected-reason-jewelry__item-image {
	right: 0;
}
.elected-reason-jewelry__item:nth-of-type(odd) .elected-reason-jewelry__item-image img {
	right: 0;
}
.elected-reason-jewelry__item:nth-of-type(even) .elected-reason-jewelry__item-image {
	left: 0;
}
.elected-reason-jewelry__item:nth-of-type(even) .elected-reason-jewelry__item-image img {
	left: 0;
}

/* 飾り枠 */
.elected-reason-jewelry__item-image::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border: solid 1px #90d3cd;
	position: absolute;
	top: 10px;
}
.elected-reason-jewelry__item:nth-of-type(odd) .elected-reason-jewelry__item-image::after {
	right: 10px;
}
.elected-reason-jewelry__item:nth-of-type(even) .elected-reason-jewelry__item-image::after {
	left: 10px;
}

.elected-reason-jewelry__item-inner {
	box-sizing: border-box;
	padding: 20px 10px;
	width: 86%;
	background: rgba(255,255,255,.8);
	position: relative;
	z-index: 2;
}
.elected-reason-jewelry__item:nth-of-type(even) .elected-reason-jewelry__item-inner {
	margin-left: 14%;
}
.elected-reason-jewelry__item-title {
	box-sizing: border-box;
	margin-bottom: 0.6rem;
	padding-left: 2.8em;
	font-family: var(--font_mincho);
	font-size: clamp(var(--font-size_md), 5.4vw, var(--font-size_lg));
	line-height: 1.2em;
	text-shadow: 1px 1px 1px #fff,
		1px -1px 1px #fff,
		-1px 1px 1px #fff,
		-1px -1px 1px #fff;
	position: relative;
	z-index: 1;
}
.elected-reason-jewelry__item-title::before {
	counter-increment: section;
	content: counter(section);
	display: block;
	color: #ada591;
	font-family: var(--font_mincho);
	font-size: 2em;
	font-style: italic;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	z-index: 2;
}
.elected-reason-jewelry__item-title::after {
	content: '';
	display: block;
	width: 1px;
	height: 1rem;
	background: #ada591;
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 2em;
	transform: translate(0,-50%);
}
.elected-reason-jewelry__item-title span {
	color: #e34f6e;
}

.elected-reason-jewelry__item-text {
	font-size: 0.9rem;
}

@media screen and (min-width: 768px) {
	.elected-reason-jewelry__item-inner {
		padding: 20px 30px;
	}
	.elected-reason-jewelry__item-title {
		font-size: 1.5rem;
	}
}

@media screen and (min-width: 1025px) {
	.elected-reason-jewelry__title {
		margin-bottom: 40px;
		font-size: 28px;
		letter-spacing: 0.08em;
	}
	.elected-reason-jewelry__title--pink {
		font-size: 40px;
	}
	.elected-reason-jewelry__title-catch {
		background-size: unset;
		font-size: 1.2rem;
		font-weight: bold;
	}
	.elected-reason-jewelry__title-catch::before,
	.elected-reason-jewelry__title-catch::after {
		bottom: 0.8rem;
	}
	.elected-reason-jewelry__list {
		margin-top: 50px;
	}
	.elected-reason-jewelry__item:not(:last-of-type) {
		margin-bottom: 40px;
	}
	.elected-reason-jewelry__item-image {
		width: 36%;
		height: 100%;
	}
	.elected-reason-jewelry__item-image img {
		width: 100%;
		height: 100%;
	}
	.elected-reason-jewelry__item-inner {
		padding: 30px 20px;
		width: 80%;
	}
	.elected-reason-jewelry__item:nth-of-type(even) .elected-reason-jewelry__item-inner {
		margin-left: 20%;
	}
	.elected-reason-jewelry__item-title {
		font-size: 28px;
	}
	.elected-reason-jewelry__item-title::before {
		left: 10px;
	}
	.elected-reason-jewelry__item-title::after {
		left: 3.7rem;
	}
}


/* パール用デザイン */
.elected-reason-jewelry__title--pearl {
	margin-bottom: 25px;
	padding: 10px;
	background-color: var(--_pearl_point_color);
	font-family: var(--font_mincho);
	font-size: 1.5rem;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	position: relative;
}
.elected-reason-jewelry__item--pearl {
	display: grid;
	padding-bottom: 70px;
	position: relative;
}
.elected-reason-jewelry__item-inner--pearl {
	grid-area: 1 / -1;
	align-self: start;
	position: relative;
	z-index: 2;
}
.elected-reason-jewelry__item-title--pearl {
	grid-area: 1 / -1;
	display: flex;
	width: 71%;
	margin-bottom: 0;
	padding: 15px;
	padding-left: 3em;
	background-color: rgba(255, 255, 255, 0.8);
	font-size: 1.125rem;
	font-family: var(--font_mincho);
	align-items: center;
	position: relative;
	z-index: 1;
}
.elected-reason-jewelry__item-title-text--pearl {
	padding-left: 10px;
	border-left: #ccc 1px solid;
	font-size: clamp(var(--font-size_2md), 4.5vw, var(--font-size_3lg));
}
.elected-reason-jewelry__item-title-text--pearl span {
	color: #9a2a44;
}
.elected-reason-jewelry__item-title--pearl::before {
	content: "";
	width: 18px;
	height: 35px;
	background: url(../jewelry/image/pearl/text-first.svg) no-repeat center / contain;
	position: absolute;
	left: 1em;
}
.elected-reason-jewelry__item--pearl:nth-child(2) .elected-reason-jewelry__item-title--pearl::before {
	width: 23.5px;
	background-image: url(../jewelry/image/pearl/text-second.svg);
}
.elected-reason-jewelry__item--pearl:nth-child(3) .elected-reason-jewelry__item-title--pearl::before {
	width: 22px;
	background-image: url(../jewelry/image/pearl/text-third.svg);
}
.elected-reason-jewelry__item-image--pearl {
	grid-area: 1 / -1;
	position: relative;
	width: 50%;
	max-width: 250px;
	height: auto;
	margin-inline: auto 10px;
	top: 30px;
	object-fit: cover;
	z-index: 0;
}
.elected-reason-jewelry__item-image--pearl img {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
}
.elected-reason-jewelry__item-image--pearl::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border: solid 1px var(--_pearl_point_color);
	position: absolute;
	top: 10px;
	right: -10px;
}

@media screen and (min-width: 768px) {
	.elected-reason-jewelry__title--pearl {
		margin-bottom: 30px;
		font-size: 2.25rem;
	}
	.elected-reason-jewelry__item-title--pearl {
		width: 60%;
		padding: 20px 30px 20px 85px;
		font-size: 1.75rem;
		line-height: 1.4;
	}
	.elected-reason-jewelry__item-title-text--pearl {
		padding-left: 25px;
	}
	.elected-reason-jewelry__item-title--pearl::before {
		width: 30px;
		height: 60px;
	}
	.elected-reason-jewelry__item--pearl:nth-child(2) .elected-reason-jewelry__item-title--pearl::before {
		width: 55px;
		left: 17px;
	}
	.elected-reason-jewelry__item--pearl:nth-child(3) .elected-reason-jewelry__item-title--pearl::before {
		width: 45px;
		left: 20px;
	}
	.elected-reason-jewelry__item-image--pearl {
		max-width: 290px;
	}
}


/* ==========================================================================

	第二・第三階層　共通

============================================================================ */

/* ジュエリーを査定するときのポイント
------------------------------------ */
.jewelry-assessment {
	--_color_background: #faf7ef;
	--_color_brown: #ada591;
	--_color_light-blue: #90d3cd;
	box-sizing: border-box;
	padding: 20px 10px;
	background: var(--_color_background);
	border: solid 1px var(--_color_brown);
	position: relative;
}
.jewelry-assessment::before,
.jewelry-assessment::after {
	content: '';
	display: block;
	width: calc(100% - 4px);
	height: 4px;
	background: #e7e0cf;
	position: absolute;
	left: 50%;
	transform: translate(-50%,0);
}
.jewelry-assessment::before{
	top: 2px;
}
.jewelry-assessment::after{
	bottom: 2px;
}
/* 見出し */
.jewelry-assessment__title-wrapper {
	margin-bottom: 10px;
	text-align: center;
}
.jewelry-assessment__title-catch {
	display: inline-block;
	margin: 0 0 0.3em 2em;
	font-size: 1rem;
	line-height: 1.2em;
	position: relative;
}
.jewelry-assessment__title-catch::before {
	content: '';
	display: block;
	background: url(../jewelry/image/common/assessmentpoint_ttl_img.svg) no-repeat left center / contain;
	width: 4.6em;
	height: 3em;
	position: absolute;
	left: -4.8em;
	top: -1.8em;
}
.jewelry-assessment__title {
	color: #b3405a;
	font-family: var(--font_mincho);
	font-size: 1.6rem;
	letter-spacing: 0.04em;
	line-height: 1.2em;
}
/* 画像 */
.jewelry-assessment__image {
	margin-bottom: 2rem;
}
.jewelry-assessment__image img {
	margin: 0 auto;
}
.jewelry-assessment__support-wrapper {
	margin-bottom: 20px;
	padding: 0 10px;
	border: solid 2px var(--_color_light-blue);
}
.jewelry-assessment__support-heading {
	margin: -1rem 3% 10px;
	background: var(--_color_background);
	color: #a17d3a;
	font-size: 0.8rem;
	font-weight: normal;
	text-align: center;
	line-height: 1.3em;
}
.jewelry-assessment__support-heading span {
	display: block;
	font-size: 1.2em;
	font-weight: bold;
}
.jewelry-assessment__support-list {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: stretch;
	width: 100%;
}
.jewelry-assessment__support-list li {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 3% 10px 0;
	padding: 0.4rem;
	width: 31.333%;
	background: var(--_color_light-blue);
	color: var(--white);
	font-size: 0.8rem;
	text-align: center;
	position: relative;
}
.jewelry-assessment__support-list li:nth-child(3),
.jewelry-assessment__support-list li:nth-child(5) {
	margin-right: 0;
}
@media screen and (max-width: 340px){
	.jewelry-assessment__title {
		font-size: 7vw;
	}
	.jewelry-assessment__support-list li {
		font-size: 3.8vw;
	}
}
@media screen and (min-width: 768px){
	.jewelry-assessment {
		padding: 30px;
	}
	.jewelry-assessment__title {
		font-size: 2.2rem;
	}
	.jewelry-assessment__title-catch {
		font-size: 1.4rem;
	}
	.jewelry-assessment__support-wrapper {
		padding: 0;
		border: none;
	}
	.jewelry-assessment__support-heading {
		margin: -1rem 3% 10px;
		background: var(--_color_background);
		color: #e34f6e;
		font-size: 1.1rem;
		text-align: center;
		line-height: 1.4em;
	}
	.jewelry-assessment__support-list li {
		box-sizing: border-box;
		flex: 1;
		font-weight: bold;
		font-size: 0.9rem;
	}
	.jewelry-assessment__support-list li:not(:last-of-type) {
		margin-right: 2.4em;
	}
	.jewelry-assessment__support-list li:not(:last-of-type)::after {
		content: '+';
		display: block;
		color: var(--_color_brown);
		font-size: 2rem;
		position: absolute;
		right: -0.9em;
		top: 50%;
		transform: translateY(-50%);
	}
}
@media screen and (min-width: 1025px) {
	.jewelry-assessment {
		margin-block: 60px;
		padding: 30px;
	}
	/* 見出し ------------------------ */
	.jewelry-assessment__title-wrapper {
		margin-bottom: 30px;
	}
	.jewelry-assessment__title-catch {
		margin-bottom: 0.2em;
		font-size: 24px;
	}
	.jewelry-assessment__title-catch::before {
		width: 4.8em;
		left: -5.2em;
	}
	.jewelry-assessment__title {
		font-size: 36px;
		letter-spacing: 0.08em;
	}
	/* 画像 */
	.jewelry-assessment__image {
		margin-bottom: 20px;
	}
	.jewelry-assessment__image img {
		margin: 0 auto;
	}
	.jewelry-assessment__support-heading {
		margin: 0 0 10px;
		color: #e34f6e;
		font-weight: bold;
		font-size: 18px;
		text-align: center;
		line-height: 1.2em;
	}
	.jewelry-assessment__support-heading span {
		display: inline;
	}
	.jewelry-assessment__support-list li {
		box-sizing: border-box;
		flex: 1;
		padding: 0.4rem 0;
		font-weight: bold;
	}
}


/* ==========================================================================

	真珠（パール）

============================================================================ */

/* 査定のポイント
-----------------------------------------*/
.point {
	margin-block: var(--space_lg) 60px;
	background-color: #f7f4ec;
	padding: 10px 3px;
}
.point__wrap {
	border: 30px solid;
	border-image-source: url(../jewelry/image/pearl/point_frame-decoration.svg);
	border-image-slice: 150	150	150	150;
	border-image-repeat: stretch;
	border-image-width: 3;
}
.section__title {
	font-size: 1.5rem;
	color: #9a2a44;
	font-family: var(--font_mincho);
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}
.point__title-wrap--sub {
	text-align: center;
}
.point__title--sub {
	color: #fff;
	background-color: var(--_pearl_point_color);
	text-align: center;
	line-height: 1.2;
	display: inline-block;
	padding: 5px 10px;
	margin-bottom: 25px;
}
.point__list-wrap {
	display: grid;
	grid-template-columns: 145px auto;
	gap: 10px;
	margin-bottom: 20px;
}
.point__list-item + .point__list-item {
	margin-top: 15px;
}
.point__list-title {
	font-size: 1.125rem;
}
.point__list-text {
	font-size: 14px;
}
.point__list-text span {
	color: #9a2a44;
}
.point__text--call {
	font-size: 1.25rem;
	color: #9a2a44;
	font-family: var(--font_mincho);
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}
.point__list--call {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}
.point__list-item--call {
	color: #fff;
	background-color: var(--_pearl_point_color);
	padding: 2px 5px;
	text-align: center;
	flex: 1;
}
.point__text-attention {
	font-size: 0.75rem;
	line-height: 1.3;
}

@media screen and (min-width:500px) {
	.point__text-attention {
		text-align: center;
	}
}

@media screen and (min-width:600px) {
	.point__inner {
		width: 90%;
		margin: 25px auto;
	}
	.point__list--call {
		width: 80%;
		margin: 0 auto 15px;
	}
}

@media screen and (min-width:768px) {
	.point {
		padding: 15px 10px;
	}
	.point__wrap {
		border-image-width: 5;
	}
	.section__title {
		font-size: 2.25rem;
		margin-bottom: 25px;
	}
	.point__title--sub {
		font-size: 1.375rem;
		padding: 10px 20px;
		margin-bottom: 30px;
	}
	.point__img {
		width: 100%;
		height: 400px;
		object-fit: cover;
		object-position: 0 100%;
	}
	.point__list-wrap {
		display: grid;
		grid-template-columns: 23% auto;
		gap: 25px;
		margin: 0 auto 30px;
	}
	.point__list-item + .point__list-item {
		margin-top: 25px;
	}
	.point__list-title {
		font-size: 1.5rem;
		margin-bottom: 10px;
	}
	.point__list-text {
		font-size: 0.9rem;
	}
	.point__text--call {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
	.point__list--call {
		width: 85%;
		margin: 0 auto 20px;
	}
	.point__list-item--call {
		font-size: 1.25rem;
		padding: 7px 10px;
	}
	.point__text-attention {
		font-size: 0.875rem;
	}
}

@media screen and (min-width:465px) and (max-width:640px) {
	.point__img {
		width: 100%;
		height: 400px;
		object-fit: cover;
		object-position: 0 100%;
	}
}

@media screen and (min-width:641px) and (max-width:767px) {
	.point__img {
		width: 100%;
		height: 360px;
		object-fit: cover;
		object-position: 0 100%;
	}
}

@media screen and (max-width:399px) {
	.point {
		padding: 10px 2px;
	}
	.point__title--sub {
		font-size: 14px;
	}
}

@media screen and (min-width: 1025px) {
	.point {
		margin-block: 60px;
		padding: 15px;
	}
	.point__img {
		height: 415px;
	}
}
