@charset "UTF-8";

.privacy-policy {
    padding: 2em;
    overflow-y: scroll;
	background-color: #fff;
}
.privacy-policy__box {
    margin-top: 30px;
}
.privacy-policy__box:first-child {
    margin-top: 0px;
}

.privacy-policy__head {
    font-size: 15px;
    font-weight: 600;
	letter-spacing: 1px;
}

.privacy-policy__detail {
    margin-top: .5em;
	font-size: 15px;
	letter-spacing: 1px;
}

/* スクロール領域のスタイル */
.scroll-container {
margin-top: 20px;
  width: 100%;
  height: 260px;
  overflow-y: scroll; /* 常にスクロールバーを表示 */
  scrollbar-gutter: stable; /* Chrome 94+でスクロールバー領域を常に確保 */
}

/* Webkit用スクロールバーカスタマイズ */
.scroll-container::-webkit-scrollbar {
  width: 40px;
}

.scroll-container::-webkit-scrollbar-track {
  background: #fff;
}

.scroll-container::-webkit-scrollbar-thumb {
  background-color: #A40B5D;
  border-radius: 6px;
  border: 4px solid #fff;
}

/* Firefox用 */
.scroll-container {
  scrollbar-color: #A40B5D #fff; /* thumb / track */
  scrollbar-width: thin; /* または auto / none */
}