@charset "UTF-8";
/* ---------------------------------------------------------
  policy.css
--------------------------------------------------------- */
#policy h2 {
  margin-top: 50px;
  font-weight: 400;
  font-size: 21px;
  text-align: center;
}
.intro_area {
  margin-top: 50px;
}
#policy h3 {
  font-weight: 400;
  font-size: 19px;
  text-align: center;
}
:root {
  --ink: #1c1a17;
  --ground: #f5f0e8;
  --paper: #faf7f2;
  --accent: #6b4f2e;
  --accent-light: #9c7a52;
  --muted: #7a7060;
  --border: #d6cebe;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

.hero {
  text-align: center;
}
.hero-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 2em;
  text-align: center;
}
.intro-box {
  background: var(--paper);
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
  margin-bottom: 56px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.95;
}

.intro-box strong {
  color: var(--ink);
  font-weight: 500;
}

.section {
  margin-bottom: 52px;
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section:nth-child(2) {
  animation-delay: 0.05s;
}
.section:nth-child(3) {
  animation-delay: 0.1s;
}
.section:nth-child(4) {
  animation-delay: 0.15s;
}
.section:nth-child(5) {
  animation-delay: 0.2s;
}
.section:nth-child(6) {
  animation-delay: 0.25s;
}
.section:nth-child(7) {
  animation-delay: 0.3s;
}
.section:nth-child(8) {
  animation-delay: 0.35s;
}
.section:nth-child(9) {
  animation-delay: 0.4s;
}
.section:nth-child(10) {
  animation-delay: 0.45s;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.section-num {
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent-light);
}

.section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.section p {
  font-size: 14.5px;
  color: #3a3730;
  line-height: 2;
  margin-bottom: 14px;
}

.section p:last-child {
  margin-bottom: 0;
}

ul.policy-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
}

ul.policy-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 14.5px;
  color: #3a3730;
  /* border-bottom: 1px dotted var(--border); */
  line-height: 1.85;
}

ul.policy-list li:last-child {
  border-bottom: none;
}

ul.policy-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
}

.contact-box {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 32px 36px;
  margin-top: 20px;
  position: relative;
}

.contact-box::before {
  content: "お問い合わせ先";
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--ground);
  padding: 0 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.contact-box p {
  font-size: 14px !important;
  color: var(--muted) !important;
  margin-bottom: 8px !important;
}

.contact-box .org {
  font-family: "Noto Serif JP", serif;
  font-size: 16px !important;
  color: var(--ink) !important;
  font-weight: 500;
  margin-bottom: 12px !important;
}

.contact-box a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-light);
  transition: color 0.2s;
}

.contact-box a:hover {
  color: var(--accent-light);
}

.meta-bar {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-bar p {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.back-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--accent-light);
}

@media (max-width: 600px) {
  header {
    padding: 16px 20px;
  }
  .hero {
    padding: 56px 20px 48px;
  }
  .wrapper {
    padding: 40px 20px 72px;
  }
  .intro-box {
    padding: 22px 20px;
  }
  .contact-box {
    padding: 28px 20px;
  }
}
