@charset "UTF-8";
/* ========================================
   下層ページ共通（会社概要・お問い合わせ・プライバシーポリシー）
   mizuomoi を流用し、配色をブランドカラーへ・フォントは Noto Sans JP
   ======================================== */

/* 背景：ライム固定 */
body.bg-1 {
  background: var(--lime);
}
@media (min-width: 501px) {
  body.bg-1 {
    background-image: url("../images/bg.webp");
    background-repeat: no-repeat; background-position: center top;
    background-size: cover; background-attachment: fixed;
  }
}

.page { background: #fff; padding: 100px 24px 50px; min-height: 50vh; }
@media (min-width: 460px) { .page { padding-left: 50px; padding-right: 50px; } }

.page__title {
  text-align: center; font-size: 18px; font-weight: 700; letter-spacing: 0.08em;
  color: #430000; margin-bottom: 40px; position: relative; padding-bottom: 14px;
}
.page__title::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 40px; height: 3px; background: var(--orange); border-radius: 2px; }

.page-table { width: 100%; border-collapse: collapse; font-size: 13px; line-height: 1.7; color: #430000; }
.page-table th, .page-table td { text-align: left; vertical-align: top; padding: 14px 4px; border-bottom: 1px solid #cfd89a; }
.page-table th { width: 45%; white-space: nowrap; font-weight: 700; padding-right: 22px; }
.page-table tr:first-child th, .page-table tr:first-child td { border-top: 1px solid #cfd89a; }

/* お問い合わせ */
.contact__notes { list-style: none; margin: 0 0 48px; padding: 0; font-size: 13px; line-height: 1.7; color: #430000; }
.contact__notes li { position: relative; padding-left: 1.2em; margin-bottom: 6px; }
.contact__notes li::before { content: "■"; position: absolute; left: 0; top: 0; color: var(--orange); }
.contact__support { text-align: center; margin-top: 40px; }
.contact__support-title { font-size: 18px; font-weight: 700; color: #430000; margin-bottom: 8px; }
.contact__support-time { font-size: 13px; color: #430000; margin-bottom: 24px; }
.contact__btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.contact__btn { flex: 1 1 0; min-width: 0; max-width: 260px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 8px; background: var(--green); color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; border-radius: 999px; }
a.contact__btn { transition: filter .2s; }
a.contact__btn:hover { filter: brightness(1.08); }
.contact__btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
.contact__btn--tel { cursor: default; background: var(--orange); }

/* プライバシーポリシー */
.policy { font-size: 13px; line-height: 1.7; color: #430000; }
.policy__section { margin-bottom: 24px; }
.policy__heading { font-size: 14px; font-weight: 700; color: var(--orange); margin-bottom: 6px; }
.policy__text { margin-bottom: 6px; }
.policy__list { list-style: none; margin: 0 0 14px; padding: 0; }
.policy__list li { position: relative; padding-left: 1.2em; margin-bottom: 4px; }
.policy__list li::before { content: "・"; position: absolute; left: 0; top: 0; }
.policy__subhead { margin: 6px 0; font-weight: 700; }
.policy strong { font-weight: 700; }


/* 長文の可読性：本文系は Medium、見出しは Black のまま */
.page-table, .page-table td, .contact__notes, .policy, .policy__text, .policy__list { font-weight: 500; }
.page-table th, .policy__heading, .policy__subhead, .page__title,
.contact__support-title, .contact__btn { font-weight: 900; }
