/* =====================================
 COMMON
===================================== */
:root {
  --site-width: 520px;
  --green: #003333;
  --nav-green: #e3e37e;
  --gold: #929248;
  --orange: #c48a4d;
  --business-bg: #faf8f4;
  --line-gray: #b4b4b4;
  --sub-green: #0b6c4c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f2f2f2;
  color: #000;
  font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", serif;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-wrap {
  width: min(100%, var(--site-width));
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.about-page .page-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}
/* =====================================
 HEADER
===================================== */
.site-header {
  background: #fff;
  padding-top: 24px;
}

.site-logo {
  display: block;
  width: 260px;
  margin: 0 0 18px 28px;
}

.global-nav {
  background: var(--nav-green);
  min-height: 48px;
  position: relative;
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 12px 18px;
  font-size: 13px;
  color: var(--green);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

/* =====================================
 TOP HERO
===================================== */

.hero {
  background: #fff;
  padding: 0;
}

.hero-visual {
  position: relative;
  background: #fff;
}

.hero-image {
  width: 68%;
  margin-left: auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-kicker,
.hero-title,
.hero-lead {
  position: absolute;
  z-index: 2;
}

.hero-kicker {
  left: 4%;
  top: 7%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-kicker span {
  white-space: nowrap;
}

.hero-title {
  left: 5%;
  top: 20%;
  margin: 0;
  color: var(--green);
  font-size: 32px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.hero-lead {
  left: 5.5%;
  top: 90%;
  margin: 0;
  color: #000;
  font-size: 17px;
  line-height: 1.7;
}

.hero-body {
  padding: 56px 30px 56px;
  background: #fff;
}

.hero-text {
  margin: 0 0 30px;
  color: #000;
  font-size: 16px;
  line-height: 1.85;
}

.hero .outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 17px;
  line-height: 1.4;
}


  /* =====================================
    BUSINESS
  ===================================== */
  .business {
    background: var(--business-bg);
    padding: 52px 28px 70px;
  }

  .section-heading {
    text-align: center;
    margin-bottom: 28px;
  }

  .section-en {
    margin: 0 0 8px;
    color: var(--orange);
    font-size: 20px;
  }

  .section-en::before,
  .section-en::after {
    content: "—";
    margin: 0 10px;
  }

  .section-heading h2 {
    margin: 0 0 8px;
    font-size: 33px;
    font-weight: 500;
    line-height: 1.5;
  }

  .section-heading p:last-child {
    margin: 0;
    font-size: 17px;
  }

  .business-list {
    display: grid;
    gap: 28px;
  }

  .business-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 185px;
    min-height: 190px;
    background: #fff;
    border: 1px solid var(--line-gray);
    border-radius: 10px;
    overflow: hidden;
  }

  .business-card-text {
    position: relative;
    z-index: 2;
    padding: 12px 0 12px 20px;
  }

  .business-num {
    position: relative;
    margin: 0 0 14px;
    color: var(--orange);
    font-size: 18px;
    line-height: 1;
  }

  .business-num::after {
    content: "";
    display: block;
    width: 2px;
    height: 46px;
    background: #b4b4b4;
    margin: 10px 0 0 8px;
  }

  .business-card h3 {
    margin: -65px 0 0 40px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
  }

  .business-en {
    margin: 0 0 12px 42px;
    color: var(--sub-green);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
  }

  .business-desc {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
  }

  .text-link {
    display: inline-block;
    color: var(--gold);
    font-size: 17px;
    border-bottom: 1px solid var(--gold);
    line-height: 1.6;
  }

  .business-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 12px 18px 0;
  }

  .business-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
  }

  /* =====================================
  　GOTOF
  ===================================== */
  .gotof {
    background: #fff;
    padding: 56px 30px 64px;
  }

  .gotof .section-heading {
    margin-bottom: 24px;
  }

  .gotof .section-heading h2 {
    color: #000;
    font-size: 30px;
    line-height: 1.6;
  }

  .gotof-message {
    margin: 0 0 28px;
  }

  .gotof-center {
    text-align: center;
    margin: 0 0 24px;
    line-height: 2;
  }

  .gotof-name {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .gotof-body {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
  }

  .gotof-body p {
    margin: 0 0 28px;
    line-height: 2.05;
  }

  .gotof-body p:last-child {
    margin-bottom: 0;
  }

  .outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 17px;
    line-height: 1.4;
  }

  /* =====================================
  MEDIA
  ===================================== */
  .media {
    background: #fff;
    padding: 56px 28px 70px;
  }

  .media .section-heading {
    margin-bottom: 26px;
  }

  .media-card {
    background: #faf8f4;
    border: 1px solid var(--orange);
    padding: 10px 16px;
    margin-bottom: 18px;
  }

  .media-card h3 {
    margin: 0 0 10px;
    color: var(--orange);
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .media-card p {
    margin: 0;
    color: #000;
    font-size: 15px;
    line-height: 1.85;
  }

  .media-card-row {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 8px;
    align-items: center;
  }

  .media-card-row img {
    width: 140px;
    height: auto;
    display: block;
    justify-self: end;
  }

  .media-card-books {
    margin-bottom: 12px;
  }

  .media-books-img {
    width: 95%;
    display: block;
    margin: 0 auto;
  }


  /* =====================================
  PRODUCT
  ===================================== */

  .product-section {
    background: #fff;
    padding: 56px 0 60px;
  }

  .product-inner {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .product-inner > h2 {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
  }

  .product-inner > p:not(.section-en) {
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.8;
  }

  .product-card-area {
    background: #faf8f4;
    padding: 32px 20px 40px;
  }

  .product-card {
    background: #fdfcfa;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
    text-align: left;
  }

  .product-card:last-child {
    margin-bottom: 0;
  }

  .product-img-wrap {
    background: #fdfcfa;
  }

  .product-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
  }

  .product-text {
    background: #fdfcfa;
    padding: 18px 18px 22px;
  }

  .product-category-en {
    margin: 0 0 6px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.4;
  }

  .product-name {
    margin: 0 0 12px;
    color: #000;
    font-size: 21px;
    line-height: 1.45;
  }

  .product-description {
    width: 90%;
    margin: 0 auto 20px;
    color: #000;
    font-size: 14px;
    line-height: 1.9;
  }

  .product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    width: 90%;
    margin: 0 auto 20px;
  }

  .product-tags span {
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    padding: 6px 10px;
  }

  /* 見出しを画像上に重ねるカード */

  .product-card-food,
  .product-card-heart {
    position: relative;
  }

  .product-card-food .product-category-en,
  .product-card-food .product-name,
  .product-card-heart .product-category-en,
  .product-card-heart .product-name {
    position: absolute;
    left: 20px;
    z-index: 2;
  }

  .product-card-food .product-category-en,
  .product-card-heart .product-category-en {
    top: 20px;
  }

  .product-card-food .product-name,
  .product-card-heart .product-name {
    top: 42px;
  }

  .product-card-food .product-text .product-category-en,
  .product-card-food .product-text .product-name,
  .product-card-heart .product-text .product-category-en,
  .product-card-heart .product-text .product-name {
    margin: 0;
  }

  /* シャンプー */

  .product-text-heading {
    padding: 20px 18px 0;
  }

  .product-text-heading .product-category-en {
    margin: 0 0 6px;
  }

  .product-text-heading .product-name {
    margin: 0;
  }

  .product-card-shampoo .product-img-wrap {
    padding-top: 10px;
  }

  .product-card-shampoo .product-img-wrap img {
    width: 88%;
    margin: 0 auto;
  }

  /* ワンデリッチ */

  .product-card-wanderich .product-img-wrap {
    padding-top: 20px;
  }

  .product-card-wanderich .product-img-wrap img {
    width: 95%;
    margin: 0 auto;
  }



  @import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&display=swap');

  /* =========================
    JOIN US
  ========================= */

  .join-section {
    background: #faf8f4;
    padding: 56px 20px 48px;
    text-align: center;
  }

  .join-inner {
    max-width: 860px;
    margin: 0 auto;
  }

  .join-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
  }

  .join-label::before,
  .join-label::after {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .join-title {
    color: #000;
    font-size: 28px;
    line-height: 1.7;
    margin: 0 0 28px;
  }

  .join-lead {
    color: #000;
    font-size: 15px;
    line-height: 1.9;
    margin: 0 0 32px;
  }

  .join-cta-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 350px;
    margin: 0 auto;
  }

  .join-cta {
    display: block;
    border: 1px solid #929248;
    color: #929248;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    padding: 10px 20px;
  }

  /* =========================
    FOOTER
  ========================= */

  .site-footer {
    background: #929248;
    color: #fff;
    padding: 32px 28px 18px;
  }

  .footer-inner {
    max-width: 860px;
    margin: 0 auto;
  }

  .footer-company {
    margin-bottom: 18px;
  }

  .footer-company-name {
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    margin: 0;
  }

  .footer-company-en {
    color: #fff;
    font-size: 15px;
    font-style: italic;
    line-height: 1.4;
    margin: 2px 0 0;
  }

  .footer-address {
    font-family: 'Arimo', sans-serif;
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .footer-address p {
    margin: 0;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }

  .footer-nav-column {
    padding: 16px 14px 18px;
    border-right: 1px solid #fff;
  }

  .footer-nav-column:last-child {
    border-right: none;
  }

  .footer-nav-title {
    color: #fff;
    font-size: 15px;
    font-style: italic;
    line-height: 1.4;
    margin: 0 0 14px;
  }

  .footer-nav-column a {
    display: block;
    font-family: 'Arimo', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .footer-nav-column a:last-child {
    margin-bottom: 0;
  }

  .footer-copy {
    font-family: 'Arimo', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    margin: 18px 0 0;
  }

  /* =====================================
    TABLET & SMARTPHONE NAV
    ===================================== */
  @media (max-width: 767px) {
    .site-logo {
      width: 230px;
      margin-left: 24px;
    }

    .nav-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      width: 48px;
      height: 48px;
      margin-left: auto;
      padding: 14px;
      border: none;
      background: transparent;
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--green);
    }

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: 0 0 12px;
    }

    .global-nav.is-open .nav-list {
      display: flex;
    }

    .nav-list li {
      width: 100%;
      text-align: center;
    }

    .nav-list a {
      display: block;
      padding: 10px;
    }
  }

  @media (max-width: 430px) {

    /* =====================================
      HERO
    ===================================== */

    .hero-image {
      width: 72%;
    }

    .hero-kicker {
      left: 4%;
      top: 7%;
      gap: 8px;
      font-size: 12px;
    }

    .hero-kicker::before,
    .hero-kicker::after {
      width: 14px;
    }

    .hero-title {
      left: 5%;
      top: 23%;
      font-size: 23px;
      line-height: 1.55;
    }

    .hero-lead {
      left: 5%;
      top: 90%;
      font-size: 13px;
      line-height: 1.65;
    }

    .hero-body {
      padding: 48px 20px 48px;
    }

    .hero-text {
      margin-bottom: 26px;
      font-size: 12px;
      line-height: 1.85;
    }

    .hero .outline-btn {
      min-width: 210px;
      padding: 8px 18px;
      font-size: 13px;
    }


    /* =====================================
      COMMON HEADING
    ===================================== */

    .section-en {
      font-size: 13px;
    }

    .section-en::before,
    .section-en::after {
      margin: 0 8px;
    }

    .section-heading h2,
    .gotof .section-heading h2,
    .product-inner > h2 {
      font-size: 20px;
    }

    .section-heading p:last-child,
    .product-inner > p:not(.section-en) {
      font-size: 14px;
      line-height: 1.8;
    }


    /* =====================================
      BUSINESS
    ===================================== */

    .business {
      padding: 42px 18px 56px;
    }

    .business-list {
      gap: 24px;
    }

    .business-card {
      grid-template-columns: 1fr 42%;
      min-height: 0;
    }

    .business-card-text {
      padding: 7px 0 10px 8px;
    }

    .business-num {
      font-size: 14px;
      margin-bottom: 12px;
    }

    .business-num::after {
      height: 42px;
      margin-top: 8px;
    }

    .business-card h3 {
      margin: -60px 0 0 26px;
      font-size: 24px;
      line-height: 1.25;
    }

    .business-en {
      margin: 0 0 10px 26px;
      font-size: 12px;
    }

    .business-desc {
      max-width: 95%;
      font-size: 12px;
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .text-link {
      font-size: 14px;
    }

    .business-img {
      padding: 0 10px 0 0;
      position: relative;
      top: -25px;
      height: auto;
    }

    .business-img img {
      width: 108%;
      max-width: none;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }

    /* =====================================
      PRODUCT
    ===================================== */

    .product-section {
      padding: 48px 0 54px;
    }

    .product-card-area {
      padding: 28px 18px 36px;
    }

    .product-card {
      margin-bottom: 28px;
      border-radius: 16px;
    }

    .product-text {
      padding: 16px 16px 20px;
    }

    .product-name {
      font-size: 19px;
    }

    .product-description {
      width: 90%;
      font-size: 12px;
      line-height: 1.85;
    }

    .product-tags {
      width: 90%;
      gap: 6px;
    }

    .product-tags span {
      font-size: 11px;
      padding: 5px 9px;
    }

    .product-card-food .product-category-en,
    .product-card-heart .product-category-en {
      top: 14px;
    }

    .product-card-food .product-name,
    .product-card-heart .product-name {
      top: 34px;
    }

    .product-card-shampoo .product-img-wrap img {
      width: 88%;
    }

    .product-card-wanderich .product-img-wrap img {
      width: 95%;
    }


    /* =====================================
      GOTOF
    ===================================== */

    .gotof {
      padding: 48px 28px 56px;
    }

    .gotof-center {
      font-size: 14px;
      line-height: 1.9;
    }

    .gotof-body p {
      font-size: 14px;
      line-height: 2;
    }

    .gotof-name {
      font-size: 13px;
      margin-bottom: 32px;
    }

    .gotof-cta {
      text-align: center;
    }    

    .gotof-cta .outline-btn {
      min-width: 210px;
      padding: 8px 16px;
      font-size: 13px;
    }

    /* =====================================
      MEDIA
    ===================================== */

    .media {
      padding: 48px 28px 56px;
    }

    .media-card-row {
      grid-template-columns: 1fr 30%;
      gap: 4px;
    }

    .media-card-row img {
      width: 100%;
    }

    .media-card h3 {
      font-size: 13px;
    }

    .media-card p {
      font-size: 12px;
      line-height: 1.8;
    }

    .media-books-img {
      width: 100%;
    }    


    /* =====================================
      JOIN US
    ===================================== */

    .join-label {
      font-size: 13px;
    }

    .join-title {
      font-size: 20px;
      line-height: 1.65;
    }

    .join-lead {
      font-size: 13px;
      line-height: 1.9;
    }

    .join-cta-list {
      max-width: 320px;
    }

    .join-cta {
      font-size: 14px;
      padding: 9px 16px;
    }


      /* =====================================
        FOOTER
      ===================================== */

      .footer-company-name {
        font-size: 21px;
      }

      .footer-company-en {
        font-size: 13px;
      }

      .footer-address {
        font-size: 13px;
      }

      .footer-nav-title {
        font-size: 13px;
      }

      .footer-nav-column a {
        font-size: 11px;
      }

      .footer-copy {
        font-size: 11px;
      }


  }

