@charset "utf-8";
/* CSS Document */
  :root {
    --nk-main: #f39c6b;
    --nk-sub: #f7d9c4;
    --nk-accent: #ffb7c5;
    --nk-bg: #fff;
    --nk-text: #444;
    --nk-headline: #333;
  }

  .nk-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 16px 48px;
    background: var(--nk-bg);
    color: var(--nk-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
    line-height: 1.8;
  }

  .nk-page h1,
  .nk-page h2,
  .nk-page h3 {
    color: var(--nk-headline);
    margin: 0;
  }

  .nk-page h1 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  /* .nk-page h2 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    display: inline-block;
    padding: 4px 12px;
    border-left: 4px solid var(--nk-main);
    background: #fff;
    border-radius: 4px;
  }*/

  .nk-page h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .nk-page p {
    margin: 0 0 12px;
  }

  .nk-hero {
    background: linear-gradient(135deg, #ffe4d1, #ffeef2);
    border-radius: 16px;
    padding: 24px 18px;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
  }

  .nk-hero-lead {
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
  }

  .nk-hero-sub {
    font-size: 0.95rem;
  }

  .nk-hero-illust {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ヒーロー内の画像 */
.nk-hero-illust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  .nk-hero-illust-main {
    width: 70%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .nk-hero-illust-main::before {
    content: "";
    width: 70%;
    height: 70%;
    border-radius: 50% 50% 45% 45%;
    background: linear-gradient(145deg, #ffb3c1, #ffdde5);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }

  .nk-hero-illust-papaya {
    position: absolute;
    bottom: 4%;
    right: 2%;
    width: 38%;
    aspect-ratio: 4 / 3;
    border-radius: 40% 60% 60% 40%;
    background: linear-gradient(145deg, #ffb347, #ffcc33);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .nk-hero-illust-papaya::before {
    content: "";
    position: absolute;
    inset: 14%;
    border-radius: 40% 60% 60% 40%;
    background: #ffe8b7;
    box-shadow: inset 0 0 0 3px rgba(255,255,255,0.6);
  }

  .nk-hero-illust-papaya::after {
    content: "";
    position: absolute;
    inset: 30% 30%;
    border-radius: 50%;
    background: radial-gradient(circle, #333 0, #333 35%, transparent 60%);
    opacity: 0.7;
  }

  .nk-section {
    margin-bottom: 40px;
  }

  .nk-divider {
    border-top: 1px dashed #e1b9a1;
    margin: 24px 0;
  }

  .nk-tagline {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
  }

  .nk-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 16px;
    padding: 0;
    list-style: none;
  }

  .nk-pill-list li {
    font-size: 0.85rem;
    padding: 6px 12px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid rgba(243, 156, 107, 0.4);
    white-space: nowrap;
  }

  .nk-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 8px;
  }

  .nk-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  }

  .nk-card-title {
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nk-card-title span.nk-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--nk-sub);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

  .nk-small {
    font-size: 0.9rem;
  }

  .nk-illust-row {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
    gap: 16px;
    align-items: center;
  }

  .nk-illust-box {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }

  .nk-illust-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0, #ffe9d9 50%, transparent 70%);
    opacity: 0.7;
    top: -40px;
    right: -40px;
  }

  .nk-illust-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(243,156,107,0.5);
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .nk-illust-badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--nk-main);
  }

  .nk-illust-figure {
  position: relative;
  border-radius: 16px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

  .nk-illust-note {
    font-size: 0.75rem;
    color: #777;
    margin-top: 6px;
    text-align: center;
  }

  .nk-note {
    font-size: 0.8rem;
    color: #777;
    margin-top: 4px;
  }

  .nk-recipe-card {
    background: #fff;
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  }

  .nk-recipe-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .nk-recipe-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--nk-sub);
    font-size: 1.4rem;
  }

  .nk-recipe-body {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
    gap: 16px;
    margin-top: 12px;
  }

  .nk-recipe-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #666;
  }

  .nk-page ul,
  .nk-page ol {
    padding-left: 1.2rem;
    margin: 0 0 12px;
  }

  .nk-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }

  .nk-badge {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: #fff7ef;

    border: 1px solid rgba(243,156,107,0.5);
  }

  .nk-layout-two {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 16px;
  }

  .nk-highlight-box {
    background: linear-gradient(135deg, #fff, #ffece1);
    border-radius: 14px;
    padding: 14px 14px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  }

  .nk-highlight-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nk-highlight-title::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--nk-main);
  }

  .nk-voice-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .nk-voice-item {
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .nk-voice-item::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.4rem;
    color: var(--nk-accent);
    opacity: 0.8;
  }

  .nk-cta-box {
    margin-top: 24px;
    padding: 20px 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.04);
    text-align: center;
  }

  .nk-cta-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .nk-cta-text {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .nk-cta-btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #f7a26d, #ff8fab);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0,0,0,0.18);
    cursor: pointer;
  }

  .nk-cta-btn:hover {
    opacity: 0.92;
  }

  .nk-footer-note {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #888;
  }

  /* レスポンシブ */
  @media (max-width: 768px) {
    .nk-hero {
      grid-template-columns: 1fr;
    }
    .nk-hero-illust {
      order: -1;
    }
    .nk-card-grid,
    .nk-illust-row,
    .nk-recipe-body,
    .nk-layout-two {
      grid-template-columns: 1fr;
    }
    .nk-page {
      padding-inline: 14px;
    }
  }

  @media (max-width: 480px) {
    .nk-page h1 {
      font-size: 1.4rem;
    }
    .nk-page h2 {
      font-size: 1.1rem;
    }
  }

/* 共通：正方形イメージ用 */
.nk-img-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
