/********************************************************
 * Optional Reset
 ********************************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0;
  font-size: 100%; font: inherit; vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/********************************************************
 * Custom Styles for Privacy Policy
 ********************************************************/
body {
  font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN", "游ゴシック体", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #f8f9fa; /* 薄いグレー背景 */
  color: #333;
  margin: 0;
  padding: 0;
  max-width: 100%;
}


.container {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* メインコンテンツ枠 */
.privacy {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ccc;
}

/* タイトル、見出し */
.head_title p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.privacy-ttl {
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.privacy-ttl i {
  margin-right: 8px;
  color: #333;
}

/* 水平線 */
.privacy hr {
  margin: 10px 0 20px;
  border: none;
  border-top: 1px solid #ccc;
}

/* 段落 */
.privacy p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* リスト */
.privacy ul.list-unstyled li {
  margin-bottom: 8px;
}
.privacy ul.list-unstyled li i {
  margin-right: 6px;
  color: #666;
}

/* フッター*/
.footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  display: inline-block;
  margin: 0 20px;
}

footer .copyright {
  margin-top: 20px;
  color: #666;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 15px;
    margin: 0 auto 50px;
  }
  .head_title p{
	font-size: 25px;
  }
  .privacy-ttl{
	font-size: 20px;
	margin-top: 40px;
  }
  .footer{
	font-size: 15px;
  }
  .footer .copyright{
	font-size: 14px;
  }
}
