/* ===== Utility Classes (from shared.css) ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.color-primary { color: #2b365d; }
.color-secondary { color: #cf4434; }

.mb-10 { margin-bottom: 10px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.pt-30 { padding-top: 30px; }

.section--y { padding-top: 50px; padding-bottom: 50px; }
@media screen and (min-width: 901px) {
  .section--y { padding-top: 90px; padding-bottom: 90px; }
  .mb-60--sm { margin-bottom: 60px; }
}
@media screen and (max-width: 900px) {
  .mb-60--sm { margin-bottom: 40px; }
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1190px;
}

.title-t1__en {
  display: block;
  line-height: 1.3;
  letter-spacing: .1em;
  font-size: 12px;
  margin-bottom: .4em;
}
.title-t1__ja {
  display: block;
  line-height: 1.3;
  letter-spacing: .3em;
  font-size: 24px;
}
@media screen and (min-width: 601px) {
  .title-t1__en { font-size: 16px; }
  .title-t1__ja { font-size: 30px; }
}

.title-t2 {
  font-weight: bold;
  border-bottom: 1px solid #2b365d;
  padding-bottom: .3em;
}

/* ===== Privacy Policy Content ===== */
main ol {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
main ol > li {
  counter-increment: list-counter;
  padding-left: 2em;
  position: relative;
  margin-bottom: 1em;
  line-height: 1.8;
}
main ol > li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #2b365d;
}

main table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
  margin-bottom: 1.5em;
}
main table th,
main table td {
  border: 1px solid #ccc;
  padding: 0.8em 1em;
  line-height: 1.6;
  vertical-align: top;
}
main table th {
  background-color: #2b365d;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}
main table td {
  background-color: #fff;
}
main table tr:nth-child(even) td {
  background-color: #f7f7f7;
}

main p {
  line-height: 1.8;
  margin-bottom: 1em;
}
main p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 900px) {
  main table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  main table th,
  main table td {
    padding: 0.6em 0.8em;
    font-size: 14px;
  }
}

/* ===== Agree & Entry Button ===== */
.agree-area {
  text-align: center;
  padding: 40px 0;
}
.agree-check {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  gap: 10px;
}
.agree-check__input {
  display: none;
}
.agree-check__box {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #2b365d;
  border-radius: 3px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
}
.agree-check__input:checked + .agree-check__box {
  background: #2b365d;
}
.agree-check__input:checked + .agree-check__box::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.agree-check__text {
  font-weight: bold;
  color: #333;
}
.agree-area__btn {
  margin-top: 30px;
}
.entry-btn {
  display: inline-block;
  padding: 18px 60px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #ccc;
  border-radius: 4px;
  text-decoration: none;
  pointer-events: none;
}
