@charset "utf-8";

html, body {
  margin: 0;
  padding: 0;
  
}

body {
  background-color: white;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  box-sizing: border-box;
  font-family: sans-serif;
}

.title,
.copyright_text {
  text-align: center;
}

.custom-link,
.link-list a {
  color: blue;
  text-decoration: underline;
}

.link-list dt {
  color: #000000;
}

.link-list dd {
  margin-left: 15px;
}

h1 {
  margin-bottom: 60px;
}

p {
  margin-top: 5px;
}

li {
  margin-top: 10px;
  margin-bottom: 10px;
}

footer {
  margin-top: 60px;
  text-align: center;
}

p, ol,li, dd, dt, .custom-link, .link-list a {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* 🌐 レスポンシブ対応（スマホなど小画面） */
@media screen and (max-width: 600px) {
  body {
    padding: 0 15%;
  }

  h1 {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }

  p, li {
    font-size: 0.95rem;
  }

  .link-list dd {
    margin-left: 10px;
  }
}