@charset "shift_jis";

/* -----------------------------------------------------------
 ‹¤’Êƒ^ƒO
----------------------------------------------------------- */
*{ margin:0; padding:0;}
.page__inner{
		width:100vw;
	}
a{outline: none; text-decoration: none;}
a:focus{outline:none;}
/*html{ background-color:#4E4A41;}*/
img{
	vertical-align:bottom;
	border: none;
	}

#pro_wrapper{
	width:100%;
	font-size:12px;
-webkit-text-size-adjust: 100%;	
font-family: 'Hiragino Kaku Gothic ProN', 'ƒqƒ‰ƒMƒmŠpƒS ProN W3', Meiryo, ƒƒCƒŠƒI, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}
    /* ===========================
       CSS Variables & Reset
    =========================== */
    :root {
      --color-green: #5a8a6a;
      --color-green-dark: #4a7a5a;
      --color-green-light: #e8f0e8;
      --color-green-bg: #8bbc99;
      --color-orange: #e07a3a;
      --color-orange-dark: #c86a2a;
      --color-red: #e56245;
      --color-text: #333333;
      --color-text-light: #555555;
      --color-white: #ffffff;
      --color-bg-light: #f3f3e4;
      --color-bg-card: #f9f7f3;
      --color-border: #dddddd;
      --font-base: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
      --max-width: 980px;
      --sp-width: 90%;
    }

    *, *::before, *::after {
      margin: 0;
      padding: 0;
    }

    img {
      display: block;
    }

    /* ===========================
       Layout Utility
    =========================== */
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    @media (max-width: 767px) {
      .container {
        width: var(--sp-width);
        padding: 0;
      }
    }

    /* ===========================
       Picture / Image switching
       PC: .img-pc / SP: .img-sp
    =========================== */
    .img-pc { display: block; }
    .img-sp { display: none; }

    @media (max-width: 767px) {
      .img-pc { display: none; }
      .img-sp { display: block; }
    }

    /* ===========================
       CTA Button
    =========================== */
    .btn-cv {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--color-orange);
      color: var(--color-white)!important;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      padding: 18px 40px;
      border-radius: 60px;
      border: none;
      cursor: pointer;
      transition: background 0.2s ease, box-shadow 0.2s ease;
      width: 100%;
      max-width: 560px;
      white-space: nowrap;
      letter-spacing: 0.05em;
      box-shadow: 0 4px 12px rgba(224, 122, 58, 0.45);
    }

    .btn-cv:hover {
      background: var(--color-orange-dark);
      box-shadow: 0 6px 16px rgba(224, 122, 58, 0.55);
      text-decoration:none;
    }

    /* CSS arrow > */
    .btn-cv::after {
      content: '';
      display: inline-block;
      width: 9px;
      height: 9px;
      border-top: 2px solid var(--color-white);
      border-right: 2px solid var(--color-white);
      transform: rotate(45deg);
      flex-shrink: 0;
      margin-left: 4px;
    }

    .btn-wrap {
      text-align: center;
      margin-top: 24px;
    }

    @media (max-width: 767px) {
      .btn-cv {
        font-size: 13px;
        padding: 16px 28px;
        white-space: normal;
        max-width: 100%;
      }
    }

    /* ===========================
   Section 1: Hero / Campaign
=========================== */
.hero-img-wrap {
  position: relative;
  display: block;
  background-color: var(--color-green-bg);
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-bg-light);
  clip-path: polygon(0 0, 58% 0, 44% 100%, 0 100%);
  z-index: 1;
}
.hero-bg-img {
  width: auto;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.hero .container {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 3;
}
.hero .btn-wrap {
  margin: 0;
  padding: 0 20px;
  text-align: center;
}

/* ’ŽßƒeƒLƒXƒg */
.btn-note {
  font-size: 12px;
  color: #666666;
  text-align: left;
  margin: 0 auto 20px;
  max-width: 1000px;
}

@media (max-width: 767px) {
  .hero-img-wrap::before {
    clip-path: polygon(0 0, 100% 0, 100% 52%, 0 58%);
  }
  .hero .container {
    position: static;
    padding: 16px 0 24px;
    background: var(--color-green-bg);
  }
  .hero .btn-wrap {
    padding: 0 16px;
  }
  .hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
  }

  /* SPF’ŽßƒeƒLƒXƒg */
  .btn-note {
    font-size: 11px;
    color: var(--color-white);
    max-width: 100%;
  }
}

    /* ===========================
       ‹¤’ÊFƒZƒNƒVƒ‡ƒ“ƒ^ƒCƒgƒ‹
       ƒƒS‰æ‘œ { ƒ^ƒCƒgƒ‹ƒeƒLƒXƒg
       c•À‚ÑEƒZƒ“ƒ^[Šñ‚¹
    =========================== */
    .section-title {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 32px;
    }

    .section-title-logo {
      display: block;
      flex-shrink: 0;
    }

    .section-title h2 {
      font-size: 20px;
      font-weight: bold;
      line-height: 1.4;
    }

    .section-title h2 span {
      font-size: 13px;
      font-weight: normal;
      color: var(--color-text-light);
      display: block;
      margin-top: 4px;
    }

    @media (max-width: 767px) {
      .section-title {
        gap: 14px;
        margin-bottom: 24px;
      }

      .section-title h2 {
        font-size: 16px;
      }
    }

    /* ===========================
       Section 2: Brand Intro (Kia Ora)
    =========================== */
    .brand-intro {
      padding: 48px 0 0;
      background: var(--color-white);
      text-align: left!important;
    }

    .brand-intro .section-title-logo {}

    @media (max-width: 767px) {
      .brand-intro .section-title-logo {}
    }

    /* ã’iF»•i‰æ‘œ + à–¾ƒeƒLƒXƒg */
    .brand-intro-top {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      margin-bottom: 32px;
    }

    .brand-intro-img-wrap {
      flex-shrink: 0;
    }

    .brand-intro-desc {
      flex: 1;
      min-width: 0;
      padding-top: 8px;
    }

    .brand-intro-desc p {
      font-size: 15px;
      line-height: 1.85;
      margin-bottom: 14px;
      color: var(--color-text);
    }

    .brand-intro-desc p:last-child {
      margin-bottom: 0;
    }

    /* ‰º’iF—Î”wŒi 2ƒJƒ‰ƒ€ƒJ[ƒh */
    .feature-section {
      padding: 0 0 16px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .feature-card {
      background: var(--color-white);
      border-radius: 2px;
      overflow: hidden;
    }

    .feature-card-title {
      background: var(--color-green-dark);
      color: var(--color-white);
      font-size: 15px;
      font-weight: bold;
      padding: 14px 28px;
      text-align: center;
    }

    .feature-card-body {
      font-size: 15px;
      line-height: 1.85;
      color: var(--color-text);
      padding: 24px 28px 28px;
    }

    .feature-card-body p {
      margin-bottom: 10px;
    }

    .feature-card-body p:last-child {
      margin-bottom: 0;
    }

    .feature-card-body ul {
      list-style: none;
      padding: 0;
      margin: 10px 0;
    }

    .feature-card-body ul li {
      padding-left: 1em;
      text-indent: -1em;
    }

    .feature-card-body ul li::before {
      content: 'E';
    }

    .campaign-cta-area {
      margin-top: 36px;
      text-align: center;
    }

    .campaign-cta-area .campaign-note {
      font-size: 14px;
      font-weight: bold;
      color: var(--color-orange);
      margin-bottom: 6px;
    }

    .campaign-cta-area .campaign-date {
      font-size: 13px;
      color: var(--color-orange);
      margin-bottom: 16px;
    }

    @media (max-width: 767px) {
      .brand-intro {
        padding: 32px 0 0;
      }

      .brand-intro-top {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
      }

      .brand-intro-img-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
      }

      .brand-intro-desc {
        padding-top: 0;
      }

      .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .feature-card-title {
        font-size: 13px;
        padding: 10px 16px;
      }

      .feature-card-body {
        padding: 16px 16px 20px;
      }
    }

    /* ===========================
       Section 3: DOGŠÊ (Wet Food)
    =========================== */
    .wetfood {
      background: var(--color-green-bg);
      padding: 48px 0;
      text-align: left!important;
    }

    .wetfood-card {
      background: var(--color-white);
      border-radius: 6px;
      padding: 36px 40px;
    }

    .wetfood .section-title-logo {}

    .wetfood-sub {
      font-size: 15px;
      color: var(--color-text-light);
      margin-bottom: 24px;
      line-height: 1.7;
      text-align: center;
    }

    .wetfood-body {
      display: flex;
      gap: 36px;
      align-items: flex-start;
    }

    .wetfood-img-wrap {
      flex-shrink: 0;
      position: relative;
    }


    .wetfood-features {
      flex: 1;
      min-width: 0;
    }

    .wetfood-features-title {
      background: var(--color-green);
      color: var(--color-white);
      font-size: 15px;
      font-weight: bold;
      padding: 8px 14px;
      margin-bottom: 12px;
    }

    .wetfood-features ul {
      list-style: none;
      padding: 0;
      font-size: 15px;
      line-height: 2;
      color: var(--color-text-light);
    }

    .wetfood-features ul li::before {
      content: 'E';
    }

    @media (max-width: 767px) {
      .wetfood {
        padding: 32px 0;
      }

      .wetfood-card {
        padding: 24px 20px;
      }

      .wetfood .section-title-logo {}

      .wetfood-body {
        flex-direction: column;
        gap: 20px;
      }

      .wetfood-img-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
      }

      .wetfood-features {
        width: 100%;
      }

      .wetfood-features-title {
        width: 100%;
        box-sizing: border-box;
      }
     .wetfood-sub {
      text-align: left;
    }
    }

    /* ===========================
       Section 4: Barrier Supple
    =========================== */
    .barrier {
      padding: 48px 0;
      background: var(--color-bg-light);
      text-align: left!important;
    }

    .barrier-card {
      background: var(--color-white);
      border-radius: 6px;
      padding: 36px 40px;
      border: 1px solid var(--color-border);
    }

    .barrier .section-title-logo {}

    .barrier-desc {
      font-size: 15px;
      color: var(--color-text-light);
      line-height: 1.8;
      margin-bottom: 28px;
      text-align: center;
    }

    .barrier-body {
      display: flex;
      gap: 36px;
      align-items: flex-start;
    }

    .barrier-img-wrap {
      flex-shrink: 0;
    }

    .barrier-ingredients {
      flex: 1;
      min-width: 0;
    }

    .barrier-ingredients-title {
      background: var(--color-red);
      color: var(--color-white);
      font-size: 15px;
      font-weight: bold;
      padding: 8px 14px;
      margin-bottom: 12px;
    }

    .barrier-ingredients-list {
      font-size: 15px;
      line-height: 2;
      color: var(--color-text);
      margin-bottom: 14px;
    }

    .barrier-ingredients-note {
      font-size: 15px;
      color: var(--color-text-light);
      line-height: 1.7;
    }

    @media (max-width: 767px) {
      .barrier {
        padding: 32px 0;
      }

      .barrier-ingredients {
        width: 100%;
      }

      .barrier-ingredients-title {
        width: 100%;
        box-sizing: border-box;
      }

      .barrier-card {
        padding: 24px 20px;
      }

      .barrier .section-title-logo {}

      .barrier-body {
        flex-direction: column;
        gap: 20px;
      }

      .barrier-img-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
      }
       .barrier-desc {
      text-align: left;
    }
    }

    /* ===========================
   Campaign note shared
=========================== */
.campaign-bar {
  text-align: center;
  padding: 20px 0 36px;
}
.campaign-bar .campaign-note {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-orange);
}
.campaign-bar .campaign-note .slant {
  font-size: 18px;
  margin: 0 4px;
}
.campaign-bar .campaign-date {
  font-size: 15px;
  color: var(--color-orange);
  margin-bottom: 16px;
}

/* SP•\Ž¦‚Ì’²® */
.sp-br {
  display: none;
}
@media (max-width: 767px) {
  .sp-hide {
    display: none;
  }
  .sp-br {
    display: block;
  }
}

    /* ===========================
       Divider line
    =========================== */
    .divider {
      border: none;
      border-top: 1px solid var(--color-border);
      margin: 0;
    }

    /* ===========================
       Misc helpers
    =========================== */
    .text-center { text-align: center; }
    .mt8  { margin-top: 8px; }
    .mt12 { margin-top: 12px; }
    .mt16 { margin-top: 16px; }
    .mt24 { margin-top: 24px; }
    .mt32 { margin-top: 32px; }
.pc {
  display: block;
}
.sp{
    display: none;
}
@media (max-width: 768px) {
 .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* -----------------------------------------------------------
 ªªªªª CSS‚Ì’Ç‹L‚Í‚±‚±‚Ü‚Å ªªªªª
----------------------------------------------------------- */



/* 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%;
}

