:root {
  --green-deep: #1f3a2e;
  --green-mid: #2d5040;
  --green-soft: #4a6b5c;
  --beige-bg: #f5efe4;
  --beige-card: #faf6ec;
  --beige-line: #d9cdb4;
  --beige-deep: #e8dfc9;
  --gold: #b8924a;
  --gold-soft: #c9a876;
  --ink: #1a1a14;
  --ink-soft: #3d3d35;
  --ink-mute: #6b6b5e;
  --serif-jp: "Shippori Mincho", "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  --serif-body: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  --serif-en: "Cormorant Garamond", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif-body);
  font-size: 17px;
  line-height: 1.95;
  color: var(--ink);
  background: var(--beige-bg);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== ヘッダー ===== */
.header {
  background: #06251f;
  color: var(--beige-bg);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.header-logo {
  display: inline-block;
}
.header-logo img { height: 36px; width: auto; display: block; }
.header-info {
  font-size: 13px;
  line-height: 1.7;
  color: var(--beige-deep);
  text-align: right;
  letter-spacing: 0.02em;
}
.header-info .company-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  font-family: var(--serif-jp);
}

/* ===== ファーストビュー ===== */
.fv {
  background: #06251f;
  line-height: 0;
  text-align: center;
  padding: 0;
}
.fv-image {
  max-width: 880px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== CTAブロック ===== */
.cta-block {
  background: var(--beige-card);
  padding: 28px 32px 32px;
  text-align: center;
  border-bottom: 1px solid var(--beige-line);
  position: relative;
}
.cta-block::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
  bottom: 18px;
}

.cta-lead {
  font-family: var(--serif-jp);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

/* メールフォーム */
.cta-form {
  max-width: 520px;
  margin: 0 auto;
}
.cta-input-wrap {
  margin-bottom: 12px;
  text-align: left;
}
.cta-input-label {
  display: block;
  font-family: var(--serif-jp);
  font-size: 14px;
  color: var(--green-deep);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.cta-input {
  width: 100%;
  padding: 12px 18px;
  font-size: 16px;
  font-family: var(--serif-body);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--beige-line);
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.cta-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,74,0.15);
}
.cta-input::placeholder {
  color: var(--ink-mute);
  font-size: 15px;
}

/* チェックボックス（控えめに） */
.cta-checks {
  margin: 12px 0 14px;
  text-align: left;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.6;
}
.cta-check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}
.cta-check-item:last-child { margin-bottom: 0; }
.cta-check-item input[type="checkbox"] {
  margin-top: 4px;
  width: 14px;
  height: 14px;
  accent-color: var(--green-mid);
  flex-shrink: 0;
  cursor: pointer;
}
.cta-check-item label {
  cursor: pointer;
  color: var(--ink-mute);
}
.cta-check-item a {
  color: var(--green-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(74,107,92,0.4);
}
.cta-check-item a:hover { color: var(--green-mid); }

.cta-button {
  display: inline-block;
  background: linear-gradient(180deg, var(--green-mid), var(--green-deep));
  color: var(--beige-bg);
  font-family: var(--serif-jp);
  font-size: 20px;
  font-weight: 600;
  padding: 16px 48px;
  border: 2px solid var(--gold);
  border-radius: 3px;
  letter-spacing: 0.12em;
  box-shadow:
    0 0 0 4px var(--beige-card),
    0 0 0 5px var(--gold-soft),
    0 8px 24px rgba(31,58,46,0.18);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  max-width: 480px;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 4px var(--beige-card),
    0 0 0 5px var(--gold),
    0 12px 28px rgba(31,58,46,0.25);
}

.cta-note {
  margin-top: 10px;
  color: var(--ink-mute);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  opacity: 0.75;
}

/* ===== セクション共通 ===== */
section { padding: 88px 0; }

.section-eyebrow {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h2.section-title {
  font-family: var(--serif-jp);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--green-deep);
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 24px;
}
h2.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: var(--gold);
}

/* ===== AI活用セクション ===== */
.intro {
  background: var(--beige-bg);
}
.intro-text {
  font-size: 17px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 24px;
  text-align: justify;
}
.intro-text + .intro-text { margin-top: 0; }

.intro-image {
  margin: 56px auto 0;
  max-width: 760px;
  padding: 18px;
  background: var(--beige-card);
  border: 1px solid var(--beige-line);
}

/* ===== チャート重要性 ===== */
.chart-importance {
  background: var(--green-deep);
  color: var(--beige-bg);
}
.chart-importance h2.section-title { color: var(--beige-bg); }
.chart-importance .section-eyebrow { color: var(--gold-soft); }
.chart-importance h2.section-title::after { background: var(--gold-soft); }

.lead-text {
  text-align: center;
  font-size: 18px;
  color: var(--beige-deep);
  margin-bottom: 36px;
  line-height: 2;
}

.problem-list {
  max-width: 540px;
  margin: 0 auto 36px;
  background: rgba(245,239,228,0.06);
  border: 1px solid rgba(184,146,74,0.3);
  padding: 32px 40px;
  list-style: none;
}
.problem-list li {
  font-size: 18px;
  color: var(--beige-bg);
  padding: 14px 0 14px 32px;
  position: relative;
  border-bottom: 1px dashed rgba(184,146,74,0.25);
  font-family: var(--serif-jp);
}
.problem-list li:last-child { border-bottom: none; }
.problem-list li::before {
  content: "×";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-soft);
  font-size: 22px;
  font-weight: 600;
}

.closing-line {
  text-align: center;
  font-family: var(--serif-jp);
  font-size: 19px;
  color: var(--beige-bg);
  letter-spacing: 0.08em;
}

/* ===== 解決策ブロック ===== */
.solution {
  background: var(--beige-card);
  padding: 80px 0;
}
.solution-card {
  background: #fff;
  border: 1px solid var(--beige-line);
  padding: 56px 48px;
  position: relative;
  box-shadow: 0 2px 0 var(--beige-deep);
}
.solution-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--gold), var(--green-deep));
}

.solution-label {
  display: inline-block;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.solution-card h3 {
  font-family: var(--serif-jp);
  font-size: 26px;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.7;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.solution-card p {
  font-size: 17px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 24px;
  text-align: justify;
}
.solution-image {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--beige-line);
}

/* ===== 特徴 ===== */
.features {
  background: var(--beige-bg);
}
.features-intro {
  text-align: center;
  font-size: 17px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.features-image-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.features-image-stack > div {
  background: var(--beige-card);
  border: 1px solid var(--beige-line);
  padding: 18px;
}

/* ===== 利用者の声 ===== */
.testimonials {
  background: var(--green-deep);
  color: var(--beige-bg);
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(184,146,74,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(184,146,74,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.testimonials .section-eyebrow { color: var(--gold-soft); }
.testimonials h2.section-title { color: var(--beige-bg); }
.testimonials h2.section-title::after { background: var(--gold-soft); }

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.voice-card {
  background: var(--beige-card);
  color: var(--ink);
  padding: 40px 44px 36px;
  position: relative;
  border-left: 3px solid var(--gold);
}
.voice-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 28px;
  font-family: var(--serif-en);
  font-size: 96px;
  line-height: 1;
  color: var(--beige-deep);
  z-index: 0;
}
.voice-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--beige-line);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.voice-name {
  font-family: var(--serif-jp);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.05em;
}
.voice-attr {
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.voice-body {
  font-size: 16.5px;
  line-height: 2.1;
  color: var(--ink-soft);
  text-align: justify;
  position: relative;
  z-index: 1;
}

/* ===== フッターCTA ===== */
.cta-footer {
  background: #06251f;
  line-height: 0;
  text-align: center;
}
.cta-footer .fv-image {
  max-width: 880px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* ===== フッター ===== */
footer {
  background: var(--green-deep);
  color: var(--beige-deep);
  padding: 64px 0 32px;
  border-top: 3px double var(--gold-soft);
}
.footer-logo {
  display: inline-block;
  margin-bottom: 32px;
}
.footer-logo img { height: 36px; display: block; }

.risk-notice {
  background: rgba(245,239,228,0.05);
  border: 1px solid rgba(184,146,74,0.25);
  padding: 24px 28px;
  margin-bottom: 32px;
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--beige-deep);
}
.risk-notice strong {
  display: block;
  color: var(--gold-soft);
  font-family: var(--serif-jp);
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.risk-notice.disclaimer {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 2.05;
  text-align: justify;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(184,146,74,0.2);
  border-bottom: 1px solid rgba(184,146,74,0.2);
  margin-bottom: 24px;
  font-size: 14px;
}
.footer-nav a {
  color: var(--beige-deep);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-soft); }

.copyright {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  text-align: center;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }

  .header { padding: 10px 0; }
  .header-inner { flex-direction: row; align-items: center; gap: 12px; flex-wrap: nowrap; }
  .header-info { display: none; }
  .header-logo img { height: 28px; }

  .fv-image { max-width: 100%; }

  .cta-block { padding: 18px 20px 22px; }
  .cta-block::after { bottom: 12px; width: 60px; }
  .cta-lead { font-size: 17px; margin-bottom: 14px; }
  .cta-input { font-size: 16px; padding: 11px 14px; }
  .cta-input-label { font-size: 13px; margin-bottom: 5px; }
  .cta-input-wrap { margin-bottom: 10px; }
  .cta-button { font-size: 17px; padding: 14px 28px; letter-spacing: 0.08em; }
  .cta-checks { font-size: 12px; margin: 10px 0 12px; }
  .cta-note { font-size: 11px; margin-top: 8px; }

  section { padding: 64px 0; }

  h2.section-title { font-size: 23px; margin-bottom: 36px; letter-spacing: 0.04em; }

  .lead-text { font-size: 16px; }
  .problem-list { padding: 22px 24px; }
  .problem-list li { font-size: 16px; padding: 12px 0 12px 28px; }
  .closing-line { font-size: 16px; }

  .solution-card { padding: 36px 24px; }
  .solution-card h3 { font-size: 20px; }
  .solution-card p { font-size: 16px; }

  .features-intro { font-size: 16px; }

  .voice-card { padding: 32px 24px 28px; }
  .voice-card::before { font-size: 64px; right: 16px; }
  .voice-name { font-size: 19px; }
  .voice-meta { gap: 10px; }
  .voice-body { font-size: 15.5px; }

  .footer-nav { gap: 18px; font-size: 13px; }
  .risk-notice { font-size: 12.5px; padding: 20px 22px; }
}

@media (max-width: 480px) {
  .cta-button { font-size: 16px; padding: 18px 32px; }
  .solution-card { padding: 28px 18px; }
}
/* =========================================
   会社概要・利用規約・プラポリ
   ========================================= */
.contents_cat {
    width: 1000px;
    margin: 0 auto;
    padding: 0 0 40px;
}
.contents_in {
    width: 960px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #ffffff;
}
.contents_in2 {
    width: 92%;
    margin: 0 auto;
    padding: 30px 40px;
    background-color: #ffffff;
}
.cat_title {
    text-align: center;
}

.cat_title_in {
    font-size: 2.4rem;
    line-height: 150%;
    border-bottom: 3px dotted #b92702;
    color: #000000;
    padding: 10px 20px;
    margin: 50px 0 30px 0;
    text-align: center;
    display: inline-block;
}
.law_cat {
    display: flex;
    padding: 30px 20px;
    border-bottom: 1px solid #b0b0b0;
}

.law_title {
    width: 30%;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
}

.law_text {
    width: 70%;
    padding: 0px 20px;
}
.font_ss {
    font-size: 0.8em;
    line-height: 160%;
}
@media (min-width:600px) and (max-width:1000px) {
    .contents_cat {
        width: 92%;
    }
    .contents_in {
        width: 92%;
    }

    .cat_title_in {
        font-size: 2rem;
        margin: 30px 0;
    }
}
@media only screen and (max-width:599px) {
    .contents_cat {
        width: 96%;
    }
    .contents_in {
        width: 96%;
        padding: 30px 10px;
    }
    .contents_in2 {
        width: 92%;
        padding: 30px 10px;
    }
    .cat_title_in {
        font-size: 0.9em;
        margin: 10px 0 20px;
    }
.law_cat {
    display: block;
    padding: 20px;
}

.law_title {
    width: 100%;
    text-align: left;
    padding: 0 0 20px 0;
    font-size: 1.2em;
}

.law_text {
    width: 100%;
    padding: 0;
}
}
