/** Shopify CDN: Minification failed

Line 15:0 Unexpected "<"
Line 137:0 Unexpected "<"
Line 143:18 Unexpected "{"
Line 143:27 Expected ":"
Line 143:34 Unexpected "{"
Line 360:0 Unexpected "<"
Line 451:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
/* セクション全体の余白 */
.category-section {
  padding-top: 5rem; /* セクション上部のスペース */
}

/* メインラッパー */
.category-grid {
  padding: 2rem 1rem;
  text-align: center;
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", serif;
}

/* 見出し */
.category-grid h2 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  text-align: center;
}

/* サブテキスト */
.category-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  text-align: center;
  font-family: inherit;
}

/* グリッド本体 */
.category-grid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC時4列 */
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* カテゴリカード */
.category-item {
  border: 1px solid #ddd;
  padding: 1rem;
  transition: all 0.3s ease;
  background-color: white;
  text-align: center;
  font-family: inherit;
}

.category-item a {
  text-decoration: none;
  color: inherit;
}

.category-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.category-item-title {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .category-grid-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 0;
  }
}

@media (max-width: 480px) {
  .category-section {
    padding-top: 4rem;
  }

  .category-grid {
    padding: 1.5rem 1rem;
  }

  .category-grid h2 {
    font-size: 1.8rem;
  }

  .category-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .category-item-title {
    font-size: 0.9rem;
  }

  .category-grid-grid {
    gap: 1rem;
  }
}

  .category-section {
  padding-top: 5rem;
}

/* モバイル時にタイトル・サブテキストを左寄せ＆余白追加 */
@media (max-width: 768px) {
  .category-grid h2{
    text-align: left;
    padding-left: 20px; /* 左に余白を作る */
    font-size: 3rem;
  }

  .category-subtitle {
    text-align: left;
    padding-left: 20px; /* 左に余白を作る */
    font-size: 1rem
  }
}

</style>
html, body {
  margin: 0;
  padding: 0;
}

#shopify-section-{{ section.id }} {
  padding: 0 !important;
  margin: 0 !important;
}

.fade-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", serif;
}

.fade-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-slide.active {
  opacity: 1;
  z-index: 1;
}

.fade-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 10s ease;
}

.fade-slide.active img {
  transform: scale(1.1);
}

.shared-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.maintext-bottom {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  pointer-events: auto;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  writing-mode: horizontal-tb;
  white-space: nowrap;
  line-height: 1.6;
}


/* ボタン用スタイル追加 */
.more-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 9999px;
  text-decoration: none;
  z-index: 3;
  font-family: initial; /* 親のフォントをリセット */
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}


/* ホバー時の動き・背景色 */
.more-button:hover {
  background-color: gray; /* 背景色グレーに */
  transform: translateY(-4px); /* 4pxだけ上に移動 */
  opacity: 0.9; /* 任意で少し透け感も */
  cursor: pointer;
}



/* モバイル */
@media (max-width: 749px) {
  .fade-slideshow {
    aspect-ratio: 9 / 16;
    height: auto;
  }

.maintext-bottom {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  pointer-events: auto;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap; /* 折り返しを防ぐ */
  line-height: 1.6;

  /* 以下を追加：高さを十分に取る */
  height: 90vh; /* テキストの長さに応じて調整 */
}

.more-button {
  font-family: initial; /* 親のフォントをリセット */
}

}
.footer-custom-section {
  background-color: #ffffff;
  color: #333;
  padding: 2rem 1rem;
  font-size: 14px;
  text-align: center;
  font-family: 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', '游明朝', YuMincho, 'Times New Roman', serif;
}

/* SNSアイコン */
.footer-sns-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-sns-icons a {
  display: inline-block;
}

.footer-sns-icons img {
  width: 32px;
  height: auto;
}

/* 支払いブランド */
.footer-payment-brands {
  margin: 1rem 0;
}

.footer-payment-brands img {
  width: 48px;
  margin: 0 10px;
  vertical-align: middle;
}

/* サポート・法的リンク */
.footer-support-links,
.footer-legal-links {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-support-links a,
.footer-legal-links a {
  color: #555;
  text-decoration: none;
  font-family: 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', '游明朝', YuMincho, 'Times New Roman', serif;
}

.footer-support-links a:hover,
.footer-legal-links a:hover {
  color: #000;
  text-decoration: underline;
}

/* コピーライト */
.footer-copyright {
  margin-top: 1.5rem;
  color: #777;
  font-size: 13px;
  font-family: 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', '游明朝', YuMincho, 'Times New Roman', serif;
}

/* モバイル対応 */
@media screen and (max-width: 600px) {
  .footer-sns-icons {
    justify-content: center;
    gap: 10px;
  }

  .footer-payment-brands img {
    width: 40px;
    margin: 6px;
  }

  .footer-support-links a,
  .footer-legal-links a {
    font-size: 13px;
    margin: 0 8px;
  }
}
<style>
  .two-images-section {
    max-width: 1400px;
    margin: 0 auto;
  }
  .two-images-header h2 {
    font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", serif;
    font-size: 2.5rem;
    text-align: center;
    margin-top: 7rem;
    margin-bottom: 0.5rem;
  }
  .two-images-subtitle {
    font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", serif;
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
  }

  .two-images-text-links-wrapper {
    display: flex;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  .two-images-text-links-item {
    position: relative;
    flex: 1 1 50%;
    cursor: pointer;
    overflow: hidden;
  }
  .two-images-text-links-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .two-images-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
    pointer-events: none;
  }
  .two-images-text-links-text {
    font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", serif;
    font-weight: bold;
    font-size: 5rem;
    line-height: 1.2;
    white-space: nowrap;
  }
  .two-images-text-links-subtext {
    font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", serif;
    font-size: 3rem;
    margin-top: 0.3rem;
    opacity: 0.85;
  }

  @media (max-width: 768px) {
    .two-images-section {
      padding-top: 4rem;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .two-images-header h2,
    .two-images-subtitle {
      text-align: left;
      padding-left: 20px;
    }
    .two-images-text-links-wrapper {
      flex-direction: column;
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .two-images-text-links-item {
      flex: 1 1 100%;
    }

    .two-images-text-links-text {
    font-size: 3rem;
  }
  .two-images-text-links-subtext {
    font-size: 2rem;
  }
  }
</style>