@charset "UTF-8";

/* ----------------------------------------
   Base / Reset
   ---------------------------------------- */
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
  /* スマホは15px */
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
}
/* PCは16px */
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
/* ----------------------------------------
   Layout Blocks
   ---------------------------------------- */
/* Header */
.header {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}
.header__logo-link {
  display: block;
  width: 105px;
}
.header__logo-img {
  display: block;
  width: 100%;
  height: auto;

  /* placeholder color */
}
/* Main */
.main {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}
/* Container (共通の幅制限) */
.container {
  max-width: 1200px;
  margin: 0 auto;
}
/* ----------------------------------------
   Component: Legal Document
   ---------------------------------------- */
.legal-doc__title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}
.legal-doc__section {
  margin-bottom: 40px;
}
.legal-doc__heading {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.legal-doc__text {
  margin-bottom: 15px;
}
.legal-doc__list {
  list-style: none;
  padding-left: 1.5em;
  margin-bottom: 15px;
}
.legal-doc__list-item {
  position: relative;
  margin-bottom: 5px;
}
/* 番号付きリストの調整 */
.legal-doc__ol {
  padding-left: 1.5em;
  margin-bottom: 15px;
}
/* ----------------------------------------
   Component: Legal Table
   ---------------------------------------- */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.legal-table th,
.legal-table td {
  border: 1px solid #ddd;
  padding: 15px;
  vertical-align: top;
  text-align: left;
}
.legal-table th {
  width: 25%;
  background-color: #f9f9f9;
  font-weight: bold;
}
/* SP対応 */
@media screen and (max-width: 767px) {
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .legal-table th {
    background-color: #eee;
    border-bottom: none;
  }
}
/* ----------------------------------------
Footer
---------------------------------------- */
.footer {
  background-color: var(--color-white);
  padding: 3rem 1rem 2rem;
  text-align: center;
}
.footer__list {
  display: flex;
  justify-content: center;
  line-height: 1;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 2rem 0;
  font-family: sans-serif;
  font-weight: 400;
  padding-inline-start: 0;
}
.footer__item {
  list-style: none;
}
.footer__item:not(:first-child) {
  margin-left: 1em;
  border-left: 1px solid #ccc;
  padding-left: 1em;
}
.footer__item a {
  color: #666;
  text-decoration: none;
}
.footer__copyright {
  margin: 0;
  font-size: 14px;
  margin-top: 3rem;
  color: #999;
  font-family: sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 1rem;
  }
  .footer__list,
  .footer__copyright {
    font-size: 11px;
  }
  .footer__copyright {
    margin-top: 1.5rem;
  }
}
