/* TCDの固定ページ幅を実質無視して全面化 */
body.page .post_content,
body.page .entry-content,
body.page .page_content {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}

/* 自作コンテンツを画面幅いっぱいに */
.page-original {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}


@charset "UTF-8";

/* =========================
   Base
========================= */
:root {
  --green-main: #2f7d68;
  --green-deep: #1e5d4d;
  --green-soft: #eef7f3;
  --green-pale: #f7fbf9;
  --green-line: #d5e8df;
  --text-main: #22332d;
  --text-sub: #5f716a;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(34, 51, 45, 0.08);
  --shadow-card: 0 12px 30px rgba(47, 125, 104, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "YuGothic",
    "Meiryo",
    sans-serif;
  color: var(--text-main);
  background: #fff;
  line-height: 1.9;
  -webkit-text-size-adjust: 100%;
}

.page-original img {
  display: block;
  width: 100%;
  height: auto;
}

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

.ofp-page {
  overflow: hidden;
}

.ofp-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.ofp-section {
  padding: 110px 0;
  position: relative;
}

.ofp-section--accent {
  background:
    linear-gradient(135deg, (74,168,110,0.95), (74,168,110,0.95));
}

.ofp-section--soft {
  background: var(--green-pale);
}

.ofp-label,
.ofp-section-heading__sub,
.ofp-cta__sub {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #04a86e;
  text-transform: uppercase;
}

.ofp-section-heading {
  margin-bottom: 34px;
}

.ofp-section-heading--center {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 50px;
}

.ofp-section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--green-deep);
}

.ofp-section-heading__lead {
  margin: 18px 0 0;
  color: var(--text-sub);
  font-size: 1rem;
}

.ofp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: 0.3s ease;
}

.ofp-btn--primary {
  background: linear-gradient(135deg, var(--green-main), var(--green-deep));
  color: #fff;
  box-shadow: var(--shadow-card);
}

.ofp-btn--primary:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.ofp-btn--ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--green-deep);
  border: 1px solid rgba(47, 125, 104, 0.18);
  backdrop-filter: blur(8px);
}

.ofp-btn--ghost:hover {
  background: #fff;
}

.ofp-btn--white {
  background: #fff;
  color: var(--green-deep);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.ofp-btn--white:hover {
  transform: translateY(-2px);
}

.ofp-btn--line {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.ofp-btn--line:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   Hero
========================= */
.ofp-hero {
  position: relative;
  padding: 34px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(98, 177, 146, 0.16), transparent 34%),
    radial-gradient(circle at right center, rgba(47, 125, 104, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fbf9 0%, #ffffff 100%);
}

.ofp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(47, 125, 104, 0.03), rgba(255,255,255,0));
  pointer-events: none;
}

.ofp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  font-size: 0.86rem;
  color: var(--text-sub);
}

.ofp-breadcrumb a:hover {
  color: var(--green-main);
}

.ofp-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.ofp-title {
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: var(--green-deep);
}

.ofp-title span {
  color: var(--green-main);
  position: relative;
}

.ofp-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.12em;
  width: 100%;
  height: 0.26em;
  background: rgba(99, 189, 150, 0.22);
  z-index: -1;
  border-radius: 999px;
}

.ofp-lead {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-sub);
}

.ofp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ofp-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.ofp-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(47, 125, 104, 0.08);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.ofp-image-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* =========================
   Intro
========================= */
.ofp-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  gap: 38px;
  align-items: start;
}

.ofp-intro__main p {
  margin: 0 0 18px;
  font-size: 1rem;
  color: var(--text-sub);
}

.ofp-intro__main strong {
  color: var(--green-deep);
}

.ofp-intro__box {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
  border: 1px solid var(--green-line);
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
}

.ofp-intro__box h3 {
  margin: 0 0 20px;
  font-size: 1.2rem;
  color: var(--green-deep);
}

.ofp-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ofp-check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--text-main);
}

.ofp-check-list li:last-child {
  margin-bottom: 0;
}

.ofp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-main);
  font-weight: 700;
}

/* =========================
   Message
========================= */
.ofp-message {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 46px;
  align-items: center;
}

.ofp-message__text h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.35;
  color: var(--green-deep);
}

.ofp-message__text p {
  margin: 0;
  color: var(--text-sub);
}

.ofp-message__text strong {
  color: var(--green-deep);
}

.ofp-message__image img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* =========================
   Cause cards
========================= */
.ofp-cause-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ofp-cause-card {
  position: relative;
  background: #fff;
  border: 1px solid #e7f0eb;
  border-radius: 22px;
  padding: 30px 26px 28px;
  box-shadow: 0 10px 24px rgba(47, 125, 104, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ofp-cause-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(47, 125, 104, 0.10);
}

.ofp-cause-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ofp-cause-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--green-deep);
}

.ofp-cause-card p {
  margin: 0;
  color: var(--text-sub);
  font-size: 0.97rem;
  line-height: 1.9;
}

/* =========================
   Diagnosis
========================= */
.ofp-diagnosis {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: center;
}

.ofp-diagnosis__image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.ofp-diagnosis__content p {
  margin: 0 0 16px;
  color: var(--text-sub);
}

.ofp-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.ofp-feature-item {
  background: #fff;
  border: 1px solid #e5efea;
  border-radius: 18px;
  padding: 22px 20px;
}

.ofp-feature-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--green-deep);
}

.ofp-feature-item p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-sub);
  line-height: 1.8;
}

/* =========================
   Warning
========================= */
.ofp-warning-box {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfefd 100%);
  border: 1px solid var(--green-line);
  border-left: 6px solid var(--green-main);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}

.ofp-warning-box__head {
  margin-bottom: 20px;
}

.ofp-warning-box h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  line-height: 1.4;
  color: var(--green-deep);
}

.ofp-warning-box p {
  margin: 0 0 14px;
  color: var(--text-sub);
}

.ofp-warning-box p:last-child {
  margin-bottom: 0;
}

/* =========================
   CTA
========================= */
.ofp-cta {
  padding: 0 0 110px;
}

.ofp-cta__inner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #04a86e, #04a86e);
  border-radius: 34px;
  padding: 50px 54px;
  color: #fff;
  box-shadow: 0 22px 50px rgba(30, 93, 77, 0.22);
}

.ofp-cta__inner::before,
.ofp-cta__inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.ofp-cta__inner::before {
  width: 240px;
  height: 240px;
  top: -100px;
  right: -60px;
}

.ofp-cta__inner::after {
  width: 140px;
  height: 140px;
  bottom: -40px;
  left: -30px;
}

.ofp-cta__text,
.ofp-cta__buttons {
  position: relative;
  z-index: 1;
}

.ofp-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.ofp-cta__text h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.35;
}

.ofp-cta__text p {
  margin: 0;
  color: rgba(255,255,255,0.88);
}

.ofp-cta__sub {
  color: rgba(255,255,255,0.72);
}

.ofp-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1080px) {
  .ofp-hero__grid,
  .ofp-intro,
  .ofp-message,
  .ofp-diagnosis,
  .ofp-cta__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .ofp-cause-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ofp-cta__inner {
    gap: 24px;
  }

  .ofp-cta__buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .ofp-section {
    padding: 78px 0;
  }

  .ofp-hero {
    padding: 24px 0 70px;
  }

  .ofp-container {
    width: min(100% - 24px, var(--container));
  }

  .ofp-title {
    font-size: 2.2rem;
  }

  .ofp-cause-grid,
  .ofp-feature-list {
    grid-template-columns: 1fr;
  }

  .ofp-cause-card,
  .ofp-feature-item,
  .ofp-intro__box,
  .ofp-warning-box,
  .ofp-cta__inner {
    border-radius: 20px;
  }

  .ofp-cta__inner {
    padding: 38px 24px;
  }

  .ofp-btn {
    width: 100%;
  }
}