@charset "UTF-8";
#mainvisual img {
  width: 100%;
  max-width: 1920px;
  height: 300px;
  object-fit: cover;
}
.logo {
  width: 300px;
  margin: 10px 0;
}
#mainvisual h1 {
  position: absolute; /* 重ねたい子要素にabsolute */
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%); /* ベンダープレフィックス */
  -webkit-transform: translate(-50%, -50%); /* ベンダープレフィックス */
  transform: translate(-50%, -50%); /* センター寄せの修正 */
  color: #fff;
  font-size: 2.5rem;
  margin: 0!important; /* 文字がずれている場合や */
  padding: 0!important; /* 文字が折り返される場合 */
  white-space: nowrap;
}
  .privacy-policy {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 30px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fafafa;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .privacy-policy h2 {
    text-align: center;
  }
  .privacy-policy h2,
  .privacy-policy h3 {
    color: #000;
    margin-top: 2em;
    margin-bottom: 0.6em;
    font-weight: 700;
  }
  .privacy-policy p {
    font-size: 1rem;
    margin-bottom: 1em;
  }
  .privacy-policy ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-bottom: 1em;
  }
  .privacy-policy a {
    color: #2a5d9f;
    text-decoration: underline;
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
  }
  .privacy-policy a:hover {
    color: #144a75;
  }
  .privacy-policy strong {
    color: #000;
  }
  .privacy-policy small {
    color: #666;
    font-size: 0.875rem;
    display: block;
    margin-top: 1em;
  }