body.camprix-template {
  --green: #35a806;
  --green-dark: #218200;
  --orange: #ff7a00;
  --orange-dark: #e95400;
  --yellow: #f7b900;
  --yellow-dark: #d89800;
  --brown: #6b4a2b;
  --brown-dark: #3f2918;
  --ink: #202020;
  --muted: #5f5f5f;
  --paper: #fff;
  --soft: #f5f8f1;
  --line: #e4eadc;
  margin: 0;
  background: #eef3e8;
  color: var(--ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  line-height: 1.7;
}

body.camprix-template .camprix-page,
body.camprix-template .camprix-page * {
  box-sizing: border-box;
}

body.camprix-template .camprix-page * {
  min-width: 0;
}

body.camprix-template img,
body.camprix-template svg {
  display: block;
}

body.camprix-template img {
  max-width: 100%;
}

body.camprix-template a {
  color: inherit;
  text-decoration: none;
}

body.camprix-template .camprix-page {
  width: min(880px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  background:
    radial-gradient(circle at 12% 18%, rgba(247, 185, 0, .08), transparent 150px),
    radial-gradient(circle at 88% 8%, rgba(53, 168, 6, .07), transparent 180px),
    var(--paper);
  border: 1px solid rgba(80, 94, 68, .16);
  box-shadow: 0 0 30px rgba(34, 51, 24, .12);
  overflow: hidden;
}

body.camprix-template .site-header {
  display: flex;
  justify-content: center;
  padding: 22px 18px 12px;
  text-align: center;
}

body.camprix-template .brand {
  display: block;
}

body.camprix-template .brand-logo {
  display: block;
  width: min(500px, 82vw);
  height: auto;
}

body.camprix-template .hero {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: end;
  padding: 8px 30px 20px;
}

body.camprix-template .hero-dog img {
  width: 318px;
}

body.camprix-template .hero-copy {
  position: relative;
  align-self: start;
  padding-top: 26px;
}

body.camprix-template .hero h1 {
  margin: 0 0 14px;
  color: #222;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.42;
}

body.camprix-template .hero h1 span,
body.camprix-template .hero h1 strong {
  display: block;
}

body.camprix-template .hero h1 strong {
  margin-top: 6px;
  color: var(--green);
  font-size: 33px;
  line-height: 1.35;
}

body.camprix-template .hero p {
  margin: 0 0 8px;
  color: #2a2a2a;
  font-size: 15px;
  font-weight: 800;
}

body.camprix-template .hero-camp {
  width: 470px;
  margin-top: 4px;
}

body.camprix-template .set-list {
  display: grid;
  gap: 12px;
  padding: 0 30px 20px;
}

body.camprix-template .set-card {
  --theme: var(--green);
  --theme-dark: var(--green-dark);
  padding: 18px 28px 18px;
  background: rgba(255, 255, 255, .98);
  border: 2px solid var(--theme);
  border-radius: 20px;
  box-shadow: 0 5px 16px rgba(63, 76, 49, .12);
}

body.camprix-template .theme-orange {
  --theme: var(--orange);
  --theme-dark: var(--orange-dark);
}

body.camprix-template .theme-green {
  --theme: var(--green);
  --theme-dark: var(--green-dark);
}

body.camprix-template .theme-yellow {
  --theme: var(--yellow);
  --theme-dark: var(--yellow-dark);
}

body.camprix-template .theme-brown {
  --theme: var(--brown);
  --theme-dark: var(--brown-dark);
}

body.camprix-template .set-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  text-align: center;
}

body.camprix-template .set-heading h2 {
  margin: 0;
  color: var(--theme);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
}

body.camprix-template .set-body {
  display: grid;
  grid-template-columns: 146px 132px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

body.camprix-template .set-dog {
  width: 166px;
  max-width: none;
  justify-self: center;
}

body.camprix-template .speech {
  display: grid;
  min-height: 118px;
  margin: 0;
  place-items: center;
  padding: 13px 11px;
  background: #fff;
  border: 1.5px solid var(--theme);
  border-radius: 24px;
  color: #333;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
}

body.camprix-template .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body.camprix-template .product-thumb {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #edf2e8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .12);
}

body.camprix-template .product-thumb img {
  width: 100%;
  aspect-ratio: 145 / 105;
  object-fit: cover;
}

body.camprix-template .product-thumb.product-id-bushcraft-06 img {
  padding: 6px;
  background: #fff;
  object-fit: contain;
}

body.camprix-template .product-thumb figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px 6px 5px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

body.camprix-template .set-cta {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  min-height: 56px;
  margin-top: 14px;
  padding: 0 14px 0 50px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--theme) 82%, #fff), var(--theme-dark));
  border-radius: 13px;
  color: #fff;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, .3), inset 0 -4px 0 rgba(0, 0, 0, .15), 0 4px 8px rgba(80, 72, 24, .28);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

body.camprix-template .set-cta svg {
  width: 38px;
  height: 38px;
  padding: 7px;
  background: #fff;
  border-radius: 50%;
  fill: none;
  stroke: var(--theme);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.4;
}

body.camprix-template .set-cta:active,
body.camprix-template .product-link-button:active,
body.camprix-template .contact-form button:active {
  transform: translateY(2px);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, .12);
}

body.camprix-template .concept-block {
  margin: 12px 30px 28px;
  padding: 34px 26px 38px;
  background: #fff;
  border: 2px solid rgba(53, 168, 6, .22);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(42, 73, 24, .1);
}

body.camprix-template .concept-eyebrow,
body.camprix-template .detail-eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

body.camprix-template .concept-block h2 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
}

body.camprix-template .concept-block p {
  margin: 0;
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 700;
}

body.camprix-template .concept-block p + p {
  margin-top: 16px;
}

body.camprix-template .set-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: center;
  margin: 4px 30px 18px;
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 251, 244, .98));
  border: 2px solid var(--theme);
  border-radius: 24px;
}

body.camprix-template .set-detail-hero h1 {
  margin: 0 0 10px;
  color: var(--theme);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.28;
}

body.camprix-template .detail-label {
  margin: 0 0 10px;
  color: #222;
  font-size: 18px;
  font-weight: 900;
}

body.camprix-template .set-detail-copy p:last-child {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

body.camprix-template .set-detail-dog img {
  width: 180px;
  margin: 0 auto;
}

body.camprix-template .detail-overview,
body.camprix-template .product-explain-list,
body.camprix-template .related-sets,
body.camprix-template .bushcraft-promo,
body.camprix-template .plain-page {
  margin: 0 30px 26px;
}

body.camprix-template .detail-overview {
  padding: 22px;
  background: var(--soft);
  border-radius: 18px;
}

body.camprix-template .detail-overview h2,
body.camprix-template .related-sets h2 {
  margin: 0 0 14px;
  color: #222;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

body.camprix-template .product-explain-list {
  display: grid;
  gap: 18px;
}

body.camprix-template .product-explain-card {
  padding: 24px 22px;
  background: #fff;
  border: 1.5px solid color-mix(in srgb, var(--theme) 30%, var(--line));
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(60, 74, 44, .1);
}

body.camprix-template .product-explain-card h2 {
  margin: 0 0 14px;
  color: var(--theme);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
}

body.camprix-template .affiliate-product {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

body.camprix-template .product-summary + .affiliate-product {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

body.camprix-template .affiliate-image {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #edf2e8;
}

body.camprix-template .affiliate-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

body.camprix-template .affiliate-product.product-id-bushcraft-06 .affiliate-image img {
  padding: 12px;
  background: #fff;
  object-fit: contain;
}

body.camprix-template .affiliate-info h3 {
  margin: 0 0 8px;
  color: #222;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

body.camprix-template .affiliate-info dl {
  display: grid;
  gap: 4px;
  margin: 0 0 10px;
}

body.camprix-template .affiliate-info dl div {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

body.camprix-template .affiliate-info dt {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

body.camprix-template .affiliate-info dd {
  margin: 0;
  color: #c62828;
  font-size: 14px;
  font-weight: 900;
}

body.camprix-template .product-link-button,
body.camprix-template .contact-form button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

body.camprix-template .product-link-button {
  background: linear-gradient(180deg, color-mix(in srgb, var(--theme) 82%, #fff), var(--theme-dark));
  box-shadow: 0 4px 8px rgba(80, 72, 24, .24);
}

body.camprix-template .contact-form button {
  width: 100%;
  min-height: 58px;
  padding: 0 28px;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  box-shadow: 0 4px 8px rgba(178, 78, 0, .24);
  font-size: 20px;
}

body.camprix-template .product-summary {
  margin: 16px 0 0;
  color: #333;
  font-size: 15px;
  font-weight: 700;
}

body.camprix-template .related-set-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.camprix-template .related-set-card {
  padding: 18px;
  background: #fff;
  border: 2px solid var(--theme);
  border-radius: 18px;
}

body.camprix-template .related-set-card h3 {
  margin: 0 0 8px;
  color: var(--theme);
  font-size: 19px;
  font-weight: 900;
}

body.camprix-template .related-set-card p {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

body.camprix-template .related-set-card .set-cta {
  min-height: 46px;
  margin-top: 12px;
  padding-left: 28px;
  font-size: 16px;
}

body.camprix-template .related-set-card .set-cta svg {
  width: 32px;
  height: 32px;
}

body.camprix-template .set-detail-page .detail-overview h2,
body.camprix-template .set-detail-page .related-sets h2 {
  color: var(--theme);
}

body.camprix-template .bushcraft-promo {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, .46), transparent 120px),
    linear-gradient(180deg, #fffaf2, #f7efe4);
  border: 2px solid var(--theme);
  border-radius: 22px;
  box-shadow: 0 8px 20px rgba(63, 41, 24, .14);
}

body.camprix-template .bushcraft-promo-dog img {
  width: 170px;
  margin: 0 auto;
}

body.camprix-template .bushcraft-promo-copy h2 {
  margin: 0 0 8px;
  color: var(--theme);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
}

body.camprix-template .bushcraft-promo-copy p:not(.detail-eyebrow) {
  margin: 0;
  color: #30251c;
  font-size: 15px;
  font-weight: 800;
}

body.camprix-template .plain-page {
  padding: 30px 26px 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

body.camprix-template .plain-page h1 {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 32px;
  font-weight: 900;
}

body.camprix-template .plain-page h2 {
  margin: 24px 0 8px;
  color: #222;
  font-size: 20px;
  font-weight: 900;
}

body.camprix-template .plain-page p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

body.camprix-template .contact-page h1,
body.camprix-template .contact-page .contact-lead {
  text-align: center;
}

body.camprix-template .contact-page .contact-lead {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.8;
}

body.camprix-template .plain-page p + p {
  margin-top: 12px;
}

body.camprix-template .about-manager {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 30px auto 0;
  text-align: center;
}

body.camprix-template .about-manager img {
  width: min(220px, 72vw);
}

body.camprix-template .about-manager figcaption {
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

body.camprix-template .legal-list {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

body.camprix-template .legal-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

body.camprix-template .legal-list div:last-child {
  border-bottom: 0;
}

body.camprix-template .legal-list dt,
body.camprix-template .legal-list dd {
  margin: 0;
  padding: 14px;
  font-size: 14px;
}

body.camprix-template .legal-list dt {
  background: var(--soft);
  font-weight: 900;
}

body.camprix-template .legal-list dd {
  font-weight: 700;
}

body.camprix-template .contact-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

body.camprix-template .contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

body.camprix-template .contact-form em {
  color: #c62828;
  font-style: normal;
  font-size: 12px;
}

body.camprix-template .contact-form input,
body.camprix-template .contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #ccd7c2;
  border-radius: 10px;
  background: #fff;
  font: inherit;
}

body.camprix-template .contact-form input:focus,
body.camprix-template .contact-form textarea:focus {
  outline: 3px solid rgba(53, 168, 6, .2);
  border-color: var(--green);
}

body.camprix-template .form-message {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
}

body.camprix-template .form-message.success {
  background: #eef8e9;
  color: #276d08;
}

body.camprix-template .form-message.error {
  background: #fff0ef;
  color: #b3261e;
}

body.camprix-template .form-message p {
  margin: 0;
}

body.camprix-template .site-footer {
  padding: 28px 20px 34px;
  background: #f4f8ef;
  border-top: 1px solid var(--line);
  text-align: center;
}

body.camprix-template .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: #2d5f1b;
  font-size: 13px;
  font-weight: 900;
}

body.camprix-template .copyright {
  margin: 12px 0 0;
  color: #60725a;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 760px) {
  body.camprix-template .camprix-page {
    border: 0;
  }

  body.camprix-template .brand-logo {
    width: min(430px, 88vw);
  }

  body.camprix-template .hero {
    grid-template-columns: 1fr;
    padding: 8px 18px 18px;
    text-align: center;
  }

  body.camprix-template .hero-dog {
    order: 2;
    justify-self: center;
    margin-top: -4px;
  }

  body.camprix-template .hero-dog img {
    width: 280px;
  }

  body.camprix-template .hero-copy {
    order: 1;
    padding-top: 8px;
  }

  body.camprix-template .hero h1 {
    font-size: 23px;
  }

  body.camprix-template .hero h1 strong {
    font-size: 28px;
  }

  body.camprix-template .hero p {
    font-size: 14px;
  }

  body.camprix-template .hero-camp {
    margin-right: auto;
    margin-left: auto;
  }

  body.camprix-template .set-list {
    padding: 0 18px 18px;
  }

  body.camprix-template .set-card {
    padding: 16px 14px;
  }

  body.camprix-template .set-heading h2 {
    font-size: 24px;
  }

  body.camprix-template .set-body {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 10px;
  }

  body.camprix-template .set-dog {
    width: 132px;
  }

  body.camprix-template .speech {
    min-height: 104px;
    font-size: 14px;
  }

  body.camprix-template .product-grid {
    grid-column: 1 / -1;
    gap: 7px;
  }

  body.camprix-template .set-cta {
    grid-template-columns: 1fr 36px;
    min-height: 52px;
    padding: 0 12px 0 36px;
    font-size: 20px;
  }

  body.camprix-template .set-cta svg {
    width: 34px;
    height: 34px;
  }

  body.camprix-template .concept-block,
  body.camprix-template .set-detail-hero,
  body.camprix-template .detail-overview,
  body.camprix-template .product-explain-list,
  body.camprix-template .related-sets,
  body.camprix-template .bushcraft-promo,
  body.camprix-template .plain-page {
    margin-right: 18px;
    margin-left: 18px;
  }

  body.camprix-template .concept-block {
    padding: 30px 20px 34px;
  }

  body.camprix-template .concept-block h2 {
    font-size: 24px;
  }

  body.camprix-template .set-detail-hero {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    text-align: center;
  }

  body.camprix-template .set-detail-hero h1 {
    font-size: 28px;
  }

  body.camprix-template .set-detail-dog img {
    width: 150px;
  }

  body.camprix-template .affiliate-product {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
  }

  body.camprix-template .related-set-grid {
    grid-template-columns: 1fr;
  }

  body.camprix-template .bushcraft-promo {
    grid-template-columns: 1fr;
    text-align: center;
  }

  body.camprix-template .bushcraft-promo-dog img {
    width: 140px;
  }

  body.camprix-template .legal-list div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  body.camprix-template .site-header {
    padding-top: 18px;
  }

  body.camprix-template .brand-logo {
    width: min(330px, 92vw);
  }

  body.camprix-template .hero h1 {
    font-size: 21px;
  }

  body.camprix-template .hero h1 strong {
    font-size: 25px;
  }

  body.camprix-template .set-body {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  body.camprix-template .set-dog {
    width: 114px;
  }

  body.camprix-template .speech {
    padding: 10px 8px;
    font-size: 13px;
  }

  body.camprix-template .product-thumb figcaption {
    font-size: 11px;
  }

  body.camprix-template .affiliate-product {
    grid-template-columns: 1fr;
  }

  body.camprix-template .affiliate-image {
    width: min(220px, 100%);
    margin: 0 auto;
  }
}
