@charset "utf-8";
/*===============================================
 *	プライバシーポリシー
===============================================*/
.privacy {
  background-color: #fff;
}
.privacy__content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy__lead {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 60px;
}

.privacy__item {
  margin-bottom: 50px;
}

.privacy__head {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 3px solid var(--color-gold);
  line-height: 1.4;
}

.privacy__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
}

.privacy__list {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 20px;
}

.privacy__list li {
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.25em;
  margin-bottom: 10px;
  position: relative;
}
.privacy__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 10px;
  height: 5px;
  border-left: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  transform: rotate(-45deg);
}
.privacy__contact-box {
  background-color: #f9f9f9;
  padding: 30px;
  border: 1px solid #eee;
}

.privacy__contact-box p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 5px;
}
a.txt_link{
  font-weight: bold;
  text-decoration: underline;
}
a.txt_link:hover{
  text-decoration: none;
}
@media screen and (max-width: 568px) {
  .privacy__lead {
    margin-bottom: 40px;
  }

  .privacy__item {
    margin-bottom: 40px;
  }

  .privacy__head {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .privacy__contact-box {
    padding: 20px;
  }
}