/*-----追加250801--------------------------------*/
.modal-open {
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* モーダルと背景の指定 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 70%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 9999;
}

/* モーダルの擬似要素の指定 */
.modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
:root {
  --modal-close-mark: 33px;
}
.modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1330px;
  width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 20px;
  width: var(--modal-close-mark);
  height: var(--modal-close-mark);
  color: #fff;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 1px;
  background-color: #fff;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

/* モーダルのコンテンツ部分の指定 */
.privacy-policy {
  text-align: left;
  line-height: 1.8;
  margin-bottom: 240px;
}
@media (max-width: 834px) {
  .privacy-policy {
    margin-bottom: 60px;
  }
}

/* スクロールバー全体の幅 */
.privacy-policy::-webkit-scrollbar {
  width: 6px;
}

/* スクロールバーのトラック（背景部分） */
.privacy-policy::-webkit-scrollbar-track {
  background: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* スクロールバーのつまみ部分 */
.privacy-policy::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.privacy-policy__inner {
  width: 90%;
  max-width: 1084px;
  margin: 0 auto;
}

/* モーダルのコンテンツ部分 */
.privacy-policy__ttl {
  font-family: "Nunito Sans", sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.privacy-policy__item + .privacy-policy__item {
  margin-top: 40px;
}

.privacy-policy__detail-list li {
  padding-left: 16px;
  position: relative;
  line-height: 1.8;
}
.privacy-policy__detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  aspect-ratio: 1;
  background-color: #d3d4d6;
  border-radius: 50%;
}

.privacy-policy__item-ttl {
  font-size: 20px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  font-weight: bold;
  border-bottom: 1px solid #262626;
}

.privacy-policy__address {
  margin-top: 10px;
}

@media (max-width: 834px) {
  .privacy-policy__ttl {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .privacy-policy__item + .privacy-policy__item {
    margin-top: 20px;
  }
  .privacy-policy__item-ttl {
    font-size: 18px;
  }
}
/*-----追加250825--------------------------------*/
.privacy-policy__inner {
  width: 90%;
  max-width: 1084px;
  margin: 0 auto;
}
@media (max-width: 834px) {
  .privacy-policy__inner {
    width: 100%;
  }
}

/* モーダルのコンテンツ部分 */
.privacy-policy__ttl {
  font-family: "Nunito Sans", sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.privacy-policy__item + .privacy-policy__item {
  margin-top: 40px;
}

.privacy-policy__detail-list li {
  padding-left: 16px;
  position: relative;
  line-height: 1.8;
}
.privacy-policy__detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  aspect-ratio: 1;
  background-color: #d3d4d6;
  border-radius: 50%;
}

.privacy-policy__item-ttl {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.privacy-policy__address {
  margin-top: 10px;
}

@media (max-width: 834px) {
  .privacy-policy__ttl {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .privacy-policy__item + .privacy-policy__item {
    margin-top: 20px;
  }
  .privacy-policy__item-ttl {
    font-size: 18px;
  }
}
