/* CSS Document */
/*ページタイトル*/
.pagetitle .contents_title.term::before{
	content: "Term";
}
.pagetitle .contents_title.privacy::before{
	content: "Privacy Policy";
}
/*コンテンツ*/
main{
}
.term_policy{
	box-sizing: border-box;
}
body[wc-view-code="sp"] .term_policy{
	padding: var(--headerHeight) 5vw;
}
body[wc-view-code="tb"] .term_policy{
	padding: var(--headerHeight) 7vw;
}
body[wc-view-code="pc"] .term_policy{
	padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}
.t_p_block{
	margin-top: 1.5rem;
	border-top: 1px solid var(--defColor);
	padding: 1rem;
	box-sizing: border-box;
}
body[wc-view-code="pc"] .t_p_block{
	padding: 1rem 1.5rem;
}
.t_p_block:last-of-type{
	border-bottom: 1px solid var(--defColor);
}
.t_p_block > dt{
	display: flex;
  gap: 0.75rem;
  box-sizing: border-box;
	font-size: 1.25rem;
	font-weight: 500;
}
.t_p_block > dt .num{
	border: solid var(--defColor) 1px;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  border-radius: 2.5px;
  flex: none;
  color: var(--defColor);
  font-size: 1.25rem;
  font-family: "Quicksand";
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.t_p_block > dd{
	box-sizing: border-box;
	display: flex;
	gap:0.5rem;
	flex-direction: column;
	padding-top: 0.75rem;
}
.t_p_block > dd .t_p_list{
	list-style-position: outside;
	padding-left: 1.45rem;
}
.t_p_block > dd .t_p_list li:not(:first-of-type){
	margin-top: 0.25rem;
}
.t_p_block > dd .tp_contact{
}
.t_p_block > dd .tp_contact > dt{
	font-weight: 500;
	display: flex;
	align-items: center;
}
.t_p_block > dd .tp_contact > dt::before{
	content: "";
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  flex: none;
  margin-right: 0.5rem;
  border-radius: 2px;
  background-color: var(--defColor);
}
.t_p_block > dd .tp_contact > dd{
}
.t_p_block > dd .tp_contact > dd .tp_tel{
	display: flex;
	font-family: "Quicksand";
	font-size: 1.5rem;
	width: fit-content;
  margin-bottom: 0.35rem;
  margin-top: 0.25rem;
	text-decoration: none;
	color: var(--defColor);
}
body:not([wc-view-code="sp"]) .t_p_block > dd .tp_contact > dd .tp_tel{
	pointer-events: none;
}
.t_p_block > dd .tp_contact > dd .tp_tel::before{
	content: "";
	width: 1.75rem;
	height: 1.75rem;
	background-color: var(--defColor);
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}