/* 基本設定 */
body {
    font-family: "Zen Kaku Gothic New", sans-serif !important;
    color: #000000 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
}

/* キーボード操作時のフォーカス表示：ブラウザ標準の青枠から、サイトに馴染む控えめな表示に置き換え */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
}
@media (max-width: 767.98px) {
    body {
        font-size: 16px !important;
    }
}

/* ヘッダー */
header .header{
    height: 92px;
}

header .header .header-inner{
    z-index: 3;
}

header .header a:hover{
    opacity: 0.6;
}

header .header .logo{
    height: 36px;
}

.header-subtitle{
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Noto Serif JP", serif;
    font-size: 16px;
    letter-spacing: 0.15em;
    color: #000;
    margin-right: 10px;
    white-space: nowrap;
    font-feature-settings: "palt";
}

.header-catchcopy{
    font-size: 14px;
    color: #666;
    letter-spacing: 0.05em;
    margin-top: 6px;
    text-align: center;
}

header .header .menu-icon{
    
}
header .header .menu-icon i{
    font-size: 28px;
}
header .header .cart-icon i{
    font-size: 28px;
}
header .header .cart-icon-wrap {
    position: relative;
    display: inline-block;
    line-height: 1;
}
header .header .menu-icon button,
header .header .cart-icon button{
    color: #000000;
    background: #FFF;
    border: 0;
}

header .header .shipping-fee-box{
	margin-bottom: 15px;
}
header .header .shipping-fee-box .shipping-label{
	font-size: 12px;
	margin-bottom: 7px;
}
header .header .shipping-fee-box .shipping-label.cool{

}
header .header .shipping-fee-box .shipping-fee{
	font-size: 12px
}
header .header .shipping-fee-box .shipping-fee.cool{

}
header .header .shipping-fee-box .region-label{
	font-size: 12px;
}
header .header .shipping-fee-box .region-select{
	font-size: 12px;
	height: 26px;
    padding: 3px 5px 3px 5px;
}

header .header .header-left{
    left: 55px;
}
header .header .header-right{
    right: 55px;
}
header .header .cart-badge{
    font-size: 11px;
    background-color: #999;
    color: #fff;
    min-width: 20px;
    height: 20px;
    padding: 4px 2px 0 2px;
    text-align: center;
}
header .header .cart-badge--in{
    background-color: #BD2618;
}

header .header .cart-dropdown {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: white;
  z-index: 1000;
  border: 1px solid #ccc;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header .header .cart-dropdown.show {
  visibility: visible;
  opacity: 1;
}

header .header .cart-dropdown ul.cart-items{
    margin: 0;
}

header .header .cart-dropdown li {
  margin-bottom: 10px;
  font-size: 14px;
}

header .header .cart-dropdown li:last-child {
  margin-bottom: 0;
}

header .header .cart-dropdown li .price{
	font-size: 12px;
}

header .header .cart-dropdown li .mini-image {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom, #F8F9F5, #ECEFE5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

header .header .cart-dropdown li .mini-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

header .header .cart-dropdown .no-product-in-cart{
  font-size: 14px;
}

@media (max-width: 767.98px) {
    header .header{
        height: 64px;
    }
    header .header .logo{
        height: 23px;
    }
    header .header .menu-icon i{
        font-size: 24px;
    }
    header .header .cart-icon i{
        font-size: 22px;
    }
    header .header a:hover{
        opacity: 1;
    }
    header .header .header-left{
        left: 20px;
    }
    header .header .header-right{
        right: 20px;
    }
    .brand-title .d-flex{
        flex-direction: column;
    }
    .header-subtitle{
        font-size: 11px;
        margin-right: 0;
    }
    .header-catchcopy{
        font-size: 10px;
        margin-top: 0;
    }
}

/* global-menu */
.global-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 92px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.global-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ドロップシャドウと背景 */
.global-menu .container {
  box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.global-menu .menu-content{
  padding: 40px 90px;
}

.global-menu .vertical-title {
  font-family: "Zen Old Mincho", serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 18px;
  letter-spacing: 4px;
  font-weight: normal;
  display: inline-block;
  position: relative;
  padding-bottom: 10px; /* 線との距離 */
}

.global-menu .vertical-title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background-color: #ccc; /* 縦線の色 */
}

.global-menu .list {
  display: grid;
  gap: 25px 20px; /* 縦：25px、横：20px */
}

.global-menu .list.column-2 {
  grid-template-columns: repeat(2, 1fr); /* 2列 */
}

.global-menu .list.column-3 {
  grid-template-columns: repeat(3, 1fr); /* 3列 */
}

.global-menu .list a {
  display: block;
  text-align: left;
  color: #000000;
  font-size: 14px;
  text-decoration: none;
}

.global-menu .list a:hover {
    opacity: 0.7;
}

.global-menu .member{
  font-size: 14px;
}
.global-menu .member i{
  font-size: 16px;
}

/* メガメニュー：カテゴリタイル（TOP「カテゴリから探す」と同データ・コンパクト表示） */
.global-menu .menu-category-grid .category-tile {
  color: #222;
  transition: opacity 0.2s;
}
.global-menu .menu-category-grid .category-tile:hover {
  opacity: 0.85;
  color: #222;
}
.global-menu .menu-category-grid .category-tile-image {
  border-radius: 0.25rem;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1;
  margin-bottom: 0.25rem;
}
.global-menu .menu-category-grid .category-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.global-menu .menu-category-grid .category-tile-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

/* SP対応 */
@media (max-width: 768px) {
  .global-menu {
    top: 64px;
  }
  .global-menu .container {
    width: 100%;
    max-width: 100%;
  }
  
  .global-menu .menu-content{
    padding: 25px 15px;
  }

  .global-menu .vertical-title {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    padding-bottom: 0;
    font-size: 16px;
  }

  .global-menu .vertical-title::after {
    top: 50%;
    left: auto;
    right: -70px;
    transform: translateY(-50%);
    width: 60px;
    height: 1px;
  }
  
  .global-menu .list a {
    font-size: 12px;
  }
  
  .global-menu .member{
    font-size: 12px;
  }
  .global-menu .member i{
    font-size: 14px;
  }
}

/* breadcrumb */
.breadcrumb-wrapper {
  background-color: #F6F6F6;
  padding: 11px 15px 10px 15px;
  font-size: 12px;
  margin-bottom: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
.breadcrumb-wrapper nav {
  display: inline-flex;
}
.breadcrumb-wrapper .breadcrumb {
  margin: 0;
  background: none;
  padding: 0;
  --bs-breadcrumb-margin-bottom: 0 !important;
  flex-wrap: nowrap;
}

.breadcrumb a {
  color: #000000;
}

.breadcrumb .active {
  color: #999999;
}

@media (max-width: 767.98px) {
    .breadcrumb-wrapper {
        margin-bottom: 30px;
    }
}

/* feature */
.feature{
    position: relative;
    background-color: #e8eef2;
    padding: 80px 0;
    overflow: hidden;
}
.feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://www.kaisou-tuhan.com/apps/note/wp-content/uploads/2026/04/bg_wave.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.feature > * {
    position: relative;
    z-index: 1;
}
.feature .card{
    border: 0;
    padding: 40px 50px;
}
.feature .title{
    font-size: 20px;
    font-family: "Zen Old Mincho", serif;
    line-height: 150%;
    width: 100%;
    text-align: start;
}
.feature .feature-lead {
    font-size: 17px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.04em;
}
.feature .card .text{
    font-size: 16px;
    letter-spacing: 3px;
    line-height: 170%;
}
@media (max-width: 1199.98px) {
    .feature .card{
        border: 0;
        padding: 20px 25px;
    }
    .feature .title{
        font-size: 19px;
    }
    .feature .feature-lead {
        font-size: 16px;
    }
    .feature .card .text{
        font-size: 14px;
    }
}
@media (max-width: 767.98px) {
    /* .row.gx-5 のガター(3rem)が.container-xxlのpadding(12px)より大きく、
       横スクロールの原因になっていたためSPではガターを縮小する */
    .feature .row.gx-5 {
        --bs-gutter-x: 1.5rem;
    }
}

/* footer */
.footer{
    background-color: #1A1A1A;
    font-size: 14px;
    color: #FFFFFF;
    padding-top: 45px;
}
.footer a{
    color: #FFFFFF;
}
.footer a:hover{
    opacity: 0.7;
}
.footer ul{
    margin: 0;
}

/* 共通商品リスト（TOP、商品一覧、商品詳細等で利用） */
.products{

}

.products .product {
  font-family: sans-serif;
  position: relative; /* 必須：stretched-linkの基準に */
  transition: opacity 0.3s;
}

/* 商品グリッド：列間の横ガターを一段階だけ詰める（gx-3 / gx-md-5 の上書き） */
.row.products.gx-3 {
  --bs-gutter-x: 0.75rem;
}
@media (min-width: 768px) {
  .row.products.gx-md-5 {
    --bs-gutter-x: 2.25rem;
  }
}

.products .product:hover {
  opacity: 0.7;
}

.products .product .image {
  position: relative;
  background: linear-gradient(to bottom, #F8F9F5, #ECEFE5);
  padding: 0 0;
  margin-bottom: 15px;
  text-align: center;
}

.products .product .image img {
  max-width: 100%;
  height: auto;
}

.products .product .label {
  position: absolute;
  top: -15px;
  left: 10px;
  background-color: white;
  padding: 0 3px 0 3px;
  filter: drop-shadow(2px 2px 2px #DDDDDD);
  
}
.products .product .label .inner {
  padding: 10px 10px;
  font-size: 14px;
  font-weight: bold;
  border-right: 1px solid #000000;
  border-left: 1px solid #000000;
  writing-mode: vertical-rl;
  text-align: center;
  font-family: "Hiragino Mincho Pro", "serif";
  letter-spacing: 2px;
  width: 47px;
}

/* ▼ 売り切れラベル */
.products .product .label-soldout {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  line-height: 30px;
  background-color: rgba(0, 0, 0, 0.4); /* 半透明赤 */
  color: #fff;
  text-align: center;
  font-size: 14px;
  z-index: 2;
}

.products .product .info .name {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.6;
}

.products .product .info .fast-shipping{
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 4px 6px 1px 6px;
  margin-top: 5px;
}

.products .product .info .maker {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  line-height: 1.6;
}

.products .product .price {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: bold;
  color: #b80000;
}

.products .product .price .yen {
  margin-right: 2px;
  font-size: 12px;
}

.products .product .price .tax {
  font-size: 12px;
  color: #555;
  margin-left: 4px;
}

@media (max-width: 1200px) {
    .products .product .label {
      top: -10px;
      left: 5px;
    }
    .products .product .label .inner {
      padding: 5px 5px;
      font-size: 13px;
      letter-spacing: 1px;
      width: 34px;
    }
}

@media (max-width: 768px) {
    .products .product .label {
      top: -10px;
      left: 5px;
    }
    .products .product .label .inner {
      padding: 3px 3px;
      font-size: 10px;
      letter-spacing: 1px;
      width: 26px;
    }
    .products .product .image {
      margin-bottom: 10px;   
    }
	.products .product .label-soldout {
      height: 24px;
      line-height: 24px;
  	  font-size: 12px;
  	}
    .products .product .info .name {
      font-size: 14px;
      margin-bottom: 0;
      line-height: 1.4;
    }
    
    .products .product .info .maker {
      font-size: 12px;
      margin-bottom: 0;
      line-height: 1.4;
    }
    
    .products .product .price {
      font-size: 16px;
    }
}

/* faq */
.faq-box {
  height: 100%;
}
.faq-item {
  display: block;
  border-bottom: 1px solid #D1D1D1;
  padding: 25px 20px;
  color: #000;
  transition: background-color 0.2s ease;
  height: 100%;
}

.faq-item:hover {
  background-color: #f9f9f9;
  text-decoration: none;
}

.faq-icon {
  font-weight: 300;
  margin-right: 10px;
  min-width: 20px;
  font-family: "Jost", sans-serif;
  font-size: 24px;
}

.faq-text {
  font-size: 16px;
}

.more-link .link-text {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.more-link .link-text:hover {
  opacity: 0.7;
}

.more-link .link-arrow {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 768px) {
    .faq-icon {
      font-size: 20px;
    }
    .faq-text {
      font-size: 14px;
    }
  	.more-link{
  	}
    .more-link .link-text{
        font-size: 14px;
    }
    .more-link .link-arrow {
        width: 20px;
        height: 20px;
        line-height: 18px;
    }
}

/* sidebar */
/* sidebar / TOP キーワード検索 */
.sidebar .search-form,
.top-keyword-search .search-form {
  display: flex;
  align-items: stretch;
}

.sidebar .search-input,
.top-keyword-search .search-input {
  width: calc(100% - 70px);
  height: 38px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
  border: 1px solid #D1D1D1;
  border-radius: 0;
  outline: none;
  margin-right: 10px;
}

.sidebar .search-button,
.top-keyword-search .search-button {
  width: 60px;
  height: 38px;
  padding: 8px 14px;
  background-color: #1a1a1a;
  color: #fff;
  border: none;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Zen Old Mincho", serif;
}

.sidebar .search-button:hover,
.top-keyword-search .search-button:hover {
  opacity: 0.7;
}

.top-keyword-search {
  max-width: 560px;
}

.sidebar .sidebar-menu .sidebar-category-item {
  border-bottom: 1px solid #D1D1D1;
  padding: 16px 0;
}

.sidebar .sidebar-menu .sidebar-category-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  padding-right: 20px;
}

.sidebar .sidebar-menu .sidebar-category-thumb {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
}

.sidebar .sidebar-menu .sidebar-category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar .sidebar-menu .sidebar-category-label {
  flex: 1;
  min-width: 0;
}

.sidebar .sidebar-menu .sidebar-category-link:hover {
  opacity: 0.75;
  color: #000000;
}

.sidebar .sidebar-menu .sidebar-subcategories {
  margin: 12px 0 0 8px;
  padding: 0;
}

.sidebar .sidebar-menu .sidebar-subcategories li {
  font-size: 14px;
  margin-bottom: 10px;
}

.sidebar .sidebar-menu .sidebar-subcategories li:last-child {
  margin-bottom: 0;
}

.sidebar .sidebar-menu .sidebar-subcategory-link {
  color: #000000;
  text-decoration: none;
}

.sidebar .sidebar-menu .sidebar-subcategory-link:hover {
  text-decoration: underline;
  color: #000000;
}

.sidebar .sidebar-link-list ul {
  margin: 0;
  padding: 0;
}

.sidebar .sidebar-link-list li {
  border-bottom: 1px solid #D1D1D1;
  padding: 12px 0;
}

.sidebar .sidebar-link-list li:last-child {
  border-bottom: none;
}

.sidebar .sidebar-link-list a {
  display: block;
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.sidebar .sidebar-link-list a:hover {
  opacity: 0.75;
  color: #000000;
}

.accordion-button.accordion-button-disabled::after {
  opacity: 0.3;
}

/* 共通 */
h1{ 
    font-size: 44px !important; 
    font-family: "Zen Old Mincho", serif;
    font-weight: 400 !important;
    line-height: 1.6;
}
body.page h1,
body.archive h1,
body.single h1{ 
    font-size: 32px !important; 
}

h2{ 
    font-size: 24px !important; 
    font-family: "Zen Old Mincho", serif;
    font-weight: 700 !important;
    line-height: 1.6;
    border-bottom: 1px solid #000000;
    padding-bottom: 15px;
}

h2.no-border{ 
    border-bottom: 0;
}

.h2-lead{
    font-size: 18px;
    line-height: 1.6;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
}

h3{
    font-size: 20px !important;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700 !important;
    line-height: 1.6;
}

h4{
    font-size: 18px !important;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700 !important;
    line-height: 1.6;
}

.vertical-title {
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  letter-spacing: 4px;
}

section{
    margin-bottom: 70px;
}

.disabled-link {
  pointer-events: none;
  color: #333333 !important;
  text-decoration: none !important;
  cursor: default;
}

/* common-table */
.common-table {
  width: 100%;
  border-collapse: collapse;
}

.common-table th,
.common-table td {
  padding: 20px 20px !important;
  border-top: 1px solid #D1D1D1 !important;
  border-bottom: 1px solid #D1D1D1 !important;
  vertical-align: middle;
}

.common-table th {
  background-color: #F8F9F5 !important;
  font-weight: 700;
  white-space: nowrap;
  width: 200px;
  border-left: 1px solid #D1D1D1 !important;
  text-align: center;
}
.common-table td {
  border-right: 1px solid #D1D1D1 !important;
}

.no-border-table {
  width: 100%;
  border-collapse: collapse;
}

.no-border-table th,
.no-border-table td {
  padding: 10px 20px !important;
  vertical-align: middle;
  border-bottom-width: 0 !important;
  border-top: 0;
}

.no-border-table th {
  font-weight: 700;
  white-space: nowrap;
  width: 200px;
}

hr {
    margin: 0 !important;
    color: #D1D1D1 !important;
    opacity: 1 !important;
}

.common-bg-color{
    background-color: #F8F9F5;
}

@media (max-width: 768px) {
    h1{ 
        font-size: 21px !important; 
    }
    h2{ 
        font-size: 18px !important; 
        padding-bottom: 10px;
		margin-top: 20px !important;
		margin-bottom: 20px !important;
    }
    .h2-lead{
        font-size: 16px; 
    }
    h3{ 
        font-size: 18px !important; 
    }
    h4{ 
        font-size: 14px !important; 
    }
  .vertical-title {
    writing-mode: horizontal-tb;
    text-align: center;
    font-size: 18px;
  }
    section{
        margin-bottom: 40px;
    }
    .common-table th {
        width: 110px;
    }
}

/* レビュー関連 */
.reviews {
}
.reviews .review {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E7E7E7;
}
.reviews .review .star {
}
.reviews .review .star .rating-stars {
}
.reviews .review .star .rating {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #BD2618;
}
.reviews .review .title {
  font-weight: bold;
}
.reviews .review .comment {
}
.reviews .review .reviewer {
  color: #8A8989;
  font-size: 14px;
}
.reviews .review .reviewer i{
  font-size: 18px;
}
.reviews .review .reviewer .nickname {
}
.reviews .review .reviewer .nendai {
}
.reviews .review .reviewer .sex {
}
.reviews .review .date {
  color: #8A8989;
  font-size: 12px;
  text-align: right;
}
.reviews .review .photo {
}
.reviews .review .photo img {
}

.reviews .review .res{

}
.reviews .review .res .res-inner{
  margin-top: 20px;
  background-color: #F6F6F6;
  padding: 15px;
}
.reviews .review .res .res-comment {
  font-size: 14px;
}
.reviews .review .res .date {
  color: #8A8989;
  font-size: 12px;
  text-align: right;
}
.rating-stars i {
  color: #C5A42D;
  font-size: 1.2rem;
  margin-right: 2px;
}

@media (max-width: 768px) {
  .review-container{
    padding: 20px;
  }
  .review-post-btn {
    font-size: 13px;
    padding: 10px 10px;
  }

  .reviews .review {

  }
  .reviews .review .reviewer {
    font-size: 14px;
  }
  .reviews .review .reviewer i{
    font-size: 14px;
  }
  .reviews .review .photo {
    text-align:center;
  }
  .reviews .review .photo img {
    max-width: 80%;
    max-height: 200px;
  }

}

/* ============================================================
   TOPページ (top)
   ============================================================ */
/* メインスライダー */
.fv-wrapper {
  width: 100%;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .fv-wrapper {
    margin-bottom: 40px;
  }
}

.fv-slider .gallery-cell {
  width: 100%;
}

.fv-slider .gallery-cell img {
  display: block;
  width: 100%;
  height: auto;
}

/* 画像読み込み前でも高さを確保し、レイアウト崩れ（スペース潰れ）を防ぐ */
.fv-slider .gallery-cell .pc-only {
  aspect-ratio: 2222 / 998;
}
.fv-slider .gallery-cell .sp-only {
  aspect-ratio: 800 / 572;
}

.fv-slider .gallery-cell .pc-only { display: block; }
.fv-slider .gallery-cell .sp-only { display: none; }

.fv-slider .flickity-page-dots {
  bottom: 15px;
}
.fv-slider .flickity-page-dots .dot {
  background: #fff;
  opacity: 0.5;
}
.fv-slider .flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.fv-slider .flickity-prev-next-button {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
}
.fv-slider .flickity-prev-next-button:hover {
  background: rgba(255,255,255,0.9);
}
.fv-slider .flickity-prev-next-button .flickity-button-icon {
  fill: #333;
}

@media screen and (max-width: 767px) {
  .fv-slider .gallery-cell .pc-only { display: none; }
  .fv-slider .gallery-cell .sp-only { display: block; }
}

/* SP改行タグを非表示（デフォルト） */
.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: inline;
  }
}

/* overlay-card */
.overlay-card {
  background-size: cover;
  background-position: center;
  height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.overlay-card:hover {
  cursor: pointer;
  text-decoration: none;
}

.overlay-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

/* ← 中央ブロックのみに背景を出す */
.overlay-box {
  position: relative;
  padding: 40px 30px;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.4s ease;
}

/* ← ホバーで中央だけ背景が表示 */
.overlay-card:hover .overlay-box {
  background-color: rgba(0, 0, 0, 0.5);
}

.overlay-card .overlay-box .en{
	font-family: "Jost", sans-serif;
	letter-spacing: 2px;
	font-weight: 400;
	font-size: 14px;
}

.overlay-card .overlay-box .title{
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.6;
}

.overlay-card .overlay-box .small {
  margin-bottom: 0;
}

.overlay-card .overlay-card-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 32px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  pointer-events: none;
}

.overlay-card:hover .overlay-card-cta {
  background-color: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  border-color: #fff;
}

.divider {
  width: 30px;
  height: 2px;
  background-color: white;
  margin: 8px auto;
}

@media screen and (max-width: 768px) {
	.overlay-card {
		height: 206px;
	}
	.overlay-content {
	  padding: 20px 0;
	}
	.overlay-box{
		padding: 20px 10px; 
	}
	.overlay-card .overlay-box .en{
		font-size: 12px;
	}
	
	.overlay-card .overlay-box .title{
	  font-size: 15px;
	}
	.overlay-card .overlay-card-cta {
	  margin-top: 10px;
	  padding: 6px 24px;
	  font-size: 13px;
	}
}

/* TOP：テーマから探す ― おかず・おつまみカード（左テキスト / 右画像） */
.theme-thumb-section h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
}

.theme-thumb-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
  min-height: 88px;
  padding: 10px 10px 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f7f7f5;
  color: #222;
  text-decoration: none;
  transition: background-color 0.2s, opacity 0.2s;
}

.theme-thumb-card:hover {
  background-color: #efece6;
  opacity: 0.92;
  color: #222;
}

.theme-thumb-card__text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}

.theme-thumb-card__line {
  display: block;
  /* 改行位置はHTML側の<br class="d-none d-md-inline">で明示的に制御するため、
     ここではCSSで強制的な折り返し制御（nowrap等）は行わず自然な折り返しに任せる */
  white-space: normal;
}

.theme-thumb-card__text b {
  font-weight: 700;
}

.theme-thumb-card__image {
  flex: 0 0 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-thumb-card__image img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .theme-thumb-card {
    min-height: 96px;
    padding: 12px 12px 12px 14px;
    gap: 10px;
  }

  .theme-thumb-card__text {
    font-size: 14px;
  }

  .theme-thumb-card__image {
    flex-basis: 72px;
    width: 72px;
  }

  .theme-thumb-card__image img {
    width: 72px;
    height: 72px;
  }
}

.page-top h2{
    border-bottom: 0;
}

/* TOP：スライド下バナーの下余白（他ページには適用しない） */
.page-top .site-banner-top-wrap {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .page-top .site-banner-top-wrap {
    margin-bottom: 3rem;
  }
}

/* 商品リストの表示件数制御 */
.product {
  display: block;
}
@media (max-width: 992px) {
  .products .product{
    padding-right: 6px;
    padding-left: 6px;
  }
}
/* SP：最大6件表示（2列×3行） ― TOPページの商品一覧グリッドのみ */
@media (max-width: 767.98px) {
  .page-top .row.products > .product {
    display: none;
  }
  .page-top .row.products > .product:nth-child(-n+6) {
    display: block;
  }
}

.makers a{
  display: block;
  text-decoration: none;
  color: #000000;
  margin-bottom: 20px;
}
.makers a:hover{
  opacity: 0.7;
}

/* TOP：こちらもぜひご覧下さい（サブバナー） */
.sub-banner-wrap {
  width: 80%;
}
.sub-banner-link {
  transition: opacity 0.2s;
}
.sub-banner-link:hover {
  opacity: 0.85;
}

/* TOP：PC（lg以上）でカテゴリを1行10件（12グリッドでは割り切れないため個別幅） */
@media (min-width: 992px) {
  .category-tiles-grid > .category-tile-col {
    flex: 0 0 10%;
    max-width: 10%;
  }
}

/* カテゴリタイル（素材カテゴリ） */
.category-tile {
  color: #222;
  transition: opacity 0.2s;
}
.category-tile:hover {
  opacity: 0.85;
  color: #222;
}
.category-tile-image {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1;
}
.category-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 商品グリッドの .info .name と同じ見出しスタイル */
.category-tile-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.6;
  color: inherit;
}

@media (max-width: 768px) {
  .category-tile-name {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.4;
  }
}

/* お客様の声（レビュー）写真 */
.voice-kaisou-photo {
  max-width: 100%;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* お客様の声（レビュー）一覧：カード2件分程度の高さでスクロール */
.voice-kaisou-list {
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.375rem;
}

/* ============================================================
   商品詳細 (product)
   ============================================================ */
/* 商品情報 */
.product-detail .badge {
  font-size: 0.875rem;
  padding: 0.4em 0.6em;
}

.product-detail .btn-check:checked + .btn {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.product-detail .price{
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: bold;
  color: #b80000;
}

.product-detail .price.no-display{
  font-size: 21px;
}

.product-detail .shopping-alert{
  background-color: #F6F6F6;
  padding: 5px 10px  5px 10px;
  color: #b80000;
}

@media (max-width: 768px) {
  .product-detail .price.no-display{
    font-size: 16px;
  }
}

/* 商品写真 */
.product-gallery .main-image {
    width: 100%;
    max-width: 600px; /* 任意の最大幅 */
    margin: 0 auto;
    aspect-ratio: 1 / 1; /* 正方形 */
    background: linear-gradient(to bottom, #F8F9F5, #ECEFE5);
    position: relative;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.product-gallery .main-image .label {
    position: absolute;
    top: -20px;
    left: 20px;
    background-color: white;
    padding: 0 3px 0 3px;
    filter: drop-shadow(2px 2px 2px #DDDDDD);
    z-index: 1;
}

.product-gallery .main-image .label .inner {
	padding: 15px 10px;
    font-size: 16px;
    font-weight: bold;
    border-right: 1px solid #000000;
    border-left: 1px solid #000000;
    writing-mode: vertical-rl;
    text-align: center;
    font-family: "Hiragino Mincho Pro", "serif";
    letter-spacing: 2px;
    width: 52px;
}

.product-gallery .main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}
/*
.product-gallery .main-image {
  text-align: center;
  background: linear-gradient(to bottom, #F8F9F5, #ECEFE5);
  padding: 0;
  min-height: 300px;
}

.product-gallery .main-image img {
  max-height: 400px;
  transition: opacity 0.4s ease;
}
*/
.fade-in {
  opacity: 0;
  animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.thumb-wrapper {
  overflow-x: scroll;            /* ← スクロールバー常時表示 */
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 5px;

  scrollbar-width: thin;         /* Firefox用: 細いバー */
  scrollbar-color: #aaa transparent;
}

/* WebKit系ブラウザ（Chrome, Safari） */
.thumb-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 5px;
  -webkit-overflow-scrolling: touch;
}

.thumb-wrapper::-webkit-scrollbar {
  height: 6px;
}
.thumb-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.thumb-wrapper::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 3px;
}

.thumb-wrapper::after {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(to right, #ccc 30%, transparent 70%);
  margin-top: 2px;
  transition: opacity 0.3s;
  opacity: 1;
}

.thumb-wrapper.scrolled::after {
  opacity: 0;
  pointer-events: none;
}

.thumb-images {
  display: flex;
  flex-wrap: nowrap;
}

.thumbnail {
  flex: 0 0 auto;
  width: 80px;
  aspect-ratio: 1 / 1; /* 正方形維持 */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.thumbnail img.thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.thumbnail.active {
  border-color: #000;
}

.qty-input{
    height: 38px;
}

.product-explain{
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* <br>が連続している場合、2個目以降を非表示にして1個分の改行にまとめる */
.product-explain br + br {
  display: none;
}

.product-explain img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
}

/* 商品説明文内の商品規格テーブル（カラーミー管理画面編集分） */
.product-explain table.product_detail {
  width: 100%;
  max-width: 720px;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 15px;
}

.product-explain table.product_detail tr {
  border-bottom: 1px solid #D1D1D1;
}

.product-explain table.product_detail tr:first-child {
  border-top: 1px solid #D1D1D1;
}

.product-explain table.product_detail th,
.product-explain table.product_detail td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.product-explain table.product_detail th {
  width: 7.5em;
  white-space: nowrap;
  background-color: #F6F6F6;
  font-weight: 600;
  color: #333;
}

.product-explain table.product_detail td {
  color: #333;
}

.product-explain table.product_detail td a {
  color: #b80000;
  text-decoration: none;
}

.product-explain table.product_detail td a:hover {
  text-decoration: underline;
}

.product-explain table.product_detail td a i {
  margin-right: 4px;
}

@media (max-width: 768px) {
  .product-explain table.product_detail {
    font-size: 16px;
  }
  .product-explain table.product_detail th {
    width: 6em;
    padding: 10px 8px;
  }
  .product-explain table.product_detail td {
    padding: 10px 8px;
  }
}

/* レビュー */
.review-container{
  border:1px solid #D1D1D1;
  padding: 40px;
}
.review-container h2{
  border-bottom: 0;
  text-align: center;
}

.review-post-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #212529;
  font-size: 1rem;
  font-weight: 500;
  color: #212529;
  background-color: transparent;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.review-post-btn:hover {
  background-color: #212529;
  color: #fff;
  text-decoration: none;
}

.review-post-btn i {
  font-size: 1.1em;
}

.total-review {
  text-align: center;
}
.total-review .rating {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #BD2618;
}
.total-review .star {
}
.total-review .num {
  font-size: 14px;
  color: #888888;
}

/* 関連商品で、SPの商品表示数を3件表示にする */
@media (max-width: 768px) {
  .product-related-bottom .products .product:nth-of-type(n + 4) {
    display: none !important;
  }
}

/* 商品詳細：別サイズ・関連商品 / 下部関連商品（CLS対策） */
a.related-item[data-pid] {
  display: none !important;
}

.product-related-variant-slot[aria-busy="true"],
.product-related-bottom-slot[aria-busy="true"] {
  min-height: 0;
}

.product-related-variant .products .product .image,
.product-related-bottom .products .product .image {
  aspect-ratio: 1 / 1;
}

.product-related-variant .products .product .image img,
.product-related-bottom .products .product .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-skeleton .image {
  margin-bottom: 15px;
}

.product-skeleton-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(90deg, #ecefe5 25%, #f8f9f5 50%, #ecefe5 75%);
  background-size: 200% 100%;
  animation: product-skeleton-shimmer 1.2s ease-in-out infinite;
}

.product-skeleton-line {
  height: 14px;
  border-radius: 4px;
  background: #ecefe5;
  margin-bottom: 8px;
}

.product-skeleton-line--title {
  width: 85%;
}

.product-skeleton-line--price {
  width: 45%;
  margin-bottom: 0;
}

@keyframes product-skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.product-related-bottom--loading {
  min-height: 320px;
}

@media (min-width: 768px) {
  .product-related-bottom--loading {
    min-height: 360px;
  }
}

.product-related-bottom.is-empty {
  display: none !important;
}

.product-related-variant.is-empty {
  display: none;
}

/* 購入できない場合のリンク */
#external-buy-link-block .external-buy-link-apologize{
  color: #BD2618;
}

.product_cart_select{
  height: 38px;
}

.btn-to-maker{
  border: 1px solid #D1D1D1 !important;
}
.btn-to-maker:hover{
  opacity: 0.5;
}

/* ============================================================
   商品一覧・検索結果 (product_list / product_srh)
   ============================================================ */
.section-nav .nav-link {
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.section-nav .nav-item {
  white-space: nowrap;
}

@media (min-width: 768px) {     /* md 以上 = PC */
  .video-frame {
    max-width: 75%;
  }
}

.maker-page-link{
    font-family: "Hiragino Mincho Pro", "serif";
}
.maker-page-link a{
    text-decoration: none;
    color: #000000;
}

/* ============================================================
   特定商取引法 (shopkeeper)
   ============================================================ */
.shopkeeper-list {
  border-top: 1px solid #dee2e6;
}

.shopkeeper-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #dee2e6;
}

.shopkeeper-item__title {
  flex: 0 0 100%;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.shopkeeper-item__body {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .shopkeeper-item__title {
    flex: 0 0 28%;
    max-width: 28%;
  }

  .shopkeeper-item__body {
    flex: 1 1 0;
    border-left: 1px solid #dee2e6;
    padding-left: 1.5rem;
  }
}

.c-transactions-act__tr {
  /* 郵便番号行など個別スタイル用（従来クラスを維持） */
}

.c-transactions-act-list {
  padding-top: 12px;
  font-size: 13px;
}

.c-transactions-act-list li:not(:last-child) {
  margin-bottom: 6px;
}

.transactions-act_li {
  padding-left: 1em;
  text-indent: -1em;
}

.transactions-act_li:before {
  content: "※";
}

.transactions-act__link {
  font-weight: bold;
}

/* ============================================================
   オプション在庫 (option_stock)
   ============================================================ */
.p-popup-option-tbl {
  padding: 0;
}

.option-stock-table th,
.option-stock-table td {
  vertical-align: middle;
}

.option-regularprice {
  font-size: 0.875rem;
  color: #6c757d;
  text-decoration: line-through;
}

.option-price {
  font-weight: 700;
}

.option-discount {
  font-size: 0.875rem;
  color: #dc3545;
  font-weight: 700;
}

.option-stock {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

/* ============================================================
   プライバシーポリシー (privacy)
   ============================================================ */
.privacy-content a {
  color: inherit;
  text-decoration: underline;
}

.p-privacy-box {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
}

.p-privacy-box:last-child {
  padding-bottom: 0;
}

/* ============================================================
   移行対応用
   ============================================================ */
.tmp-hidden{
  display: none;
}

/* ============================================================
   フリーページ用「特集カテゴリー」デザイン (.special-category)
   旧テンプレート(ID28) css/28/index.css より移植
   井上の出汁(?mode=f39)など、WordPress固定ページへ複製したフリー
   ページ本文で使用。ID29本番化後もこのクラスが必要なページがある
   ため、共通CSSとして保持する。
   ============================================================ */
/* Special Category */
.special-category a{
    text-decoration: none;
}
.special-category a:hover{
    text-decoration: underline;
    opacity: 0.7;
}
.special-category .cat-content section {
	padding: 20px;
	border-bottom: 1px solid #d4d4d4;
    overflow: auto;
    margin-bottom: 40px
}
.special-category .section {
	padding: 10px 0;
	border-bottom: 1px solid #d4d4d4;
}
.special-category .item-info p{
    font-size: 16px;
}
/* h2は基本のh1,h2,h3スタイル（共通セクション参照）をそのまま利用する */

.special-category h3 {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	padding: 10px;
	margin-bottom: 20px;
	background: #e8f2d6;
	border: none;
    clear: both;
}
.special-category p {
	font-size: 14px;
	margin-bottom: 20px;
}
.special-category .marker {
	background: linear-gradient(transparent 50%,#ddeed6 100%);
}
.special-category .font-red {
	color: #a61f25;
}
.special-category .cat-head {
	position: relative;
}
.special-category .cat-head img {
	display: block;
	width: 100%;
	max-height: 160px;
	object-fit: cover;
}
.special-category .cat-head .head-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
@media (max-width: 767.98px) {
	.special-category .cat-head .head-text {
		width: 100%;
	}
}
/* 共通のh1{font-size:44px!important}／SPのh1{font-size:21px!important}に上書きされてしまうため、
   詳細度で勝てるよう!importantを付与する */
.special-category .cat-head h1 {
	font-size: 28px !important;
	color: #fff;
	font-weight: 600;
	margin: 0 0 20px;
}
.special-category .cat-head .label {
	background: #fff;
	padding: 10px 30px;
	font-size: 14px;
	line-height: 1;
}
.special-category .cat-head .label span {
	padding-left: 10px;
}
.special-category .btn-gr {
	display: block;
	width: 200px;
	margin: 0 auto;
	padding: 5px 0 5px 30px;
	box-sizing: border-box;
	background: #678d27;
	border-radius: 2px;
	font-size: 14px;
	text-align: center;
	color: #fff;
	position: relative;
}
.special-category .btn-gr::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 7px 0 7px;
	border-color: #ffffff transparent transparent transparent;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(calc(-50% - 40px));
}
.special-category .btn-gr a {
	color: #fff;
	text-decoration: none;
}
.special-category .btn-grline {
	margin: 20px auto;
	text-align: center;
}
.special-category .btn-grline a {
	display: inline-block;
	padding: 2px 30px;
	border: 1px solid #678d27;
	border-radius: 4px;
	color: #678d27;
}
/* 画像+テキストを横並びにするブロック（旧box-img-left/img-box/text-box）。
   floatではなくflexboxで組む。PC：画像が左・テキストが右、SP：画像が上・テキストが下 */
.special-category .media-block {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 20px;
}
.special-category .media-block__image {
	flex: 0 0 35%;
	width: 35%;
	margin: 0;
	max-width: 100%;
	height: auto;
	display: block;
}
.special-category .media-block__text {
	flex: 1 1 auto;
	min-width: 0;
	font-family: "Zen Old Mincho", serif;
}
@media (max-width: 767.98px) {
	.special-category .media-block {
		flex-direction: column;
		padding-left: 20px;
		padding-right: 20px;
	}
	.special-category .media-block__image,
	.special-category .media-block__text {
		flex: 1 1 auto;
		width: 100%;
	}
}
.special-category .item-list a {
	color: #000;
}
.special-category .item-list ul{
    margin: 0 auto 20px auto;
  	row-gap: 30px;
}
.special-category .item-list ul,
.special-category .other-item ul {
	padding: 0;
}
.special-category .item-list li,
.special-category .other-item li {
	list-style: none;
	margin-bottom: 10px; 
}
.special-category .single-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    margin-bottom: 20px;
}

.special-category .item-list ul.col-3 {
  width: 900px;
  column-gap: 2%;
}

.special-category .item-list ul.col-2 {
  width: 600px;
  column-gap: 4%;
}

/* col-3 は900px固定幅のためSPで画面幅を超えて横スクロールが発生してしまう。
   SPでは幅を100%にする（li側の48%は、同じ詳細度のul.col-3 li{width:31%}に後勝ちで
   上書きされてしまわないよう、そのルールより下の768行目付近に別途記述している） */
@media (max-width: 767.98px) {
  .special-category .item-list ul.col-3 {
    width: 100%;
    column-gap: 4%;
  }
}

/* col-1 という名前がBootstrapのグリッドクラス(.col-1{width:8.33%})と衝突し、
   ulの幅がわずか8.33%まで潰れてしまう。col-2/col-3同様にulへ幅を明示して上書きする。 */
.special-category .item-list ul.col-1 {
  justify-content: center;
  width: 100%;
}

.special-category .item-list ul.col-1 li {
  width: 295px;
}

.special-category .item-list ul.col-3 li {
  width: 31%;
}

@media (max-width: 767.98px) {
  .special-category .item-list ul.col-3 li {
    width: 48%;
  }
}

.special-category .item-list ul.col-2 li {
  width: 48%;
}

.special-category .single-list .item-img{
    margin-bottom: 10px; 
}
.special-category .single-list .item-type {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.63px;
  line-height: 28px;
  margin-bottom: 10px;
  border-bottom: 1px solid #668D28;
  padding-bottom: 9px;
}
.special-category .single-list .item-name {
	font-size: 16px;
	font-weight: bold;
}
.special-category .single-list .item-size {
	font-size: 14px;
	font-weight: bold;
}
.special-category .single-list .item-text {
	font-size: 14px;
}
.special-category .single-list .item-price {
	font-size: 12px;
}
.special-category .single-list .item-price span {
	font-size: 16px;
	font-weight: bold;
}
.special-category .set-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    margin-bottom: 20px;
}
.special-category .set-list li {
	width: 48%;
	border-top: 1px solid #d8d8d8;
	padding: 10px 0;
	position: relative;
}
.special-category .set-list li:first-of-type,
.special-category .set-list li:nth-of-type(2) {
	border-top: none;
}
.special-category .set-list .item-name {
	font-size: 16px;
	font-weight: bold;
	padding-right: 38px;
}
.special-category .set-list .item-price {
	font-size: 12px;
}
.special-category .set-list .item-price span {
	font-size: 14px;
	font-weight: bold;
}
.special-category .set-list .label {
	position: absolute;
	top: 10px;
	right: 0;
	font-size: 10px;
	color: #a61f25;
	border: 1px solid #a61f25;
	padding: 0 8px;
	border-radius: 2px;
}
.special-category .goodprice-list a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    margin-bottom: 20px;
}
.special-category .goodprice-list .item-img{
	width: 230px;
    margin-right: 20px;
    margin-bottom: 10px;
}
.special-category .goodprice-list .item-img img,
.item-list .item-img img,
.other-item .tile-list img{
	width: 100%;
}
.special-category .goodprice-list .item-detail {
	width: calc(600px - 230px - 20px);
}
.special-category .goodprice-list .item-name {
	font-size: 16px;
	font-weight: bold;
	padding-right: 38px;
}
.special-category .goodprice-list .item-size {
	font-size: 14px;
	font-weight: bold;
}
.special-category .goodprice-list .item-price {
	font-size: 12px;
}
.special-category .goodprice-list .item-price span {
	font-size: 16px;
	font-weight: bold;
}
.special-category .goodprice-list .item-postage {
	padding: 8px;
	margin-top: 10px;
	border: 1px solid #a61f25;
	color: #a61f25;
	font-size: 14px;
	text-align: center;
}
.special-category .goodprice-list .item-postage .font-big {
	font-size: 16px;
	font-weight: bold;
}
.special-category .tile-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 20px;
}
.special-category .tile-list li {
	width: 32%;
	position: relative;
    margin-bottom: 10px;
}
.special-category .tile-list img {
	filter: brightness(0.8);
}
.special-category .tile-list .item-name {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0 10px;
	box-sizing: border-box;
	color: #fff;
	text-align: center;
	font-size: 21px;
	font-weight: bold;
	filter: drop-shadow(2px 2px 4px black);
}
.special-category .tile-list a:hover{
    opacity: 0.7;
}

/* 20250123 出汁ページ ここから */

.special-category .cat-head.viewpoint-width {
  margin: 0 calc(50% - 50vw) 0;
  width: 100vw;
}

.special-category .cat-head .background-image {
  max-height: 448px;
}

.special-category .cat-head .background-image-filter {
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.special-category .cat-head .main-image {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  max-width: 1000px;
  max-height: 448px;
}

.special-category .head-message {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 2.03px;
  line-height: 33px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
/* white-space:nowrapだと、<br>で区切った1行分の文言が画面幅より長い場合に
   横スクロールの原因になってしまうため、SPでは折り返しを許可する
   （<br>による改行位置の指定自体はnormalでも維持される） */
@media (max-width: 767.98px) {
  .special-category .head-message {
    white-space: normal;
  }
}

/* PCで画像と高さを揃えるための余白。SPでは画像がテキストの真上に来る縦積みレイアウトのため不要 */
.special-category .media-block__text.margin-top-large {
  padding-top: 5em;
}
@media (max-width: 767.98px) {
  .special-category .media-block__text.margin-top-large {
    padding-top: 0;
  }
}

.special-category .item-list a.category-link {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.46px;
  line-height: 16px;
  color: #fff;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
  height: 46px;
}

.special-category .single-list .item-img {
  position: relative;
}

.special-category .single-list .item-place {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  letter-spacing: 2.01px;
  color: #fff;
  width: 122px;
  height: 34px;
  background: #668D28;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 左右paddingを0にするのはフルブリード背景を敷くcomment-box.background-blackのみで良い。
   通常のcomment-box（背景なし）にも効いてしまい、item-listなど他セクションと
   左右の余白（幅）が揃わなくなっていたため、background-blackに限定する */
.special-category .cat-content section.comment-box.background-black {
  padding-left: 0;
  padding-right: 0;
}

.special-category .background-black {
  background-color: #333;
}
/* .special-category .cat-content section{overflow:auto}の方が詳細度が高く上書きされてしまうため、
   ここでは.comment-box.background-blackまで含めて詳細度を上げ、
   画像圧縮によるフチのにじみなどが背景の外に漏れて見えないようにする */
.special-category .comment-box.background-black {
  overflow: hidden;
  margin-bottom: 0;
}

/* container 内に置いたときだけ全幅にはみ出す */
.special-category .container > .background-black,
.special-category .container > .comment-box.background-black {
  margin: 0 calc(50% - 50vw);
}

/* container 外の黒 comment-box：本文幅を container に揃える */
.special-category .cat-content > .comment-box.background-black {
  padding: 20px calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

.special-category .comment-box.background-black .media-block {
  max-width: 1140px;
  margin-inline: auto;
  margin-bottom: 0;
}

.special-category .comment-box .text-white {
  color: #FFF;
}

.special-category .comment-box .text-strong {
  font-size: 16px;
  font-weight: 700;
  margin-block: 1em;
}

.special-category .item-list.voice {
  border-bottom: none;
}

.special-category .voice-contents {
  height: 735px;
  overflow-y: scroll;
}

.special-category .item-list .voice-content {
  border: 1px solid rgba(205, 205, 205, 0.8);
  padding: 20px 25px;
  margin-bottom: 25px;
}

.special-category .voice-content:last-of-type {
  margin-bottom: 0;
}

.special-category .voice-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.special-category .voice-content .star {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.special-category .voice-content .star img {
  width: 20px;
  height: 20px;
}

.special-category .voice-text {
  margin-block: 20px 7px;
}

.special-category .voice-reviewer {
  letter-spacing: 0.51px;
  line-height: 28px;
  margin-bottom: 15px;
}

.special-category .voice-link {
  font-size: 14px;
  font-weight: 700;
}

/* background-ivory は section ではなく div でラップし、フルブリード背景専用の
   外枠として使う。内側の section.item-list は他のセクションと同じ
   .special-category .cat-content section の共通スタイル（padding/border-bottom等）
   をそのまま適用できるため、ここでは !important のハックが不要。
   前のブロックとの間は負のmarginで詰めず、通常の余白のまま次のブロックとして続ける。
   左右だけ、画面幅いっぱいに背景を広げるためmarginで広げた分をpaddingで押し戻す
   （中身は container の元の幅のまま保たれる） */
.special-category .background-ivory {
	background-color: #FFF6E9;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
}

/* ページ最後のセクションのため、他セクションとの区切り線・余白は不要 */
.special-category .background-ivory .item-list {
  border-bottom: none;
  margin-bottom: 0;
}

.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}


/* ============================================================
   固定ページ（お中元・お歳暮・和惣菜・お客様の声等）用
   旧テンプレート(ID28) css/28/index.css より移植した共通クラス群
   ============================================================ */
/* title */
.ttl_h2 {
  margin-top: 3em;
  margin-bottom: 40px;
  color: #000;
  font-weight: bold;
  font-size: 124%;
  text-align: center;
  line-height: 140%;
}
.ttl_h3 {
  margin-top: 2em;
  margin-bottom: .5em;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  border-left: 2px solid #81AB54;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.ttl_h3 i{
  display: none;
}
.ttl_h3_notopmargin {
  margin-bottom: .5em;
  color: #000;
  font-weight: bold;
  font-size: 18px;
}

/* prduct list */
.prd_lst {
  position: relative;
  clear: both;
  margin-left: -3%;
  list-style: none;
  padding-left: 0;
}
.prd_lst_unit {
  float: left;
  margin-bottom: 15px;
  margin-left: 3%;
  word-break: break-all;
}
  .prd_lst_unit_s {
    width: 22%;
  }
  .prd_lst_unit_s:nth-child(4n+1) {
    clear: both;
  }
  .prd_lst_unit_m {
    width: 30.3%;
  }
  .prd_lst_unit_l {
    width: 45%;
  }
  .prd_lst_unit a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
  }
  .prd_lst_unit a:hover {
    text-decoration: underline;
  }
  .prd_lst_img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: inherit;
  }
  .prd_lst_img:hover {
    opacity: 90%;
  }
  .prd_lst_span {
    display: block;
    margin: .3em 0;
  }
  .prd_lst_name {
    margin-top: .5em;
  }
  .prd_lst_exp {
    color: #666;
    font-size: 84.615%;
  }
  .prd_lst_price,
  .prd_lst_soldout {
    font-weight: bold;
    font-size: 92.307%;
    color: #DD3333;
  }
  .prd_lst_regular {
    color: #666;
    text-decoration: line-through;
  }
  .prd_lst_none {
    clear: both;
    text-align: center;
    font-size: 123.076%;
    line-height: 16;
  }
.prd_lst_block .ttl_h2 {
  float: left;
  margin: 20px 0 0;
}
.prd_lst_sort {
  float: right;
  margin: 20px 0;
}
  .prd_lst_sort a {
    color: #444;
  }
  .prd_lst_pager {
    position: relative;
    overflow: hidden;
    margin-top: 2em;
  }
  .prd_lst_pager ul {
    position: relative;
    left: 50%;
    float: left;
  }
  .prd_lst_pager li {
    position: relative;
    left: -50%;
    float: left;
  }
  .prd_lst_pager .prd_lst_pager_prev,
  .prd_lst_pager .prd_lst_pager_next {
    padding: .5em 0;
    width: 8em;
  }
  .prd_lst_pager .prd_lst_pager_next {
    text-align: right;
  }
  .icon_prev_dis,
  .icon_next_dis {
    display: block;
    color: #aaa;
  }
  .prd_lst_pager a {
    color: #444;
    text-decoration: none;
  }
  .prd_lst_pager a:hover {
    text-decoration: underline;
  }
.prd_lst_pos b {
  font-size: 160%;
}

/* SP: お中元・お歳暮などの商品リストは2個ずつ・幅100%で表示する */
@media (max-width: 767px) {
  .prd_lst_block {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .prd_lst {
    margin-left: 0;
  }
  .prd_lst_unit_s {
    width: 48%;
    margin-left: 0;
  }
  .prd_lst_unit_s:nth-child(2n) {
    margin-left: 4%;
  }
  .prd_lst_unit_s:nth-child(4n+1) {
    clear: none;
  }
  .prd_lst_unit_s:nth-child(2n+1) {
    clear: both;
  }
}

table.delivery_table{
  margin-bottom: 20px;
  border: 1px solid #333;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
table.delivery_table th{
  background-color: #EEE;
}
table.delivery_table th,
table.delivery_table td{
  border: 1px solid #333;
  padding:5px 10px 5px 10px;
}

h1.article-title{
	padding: 20px 0 40px 0;
    font-size: 28px;
    letter-spacing: 4px;
    line-height: 1.5;
    font-weight: 600;
    
}
.review-article{
    margin-bottom: 60px;
}
/* h2は基本のh1,h2,h3スタイル（共通セクション参照）をそのまま利用する */

.review-article h3{
    margin-bottom: 20px;
    color: #000;
    font-weight: bold;
    font-size: 18px;
}
.review-article .article-number{
	text-align: center;
}
.review-article .article-number span{
	display: inline-block;
	margin: 0 auto 10px auto;
	background: #e8f2d6;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1;
    border: 2px solid #678d27;
}
.review-article .review-quotation{
	padding: 20px 0 20px 30px;
	border-left: 6px solid #999999;
	margin: 40px 0 40px 0;
	display: flex;
	flex-wrap: wrap;
}
.review-article .review-quotation .review-article-info{
	width: 55%;
	margin-right: 5%;
}
.review-article .review-quotation .review-article-info p{
	margin-bottom: 10px;
}
.review-article .review-quotation .review-article-info .review-images{
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}
.review-article .review-quotation .review-article-info .review-images .image{
	width: 30%;
	margin-right: 3%;
	background-color: #EEE;
	max-height: 120px;
	text-align: center;
	margin-bottom: 10px;
}
.review-article .review-quotation .review-article-info .review-images .image img{
	width: 100%;
	max-height: 120px;
}
.review-article .review-quotation .review-site-info{
	width: 40%;
}
.review-article .review-quotation .review-site-info .site-image{
	margin-bottom: 10px;
}
.review-article .review-quotation .review-site-info .site-image img{
	width: 100%;
	border: 1px solid #DDDDDD;
}
.review-article .review-quotation .review-site-info .site-url{

}

/* product_info_detail_block / product_info_receipe_block
   旧テンプレートで css/7/product.css (商品説明用の別CSSファイル、
   アクセス制限があり内容取得不可) に依存していたレイアウトを
   同等のデザインとして再構築したもの。 */
.product_info_detail_block,
.product_info_receipe_block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.product_info_detail_block .image,
.product_info_receipe_block .image {
  flex: 0 0 240px;
  max-width: 240px;
}
.product_info_detail_block .image img,
.product_info_receipe_block .image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.product_info_detail_block .text,
.product_info_receipe_block .text {
  /* flex-basis は auto ではなく 0 にする。auto だと長文の場合に
     コンテンツのmax-content幅が基準サイズとなり、.imageとの合計が
     コンテナ幅を超えて flex-wrap が発生し、PCでも縦積みになってしまう。 */
  flex: 1 1 0%;
  min-width: 0;
}
table.product_detail_left {
  width: 100%;
  margin: 12px 0;
  border-collapse: collapse;
  border-top: 1px solid #e0e0e0;
  font-size: 14px;
}
table.product_detail_left th,
table.product_detail_left td {
  border-bottom: 1px solid #e0e0e0;
  padding: 6px 10px;
  text-align: left;
}
table.product_detail_left th {
  width: 30%;
  background-color: #f7f7f5;
  font-weight: 600;
}
@media (max-width: 767px) {
  .product_info_detail_block,
  .product_info_receipe_block {
    flex-direction: column;
  }
  .product_info_detail_block .image,
  .product_info_receipe_block .image {
    flex: 0 0 auto;
    max-width: 100%;
  }
}

/* ============================================================
   ギフトページ（/gift/）用「シーンから探す」「価格帯から探す」タイル
   ============================================================ */
.material-search {
  margin-top: 20px;
}
.material-search .row .top-productlist-each {
  flex: none;
  min-width: 0;
  min-height: 72px;
}
.top-productlist-b {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}
.top-productlist-b .top-productlist-each {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(33.333% - 8px);
  max-width: calc(33.333% - 8px);
  min-width: 0;
  padding: 20px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f7f7f5;
  color: #222;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s, opacity 0.2s;
}
.top-productlist-each {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 calc(33.333% - 8px);
  min-width: 160px;
  padding: 20px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f7f7f5;
  color: #222;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s, opacity 0.2s;
}
.top-productlist-each:hover {
  background-color: #efece6;
  opacity: 0.9;
  color: #222;
}
.top-productlist-each .text {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .top-productlist-b .top-productlist-each {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
    padding: 16px 10px;
  }
  .top-productlist-each {
    flex: 1 1 calc(50% - 6px);
    padding: 16px 10px;
  }
  .top-productlist-each .text {
    font-size: 13px;
  }
}

/* 「価格帯から探す」など4件のリスト：PCで横4つ、SPで2x2 */
.top-productlist-b-price .top-productlist-each {
  flex: 1 1 calc(25% - 9px);
}
@media (max-width: 767px) {
  .top-productlist-b-price .top-productlist-each {
    flex: 1 1 calc(50% - 6px);
  }
}

/* ギフトページ「季節のギフト」カード */
.gift-seasonal-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  color: #222;
  text-decoration: none;
  transition: opacity 0.2s;
}
.gift-seasonal-card:hover {
  opacity: 0.85;
  color: #222;
}
.gift-seasonal-card img {
  width: 100%;
  height: auto;
  display: block;
}
.gift-seasonal-card .gift-seasonal-card-label {
  padding: 14px 16px;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

/* ギフトページ：詰め合わせ商品（SPでも全件表示） */
.gift-set-products .products .product {
  display: block !important;
}
@media (max-width: 768px) {
  .gift-set-products .products .product:nth-of-type(n + 4) {
    display: block !important;
  }
}
