@charset "UTF-8";


/* # =================================================================
# Style
# ================================================================= */
.privacy {
  width: 100%;
  background-color: #ffffff;
  border-radius: 38px;
  margin-top: 50px;
}
.privacy__inner {
  padding: 35px 60px 82px;
}

@media screen and (max-width: 425px) {
  .privacy__inner {
    padding: 0 26px 40px;
  }
}
.privacy-item {
  width: 100%;
}
.privacy-item + .privacy-item {
  margin-top: 50px;
}
.privacy-item__heading {
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px dashed #251e1c;
  line-height: 1.6;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.privacy-item__text span {
  font-size: 16px;
  line-height: 1.6;
}
.privacy-item__text ul {
  margin: 10px 0;
}
.privacy-item__text li {
  font-size: 16px;
  line-height: 1.6;
  list-style: disc;
  margin-left: 1em;
}
.privacy-item__text a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}
.privacy-item__text a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("../img/icon/icon_open.svg");
  margin-top: 3px;
  margin-left: 5px;
}
.privacy-item__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 15px;
}

@media screen and (max-width: 425px) {
  .privacy-item__text ul {
    margin: 0;
  }
	.privacy-item__text li {
		font-size: 15px;
		line-height: 1.5;
		margin-top: 10px;
	}
	.privacy-item__text span {
	  font-size: 15px;
	}
	.privacy-item + .privacy-item {
		margin-top: 40px;
	}
}