@charset "shift_jis";

/* -----------------------------------------------------------
 共通タグ
----------------------------------------------------------- */
*, *::before, *::after {  margin: 0; padding: 0; }
.page__inner{
		width:100vw;
	}
#pro_wrapper{
	width:100%;
	font-size:12px;
-webkit-text-size-adjust: 100%;	
font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}
/* ===== CSS Variables ===== */
:root {
  --green-dark: #2d6a2d;
  --green-main: #3d8b3d;
  --green-mid: #5aa85a;
  --green-light: #7ec87e;
  --green-pale: #d4edda;
  --green-bg: #f0f8f0;
  --orange-main: #e07820;
  --orange-light: #f5a040;
  --orange-pale: #fff3e0;
  --yellow-accent: #ffd700;
  --brown-text: #4a3728;
  --text-dark: #333333;
  --text-mid: #555555;
  --text-light: #777777;
  --white: #ffffff;
  --bg-cream: #faf8f4;
  --border-light: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --max-width: 980px;

  /* PC font sizes */
  --fz-mv: 3rem;
  --fz-h1: 2rem;
  --fz-h2: 1.6rem;
  --fz-h3: 1.2rem;
  --fz-body: 1rem;
  --fz-sm: 0.875rem;
  --fz-xs: 0.75rem;
}

/* ===== Reset ===== */
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== Layout Wrapper ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== 画像プレースホルダー共通 ===== */
.img-block {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.img-placeholder {
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: var(--fz-sm);
  border-radius: var(--radius-md);
  min-height: 200px;
}

/* ===== SECTION: mv ===== */
.mv {
  background: var(--white);
  padding: 48px 0 40px;
  text-align: center;
}
.mv-badge-wrap {
  display: inline-block;
  margin-bottom: 20px;
}
.mv-badge-img {
  height: 44px;
  width: auto;
  display: block;
}
.mv-title {
  font-size: var(--fz-mv);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 4px;
}
.mv-title sup {
  font-size: 0.5em;
  vertical-align: super;
}
.mv-desc {
  font-size: var(--fz-h3);
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.8;
}
@media (max-width: 768px) {
    .mv-desc {
  font-size: var(--fz-h3);
  color: var(--text-mid);
  margin-bottom: 0;
  line-height: 1.8;
  text-align: left;
}
}


/* ===== SECTION: Solution ===== */
.solution {
  background: #fbf9ec;
  padding: 60px 0;
}
.section-headline {
  text-align: center;
  margin-bottom: 40px;
}
.section-headline .catch {
  display: block;
  background: none;
  color: var(--text-dark);
  font-size: var(--fz-h2);
  font-weight: 400;
  padding: 0;
  border-radius: 0;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.section-headline h2 {
  font-size: var(--fz-h2);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  display: inline-block;
  background: #ffe566;
  padding: 4px 16px;
  border-radius: 0;
}
.section-headline h2 em {
  color: var(--text-dark);
  font-style: normal;
}

/* Flow: Problem → Solution → Result */
.flow-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.flow-item {
  flex: 1 1 220px;
  max-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}
.flow-item.result {
  background: #fbf9ec;
  border: 2px solid var(--green-mid);
}
.flow-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--green-mid);
  font-size: 2rem;
  font-weight: 900;
}
.flow-icon {
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.flow-label {
  font-size: var(--fz-xs);
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 999px;
  padding: 2px 12px;
  margin-bottom: 8px;
  display: inline-block;
}
.flow-text {
  font-size: var(--fz-sm);
  color: var(--text-mid);
  line-height: 1.6;
}

/* Flow image responsive */
.flow-img-block {
  width: 100%;
  display: block;
}
.flow-img-block img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  margin: 0 auto;
}
.flow-img-block .img-placeholder {
  min-height: 160px;
  border-radius: var(--radius-md);
}
/* PC用画像：デフォルト表示 */
.flow-img-pc { display: block; }
br.pc-br { display: block; }
/* SP用画像：デフォルト非表示 */
.flow-img-sp { display: none; }

@media (max-width: 768px) {
  .flow-img-pc { display: none; }
  br.pc-br { display: none; }
  .flow-img-sp { display: block; }
  .flow-img-block img {
    width: 100%;
  }
}

/* Supervisor section */
.supervisor-box-wrap {
  text-align: center;
  margin-top: 40px;
}
.supervisor-box {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 2px solid var(--green-dark);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  text-align: left;
}
/* supervisor image &mdash; replace src */
.supervisor-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: none;
}
.supervisor-img .img-placeholder {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  min-height: unset;
  font-size: 0.7rem;
  border: none;
}
.supervisor-info .dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  color: var(--green-main);
  font-size: var(--fz-h3);
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.supervisor-info .dev-badge__slash {
  color: var(--green-main);
  font-weight: 400;
  font-size: 1em;
}
.supervisor-info .name {
  font-size: var(--fz-h3);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.supervisor-info .title-list {
  font-size: var(--fz-body);
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== SECTION: Campaign Banner ===== */
.campaign {

}
.campaign-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.campaign-badge {
  background: var(--green-main);
  color: var(--white);
  font-weight: 700;
  font-size: var(--fz-sm);
  padding: 8px 20px;
  border-radius: 999px;
  white-space: nowrap;
}
.campaign-content {
  flex: 1 1 300px;
  text-align: center;
}
.campaign-content .catch {
  font-size: var(--fz-sm);
  color: var(--orange-main);
  font-weight: 700;
  margin-bottom: 8px;
}
/* Campaign flow image &mdash; 1 image, replace src */
.campaign-flow-img img {
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius-md);
}
.campaign-deadline {
  background: var(--orange-main);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  text-align: center;
  font-weight: 700;
  min-width: 80px;
}
.campaign-deadline .date {
  font-size: 1.8rem;
  line-height: 1;
}
.campaign-deadline .unit {
  font-size: var(--fz-xs);
}
.btn-purchase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #f98b42;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  height: 54px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 3px 0 #c05e10, 0 5px 12px rgba(200,90,10,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  min-width: 240px;
}
.btn-purchase:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #c05e10, 0 3px 8px rgba(200,90,10,0.2);
}
.btn-purchase::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2.5px solid var(--white);
  border-right: 2.5px solid var(--white);
  transform: rotate(45deg);
  margin-left: 16px;
  flex-shrink: 0;
  border-radius: 1px;
}


/* ===== SECTION: Features ===== */
.features {
  background: #fbf9ec;
  padding: 64px 0;
}
.features-single-img {
  margin-top: 32px;
  width: 100%;
}
.features-single-img img {
  width: 60%;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fz-body);
  color: var(--text-dark);
  background: var(--green-bg);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--green-mid);
}
.checklist li::before {
  content: "&#10003;";
  color: var(--green-main);
  font-weight: 900;
  font-size: 1.1em;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Color variants */
.variants-title {
  font-size: var(--fz-sm);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
  text-align: center;
  background: var(--green-pale);
  padding: 6px 0;
  border-radius: var(--radius-sm);
}
/* Variant image &mdash; 1 image, replace src */
.variants-img img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Phosphorus/Sodium note */
.mineral-box {
  background: #fff8f0;
  border: 2px solid var(--orange-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 24px;
}
.mineral-box h4 {
  font-size: var(--fz-sm);
  font-weight: 700;
  color: var(--orange-main);
  margin-bottom: 8px;
  text-align: center;
}
.mineral-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mineral-list li {
  font-size: var(--fz-xs);
  color: var(--text-mid);
  padding-left: 12px;
  position: relative;
}
.mineral-list li::before {
  content: "&#9654;";
  color: var(--orange-light);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.6em;
  top: 3px;
}

/* ===== SECTION: Products ===== */
.products {
  background: var(--white);
  padding: 64px 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  margin-top: 40px;
}
.product-card {
  background: var(--white);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: none;
  box-shadow: none;
}
/* Product image &mdash; replace src per card */
.product-card-img {
  background: transparent;
  padding: 0 0 16px;
  text-align: center;
}
.product-card-img img {
  width: 100%;
  max-width: 250px;
  height: 250px;
  object-fit: contain;
  margin: 0 auto;
}
.product-card-img .img-placeholder {
  width: 100%;
  max-width: 180px;
  height: 200px;
  margin: 0 auto;
  min-height: unset;
  border-radius: 0;
}
.product-card-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-name {
  font-size: var(--fz-h3);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
a:has(> .btn-product) {
  display: block;
  width: 100%;
}
.btn-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #f98b42;
  color: var(--white);
  font-size: var(--fz-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0 12px 0 20px;
  height: 44px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 3px 0 #c05e10, 0 4px 10px rgba(200,90,10,0.2);
  width: 100%;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  position: relative;
}
.btn-product:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #c05e10, 0 2px 6px rgba(200,90,10,0.15);
}
/* CSS純粋矢印（&#8250;文字ではなくborderで生成） */
.btn-product::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2.5px solid var(--white);
  border-right: 2.5px solid var(--white);
  transform: rotate(45deg);
  margin-left: 14px;
  flex-shrink: 0;
  border-radius: 1px;
}

/* ===== SECTION: Oyatsu (Snack) Series ===== */
/* ===== SECTION: Oyatsu ===== */
.oyatsu {
  background: #f5f3fa;
  padding: 64px 0;
}
/* 上段：画像＋右コンテンツ */
.oyatsu-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
.oyatsu-img img {
  width: 100%;
  display: block;
}
/* 右：紫タイトル帯 */
.oyatsu-title-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #5c3a7e;
  color: var(--white);
  padding: 14px 20px;
  margin-bottom: 20px;
}
.oyatsu-title-bar .main-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.oyatsu-title-bar .sub-title {
  font-size: var(--fz-sm);
  font-weight: 700;
  line-height: 1.5;
}
/* 栄養成分表 */
.oyatsu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fz-sm);
}
.oyatsu-table th,
.oyatsu-table td {
  padding: 8px 14px;
  text-align: center;
  border: 1px solid #ddd;
}
.oyatsu-table thead th {
  background: #f0eaf6;
  font-weight: 700;
  color: var(--text-dark);
}
.oyatsu-table tbody tr:nth-child(odd) { background: #faf8fd; }
.oyatsu-table tbody tr:nth-child(even) { background: #fff; }
.oyatsu-table tbody td:first-child {
  font-weight: 700;
  text-align: left;
}
/* 下段：6こだわりリスト 2列 */
.oyatsu-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-top: 36px;
}
.oyatsu-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}
.oyatsu-feature-item .kodawari-badge {
  background: #7c5aa0;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1.3;
  text-align: center;
}
.oyatsu-feature-item .kodawari-badge span {
  font-size: 0.6rem;
}
.oyatsu-feature-item .feature-text strong {
  display: block;
  font-size: var(--fz-h3);
  font-weight: 700;
  color: #5c3a7e;
  margin-bottom: 2px;
}
.oyatsu-feature-item .feature-text p {
  font-size: var(--fz-body);
  color: var(--text-mid);
  line-height: 1.6;
}
.oyatsu .sec-divider {
  background: #5c3a7e;
}
@media (max-width: 768px) {
  .features-single-img img {
  width: 90%;
  display: block;
  margin: 0 auto;
}
  .oyatsu-top { grid-template-columns: 1fr; gap: 24px; }
  .oyatsu-features { grid-template-columns: 1fr; gap: 20px; }
  .oyatsu-title-bar { flex-wrap: nowrap; align-items: center; }
  .oyatsu-title-bar .main-title { font-size: 1.5rem; white-space: normal; }
  .oyatsu-table { font-size: var(--fz-body); }
  .oyatsu-table th,
  .oyatsu-table td { padding: 6px 8px; word-break: keep-all; }
}

/* ===== SECTION: Campaign (Bottom) ===== */
.campaign-bottom {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  padding: 48px 0;
}
.campaign-bottom-single {
  width: 100%;
}
.campaign-bottom-single img {
  width: auto;
  display: block;
  margin: 0 auto;
  padding-bottom: 40px;

}
/* PC/SP 画像切り替え */
.campaign-bottom-single .cp-img-pc { display: block; }
.campaign-bottom-single .cp-img-sp { display: none; }
@media (max-width: 768px) {
  .campaign-bottom-single .cp-img-pc { display: none; }
  .campaign-bottom-single .cp-img-sp { display: block; }
}
.btn-purchase--campaign {
  width: 480px;
  min-width: unset;
}
@media (max-width: 768px) {
  .btn-purchase--campaign {
    width: 90%;
  }
}

/* ===== Section Title Common ===== */
.sec-title {
  font-size: var(--fz-h1);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
}
.sec-sub {
  font-size: var(--fz-body);
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 8px;
}
.sec-divider {
  width: 48px;
  height: 4px;
  background: var(--green-main);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ===== SP: Responsive (Mobile) ===== */
@media (max-width: 768px) {
  :root {
    /* SP font sizes */
    --fz-mv: 1.9rem;
    --fz-h1: 1.4rem;
    --fz-h2: 1.2rem;
    --fz-h3: 1.05rem;
    --fz-body: 0.9375rem;
    --fz-sm: 0.8125rem;
    --fz-xs: 0.6875rem;
  }

  .container {
    padding: 0;
    width: 90%;
  }

  .mv { padding: 32px 0 28px; }

  .flow-row { flex-direction: column; align-items: center; gap: 8px; }
  .flow-item { max-width: 100%; width: 100%; }
  .flow-arrow { transform: rotate(90deg); font-size: 1.6rem; padding: 4px 0; }

  .supervisor-box-wrap { text-align: center; }
  .supervisor-box { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px; gap: 16px; width: 100%; box-sizing: border-box; }

  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .features-img { order: -1; }

  .products-grid { grid-template-columns: 1fr; gap: 24px 16px; }
  .product-card-img img { width: 100%; max-width: 100%; height: 250px; }

  .campaign-inner { flex-direction: column; gap: 20px; }

  .solution { padding: 40px 0; }
  .features { padding: 40px 0; }
  .products { padding: 40px 0; }
  .oyatsu { padding: 40px 0; }

  .btn-purchase { padding: 14px 36px; font-size: 0.9375rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-4 { margin-bottom: 4px; }
/* -----------------------------------------------------------
 ↑↑↑↑↑ CSSの追記はここまで ↑↑↑↑↑
----------------------------------------------------------- */



/* for IE7 only */
*:first-child+html div,
*:first-child+html ul,
*:first-child+html ol,
*:first-child+html dl,
*:first-child+html .clearfix{
height:1%;
}

