/** Shopify CDN: Minification failed

Line 673:1 Unexpected "="

**/
/* ==========================================================================
   GOJOKURU SECTIONS (CLEAN & SIMPLE)
   - Header, MV, News, About, New Arrivals, FAQ, Footer
   ========================================================================== */

/* -----------------------------------------------------------
   0. グローバル設定（横揺れ防止）
   ----------------------------------------------------------- */
html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* -----------------------------------------------------------
   1. ヘッダーの調整
   ----------------------------------------------------------- */
body .header-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(89, 74, 59, 0.08);
  height: auto;
}

/* -----------------------------------------------------------
   2. MV（メインビジュアル）エリア
   ----------------------------------------------------------- */
body .mv-section-wrapper {
  margin-top: -20px;
  padding-top: 50px;
  padding-bottom: 80px;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

/* 下部装飾（千切り絵風） */
.mv-section-wrapper .wave-bottom-decoration {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 15px;
  z-index: 2;
  transform: rotate(180deg);
  background-image:
    linear-gradient(45deg, transparent 33.3%, #fcfaf2 33.3%, #fcfaf2 66.6%, transparent 66.6%),
    linear-gradient(-45deg, transparent 33.3%, #fcfaf2 33.3%, #fcfaf2 66.6%, transparent 66.6%);
  background-size: 20px 20px;
  background-repeat: repeat-x;
}

.mv-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  /* paddingは base.css の .page-width に任せるので記述不要 */
}

/* MV装飾パーツ */
.mv-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: auto;
  height: auto;
}

.mv-deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.deco-top-left {
  top: -40px;
  left: 20px;
  width: 160px;
  height: 140px;
  transform: rotate(-15deg);
}

.deco-top-right {
  top: -20px;
  right: 40px;
  width: 120px;
  height: 120px;
  transform: rotate(10deg);
}

.deco-bottom-left {
  bottom: -50px;
  left: 15%;
  width: 140px;
  height: 140px;
  z-index: 3;
}

.deco-center-floating {
  top: 30%;
  right: 18%;
  width: 50px;
  height: 50px;
  animation: floating 3s ease-in-out infinite alternate;
}

@keyframes floating {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* MV スライダー本体 */
.mv-container .mv {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100px;
}

.mv .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.mv .slick-slide {
  margin: 0 15px;
  /* PC用隙間 */
  transition: transform 0.3s ease;
  opacity: 0.8;
  transform: scale(0.95);
}

.mv .slick-center {
  opacity: 1;
  transform: scale(1.0);
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* 矢印・ドット */
.mv .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  background-color: #fff;
  border: 2px solid var(--theme-color-accent);
  border-radius: 50%;
  color: transparent;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mv .slick-prev {
  left: -20px;
}

.mv .slick-next {
  right: -20px;
}

.mv .slick-arrow::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--theme-color-accent);
  border-right: 3px solid var(--theme-color-accent);
  position: absolute;
  top: 50%;
  left: 50%;
}

.mv .slick-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.mv .slick-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.mv .slick-dots {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 30px 0 0 0;
  list-style: none;
}

.mv .slick-dots li {
  margin: 0 6px;
}

.mv .slick-dots li button {
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #ddd;
  color: transparent;
  cursor: pointer;
}

.mv .slick-dots li.slick-active button {
  background-color: var(--theme-color-primary);
  transform: scale(1.2);
}

/* MVのスマホ対応（base.css修正済み前提） */
@media (max-width: 768px) {
  .mv-section-wrapper {
    padding-bottom: 50px;
  }

  /* スライド画像左右の隙間をスマホ用に縮小 */
  .mv .slick-slide {
    margin: 0 5px;
  }

  /* ネガティブマージンで隙間分を広げ、20pxラインに端を揃える */
  .mv .slick-slider {
    margin-left: -5px;
    margin-right: -5px;
    width: calc(100% + 10px);
  }
}



/* -----------------------------------------------------------
   4. About セクション (Phytorich風・はみ出しレイアウト)
   ----------------------------------------------------------- */
.about-overlap-section {
  padding: 100px 0;
  background-color: transparent;
  overflow: hidden;
}

.about-overlap__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  min-height: 700px;
}

/* --- PCでのレイアウト（769px以上） --- */
@media screen and (min-width: 769px) {
  .about-overlap__image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 85%;
    z-index: 1;
  }

  .about-overlap__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
  }

  .about-overlap__content {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 45%;
    background-color: #fff;
    padding: 80px 60px;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    border-radius: 2px;

    text-align: center;
  }
}

.about-overlap__title {
  margin-bottom: 40px;
}

.about-overlap__title-en {
  display: block;
  font-family: var(--font-heading-family);
  font-size: 2.6rem;
  color: var(--theme-text-color, #333);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 15px;
  /* ★念のため relative を指定 */
  position: relative;
}

/* ★追加：緑の点線（NEWSやフッターと統一） */
.about-overlap__title-en::after {
  content: "";
  display: block;
  width: 96px;
  /* 線の長さ */
  margin: 10px auto 14px;
  /* 上下の余白 */
  border-bottom: 3px dotted #8A9A85;
  /* テーマカラーの緑 */
}

.about-overlap__title-ja {
  display: block;
  font-size: 0.95rem;
  color: #888;
  font-weight: normal;
  letter-spacing: 0.1em;
}

/* --- スマホ対応 (768px以下) --- */
@media screen and (max-width: 768px) {
  .about-overlap-section {
    padding: 60px 0;
  }

  .about-overlap__inner {
    min-height: auto;
    display: block;
    padding-bottom: 250px;
  }

  /* テキスト（左右均等） */
  .about-overlap__content {
    position: relative;
    width: auto;
    margin: 0;
    background-color: #fff;
    padding: 40px 30px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 2px;

    /* ★追加：スマホでも中央寄せ */
    text-align: center;
  }

  /* 画像（右はみ出し） */
  .about-overlap__image-wrapper {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 90%;
    height: 380px;
    z-index: 1;
  }

  .about-overlap__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
  }

  .about-overlap__title-en {
    font-size: 2rem;
  }

  .about-overlap__text {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
}




/* -----------------------------------------------------------
   7. Footer & CTA セクション
   ----------------------------------------------------------- */
.custom-footer-section {
  color: var(--theme-text-color, #333);
  background-color: transparent;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  font-family: inherit;
}

.footer-cta-wrapper {
  background-color: #f7f4ed;
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

.wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(130% + 1.3px);
  height: 60px;
  transform: rotateY(180deg);
}

.wave-divider .shape-fill {
  fill: #fefdf9;
}

.footer-cta__inner {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
  padding-top: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  /* 中央寄せ */
  padding-left: 20px;
  /* 左右の余白も統一 */
  padding-right: 20px;
  box-sizing: border-box;
}

.footer-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-card__icon-wrapper {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 25px;
}

.footer-card__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-card__placeholder svg {
  width: 100px;
  height: 100px;
  background: #eee;
  border-radius: 50%;
}

.footer-card__title {
  font-family: var(--font-heading-family);
  font-size: 1.4rem;
  color: var(--theme-text-color, #333);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-card__title::after {
  content: "";
  display: block;
  width: 96px;
  /* 線の長さ */
  margin: 10px auto 14px;
  /* 上下の余白（NEWSに合わせました） */
  border-bottom: 3px dotted #8A9A85;
  /* テーマカラーの緑 */
}

.footer-card__desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.payment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.payment-list li {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: #888;
  background-color: #fff;
}

.contact-info-block {
  background-color: #fff8f0;
  width: 80%;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 25px;
}

.contact-tel {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #F09042;
  text-decoration: none;
  font-family: var(--font-heading-family);
  line-height: 1.2;
}

.contact-time {
  font-size: 0.85rem;
  color: #888;
  margin: 5px 0 0 0;
}

.contact-btn {
  display: inline-block;
  background-color: #F09042;
  color: #fff;
  text-decoration: none;
  padding: 15px 50px;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 10px rgba(240, 144, 66, 0.3);
}

.contact-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}



/* -----------------------------------------------------------
   8. SP固定ナビ
   ----------------------------------------------------------- */
.fixed,
.sp-fixed-nav {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp-fixed-nav {
    display: block !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #f7f4ed;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #e0d8c8;
    padding-bottom: env(safe-area-inset-bottom);

    /* スクロール制御用 */
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
  }

  /* スクロール時に表示 */
  .sp-fixed-nav.is-visible {
    transform: translateY(0);
  }

  .sp-fixed-nav__list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 60px;
  }

  .sp-fixed-nav__item {
    flex: 1;
    text-align: center;
  }

  .sp-fixed-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8c7b70;
    font-size: 10px;
    padding: 5px 0;
    transition: color 0.2s;
  }

  .sp-fixed-nav__link:hover,
  .sp-fixed-nav__link:active {
    color: #F09042;
    background-color: rgba(240, 144, 66, 0.05);
  }

  .sp-fixed-nav__icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-block;
  }

  .sp-fixed-nav__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
  }

  .cart-count-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #d9534f;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 50%;
    text-align: center;
  }
}

*=========================================================共通：セクションタイトル（ENラベル＋点線＋JA大見出し） - .title-en / .title-ja がある前提 - 既存の .news-title-en / .heading-ja / .about-overlap__title-en/ja も同じ見た目に寄せる=========================================================*/:root {
  /* メイン色（オレンジ/グリーン）はテーマ変数優先 */
  --section-title-accent: var(--theme-color-primary, #F09042);

  /* ほんわか背景色（オレンジ→グリーンにするならここだけ差し替え） */
  --section-title-soft: rgba(240, 144, 66, .14);
}

/* EN（小さめ・字間広め・点線） */
:where(.title-en, .news-title-en, .about-overlap__title-en) {
  position: relative;
  z-index: 1;

  display: block;
  width: fit-content;
  margin: 0 auto;

  font-family: var(--font-heading-family);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.2;

  color: var(--theme-text-color, #333);
  text-align: center;
}

/* 点線（ENの下） */
:where(.title-en, .news-title-en, .about-overlap__title-en)::after {
  content: "";
  display: block;
  width: 96px;
  margin: 10px auto 14px;
  border-bottom: 3px dotted var(--section-title-accent);
}

/* JA（大きく・主役） */
:where(.title-ja, .heading-ja, .about-overlap__title-ja) {
  display: block;
  margin: 0;
  text-align: center;

  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.2;

  color: #102a43;
}

/* スマホ微調整 */
@media (max-width: 768px) {
  :where(.title-en, .news-title-en, .about-overlap__title-en) {
    font-size: 0.85rem;
  }

  :where(.title-en, .news-title-en, .about-overlap__title-en)::after {
    width: 84px;
    margin: 8px auto 12px;
  }
}