@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */
/*タイトル(共通)*/
.spot-heading01 h2{
	font-size: clamp(25px,2.5vw,35px);
	position: relative;
	z-index: 2;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: .15em;
	color: #44362b;
	text-align: center;
	
}
.spot-heading01 p{
	display: block;
	color: #ff2e6d8e;
	opacity: .3;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: clamp(50px,7vw,90px);
	line-height: 1;
	text-align: center;
}

.spot-heading02{
	font-size: clamp(40px,6vw,60px);
	font-style: italic;
	text-align: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.spot-heading03{
	font-size: clamp(19px, 2.7vw, 30px);
    line-height: 1em;
    font-weight: 700;
	text-align: center;
	font-family: 'YakuHanJPs','Noto Sans Japanese',sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial,Helvetica, Verdana;
}
.spot-heading03+p{
	margin-top: 0.5em;
	margin-bottom: 1em;
	font-size: clamp(14px,2vw,18px);
	font-weight: bold;
	inline-size: fit-content;
	margin-inline: auto;
	font-family: 'YakuHanJPs','Noto Sans Japanese',sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial,Helvetica, Verdana;
}
.line{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #000000;
	margin: 1.9607% auto;
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}

.nav_bk{
	background-color: var(--main-color);
}

/*パンくず*/
.sec_pankuzu{
	padding: 0px;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}

/* タグ */
.kakomi01 span {
	padding: 3px 10px 2px 10px;
	margin: 4px 1px 10px;
	background-color: var(--main-color);
	border: 1px solid var(--accent-color1);
	color:#FFF;
	border-radius: 10px;
	text-align: center;
	display: inline-block;
	font-size: clamp(14px, 1.3vw, 14px);
}
.kakomi02{
	padding: 3px 20px 2px 20px;
	margin: 4px 1px 10px;
	background-color: #e7838a;
	border: 1px solid #aeaeae;
	border-radius: 10px;
	text-align: center;
	display: inline-block;
	font-size: clamp(14px, 1.3vw, 14px);
}

/* タグ（左右が揃う）  */
.kakomi-tag01 {
	display: flex;
	flex-wrap: wrap; /* 子要素を折り返す */
	gap: 5px;
	width: 100%;
	justify-content: space-between; /* 左右のボックスを揃える */
}
.kakomi-tag01 p {
	background-color: var(--main-color);
	padding: 4px 15px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
	background-color: #FFFCEF;
	border: 1px solid #aeaeae;
	border-radius: 10px;
}
.kakomi-tag01 .end{		/* などを末尾につけたい場合に */
	background-color:transparent;
	border: 1px solid transparent;
	padding: 4px 15px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	width: 20px;
	box-sizing: border-box;
	text-align: right; /* 水平方向の中央揃え */
}


/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space);
	background-color: var(--base-color);
	/* background-image: url(../img/bg_02.png);
	background-repeat: repeat;
	background-position: center;
	background-size: cover; */
}

/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 10px;
}
@media only screen and (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 20px;
	}
}

/*各ページ遷移バナー*/
.topbnr_sec{
	padding: 50px 0 50px 0;
    position: relative;
	z-index: 1;
	background-color: #f7faff;
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #eaedf2, #eaedf2 1px, #f7faff 1px, #f7faff);
}

.topbnr_sec-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

@media only screen and (max-width: 568px) {
	.topbnr_sec-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 2fr;
		grid-column-gap: 10px;
		grid-row-gap: 10px;
	}
}

/*特徴*/
.top-container{
	max-width: 780px;
	margin: auto;
	position: relative;
}
.top-card__item{
	display: grid;
	grid-template-columns: 150px 1fr;
	grid-template-rows: 1fr;
	gap:40px;
	
	padding: 10px 20px 10px 20px;
	align-items: center;
	border-radius: 50px;
	background-color: rgba(33, 63, 130, 0.1);	
	margin-bottom: 20px;
}
.top-card__item img{	
	padding-left: 20px;
}
.top-card__item p{
	display: inline-block;
    font-size: clamp(16px, 2.4vw, 20px);
	font-weight: bold;
    line-height: 1.5;
    margin: 0px 0px;
}
.top-card__item span{
	display: inline-block;
	font-size: clamp(15px, 1.4vw, 16px);
	color:#ff7c01;
	font-weight: normal;
	line-height: 1.5;
	margin: 0px 0px;
}
.top-card__item H4 {
	position: relative;
	font-size: clamp(16px, 1.4vw, 20px);
	color:var(--accent-color1);
	line-height: 1.2;
}

.top-card__item H4::before {
	content: attr(data-number);
	position: absolute;	
	padding-left: 80px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #1e824dd2;
	font-size: clamp(27px, 2vw, 45px);
}

@media only screen and (max-width: 633px) {
	.top-card__item{
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: 2fr;
		gap:5px;
		border-radius: 10px;
		padding: 10px 10px 5px 10px;
		margin-bottom: 10px;
	}
	.top-card__item img{	
		padding-left: 0px;
	}
	.top-card__item H4::before {
		padding-left: 70px;
	}
}


/*TOP POINT*/
.top_sec1{
	padding: var(--v-space) 0;
	background:
		linear-gradient(135deg, #fffcef 25%, transparent 25%) -50px 0,
		linear-gradient(225deg, #fffcef 25%, transparent 25%) -50px 0,
		linear-gradient(315deg, #fffcef 25%, transparent 25%),
		linear-gradient(45deg, #fffcef 25%, transparent 25%);
		background-size: 100px 100px;
		background-color: #ffdf5f62;
}

.top_sec1-imgtext {
	padding:clamp(45px, 7vw, 60px) 0;
	/* background-color: rgba(255, 255, 255, 0.7); */
}
.top_sec1-imgtext_bg{
	background-color: rgba(255, 255, 255, 0.7);
}

.top_sec1-imgtext + .top_sec1-imgtext {
	padding-top: 0;
}


.top_sec1-imgtext-container {
	display: flex;
	flex-direction: column;
	/*gap: clamp(45px, 6vw, 80px);*/	/* テンプレ初期値 */
	gap: clamp(25px, 6vw, 35px);
}


@media print, screen and (min-width: 769px) {
	.top_sec1-imgtext-container img{	
		margin: 0px auto;
		min-height: 400px;
		aspect-ratio: 3 / 2;
		object-fit: cover;
		width: 100%;
	}

	.top_sec1-imgtext-container {
		flex-direction: row;
		align-items: center;
	}

	.top_sec1-imgtext-container.reverse {
		flex-direction: row-reverse;
	}

	.top_sec1-imgtext-container > .top_sec1-text {
		flex: 1;
		min-width: 17em;
  	}

	.top_sec1-imgtext-container > .top_sec1-img {
		/*flex: 2;*/	/* テンプレ初期値 */
		flex: 0.9;
	}
}

/* TOP 買取専用ダイヤル */
.top_sec2{
	padding: clamp(25px, 7vw, 45px) 0;
	background-color: #ff8e03;
}
.top_sec2_pcspwid{
	margin: 0 auto;
	width: 150px;
}
.top_sec2_heading{
	color:#FFF;
	font-size: clamp(22px, 5vw, 30px);
}

.top_sec2_tel{
	font-size: clamp(30px, 5vw, 40px);
	font-weight: 600;
	color: #FFF;
}
.top_sec2_tel rt{
	font-size: clamp(12px, 1.4vw, 14px);
	font-weight: normal;
}

/*買取の流れ*/
.top_sec3{
	padding: clamp(25px, 7vw, 45px) 0 var(--v-space);
	background-color: #FFF;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.top_sec3_pcspwid{
	margin: 0 auto;
	width: 150px;
}
.top_sec3_heading{
	color:#ff8e03;
	font-size: clamp(22px, 5vw, 30px);
	text-align: center;
}


/*======= 取扱商品 ======*/

/* 冒頭の取扱商品一覧カード */
.pr_card__item{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap:10px;
}
@media only screen and (max-width: 767px) {
	.pr_card__item{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap:10px;
	}
 }
.pr_card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	/*ここまで*/

	background-color: #FFFCEF;

}
.pr_card__item H3{
	padding: 5px 0;
	font-size: clamp(15px,1.6vw,16px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}
.pr_card__item img{
	margin: 0 auto;
	width: 60%;
}

.pr_sec1{
	padding: var(--v-space) 0;
	background-color: #f6f9ff;
	background-image: url(../img/bg_grid.png);
	background-repeat: repeat;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 商品リスト */
.pr_sec1-imgtext {
	padding:clamp(25px, 6vw, 35px) 0;
	margin-bottom: 50px;
}

/* .pr_sec1-imgtext + .pr_sec1-imgtext {
	padding-top: 0;
} */

.pr_sec1-imgtext-container {
	display: flex;
	flex-direction: column;
	gap: clamp(25px, 6vw, 35px);
}

.pr_sec1-imgtext-container img{	
	margin: 0px auto;
}

@media print, screen and (min-width: 1000px) {
	.pr_sec1-imgtext-container {
		flex-direction: row;
		align-items:center;
	}

	.pr_sec1-imgtext-container.reverse {
		flex-direction: row-reverse;
	}

	.pr_sec1-imgtext-container > .pr_sec1-text {
		flex: 1;
		min-width: 17em;
	}

	.pr_sec1-imgtext-container > .pr_sec1-img {
		flex: 0.4;
		min-width: 294px;
	}
}

/* 背景色 */
.bg-pr_sec1{
	position: relative;
}
.bg-pr_sec1::before {
	position: absolute;
	display: block;
	content: '';
	background-image: linear-gradient(to right, #ffd2df, #ffd2df 10px, #fff0f5 10px, #fff0f5 );
	background-size: 20px 100%;
	margin: auto;
	right: 0;
	z-index: -1;
	width: 80%;
	height: 75%;
	min-height: 250px;
	bottom: -35px;
}
@media (max-width: 767px) {
	.bg-pr_sec1::before {
		width: 100%;
		height: 80%;
		right: 0px;
	}
}

.bg2-pr_sec1{
	position: relative;
}
.bg2-pr_sec1::before {
	position: absolute;
	display: block;
	content: '';
	background-image: linear-gradient(to right, #FFF3C2, #FFF3C2 10px, #FFFCEF 10px, #FFFCEF );
	background-size: 20px 100%;
	margin: auto;
	left: 0;
	z-index: -1;
	width: 80%;
	height: 75%;
	min-height: 250px;
	bottom: -35px;
}
@media (max-width: 767px) {
	.bg2-pr_sec1::before {
		width: 100%;
		height: 80%;
		right: 0px;
	}
}

.bg3-pr_sec1{
	position: relative;
}
.bg3-pr_sec1::before {
	position: absolute;
	display: block;
	content: '';
	background-image: linear-gradient(to right, #d5fce7, #d5fce7 10px, #f0fff7 10px, #f0fff7 );
	background-size: 20px 100%;
	margin: auto;
	right: 0;
	z-index: -1;
	width: 80%;
	height: 75%;
	min-height: 250px;
	bottom: -35px;
}
@media (max-width: 767px) {
	.bg3-pr_sec1::before {
		width: 100%;
		height: 80%;
		right: 0px;
	}
}

.bg4-pr_sec1{
	position: relative;
}
.bg4-pr_sec1::before {
	position: absolute;
	display: block;
	content: '';
	background-image: linear-gradient(to right, #dbe6ff, #dbe6ff 10px, #f0f5ff 10px, #f0f5ff );
	background-size: 20px 100%;
	margin: auto;
	left: 0;
	z-index: -1;
	width: 80%;
	height: 75%;
	min-height: 250px;
	bottom: -35px;
}
@media (max-width: 767px) {
	.bg4-pr_sec1::before {
		width: 100%;
		height: 80%;
		right: 0px;
	}
}

/* テキストの位置調整 */
.pr_sec1-top{
	position: relative;
	top:50px;
}
@media only screen and (max-width: 999px) {
	.pr_sec1-top{
		top:0px;
	}
}

/* 店内写真一覧 */
.pr_sec1__item{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:10px;
}
@media only screen and (max-width: 768px) {
	.pr_sec1__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap:10px;
	}
 }
.pr_sec1__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 1;
	/*ここまで*/
}

/*======= 生前・遺品整理 ======*/

/* 冒頭の取扱商品一覧カード */
.or_card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
	max-width: 500px;
	margin: 0 auto;
}
@media only screen and (max-width: 768px) {
	.or_card__item{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap:10px;
	}
 }
.or_card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	/*ここまで*/

	background-color: #FFFCEF;

}
.or_card__item H3{
	padding: 5px 0;
	font-size: clamp(15px,1.6vw,16px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}
.or_card__item img{
	margin: 0 auto;
	width: 60%;
}

.or_sec1 {
	padding: var(--v-space) 0;
}

/* TOP 買取専用ダイヤル */
.or_sec2{
	padding: clamp(25px, 7vw, 45px) 0;
	background-color: #062D51;
}
.or_sec2_pcspwid{
	margin: 0 auto;
	width: 150px;
}
.or_sec2_heading{
	color:#FFF;
	font-size: clamp(22px, 5vw, 30px);
}

.or_sec2_tel{
	font-size: clamp(30px, 5vw, 40px);
	font-weight: 600;
	color: #FFF;
}
.or_sec2_tel rt{
	font-size: clamp(12px, 1.4vw, 14px);
	font-weight: normal;
}

.or_sec3{
	padding: var(--v-space2) 0;
	background-color: #FFF;
	background-image: url(../img/bg_grid.png);
	background-repeat: repeat;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/*======= ご注文の流れ ======*/
.fl_sec1{
	padding: 30px 0 100px 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: 30px 0 100px 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
div.faq2 p.b {
	font-weight: bold;
	color: #444;
}
div.faq2 p.b::first-letter {
	color: var(--main-color);
	font-size: 120%;
	padding-right: 2px;
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1.45em;
	padding-left: 1.45em;
	display: block;
}
div.faq2 p::first-letter {
	color: var(--accent-color1);
	font-size: 120%;
	padding-right: 2px;
	font-weight: bold;
}
hr.faqHr{
	height: 0px;
	border: 1px dashed var(--accent-color2);
	margin: 20px auto;
}



/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: image-set(
		url(../img/bg_01.webp) type("image/webp"),
		url(../img/bg_01.jpg) type("image/jpeg")
	);
	background-size: auto;
	background-position: center;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

@media only screen and (max-width: 568px) {
	.info_sec1 {
		background-image: image-set(
			url(../img/bg_01_sp.webp) type("image/webp"),
			url(../img/bg_01_sp.jpg) type("image/jpeg")
		);
		background-size: auto;
		background-repeat: no-repeat;
	}
}

 .info_haba{
	max-width: 800px;
	margin: 0 auto;
 }

.info_txt {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(5ch, max-content));
	grid-gap: 0px;
}
@media only screen and (max-width: 768px) {
	.info_txt{
		display: grid;
		grid-template-columns: repeat(2, minmax(5ch, max-content));
		grid-template-rows: 1fr;
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
}
.info_txt p {
	display: inline-block;
	width: max-content;
	font-size: 16px;
	padding: 0;
	line-height: 1.4;
  }

.info_sec1-frame01{
	padding: 40px;
	background-image: url(../img/bg_frame01.jpg);
	background-size: cover;
	background-position: center;
}
@media screen and (max-width: 568px) {
	.info_sec1-frame01 {
		padding: 15px 15px 15px 15px;
	}
}


/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 180px;
}
.info2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	/* width: 400px; */
}
@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.info2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}


/*会社概要*/
.bg_b{
	background: #ffffffc9;
	padding:20px;
}

.info-sec1-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

@media print, screen and (min-width: 568px) {
	.info-sec1-container {
		grid-template-columns: repeat(6, 1fr);
	}
}
.info_sec2{
	padding: var(--v-space) 0;	
	background-color: #fef4f4;
	background-image: url(../img/bg_01.jpg);

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.access1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.access2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}
