/* CSS Document */
/*ページタイトル*/
.page_title.term .contents_title::before{
	content: "Term";
}
.page_title.privacy .contents_title::before{
	content: "Privacy Policy";
}
/*コンテンツ*/
.term_policy{
	box-sizing: border-box;
	background-color: var(--defBgColor);
}
body[wc-view-code="sp"] .term_policy{
	padding: var(--headerHeight) 7vw;
}
body[wc-view-code="tb"] .term_policy{
	padding: var(--headerHeight) 5vw;
}
body[wc-view-code="pc"] .term_policy{
	padding: var(--headerHeight) calc((100vw - 800px) / 2);
}
.term_policy .t_p_top_text{
	line-height: 1.8rem;
}
.term_policy > .t_p_block{
}
.term_policy > .t_p_block:first-of-type{
	margin-top: 1.75rem;
}
.term_policy > .t_p_block:not(:first-of-type){
	margin-top: 1.25rem;
}
.term_policy > .t_p_block > dt{
	display: flex;
  gap: 0.5rem;
  align-items: baseline;
  border-bottom: solid 1px var(--borderColor);
  padding-bottom: 0.25rem;
  font-size: 1.2rem;
}
.term_policy > .t_p_block > dt .num{
	width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--borderColor);
  box-sizing: border-box;
  border-radius: 50%;
  font-family: "Roboto";
  font-size: 1.25rem;
  color: var(--supportColor);
	background-color: #fff;
}
body:not([wc-view-code="sp"]) .term_policy > .t_p_block > dt .num{
	width: 36px;
  height: 36px;
}
.term_policy > .t_p_block > dd{
	padding: 1rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap:0.75rem;
}

.term_policy > .t_p_block > dd ul{
	padding-left: 1rem;
	list-style-position: outside;
}
.term_policy > .t_p_block > dd ul li{
	line-height: 1.65rem;
}
.term_policy > .t_p_block > dd ul li:not(:first-of-type){
	margin-top: 0.5rem;
}
.term_policy > .t_p_block > dd .tp_contact{
}
.term_policy > .t_p_block > dd .tp_contact > dt{
	color: var(--supportColor);
}
.term_policy > .t_p_block > dd .tp_contact > dd{
	display: flex;
  gap: 0.75rem;
  flex-direction: column;
  padding-top: 0.75rem;
}
.term_policy > .t_p_block > dd .tp_contact > dd > .tp_tel{
	font-family: "Roboto";
	display: flex;
	gap:0.5rem;
	text-decoration: none;
	align-items: center;
	font-size: 1.35rem;
}
.term_policy > .t_p_block > dd .tp_contact > dd .tp_tel .tp_icon{
	width: 25px;
	height: 25px;
	border: solid 1px var(--defColor);
	position: relative;
	z-index: 1;
	border-radius: 50%;
}
.term_policy > .t_p_block > dd .tp_contact > dd .tp_tel .tp_icon::before{
	content: "";
  -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;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: var(--defColor);
  width: 27px;
  height: 27px;
}
body:not([wc-view-code="sp"]) .term_policy > .t_p_block > dd .tp_contact > dd a{
	pointer-events: none;
}