/* ===== Privacy Policy Styles ===== */
.policy-section {
  background: var(--white);
  padding: 80px 40px;
}
.policy-content {
  max-width: 900px;
  margin: 0 auto;
}
.policy-intro {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 60px;
  padding: 20px;
  background: var(--blue-light);
  border-radius: 12px;
  border-left: 4px solid var(--blue);
}
.policy-section-item {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,104,183,0.1);
}
.policy-section-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.policy-section-item__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
}
.policy-section-item__number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  background: var(--blue-light);
  color: var(--blue);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.policy-section-item__content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 16px;
}
.policy-section-item__content p:last-child {
  margin-bottom: 0;
}
.policy-section-item__content ul {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}
.policy-section-item__content li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
}
.policy-section-item__content li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.policy-contact {
  background: var(--off-white);
  padding: 24px;
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid rgba(0,104,183,0.08);
}
.policy-contact__item {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 12px;
}
.policy-contact__item:last-child {
  margin-bottom: 0;
}
.policy-contact__item strong {
  font-weight: 700;
  color: var(--blue);
  display: block;
  margin-bottom: 8px;
}
.policy-contact__item a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
}
.policy-contact__item a:hover {
  opacity: 0.7;
}
.policy-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(0,104,183,0.1);
  text-align: center;
}
.policy-footer p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 8px 0;
}
.policy-footer a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== Tokushoho Table Styles ===== */
.tokushoho-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}
.tokushoho-table tbody {
  display: block;
}
.tokushoho-table tr {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(0,104,183,0.08);
}
.tokushoho-table tr:last-child {
  border-bottom: none;
}
.tokushoho-table th,
.tokushoho-table td {
  padding: 20px;
  text-align: left;
}
.tokushoho-table th {
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  min-height: 60px;
  display: flex;
  align-items: center;
}
.tokushoho-table td {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.8;
  background: var(--white);
}
.tokushoho-table a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.tokushoho-table a:hover {
  opacity: 0.7;
}
.tokushoho-table ul {
  list-style: none;
  padding-left: 0;
  margin: 8px 0;
}
.tokushoho-table li {
  padding-left: 20px;
  margin-bottom: 6px;
  position: relative;
}
.tokushoho-table li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--blue);
}
.tokushoho-table li:last-child {
  margin-bottom: 0;
}
.tokushoho-table strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--blue);
}

/* ===== Thanks Page Styles ===== */
.thanks-section {
  background: var(--white);
  padding: 80px 40px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanks-message {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.thanks-icon {
  font-size: 5rem;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.thanks-icon .material-icons {
  font-size: 5rem;
  color: #22b573;
}
.thanks-message h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px;
}
.thanks-message p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.9;
  margin: 16px 0;
}
.thanks-message .warning-box {
  background: #fff3cd;
  border-left: 4px solid var(--yellow);
  padding: 20px;
  border-radius: 8px;
  margin: 32px 0;
  text-align: left;
}
.thanks-message .warning-box strong {
  display: block;
  color: var(--blue);
  margin-bottom: 8px;
  font-weight: 700;
}
.thanks-message .contact-phone {
  margin: 40px 0;
  padding: 30px;
  background: var(--blue-light);
  border-radius: 12px;
  border: 2px solid var(--blue);
}
.thanks-message .contact-phone a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}
.thanks-message .contact-phone p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 8px;
  margin-bottom: 0;
}
.thanks-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 24px;
  border: none;
  cursor: pointer;
}
.thanks-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,104,183,0.3);
}

/* ===== Sitemap Styles ===== */
.sitemap-section {
  background: var(--white);
  padding: 80px 40px;
}
.sitemap-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
}
.sitemap-group {
  margin-bottom: 40px;
}
.sitemap-group:last-child {
  margin-bottom: 0;
}
.sitemap-group__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-light);
}
.sitemap-group__title .material-icons,
.sitemap-group__title svg {
  font-size: 1.4rem;
  color: var(--blue);
}
.sitemap-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sitemap-list__item {
  margin: 0;
}
.sitemap-list__item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s, padding-left 0.3s;
  border-bottom: 1px solid rgba(0,104,183,0.05);
}
.sitemap-list__item:last-child a {
  border-bottom: none;
}
.sitemap-list__item a:hover {
  color: var(--blue);
  padding-left: 8px;
}
.sitemap-list__item a .material-icons,
.sitemap-list__item a svg {
  font-size: 1rem;
  color: var(--blue);
  flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .policy-section,
  .thanks-section,
  .sitemap-section {
    padding: 60px 20px;
  }
  .policy-section-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .tokushoho-table tr {
    grid-template-columns: 100px 1fr;
  }
  .tokushoho-table th,
  .tokushoho-table td {
    padding: 16px;
    font-size: 0.85rem;
  }
  .thanks-message h2 {
    font-size: 1.4rem;
  }
  .thanks-icon {
    font-size: 3rem;
    margin-bottom: 24px;
  }
  .thanks-icon .material-icons {
    font-size: 3rem;
  }
  .sitemap-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .policy-section,
  .thanks-section,
  .sitemap-section {
    padding: 40px 16px;
  }
  .policy-section-item__title {
    font-size: 1.05rem;
    flex-wrap: wrap;
  }
  .policy-intro {
    font-size: 0.9rem;
    padding: 16px;
  }
  .tokushoho-table tr {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .tokushoho-table th {
    background: var(--blue);
    color: #fff;
    font-size: 0.8rem;
    padding: 12px 16px;
    min-height: auto;
    border-radius: 4px 4px 0 0;
  }
  .tokushoho-table td {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  .thanks-message {
    padding: 20px;
  }
  .thanks-message h2 {
    font-size: 1.2rem;
  }
  .thanks-button {
    padding: 14px 32px;
    font-size: 0.9rem;
  }
}
