@charset "EUC-JP";
:root {
  /* 全体 */
  --general-background-color: #3F3034;
  --general-background-color-gray: #f0f0f0;
  --general-background-color-red: #A52502;
  --general-font-size-sp: 12px;
  --general-font-size-pc: 14px;  
  --general-text-color: #2F2424;
  --general-text-color-red: var(--general-background-color-red);
  --general-column-gap-sp: 20px; 
  --general-column-gap-pc: 40px;
  
  /* ヘッダー */
  --header-height-sp: 60px;
  --header-height-pc: 80px;
  --header-text-color: var(--general-text-color);
  
  /* ドロップダウンメニュー */
  --dropdown-background-color: var(--general-background-color-gray);
  --dropdown-min-width: 130px; /* 3つ横並びの場合は186px */
  
  /* セクション */
  --section-margin-sp: 40px auto 60px;
  --section-margin-pc: 60px auto 100px;
  
  /* 見出し行 */
  --heading-font-family: 'M PLUS Rounded 1c', sans-serif;
  --heading-font-size-sp: 21px;
  --heading-font-size-pc: 28px;
  --heading-font-weight: 500; /* webフォントの場合は対応するweightも読み込む */
  --heading-text-color: inherit;
  
  /* スライドショー（メインヴィジュアル） */
  --mv-caption-font-family: inherit;
  --mv-caption-font-size-sp: 14px; 
  --mv-caption-font-size-pc: 36px;
  --mv-caption-font-weight-sp: 400;
  --mv-caption-font-weight-pc: 500;
  --mv-caption-text-color: #fff;
  --mv-button-background-color: var(--general-background-color);
  --mv-button-background-color-hover: #fff;
  --mv-button-text-color: #fff;
  --mv-button-text-color-hover: var(--general-text-color);
  --mv-dot-button-color: #888;
  --mv-dot-button-color-active: var(--general-background-color);
  
  /* 商品カード */
  --item-border-radius: 6px;
  --item-column-gap-sp: var(--general-column-gap-sp); 
  --item-column-gap-pc: var(--general-column-gap-pc); 
  --item-name-font-size-sp: 14px;
  --item-name-font-size-pc: 14px;  
  --item-name-font-weight-sp: 400;
  --item-name-font-weight-pc: 400;
  --item-price-font-size-sp: 14px;  
  --item-price-font-size-pc: 14px;  
  --item-price-font-weight-sp: 500;
  --item-price-font-weight-pc: 500;
    
  /* 商品画像の切り抜き、contain or cover、auto or 100% */
  --item-img-object-fit: cover;
  --item-img-width: auto !important;
  --item-img-height: 100% !important;
  /* 正方形100%、縦長120% */
  --item-img-before-padding-top: 100%;

  /* 店長エリア（ページ下段のアイキャッチ） */
  --manager-name-font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --manager-name-font-size-sp: 45px;
  --manager-name-font-size-pc: 80px;
  
  /* ボトム */  
  --bottom-background-color: var(--general-background-color-gray);
  
  /* フッター */
  --footer-background-color: var(--general-background-color);
  --footer-text-color: #fff;
  --sns-background-color: #7A7474;
  --sns-border-radius: 50%;
}

*, *:before, *:after {
  box-sizing: border-box
}

body {
  color: var(--general-text-color);
  font-family: "Roboto", "Noto Sans JP", "Meiryo", "メイリオ", Helvetica, Arial, sans-serif;
  font-size: var(--general-font-size-sp);
  letter-spacing: 0.03em;
  line-height: 1.5;
  /*min-width: 375px;*/
}
@media screen and (min-width: 768px) {
  body {
    font-size: var(--general-font-size-pc);
  }
}
img {
  max-width: 100%;
  vertical-align: top;
}
ul,
ol,
dl {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: var(--general-text-color);
  transition: opacity 0.3s ease;
}
a:hover, a:focus {
  color: inherit;
  opacity: 0.7;
  text-decoration: none;
}
[data-whatinput="mouse"] *:focus,
[data-whatinput="touch"] *:focus {
  outline: none;
}
h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 21px;
  }
}
svg {
  stroke: var(--general-text-color);
  stroke-width: 1;
  fill: none;
  width: 28px;
  height: 28px;
}
/******************************/
/* Utility */
/******************************/
.u-container {
  padding-left: 20px;
  padding-right: 20px;
  width: auto;
}
/* SP時にスクロールバーが出る */
.u-container-scroll {
  padding-left: 0;
  padding-right: 0;
  width: auto;
}
@media screen and (min-width: 768px) {
  .u-container, .u-container-scroll {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .u-container, .u-container-scroll {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.u-margin40d60 {
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .u-margin40d60 {
    margin: 60px 0;
  }
}
.u-font-weight500 {
  font-weight: 500; 
}
.u-font-small {
  font-size: 0.7em;
  margin-left: 2px;
}
.u-bold, .u-font-weight700 {
  font-weight: 700;
}
.u-center {
  margin: 0 auto;
  text-align: center;
}
.u-max-width1000 {
  margin: 0 auto;
  max-width: 1000px; 
}
.u-blink {
  animation: blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
/* SEO的な使い道 */
.u-visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}
/* 商品詳細ページのサムネイル、overflow用
.u-overflow-slide {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 30px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .u-overflow-slide {
    overflow-x: initial;
    white-space: initial;
    padding-bottom: 0;
    width: auto;
  }
} */

/******************************/
/* Components */
/******************************/
.js-view-more {
  cursor: pointer; 
}
.js-view-more:hover {
  opacity: 0.7;
}
.c-row {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--general-column-gap-sp);
  row-gap: var(--general-column-gap-sp);
}
@media screen and (min-width: 768px) {
  .c-row {
    column-gap: var(--general-column-gap-pc);
    row-gap: var(--general-column-gap-pc);
  }
}
.c-col-2 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-col-2 {
    width: calc(50% - (var(--general-column-gap-pc) / 2));
  }
}
.c-col-3 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-col-3 {
    width: calc(33.3333% - (var(--general-column-gap-pc) * 2 / 3));
  }
}
.c-col-4 {
  width: calc(50% - (var(--general-column-gap-sp) / 2));
}
@media screen and (min-width: 768px) {
  .c-col-4 {
    width: calc(25% - (var(--general-column-gap-pc) * 3 / 4));
  }
}
.c-col-6 {
  width: calc(33.3333% - (100px / 6));
}
@media screen and (min-width: 768px) {
  .c-col-6 {
    width: calc(16.6666% - (var(--general-column-gap-pc) * 5 / 6));
  }
}

/* 検索 */
.c-search__keyword {
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding: 5px 0;
}
@media screen and (min-width: 768px) {
  .c-search__keyword {
    max-width: calc(767px - 40px);
    padding: 10px 0 15px;
  }
}
.c-btn-search {
  position: absolute;
  left: 12px;
  top: 20px;
  background: #fff;
  border: none;
  margin: 1px 4px 0;
  padding: 0;/* iPhone不具合対応 */
}
@media screen and (min-width: 768px) {
  .c-btn-search {
    left: 12px;
    top: 30px;
  }
}
.c-btn-search svg {
  stroke: #777;
  width: 20px;
  height: 20px;
}

.c-srh-keyword {
  display: inline-block;
  margin: 0 5px; 
}
.l-header-overlay {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0;
  z-index: -1;
}
.l-header-overlay.is-on {
  display: block;
  animation: anime-overlay 0.2s ease forwards;
  opacity: 0.3;
}
#search-form {
  display: none;
  background: #fff;
  padding: 5px 0 10px;
  text-align: center;
  transition: all 0.3s;
}
#search-form.is-on {
  display: block;
}
#search-form input[type="text"] {
  border: 1px solid #ccc;
  border-radius: 3em;
  -webkit-appearance: none;
  padding-left: 50px;
  height: 3em;
  width: 100%;
}
#search-form form {
  position: relative;
  margin: 0 auto; 
  padding: 10px 0;
  max-width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
  #search-form form {
    padding: 20px 0;
    max-width: calc(767px - 40px);
  }
}
/* 見出し行 */
.c-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .c-heading {
    padding-right: 0;
    padding-bottom: 25px;
  }
}
.c-heading-ttl {
  display: inline-block;
  color: var(--heading-text-color);
  font-family: var(--heading-font-family);
  font-size: var(--heading-font-size-sp);
  font-weight: var(--heading-font-weight);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-heading-ttl {
    font-size: var(--heading-font-size-pc);
  }
}
.c-heading__left {
  display: flex;
  align-items: center;
}
.c-heading__left img {
  width: 17px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .c-heading__left img {
    width: 26px;
    margin-right: 14px;
  }
}
.c-heading__right {
  display: none; /* flex */
  align-items: center;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-top: 0;
}
.c-heading__right-txt {
  margin-top: 2px;
}
/* 特定商取引・プライバシーポリシーの見出し */
.c-heading-second {
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* カテゴリー（トップ、一覧） */
.c-category {
  background: var(--general-background-color-gray);
  margin: var(--section-margin-sp);
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .c-category {
    margin: var(--section-margin-pc);
    padding: 70px 0 80px;
  }
}
.c-category-list {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 0; /*var(--item-column-gap-sp);*/
  margin-left: -20px;
  margin-right: -20px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 0;
  overflow-x: auto;
  overflow-y: hidden;
}
@media screen and (min-width: 768px) {
  .c-category-list {
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;   
    overflow: hidden;
    column-gap: var(--item-column-gap-pc);
    row-gap: calc(var(--item-column-gap-pc) - 10px); 
  }
}
.top .c-category-list {
  margin-left: 0;
  margin-right: 0;
}
.c-category-list__item {
  /*background: #fff;*/
  flex-shrink: 0;
  position: relative;
  border-radius: var(--item-border-radius);
  box-sizing: border-box;
  padding-right: var(--item-column-gap-sp);
  border-radius: var(--item-border-radius);
  transition: opacity 0.3s;
  word-break: break-all;
  width: 29%; /* 任意の数 */
}
@media screen and (min-width: 768px) {
  .c-category-list__item {
    position: relative;
    box-sizing: border-box;
    padding-right: 0;
    transition: opacity 0.2s;
    word-break: break-all;
    width: calc(16.6666% - (var(--item-column-gap-pc) * 5 / 6));
  }
}
.c-category-list__link {
  display: block;
}
.c-category-list__img {
  border-radius: var(--item-border-radius);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.c-category-list__img:before {
  content: "";
  display: block;
  padding-top: var(--item-img-before-padding-top);
}
.c-category-list__img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-category-list__img img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--item-border-radius);
  margin: auto;
  object-fit: var(-product-img-object-fit);
  transition: transform .6s ease;
  width: var(--item-img-width);
  height: var(--item-img-height);
}
.c-category-list__img:hover img {
  transform: scale(1.05);
}
.c-category-list__ttl {
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  white-space: normal;
  overflow: initial;
  text-overflow: initial;
  text-align: center;
}
/***** 商品件数・ソート *****/
.c-item-list-head {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #7d7d7d;
  margin-top: 20px;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-item-list-head {
    margin-top: 30px;
    padding-top: 30px;
  }
}
/*
.c-item-list-num {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .c-item-list-num {
    font-size: 14px;
  }
}*/
.c-item-sort-list {
  display: flex;
  flex-wrap: wrap;
}
.c-item-sort-list__item {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .c-item-sort-list__item {
    margin-left: 25px;
  }
}
.c-item-sort-list__item:first-child {
  margin-left: 0;
}
.c-item-sort-list__item span {
  border-bottom: 1px solid var(--general-text-color);
}
.c-item-sort-list__item a {
  opacity: 0.7; 
}
.c-item-sort-list__item a:hover {
  text-decoration: none;
   border-bottom: 1px solid #000;
  line-height: 1.5;
}
/* 商品カード */
.c-item-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--item-column-gap-sp);
  row-gap: calc(var(--item-column-gap-sp) + 20px);
}
@media screen and (min-width: 768px) {
  .c-item-list {
    column-gap: var(--item-column-gap-pc);
    row-gap: calc(var(--item-column-gap-pc) + 10px);
  }  
}
.u-container-scroll .c-item-list {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 0;/*var(--item-column-gap-sp);*/
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 0;
  overflow-x: auto;
  overflow-y: hidden;
}
@media screen and (min-width: 768px) {
  .u-container-scroll .c-item-list {
    flex-wrap: wrap;
    column-gap: var(--item-column-gap-pc);
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
}
.c-item-list__item {
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  transition: opacity 0.2s;
  word-break: break-all;
  width: calc(50% - (var(--item-column-gap-sp) / 2));
}
@media screen and (min-width: 768px) {
  .c-item-list__item {
    position: relative;
    box-sizing: border-box;
    transition: opacity 0.2s;
    word-break: break-all;
    width: calc(25% - (var(--item-column-gap-pc) * 3 / 4));
  }
}
.u-container-scroll .c-item-list__item {
  padding-right: var(--item-column-gap-sp);/* iphoneの不具合対応 */
  width: 42%; /* 任意の数 */
}
@media screen and (min-width: 768px) {
  .u-container-scroll .c-item-list__item {
    padding-right: 0;
    width: calc(25% - (var(--item-column-gap-pc) * 3 / 4));
  }
}

.c-item-list__item a {
  display: block; 
  position: relative;
}
.c-item-list__img {
  position: relative;
  border-radius: var(--item-border-radius);
  overflow: hidden;
  width: 100%;
}

.c-item-list__img:before {
  content: "";
  display: block;
  padding-top: var(--item-img-before-padding-top);
}
.c-item-list__img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-item-list__img img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--item-border-radius);
  margin: auto;
  object-fit: var(--item-img-object-fit);
  transition: transform .6s ease;
  width: var(--item-img-width);
  height: var(--item-img-height);
}
.c-item-list__img:hover img {
  transform: scale(1.05);
}
.c-item-list__ttl {
  font-size: var(--item-name-font-size-sp);
  font-weight: var(--item-name-font-weight-sp);
  line-height: 1.4;
  margin-top: 12px;
  white-space: normal;
  overflow: initial;
  text-overflow: initial;
/* 文字省略する場合
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
*/
}
@media screen and (min-width: 768px) {
  .c-item-list__ttl {
    font-size: var(--item-name-font-size-pc);
    font-weight: var(--item-name-font-weight-pc);
  }
}
.c-item-list__ttl img {
  vertical-align: middle; 
}
.new_mark_img1 {
  padding-right: 2px !important;
}
.new_mark_img2 {
  padding-left: 2px !important;
}
/* お気に入りボタン */
.c-btn-favorite {
  position: absolute;
  right: 0px;
  bottom: -1px;
  width: 30px;
  z-index: 100;
}
.c-btn-favorite:hover {
  animation: pulse 2s linear infinite;
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }
  50% {
    -webkit-transform: scale(.8);
    transform: scale(.8)
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }
}
.c-btn-favorite button {
  display: block;
  width: 100%;
  padding: 0;
  cursor: pointer;
  transition: .2s;
  text-align: center;
  color: rgba(0, 0, 0, 0.2);
  border: 0;
  outline: none;
  background: transparent;
}
.c-btn-favorite svg {
  stroke: #999;
  width: 20px;
  height: 20px;
}
.c-btn-favorite .is-added svg {
  stroke: var(--general-background-color-red);
  fill: var(--general-background-color-red);
}
.c-item-list__price {
  font-size: var(--item-price-font-size-sp);
  font-weight: var(--item-price-font-weight-sp);
  line-height: 1;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .c-item-list__price {
    font-size: var(--item-price-font-size-pc);
    font-weight: var(--item-price-font-weight-pc);
  }
}
.c-item-list__price.is-strikethrough {
  color: #ccc;
  margin-top: 8px;
  text-decoration: line-through;
}
.c-item-list__discount {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1000;
  background: var(--general-background-color-red);
  color: #fff;
  padding: 4px 5px 4px;
  font-size: calc(var(--general-font-size-sp) - 2px);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-item-list__discount {
    top: 10px;
    left: 10px;
    padding: 4px 5px 2px;
    font-size: calc(var(--general-font-size-pc) - 2px);
  }
}
.c-item-list__expl {
  display: none; 
}
/* ハンバーガーメニュー */
.c-hamburger {
  display: none;
  font-size: 14px;
  position: relative;
  z-index: 100;
  height: 50px;
}
.c-hamburger.is-on {
  display: block;
  position: fixed;
  top: var(--header-height-sp);
  left: 0;
  background: #fff;
  overflow-y: auto;
  width: 100%;
  height: calc(100% - 60px);
}
@media screen and (min-width: 768px) {
  .c-hamburger.is-on {
    top: var(--header-height-pc);
  }
}
/* ハンバーガーメニュー*/
.c-hamburger-in {
  border-top: 1px solid #ddd; 
}
/* アコーディオン */
.c-hamburger-item,
.c-accordion-item {
  border-bottom: 1px solid #ddd;
}
.c-hamburger-item a,
.c-accordion-item a {
  display: block;
  padding: 20px;
  width: 100%;
}
.c-hamburger-item__ttl,
.c-accordion-item__ttl {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--general-text-color);
  cursor: pointer;
  font-weight: 500;
  line-height: 1;
  /* -webkit-tap-highlight-color: transparent; */
}
.c-accordion-item__ttl {
  padding: 20px;
}
/* コンテンツリストを省略する場合 */
.c-accordion-item .is-hidden {
  position: absolute;
  z-index: -10000;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border: 0;
}

/*
.c-accordion-item__ttl img {
  transition: 0.3s;
  width: 16px;
}
.c-accordion-item__ttl.is-open img {
  transform: rotate(-180deg);
  transition: 0.3s;
}*/
/*.c-hamburger-item__ttl:before,*/
.c-accordion-item__ttl:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -7px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--general-text-color);
  border-bottom: 1px solid var(--general-text-color);
  transform: rotate(45deg);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/*.c-hamburger-item__ttl:before {
  transform: rotate(-45deg);
}*/
.c-accordion-item__ttl.is-open:before {
  transform: rotate(-135deg);
  margin-top: -4px;
}
.c-accordion-item__txt {
  display: none;
  border-top: 1px solid #ddd;
  padding: 0 1em;
}
.c-accordion-item__cate {
  display: block;
  position: relative;
  border-bottom: 1px solid #ddd;
}
.c-accordion-item__cate.js-view-more,
.c-accordion-item__cate:last-of-type {
  border-bottom: none;
}
.c-accordion-item__cate.js-view-more div {
  display: block;
  padding: 20px;
  width: 100%;
}
/* セクション */
.c-section {
  margin: var(--section-margin-sp);
}
@media screen and (min-width: 768px) {
  .c-section {
    margin: var(--section-margin-pc);
  }
}
/* 商品詳細 */
.c-btn-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: var(--cart-button-font-size-sp);
  font-weight: 700;
  background: #ffcc00; /* 商品詳細 var(--cart-button-background-color); */
  border: none;
  border-radius: var(--cart-button-border-radius);
  color: var(--cart-button-text-color);
  cursor: pointer;
  line-height: 1.7;
  padding: 18px;
  text-align: center;
  transition: opacity 0.3s ease;
  width: calc(100% - 18px);
}
@media screen and (min-width: 768px) {
  .c-btn-cart {
    font-size: var(--cart-button-font-size-pc);
    padding: 22px;
    width: calc(100% - 20px);
  }
}
.c-btn-cart:hover {
  opacity: 0.7;
}
button[disabled].c-btn-cart, button[disabled].c-btn-cart:hover {
  background: #ccc; 
  cursor: initial;
  opacity: 1;
}
.c-btn-cart svg {
  fill: var(--cart-button-text-color);
  margin-right: 10px;
  stroke: var(--cart-button-text-color);
  width: 24px;
  height: 24px;
}
/* パンくず */
.c-breadcrumbs-list {
  padding-top: 15px;
  margin-bottom: 35px;
  font-size: 12px;
}
.c-breadcrumbs-list__item {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs-list__item {
    margin-right: 25px;
  }
}
.c-breadcrumbs-list__item:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  margin-top: -3px;
  width: 5px;
  height: 5px;
  border-right: 1px solid var(--general-text-color);
  border-bottom: 1px solid var(--general-text-color);
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs-list__item:before {
    right: -15px;
  }
}
.c-breadcrumbs-list__item:last-child:before {
  content: none;
}
.c-breadcrumbs-list a {
    color: var(--general-text-color);
}
/* ページャー */
.c-pager {
  margin-top: 75px;
  margin-bottom: 75px;
  text-align: center;
}
.c-pager__total {
  margin-bottom: 30px;
}
.c-pager-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.c-pager-list__item {
  display: none;
  border-radius: calc(var(--item-border-radius) / 2);
  font-size: 16px;
  overflow: hidden;
  margin-left: 3px;
  margin-right: 3px;
  min-width: 45px;
  line-height: 45px;
  background: #ffffff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-pager-list__item {
    display: block;
    font-size: 18px;
    min-width: 30px;
    line-height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-pager-list__item.is-visible {
    display: block;
    margin-left: 15px;
    margin-right: 15px;
    width: auto;
  }
}
.c-pager-list__link {
  display: block;
  position: relative;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: var(--general-text-color);
  min-width: 30px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 767px) {
  .c-pager-list__link {
    min-width: 45px;
  }
}
.c-pager-list__link:hover {
  border-color: #d8d8d8;
  background: #d8d8d8;
  color: #000000;
  text-decoration: none;
}
.c-pager-list__link.is-current {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-pager-list__link.is-current {
    opacity: 0.7;
    text-decoration: underline;
  }
}
.c-pager-list__link.is-current:hover {
  border-color: #535353;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-pager-list__link.is-current:hover {
    border-color: #ffffff;
  }
}
.c-pager-list__link.is-prev, .c-pager-list__link.is-next {
  border-color: #d8d8d8;
  background: #d8d8d8;
  text-indent: -99999px;
}
.c-pager-list__link.is-prev:before, .c-pager-list__link.is-next:before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--general-text-color);
  border-bottom: 1px solid var(--general-text-color);
}
.c-pager-list__link.is-prev:before {
  right: calc(50% - 7px);
  transform: rotate(135deg);
}
.c-pager-list__link.is-next:before {
  left: calc(50% - 7px);  
  transform: rotate(-45deg);
}
.c-pager-list__link.is-prev:hover, .c-pager-list__link.is-next:hover {
  background: rgba(216, 216, 216, 0.7);
}
.c-pager-list__link.is-prev.is-disabled:hover, .c-pager-list__link.is-next.is-disabled:hover {
  background: #d8d8d8;
}
.c-pager-list__link.is-prev.is-disabled:before {
  border-bottom-color: #aaaaaa;
  border-right-color: #aaaaaa;
}
.c-pager-list__link.is-next.is-disabled:before {
  border-bottom-color: #aaa;
  border-right-color: #aaa;
}

.c-pager-list__page {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-pager-list__page {
    display: inline-block;
  }
}
/* トップのサンプルで使用した電球 */
.c-bulb {
  position: relative;
  text-indent: 24px;
}
.c-bulb svg {
  position: absolute;
  top: -5px;
  left: -2px;
  margin-right: 5px;
  width: 24px;
  height: 24px;
}
/* フリーページの大外 */
.c-contents {
  margin: var(--section-margin-sp);
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .c-contents {
    margin: var(--section-margin-pc);
    margin-top: 0;
  }
}
/* フリーページ */
.free .c-bg-gray {
  background: #eee;
  border-radius: var(--item-border-radius);
  margin-top: 30px;
  padding: 20px;
}
.free .c-eyecatch {
  border-radius: 10px;
  margin-top: 7px;
}
@media screen and (min-width: 768px) {
  .free .c-eyecatch {
    margin-top: 10px;
  }
}

/******************************/
/* Layout */
/******************************/
.l-header {
  position: -webkit-sticky; /* 古いsafari用 */
  position: sticky;
  top: 0;
  z-index: 10000;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  opacity: 1;
  color: var(--header-text-color);
  width: 100%;
  height: var(--header-height-sp);
}
@media screen and (min-width: 768px) {
  .l-header {
    height: var(--header-height-pc);
  }
}
.l-header-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.l-header-logo {
  margin: 0;
}
.l-header-logo img {
  max-height: calc(var(--header-height-sp) - 16px);
}
@media screen and (min-width: 768px) {
  .l-header-logo img {
    max-height: calc(var(--header-height-pc) - 20px);
  }
}
/* ヘッダーのカテゴリー等は小デバイス時には非表示 */
.l-header-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header-nav {
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    margin: 0 40px;
  }
}
.l-header-nav__dropdown {
  margin-right: 30px;
}
.l-header-nav__ttl {
  position: relative;
  cursor: pointer;
  line-height: 1;
  padding: calc((var(--header-height-pc) - 14px) / 2) 24px calc((var(--header-height-pc) - 14px) / 2) 0;
}
.l-header-nav__ttl:before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 5px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--general-text-color);
  border-bottom: 1px solid var(--general-text-color);
  transform: rotate(45deg);
}
.l-header-nav__dropdown-in {
  display: none;
  position: fixed;
  top: calc(var(--header-height-pc) - ((var(--header-height-pc) - 14px) / 2));
  cursor: initial;
  margin-left: -40px;
  padding-top: calc((var(--header-height-pc) - 14px) / 2);
  max-width: 50%;
  z-index: 1000;
}
.js-dropdown.is-open .l-header-nav__dropdown-in {
  display: block;
}
.l-header-nav__lists, .l-header-nav__lists-contents {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
  background: var(--dropdown-background-color);
  line-height: 1.2;
  padding: 18px 40px;
  max-width: 720px;
  width: 100%;
  height: auto;
}
.l-header-nav__lists::before, .l-header-nav__lists-contents::before {
  content: "";
  position: absolute;
  top: calc((var(--header-height-pc) - 80px) / 2 + 5px);
  left: 60px;
  width: 0px;
  height: 0px;
  margin: auto;
  border: 14px solid transparent;
  border-bottom-color: var(--dropdown-background-color);
}
.l-header-nav__list, .l-header-nav__list-contents {
  overflow-wrap: anywhere;
  min-width: var(--dropdown-min-width);
  width: calc(25% - (var(--general-column-gap-pc) * 3 / 4));
}
.l-header-nav__list-contents {
  min-width: calc((var(--dropdown-min-width) + 20px) * 2);
  width: calc(50% - (var(--general-column-gap-pc) * 1 / 2));  
}
.l-header-nav__list a, .l-header-nav__list-contents a {
  display: inline-block;
  background: var(--general-background-color-gray);
  margin: 2px 0;
  padding: 5px 0;
}
.l-header-nav__blist {
  font-weight: 500;
}
.l-header-nav__slist {
  font-weight: normal;
}
/* コンテンツリストを省略する場合 */
.l-header-nav__lists .js-view-more {
  display: inline-block;
  background: var(--general-background-color-gray);
  margin: 2px 0;
  padding: 5px 0;
}
.l-header-nav__lists .is-hidden {
  position: absolute;
  z-index: -10000;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border: 0;
}
.l-header-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 120px;
}
@media screen and (min-width: 768px) {
  .l-header-icon {
    width: 160px;
  }
}
.l-header-icon svg {
  stroke: currentColor;
  stroke-width: 1;
  fill: none;
  width: 28px;
  height: 28px;
}
.l-header-search {
  width: 29px;
  height: 29px;
}
.l-header-search:hover {
  cursor: pointer;
  opacity: 0.7;
}
.l-header-favorite {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header-favorite {
    display: block;
    margin-left: 2px;
  }
}
.l-header-favorite a {
  display: block;
  color: var(--header-text-color);
}
/* ヘッダーのアカウントアイコンは小デバイス時には（基本的に）非表示 */
.l-header-account {
  display: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header-account {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    height: var(--header-height-pc);
    margin-left: 2px;
    padding: calc((var(--header-height-pc) - 29px) / 2) 0;
  }
}
.l-header-account a {
  display: block;
  color: var(--header-text-color);
  margin: 2px 0;
  padding: 5px 0;
}
.l-header-account svg {
  margin-top: -1px;
  width: 29px;
  height: 29px;
}
.l-header-account-in {
  position: absolute;
  left: -62px;
  /*top: calc(var(--header-height-sp) - 1px - (var(--header-height-sp) - 29px) / 2);*/
  padding-top: calc((var(--header-height-sp) - 29px) / 2);
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .l-header-account-in {
    top: calc(var(--header-height-pc) - 1px - (var(--header-height-pc) - 29px) / 2);
    padding-top: calc((var(--header-height-pc) - 29px) / 2);
  }
}
.l-header-account__list {
  display: none;
  background: #eee;
  cursor: initial;
  padding: 18px 20px;
  width: 148px;
}
.js-dropdown.is-open .l-header-account__list {
  display: block;
}
.l-header-account__list::before {
  content: "";
  position: absolute;
  top: calc((var(--header-height-sp) - 80px) / 2 - 2px); 
  /*top: -2px;*/
  right: 57px;
  width: 0px;
  height: 0px;
  margin: auto;
  border: 14px solid transparent;
  border-bottom-color: var(--general-background-color-gray);
}
@media screen and (min-width: 768px) {
  .l-header-account__list::before {
    top: calc((var(--header-height-pc) - 80px) / 2 - 2px); 
  }
}
.l-header-cart {
  position: relative;
}
.l-header-cart a {
  display: block; 
}
.l-header-cart-in {
  display: inline-block;  
  position: absolute;
  top: -2px;
  right: -5px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background: var(--general-background-color);
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 768px) {
  .l-header-cart-in {
    top: -2px;
    right: -5px;
  }
}
.l-header-cart__num {
  display: inline-block;
  width: 100%;
  height: 100%;
  letter-spacing: 0;
  margin-top: -1px;
  text-align: center;
}
/* ハンバーガーボタン */
.l-header-hamburger {
  display: block;
  position: relative;
  z-index: 10000;
  width: 20px;
  height: 18px;
  border: 0;
  background: transparent;
  margin-left: 5px;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (min-width: 768px) {
  .l-header-hamburger {
    display: none;
  }
}
.l-header-hamburger span {
  display: inline-block;
  position: absolute;
  left: 0;
  background-color: var(--general-text-color);
  transition: all 0.2s ease;
  width: 20px;
  height: 1px;
}
.l-header-hamburger span:nth-of-type(1) {
  top: 1px;
}
.l-header-hamburger span:nth-of-type(2) {
  top: 9px;
}
.l-header-hamburger span:nth-of-type(3) {
  bottom: 0px;
}
.l-header-hamburger.is-on span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
.l-header-hamburger.is-on span:nth-of-type(2) {
  opacity: 0;
}
.l-header-hamburger.is-on span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

/* メイン */
.l-main {
  padding-top: 0;
}
/* 一覧時にサイドバー */
.l-contents-main {
  /*width: 720px;*/
}
.l-contents-side {
  display: none;
  order: -1;
  width: 220px;
}
/* ボトム */
.l-bottom {
  background: var(--bottom-background-color);
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .l-bottom {
    padding: 80px 0;
  }
}
.l-bottom-in {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--general-column-gap-sp);
  row-gap: var(--general-column-gap-sp);
}
@media screen and (min-width: 768px) {
  .l-bottom-in {
    column-gap: var(--general-column-gap-pc);
    row-gap: var(--general-column-gap-pc);
  }
}
.l-bottom-block {
  display: inline-block;
  background: #fff;
  border: 1px solid #000;
  padding: 20px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-bottom-block {
    /* 3つ横並びにするために33.333%に変更 */
    width: calc(33.333% - (var(--general-column-gap-pc) * 2 / 3));
  }
}
.l-bottom-block__icon {  
  background: var(--general-background-color);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  margin: 0 auto 20px;
  padding: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 768px) {
  .l-bottom-block__icon {
    width: 60px;
    height: 60px;
  }
}
.l-bottom-block__icon svg {
  stroke: #fff;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .l-bottom-block__icon svg {
    width: 36px;
    height: 36px;
  }
}  
/* .l-bottom-block:last-of-type svg {
  margin-left: 2px;
} */
/* フッター */
.l-footer {
  background: var(--footer-background-color);
  color: var(--footer-text-color);
  height: auto;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .l-footer {
      padding-top: 60px;
    }
}
.l-footer h2 {
  font-size: var(--general-font-size-pc);
  font-weight: 400;
  margin-bottom: 0.4em;
}
.l-footer a {
  color: var(--footer-text-color);
}
.l-footer-in {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--general-column-gap-sp);
  row-gap: 25px;
}
@media screen and (min-width: 768px) {
  .l-footer-in {
    column-gap: 6%;
    row-gap: 40px;
    margin-bottom: 0;
  }
}
.l-footer-block {
  font-size: var(--general-font-size-sp);
  margin-bottom: 0; 
  width: calc(50% - (var(--general-column-gap-sp) / 2)); 
}
@media screen and (min-width: 768px) {
  .l-footer-block {
    font-size: calc(var(--general-font-size-pc) - 2px);
    /*margin-bottom: 40px;*/
    width: auto
  }
}
.l-footer-block li {
  line-height: 2;
  max-width: 240px;
  padding: 3px 0;
  opacity: 0.8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .l-footer-block li {
    line-height: 1.5;
  }
}
.l-footer-block li a {
  padding: 5px 0;
}
@media screen and (min-width: 768px) {
  .l-footer-block li a {
    padding: 5px 0;
  }
}
/* コンテンツリストを省略する場合 */
.l-footer .is-hidden {
  position: absolute;
  z-index: -10000;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border: 0;
}
/*.l-footer-sns {
  margin-bottom: 20px; 
}*/
.l-footer-sns ul {
  display: flex;
  column-gap: 10px;
  font-size: 0;
}
.l-footer-sns li {
  opacity: 1;
}
.l-footer-sns svg {
  stroke: currentColor;
  width: 30px;
  height: 30px;
  padding: 5px;
  background: var(--sns-background-color);
  border-radius: var(--sns-border-radius);
}
@media screen and (min-width: 768px) {
  .l-footer-sns svg {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
}
.l-footer-copyright {
  margin-top: 50px;
  padding-bottom: 20px; 
}
@media screen and (min-width: 768px) {
  .l-footer-copyright {
    font-size: calc(var(--general-font-size-pc) - 2px);
    margin-top: 60px;
    padding-bottom: 20px; 
  } 
}

/* ボトムの電話番号リンク（PC表示時） */
@media screen and (min-width: 481px) {
  .l-bottom-tel-number a {
    pointer-events: none; /* クリックイベントを無効化 */
    text-decoration: none; /* リンクの下線を消す */
    color: inherit; /* リンクの色を親要素から継承 */
  }
}

/* PCとタブレット表示時のみ表示する電話番号と受付時間 */
.l-header-tel-info {
  display: none; /* デフォルトでは非表示 */
  font-size: 14px; /* 文字サイズを調整 */
  white-space: nowrap; /* 改行を禁止 */
  margin-left: auto; /* 右端に配置 */
  text-align: center; /* テキストを中央揃え */
}

.l-header-tel-info-ttl {
  /* font-weight: bold; を削除 */
}

.l-header-tel-number {
  font-size: 16px; /* 「0120-48-4477」のフォントサイズを1サイズ大きく */
  font-weight: bold; /* 電話番号のみ太字にする */
}

.l-header-nav {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 481px) { /* PCとタブレット表示時 */
  .l-header-tel-info {
    display: block; /* 表示 */
  }
}


    /* Q&Aセクションのスタイル */
    .faq-section {
        margin: 40px auto;
        max-width: 800px;
        padding: 0 20px;
    }

    .faq-question {
        background-color: #f4f4f4;
        padding: 15px;
        margin-bottom: 10px;
        cursor: pointer;
        border-radius: 5px;
        position: relative; /* 矢印の位置調整用 */
    }

    .faq-question::after {
        content: '+'; /* 初期状態ではプラス記号 */
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        font-size: 1.5em;
        transition: transform 0.3s ease;
    }

    .faq-question.active::after {
        content: '-'; /* 開いた状態ではマイナス記号 */
        transform: translateY(-50%) rotate(180deg); /* 矢印を回転 */
    }

    .faq-answer {
        padding: 15px;
        border: 1px solid #ddd;
        border-top: none;
        display: none; /* 初期状態では非表示 */
        border-radius: 0 0 5px 5px;
    }

    .faq-answer.active {
        display: block; /* 開いた状態では表示 */
    }

/* フッターメニュー（スマートフォン用） */
.l-footer-menu-sp {
  display: none; /* デフォルトでは非表示 */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--footer-background-color);
  color: var(--footer-text-color);
  z-index: 10000;
}

@media screen and (max-width: 768px) {
  .l-footer-menu-sp {
    display: block; /* スマートフォン表示時のみ表示 */
  }
}

.l-footer-menu-sp__list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 60px;
}

.l-footer-menu-sp__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 20%;
  height: 100%;
  border-right: 1px solid #fff;
}

.l-footer-menu-sp__item:last-child {
  border-right: none;
}

.l-footer-menu-sp__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--footer-text-color);
}

.l-footer-menu-sp__link svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  margin-bottom: 4px;
}

.l-footer-menu-sp__text {
  font-size: 10px;
  white-space: nowrap;
}

/* カテゴリーフリーページ基本スタイル */

/* コンテナ */
.category-container {
  max-width: 960px; /* TODO: 最大幅を調整 */
  margin: 0 auto;
  padding: 32px 16px; /* 上下左右のパディング */
}

/* 共通セクション */
.category-container .category-section {
  margin-bottom: 48px; /* セクション間のマージン */
}
.category-container .category-section h2 {
  border-bottom: 2px solid #eee; /* TODO: 見出し下線のスタイル調整 */
  padding-bottom: 8px;
  margin-bottom: 24px;
  font-size: 1.8em; /* 見出しのフォントサイズを少し大きく */
  text-align: center; /* セクションタイトルを中央寄せ */
}

/* ヒーローセクション */
.category-container .category-hero {
    /* display: flex; を削除またはコメントアウトして縦並びに */
    /* align-items, gap も不要に */
    margin-bottom: 48px;
  }
  .category-container .category-hero-text {
  /* flex: 1; は不要に */
  text-align: center; /* テキストを中央揃えにする場合 */
  }
  .category-container .category-hero-image {
  /* flex-shrink: 0; は不要に */
  display: block; /* 画像をブロック要素にして中央揃えしやすくする */
  margin: 0 auto 24px; /* 上下左右中央揃え、下に24pxのマージン */
  max-width: 1000px; /* TODO: 画像幅を調整 */
  border-radius: 8px; /* 画像の角丸 */
  }

/* 導入メリットセクション */
.category-container .merit-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* レスポンシブなグリッド */
  gap: 24px;
  margin-bottom: 32px;
}
.category-container .merit-list li {
  text-align: center;
  margin-bottom: 0; /* li自体のマージンは不要に */
}
.category-container .merit-list img {
  display: block;
  margin: 0 auto 8px auto;
  border-radius: 4px;
}
.category-container .merit-list span {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}

/* メニュー提案 */
.category-container .menu-suggestion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.category-container .menu-suggestion figure img {
  border: 1px solid #eee; /* 画像に枠線 */
  border-radius: 4px;
}

/* 商品ラインナップ */
.category-container .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.category-container .product-card {
  border: 1px solid #eee; /* カードに枠線 */
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}
.category-container .product-card h3 { margin-bottom: 8px; }
.category-container .product-card p { margin-bottom: 8px; font-size: 0.9em; }
.category-container .product-card .button { margin-top: 16px; }

/* お客様の声 */
.category-container .testimonial-list {
  list-style: none;
  padding-left: 0;
}
.category-container .testimonial-item {
  background-color: #f8f8f8; /* TODO: 背景色調整 */
  border-left: 4px solid #007bff; /* TODO: 左線の色調整 */
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 0 4px 4px 0;
}
.category-container .testimonial-text { font-style: italic; margin-bottom: 8px; }
.category-container .testimonial-source { text-align: right; font-size: 0.9em; color: #555; }
.testimonial-section img {
  display: block; /* 画像をブロック要素として扱う */
  margin-left: auto; /* 左マージンを自動調整 */
  margin-right: auto; /* 右マージンを自動調整 */
  /* 必要に応じて上下のマージンも追加してください */
  /*例: margin-top: 20px; margin-bottom: 20px; */
}

/* 品質と安心 */
.category-container .quality-points {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  text-align: center;
}
.category-container .quality-points li { margin-bottom: 0; }
.category-container .quality-points img { display: block; margin: 0 auto 8px auto; height: 160px; width: auto; } /* アイコンサイズ調整 */
.category-container .quality-points span { font-size: 0.9em; display: block; }

/* ご注文・サポート */
.category-container .order-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2カラム */
  gap: 32px;
}
.category-container .order-info-item { padding: 24px; border-radius: 8px; }
.category-container .sample-info { background-color: #eaf6ff; } /* TODO: サンプル情報背景色 */
.category-container .order-steps { padding-left: 16px; } /* 番号付きリストのインデント調整 */
.category-container .order-steps li { margin-bottom: 12px; }
.order-info-section img {
  display: block; /* 画像をブロック要素として扱う */
  margin-left: auto; /* 左マージンを自動調整 */
  margin-right: auto; /* 右マージンを自動調整 */
  margin-top: 16px
  /* 必要に応じて上下のマージンも追加してください */
  /*例: margin-top: 20px; margin-bottom: 20px; */
}


/* category-containerFAQ */
.category-container .faq-section .faq-answer {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 16px;
  margin-bottom: 16px;
  /* padding-left や margin-top は既存の .faq-answer のスタイルを維持 */
  position: relative; /* ::before のため */
  padding-left: 24px; /* ::before のため */
  margin-top: 8px;    /* ::before のため */
}

.category-container .faq-section .faq-list > dd:last-of-type { /* dl の直接の子である最後の dd */
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.category-container .faq-section .faq-question {
  position: relative;
  padding-left: 24px;
  cursor: pointer; /* アコーディオン用 */
}
.category-container .faq-section .faq-question::before {
  content: 'Q.';
  position: absolute;
  left: 8px;
  font-weight: bold;
  color: #007bff; /* TODO: Qマーク色 */
}
.category-container .faq-section .faq-answer::before {
  content: 'A.';
  position: absolute;
  left: 8px;
  font-weight: bold;
  color: #555; /* TODO: Aマーク色 */
}
.category-container .faq-answer .faq-answer-image {
  display: block; /* 画像をブロック要素として扱い、テキストは画像の上下に配置されます */
  max-width: 100%; /* 画像が親要素の幅を超えないようにします */
  height: auto;    /* 画像のアスペクト比を保持します */
  margin-top: 8px; /* 「A.」マーカーや、もし画像の上にテキストがあればその下からの間隔 */
  margin-bottom: 8px; /* 画像の下のテキストとの間隔 */
  margin-left: auto; /* 画像を中央揃えにする */
  margin-right: auto; /* 画像を中央揃えにする */
}

/* ボタン */
.category-container .button {
  display: inline-block;
  background-color: #007bff; /* TODO: 基本ボタン色 */
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.category-container .button:hover {
  background-color: #0056b3; /* TODO: ホバー色 */
  color: #fff;
  text-decoration: none;
}
.category-container .button-secondary {
  background-color: #6c757d; /* TODO: 第2ボタン色 */
}
.category-container .button-secondary:hover {
  background-color: #5a6268; /* TODO: 第2ボタンホバー色 */
}
.category-container .cta-buttons {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap; /* ボタンが複数行になってもOK */
  gap: 16px;
  justify-content: center; /* 中央寄せ */
}
.category-container .product-lineup .cta-buttons { justify-content: flex-end; } /* 商品ラインナップ下は右寄せ */

/* コスト比較セクション */
.category-container .cost-comparison-section {
  /* 既存の .category-section のスタイルが適用されます */
  /* 必要であればここで上書きしてください */
}

.category-container .cost-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* PCでは2カラム表示 */
  gap: 24px; /* アイテム間の隙間 */
  margin-bottom: 24px; /* 下のノートとのマージン */
}

.category-container .cost-comparison-item {
  border: 1px solid #e0e0e0; /* TODO: 枠線の色を調整 */
  border-radius: 8px;
  padding: 20px;
  background-color: #fdfdfd; /* TODO: 背景色を調整 */
  display: flex;
  flex-direction: column; /* アイテム内の要素を縦に並べる */
  text-align: center; /* アイテム内のテキストを中央揃え */
}

.category-container .cost-comparison-item__title {
  font-size: 1.25em; /* タイトルのフォントサイズ */
  color: #333;
  margin-top: 0;
  margin-bottom: 12px;
}

.category-container .cost-comparison-item__price {
  font-size: 1.6em;
  font-weight: bold;
  color: #007bff; /* TODO: 価格の文字色を調整 (テーマカラーなど) */
  margin-bottom: 8px;
}

.category-container .cost-comparison-item__description {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 16px;
  flex-grow: 1; /* この要素が余ったスペースを埋めて高さを揃える */
}

.category-container .cost-comparison-item__result {
  font-size: 1.1em;
  margin-top: auto; /* 結果をアイテムの最下部に配置 */
  padding-top: 12px;
  border-top: 1px dashed #ccc; /* 結果部分を区切る線 */
}
.category-container .cost-comparison-item__result strong {
  color: #28a745; /* TODO: 実質コストの強調色を調整 (お得感のある色) */
}

.category-container .cost-comparison-note {
  text-align: center;
  font-size: 1.4em;    /* 1.1em → 1.4em にアップ */
  line-height: 1.5;     /* 読みやすさ向上のため行間を調整 */
  padding: 16px;
  background-color: #fffbeb;
  border: 2px solid #ffe58f;
  border-radius: 6px;
  margin-top: 16px;
}

.category-container .cost-comparison-note .highlight {
  color: #d46b08;
  font-size: 1.6em;    /* 1.2em → 1.6em にアップ */
}

.cost-comparison-item__labor {
  font-size: 0.9em;
  color: #555;
  margin: 4px 0 0;
}
.cost-comparison-item__total {
  margin-top: 4px;
  font-size: 1em;
}


/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .category-container .category-hero {
    flex-direction: column; /* 1カラムレイアウトにする (元のコメント "/ 1カラムに /" の意図を反映) */
    text-align: center;
  }

  .category-container .category-hero-image {
    width: 85%;
    margin-top: 16px;
  }

  .category-container .order-info-grid {
    grid-template-columns: 1fr; /* 1カラムレイアウトにする */
  }

  .category-container .cost-comparison-grid {
    grid-template-columns: 1fr; /* 768px以下では1カラム表示 (元のコメント "/ 1カラムに /" の意図もこれに該当) */
    gap: 16px; /* 縦並び時のアイテム間マージン */
  }

}

@media screen and (max-width: 480px) {
  .category-container h1 { font-size: 1.8em; } /* スコープ内の見出しサイズ調整 */
  /* .category-container h2 は下の .category-section h2 で指定 */
  .category-container { padding: 24px 16px; }
  .category-container .category-section { margin-bottom: 32px; }
  .category-container .category-hero-image { width: 95%; }
  .category-container .merit-list { grid-template-columns: 1fr 1fr; gap: 16px; } /* スマホでは2カラム */
  .category-container .menu-suggestion { grid-template-columns: 1fr 1fr; gap: 12px; } /* スマホでは2カラム */
  .category-container .product-grid { grid-template-columns: 1fr; } /* スマホでは1カラム */
  .category-container .quality-points { grid-template-columns: 1fr 1fr; gap: 16px; } /* スマホでは2カラム */
  .category-container .cta-buttons { justify-content: center; } /* ボタンは中央寄せ */
  .category-container .button { padding: 12px 16px; font-size: 0.9em; }
}

.tel-link {
  display: block;
  text-decoration: none;
  pointer-events: none; /* PCでリンクを無効化 */
}

/* ここにスマートフォンのみに適応されるmedia query */
@media screen and (max-width: 480px) {
  .tel-link {
    cursor: pointer;
    pointer-events: auto; /* タッチイベントを有効にする */
    width:100%;
  }
}

/*PCの時にはリンクを発火しないようにする。*/
.tel-link-area {
}

/* リード文セクションのH2タイトル調整 */
.category-container .category-lead .section-title {
  text-align: center; /* タイトルを中央揃えに */
  border-bottom: none; /* 下線を削除（デザインに応じて変更） */
  font-size: 1.6em; /* フォントサイズを少し大きく */
  line-height: 1.5;
}

.category-container .category-lead .section-title .text-accent {
  color: #007bff; /* TODO: 強調したい箇所の色 (テーマカラーなど) */
  font-size: 1.3em; /* 「業務用 低臭むきにんにく」を大きく */
  display: block; /* 改行して表示させるため */
  margin-top: 8px;
}

/* お悩みチェックリスト */
.category-container .category-lead .problem-checklist {
  list-style: none;
  padding-left: 0;
  margin-top: 24px;
  margin-bottom: 32px;
}

.category-container .category-lead .problem-checklist li {
  background-color: #fff8e1; /* TODO: 薄い黄色系の背景 (注意を引く色) */
  border: 1px solid #ffe082; /* TODO: 黄色系のボーダー */
  border-left-width: 5px; /* 左のボーダーを太くしてアクセントに */
  padding: 12px 16px 12px 12px; /* アイコン分左のパディングを少し調整 */
  margin-bottom: 12px;
  border-radius: 4px;
  font-size: 1.05em;
  line-height: 1.6;
  display: flex; /* アイコンとテキストを横並び */
  align-items: flex-start; /* 上揃え */
}

.category-container .category-lead .problem-checklist .icon-check {
  margin-right: 10px;
  font-size: 1.1em; /* 絵文字アイコンのサイズ調整 */
  color: #f57c00; /* TODO: チェックマークの色 */
  line-height: 1.6; /* テキストと高さを合わせる */
}

/* 解決の呼びかけ */
.category-container .category-lead .solution-callout {
  background-color: #e3f2fd; /* TODO: 薄い青系の背景 (安心感、解決策の提示) */
  border: 2px dashed #007bff; /* TODO: テーマカラーの破線ボーダー */
  padding: 20px;
  margin-bottom: 32px;
  text-align: center;
  border-radius: 8px;
}

.category-container .category-lead .solution-callout p {
  font-size: 1.4em; /* 少し大きめのフォント */
  font-weight: bold;
  margin: 0;
  line-height: 1.7;
}

.category-container .category-lead .solution-callout .highlight-strong {
  color: #d32f2f; /* TODO: 「すべて解決します！」の強調色 (赤系など) */
  font-size: 1.3em; /* 特に強調したい部分を大きく */
  display: inline-block; /* アニメーションなどをつけやすくするため */
  animation: pulse 1.5s infinite;
}

/* アニメーションの定義 (例) */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* スマホ用の改行制御 */
.category-container .category-lead .solution-callout .sp-br {
  display: none; /* PCでは改行しない */
}

@media screen and (max-width: 480px) {
  .category-container .category-lead .solution-callout .sp-br {
    display: block; /* スマホでは改行する */
  }
  .category-container .category-lead .section-title .text-accent {
    font-size: 1.1em;
  }
  .category-container .category-lead .solution-callout p {
    font-size: 1.2em;
  }
  .category-container .category-lead .solution-callout .highlight-strong {
    font-size: 1.2em;
  }
}




/* 解決策の詳細説明 */
.category-container .category-lead .solution-description {
  font-size: 1.05em;
  line-height: 1.8;
}

.category-container .category-lead .solution-description ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
  margin-bottom: 16px;
}

.category-container .category-lead .solution-description li {
  margin-bottom: 12px;
  padding-left: 28px; /* アイコン分のインデント */
  position: relative; /* アイコンの位置調整のため */
}

.category-container .category-lead .solution-description li [class^="icon-"] {
  position: absolute;
  left: 0;
  top: 2px; /* 微調整 */
  font-size: 1.2em; /* アイコンサイズ */
  color: #007bff; /* TODO: アイコンの色をテーマカラーに */
}

.category-container .category-lead .solution-description li strong {
  /* color: #333; /* 必要であれば見出しの色を調整 */
  /* display: block; /* 強調部分をブロック要素にするかはお好みで */
}

/* 特徴セクション */
.category-container .feature-section {
  /* 必要に応じて追加スタイル */
}

.category-container .feature-section .section-intro-text {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* 特徴セクションのH2内サブタイトル */
.category-container .feature-section .feature-section__h2-subtitle {
  color: #007bff; /* TODO: テーマカラーに合わせて調整 */
  display: block;
  font-size: 1.2em;
  margin-top: 5px;
}

.category-container .feature-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 24px; /* アイコンとテキストの間のスペースを調整 */
  margin-bottom: 32px; /* 各アイテム間のマージンを調整 */
  padding: 20px;
  background-color: #f9f9f9; /* 背景色を薄く設定 */
  border-radius: 8px;
  border-left: 5px solid #007bff; /* TODO: テーマカラーに合わせて調整 */
}

.category-container .feature-section .feature-icon-container {
  flex-shrink: 0;
  width: 240px; /* 画像の幅に合わせる */
  height: 240px; /* 画像の高さに合わせる */
  /* 以前のアイコン用スタイルは削除またはコメントアウト */
  /* background-color: #007bff; */
  /* color: #fff; */
  /* border-radius: 50%; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* font-size: 2em; */
}

.category-container .feature-section .feature-icon-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* コンテナに合わせて画像を調整 */
  border-radius: 8px; /* feature-item の角丸と合わせるなど、お好みで調整 */
}

.category-container .feature-section .feature-text {
  flex: 1;
}

.category-container .feature-section .feature-text h3 {
  font-size: 1.4em; /* 特徴のタイトルを大きく */
  color: #333;
  margin-top: 0; /* 上マージンをリセット */
  margin-bottom: 12px; /* 説明文とのマージン */
}

.category-container .feature-section .feature-text p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 8px; /* 段落間のマージン */
  color: #555;
}
.category-container .feature-section .feature-text .sub-description {
  font-size: 0.9em;
  color: #777;
  margin-top: 8px;
  padding-left: 1em;
  border-left: 3px solid #ddd;
}

/* 製造工程セクション */
.category-container .manufacturing-process-section {
  /* 既存の .category-section のスタイルが適用されます */
}

.category-container .process-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* PCでは2カラム表示 */
  gap: 48px 24px; /* 縦のgapを矢印スペース分増やす(48px)、横は24px */
  margin-top: 24px;
}

.category-container .process-step-item {
  border: 1px solid #e0e0e0; /* TODO: 枠線の色を調整 */
  border-radius: 8px;
  padding: 20px;
  background-color: #fff; /* TODO: 背景色を調整 */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative; /* 矢印のための基準位置 */
}

.category-container .process-step-item__image {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
}

.category-container .process-step-item__title {
  font-size: 1.15em;
  color: #333;
  margin-top: 0;
  margin-bottom: 8px;
}

.category-container .process-step-item__description {
  font-size: 0.9em;
  color: #666;
  line-height: 1.6;
}

/* レスポンシブ対応 (特徴・製造工程セクション用) */
@media screen and (max-width: 768px) {
  .category-container .feature-section .feature-item {
    flex-direction: column; /* スマホでは縦並び */
    align-items: center; /* 中央揃え */
    text-align: center;
    border-left-width: 0; /* 左のボーダーを消す */
    border-top: 5px solid #007bff; /* 上にボーダーを移動 */
    padding: 20px 15px;
  }
  .category-container .feature-section .feature-icon-container {
    margin-bottom: 16px; /* アイコンとテキストの間にマージン */
  }
  .category-container .feature-section .feature-text h3 {
    font-size: 1.3em;
  }
  .category-container .process-steps-grid {
    grid-template-columns: 1fr; /* 768px以下では1カラム表示 */
    gap: 20px; /* 縦並び時のアイテム間マージン */
  }
}

@media screen and (max-width: 480px) {
  .category-container .category-section h2 {
    font-size: 1.5em;
  }
  .category-container .feature-section .feature-text h3 {
    font-size: 1.2em;
  }
  .category-container .feature-section .feature-text p {
    font-size: 0.95em;
  }
  .category-container .process-step-item__title {
    font-size: 1.1em;
  }
  .category-container .process-step-item__description {
    font-size: 0.85em;
  }
}
