/* =============================================================
  見積り　.estimate_list
============================================================= */
/* ボタン
-------------------------------------------*/
.estimate_list .block_inner > p{
	margin-bottom:1rem;
}

.estimate_list .flex{
	gap:25px 10px;
	margin:0 10px;
}

.estimate_list .flex a{
	width:48%;
}

/* a */
.estimate_list a {
	display: block;
	background-color: var(--color-primary);
	border-radius: 0.2rem;
	padding: 0.7rem;
}
/* a内p */
.estimate_list a p {
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	padding: 2rem 0.5rem;
	border:2px solid #fff;
	border-radius:0.2rem;
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:100%;
}


/* =============================================================
  プライバシーポリシー　.privacy-policy
============================================================= */
/* 共通
-------------------------------------------*/
/* リスト
--------------------------------*/
/* ul  */
.site-body-container .privacy-policy ul {
	display: block; /* style.cssの打消し */
	margin-top: 1.5rem;
}
/* li */
.site-body-container .privacy-policy li {
	line-height: 1; /* style.cssの打消し */
	border-bottom: 1px dotted var(--color-pale);
	margin-top: 0.8rem;
	padding-bottom: 0.5rem;
}
/* liのマーク */
.site-body-container .privacy-policy li::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: var(--color-primary);
	border-radius: 0.2rem;
	margin-right: 0.3rem;
}

/* 見出し
--------------------------------*/
/* h3 */
.privacy-policy h3 {
	font-size: 1.2rem; /* style.cssの上書き */
	border-top: 1px dotted var(--color-border);
	border-bottom: 1px dotted var(--color-border);
	padding: 1rem;
	display:flex;
	justify-content:center;
	align-items:center;
	position:relative;
}

.privacy-policy h3::before{
	content:'';
	position:absolute;
	bottom:7px;
	left:0;
	height:2px;
	width:100%;
	background:#fff;
}

/* h3下p */
.privacy-policy h3 + p {
	margin-top: 0.5rem;
}

/* リンク
--------------------------------*/
/* a */
.site-body-container .privacy-policy a {
	display: inline;
}
.site-body-container .privacy-policy a:hover {
	text-decoration: underline;
}


/* =============================================================
  特定商取引法に基づく表示　.law
============================================================= */
/* 共通
-------------------------------------------*/
/* テーブル
--------------------------------*/
/* thの幅 */
.law th {
	width: 25%;
	text-align: left;
}