
  /* 全体のベース */
  html {
    box-sizing: border-box;
  }
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }

  body {
    margin: 0;
    padding: 0;
      font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
    font-size: 15px;
    line-height: 1.8;
    color: #222;
    background-color: #f5f5f7;
  }

  /* ポリシーコンテンツの枠 */
  .policy-section {
    max-width: 960px;
    margin: 80px auto;
    padding: 40px 32px 64px;
  }

  /* 見出し */
  .policy-section h1 {
    font-size: 3.7rem;
		font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.5em;
  }

  .policy-section h2 {
    font-size: 2rem;
    margin: 2.2em 0 0.8em;
    padding-left: 0.6em;
    border-left: 5px solid #0095de; 
    font-weight: 600;
  }

  .policy-section h3 {
    font-size: 1.5rem;
    margin: 1.6em 0 0.4em;
    font-weight: 600;
  }


  .policy-section p {
    margin: 0.5em 0;
  }

  .policy-section ul {
    margin: 0.4em 0 0.8em;
    padding-left: 1.5em;
  }

  .policy-section li {
    margin-bottom: 0.25em;
  }


  .policy-section hr {
    border: none;
    border-top: 1px solid #e3e3e3;
    margin: 2.5em 0;
  }


  .policy-section a {
    color: #0054a6;
    text-decoration: underline;
    word-break: break-all;
  }


  .policy-section strong {
    font-weight: 600;
  }


  .policy-section .contact-block {
    margin-top: 1em;
    padding: 0.8em 1em;
    border-radius: 4px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
  }


  @media screen and (max-width: 768px) {
		
    .policy-section {
      margin: 48px 16px 56px;
      padding: 24px 18px 40px;
    }

    .policy-section h1 {
      font-size: 3rem;
    }

    .policy-section h2 {
      font-size: 1.8rem;
      margin-top: 1.8em;
    }

    .policy-section h3 {
      font-size: 1.5rem;
    }

    body {
      font-size: 14px;
    }
  }




/* テーブルの基礎スタイル */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.policy-table th,
.policy-table td {
  border: 1px solid #ddd;
  padding: 14px 12px;
  vertical-align: top;
  text-align: left;
}

/* ヘッダー */
.policy-table th {
  background: #f3f5f7;
  font-weight: 600;
}

/* --- レスポンシブ：横スクロール or カード形式 --- */


@media screen and (max-width: 768px) {
  .policy-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .policy-table th,
  .policy-table td {
    font-size: 14px;
    padding: 10px 8px;
  }
}

.policy-table colgroup col:nth-child(1) {
  width: 55%; /* ← 少し狭める */
}

.policy-table colgroup col:nth-child(2) {
  width: 25%; /* ← 広げる */
}

.policy-table colgroup col:nth-child(3) {
  width: 20%; /* ← 広げる */
}


@media screen and (max-width: 480px) {
  .policy-table th,
  .policy-table td {
    font-size: 13px;
    padding: 8px 6px;
  }
}


/* ── 列幅のバランス調整（PC向け） ── */
@media screen and (min-width: 769px) {
  .policy-table th:nth-child(1),
  .policy-table td:nth-child(1) {
    width: 55%; /* 1列目を少し細く */
  }

  .policy-table th:nth-child(2),
  .policy-table td:nth-child(2) {
    width: 25%; /* 2列目を広めに */
  }

  .policy-table th:nth-child(3),
  .policy-table td:nth-child(3) {
    width: 20%; /* 3列目も少し余裕を */
  }
}


.page-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #333;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none; /* 最初は非表示 */
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: opacity 0.3s ease;
}

/* ホバー時（PCのみ） */
@media (hover: hover) {
  .page-top-btn:hover {
    background: #555;
  }
}

/* スマホは少し小さく */
@media screen and (max-width: 480px) {
  .page-top-btn {
    width: 42px;
    height: 42px;
    right: 16px;
    bottom: 16px;
    font-size: 18px;
  }
}

.footer-credit {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
	font-weight: 400;
  color: #ccc;  
  letter-spacing: 0.03em;
  opacity: 0.9;
}
.footer-lang {
	margin-top: 150px;
}

@media screen and (max-width: 480px) {
  .footer-credit {
    font-size: 12px;     
  }
	.footer-lang {
	margin-top: 50px;
}

}

