/* 基本設定 */
body {
    font-family: "Zen Kaku Gothic New", sans-serif !important;
    color: #000000 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
}
@media (max-width: 767.98px) {
    body {
        font-size: 14px !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 .header .menu-icon{
    
}
header .header .menu-icon i{
    font-size: 28px;
}
header .header .cart-icon i{
    font-size: 28px;
}
header .header .menu-icon a,
header .header .cart-icon a{
    color: #000000;
}

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: #BD2618;
    width: 20px;
    height: 20px;
    padding: 4px  2px  0px  2px;
    text-align: center;
}

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;
    }
}

/* 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;
}

/* 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;
}

.breadcrumb {
  margin: 0;
  background: none;
  padding: 0;
  --bs-breadcrumb-margin-bottom: 0 !important;
}

.breadcrumb a {
  color: #000000;
}

.breadcrumb .active {
  color: #999999;
}

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

/* feature */
.feature{
    background-color: #F8F9F5;
    background-image: url('https://img21.shop-pro.jp/PA01514/023/etc_base64/ZmVhdHVyZS1iZw.png?cmsp_timestamp=20250518233416');
    background-repeat: repeat;
    background-size: auto;
    padding: 80px 0;
    overflow: hidden;
}
.feature .card{
    border: 0;
    padding: 40px 50px;
}
.feature .title{
    font-size: 20px;
    font-family: "Zen Old Mincho", serif;
    line-height: 150%;
}
.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 .card .text{
        font-size: 14px;
    }
}

/* footer */
.footer{
    background-color: #1A1A1A;
    font-size: 14px;
    color: #FFFFFF;
    padding-top: 85px;
}
.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;
}

.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;
}

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

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

.faq-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;
    }
    .faq-more-link{
        font-size: 14px;
    }
    .faq-arrow {
        width: 20px;
        height: 20px;
        line-height: 18px;
    }
}

/* sidebar */
.sidebar .search-form {
  display: flex;
  align-items: center;
}

.sidebar .search-input {
  width: calc(100% - 70px);
  padding:20px 12px;
  font-size: 14px;
  border: 1px solid #D1D1D1;
  border-radius: 0;
  outline: none;
  margin-right: 10px;
}

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

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

.sidebar .sidebar-menu .accordion-item{
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border: 0;
}

.sidebar .sidebar-menu .accordion-item .accordion-button{
  font-weight: bold;
  color: #000000;
  background-color: #FFFFFF !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom: 1px solid #D1D1D1 !important;
  padding: 20px 20px 20px 0;
}
.sidebar .sidebar-menu .accordion-body{
    border-bottom: 1px solid #D1D1D1 !important;
    padding: 20px 0;
}
.sidebar .sidebar-menu .accordion-body ul {
  margin: 0 0 0 5px;
}
.sidebar .sidebar-menu .accordion-body ul li {
    font-size: 14px;
    margin-bottom: 10px;
}
.sidebar .sidebar-menu .accordion-body ul li a{
    color: #000000;
}
.sidebar .sidebar-menu .accordion-button:not(.collapsed){
    box-shadow: none;
}
.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;
}

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: 16px !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;
    }
}