/*
 * hiraokaen storefront design layer (loaded by site_specific_styles.php)
 * Design source: docs/design_system.md
 */

/* 01. Tokens */
:root {
  --hz-bg: #faf8f4;
  --hz-surface: #ffffff;
  --hz-ink: #20201d;
  --hz-ink-soft: #69645c;
  --hz-green: #735238;
  --hz-green-deep: #4f3826;
  --hz-green-tint: #f3eee8;
  --hz-hairline: #e5ded4;
  --hz-footer-bg: #242321;
  --hz-footer-ink: #f4f0e8;
  --hz-font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --hz-font-sans: "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Noto Sans JP", -apple-system, sans-serif;
  --hz-radius: 6px;
  --hz-shadow-hover: 0 2px 12px rgba(31, 29, 26, .06);
  --hz-maxw: 1200px;
}

/* 02. Base */
html {
  background: var(--hz-bg);
}

body {
  color: var(--hz-ink);
  background: var(--hz-bg);
  font-family: var(--hz-font-sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

a {
  color: var(--hz-ink);
  text-decoration: underline;
  text-decoration-color: rgba(32, 32, 29, .32);
  text-underline-offset: .16em;
  transition: color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

a:hover,
a:focus {
  color: var(--hz-green-deep);
  text-decoration-color: currentColor;
}

h1,
h2,
h3,
h4,
h5,
h6,
.pageHeading,
.centerBoxHeading,
.card-header,
.productName {
  color: var(--hz-ink);
  font-family: var(--hz-font-serif);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.45;
}

#header-wrapper,
#mainWrapper,
#footer-wrapper {
  max-width: none;
}

#mainWrapper {
  max-width: var(--hz-maxw);
  padding-top: 32px;
  padding-bottom: 56px;
}

main > .centerColumn {
  min-width: 0;
}

/* d-lg-block (display:block !important) に打ち勝つため !important 必須 */
body#loginBody #navColumnOne,
body#loginBody #navColumnTwo,
body#checkoutoneBody #navColumnOne,
body#checkoutoneBody #navColumnTwo,
body#createaccountBody #navColumnOne,
body#createaccountBody #navColumnTwo {
  display: none !important;
}

body#loginBody #mainWrapper > .row > .col-12,
body#checkoutoneBody #mainWrapper > .row > .col-12,
body#createaccountBody #mainWrapper > .row > .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

body#loginBody main > .centerColumn,
body#createaccountBody main > .centerColumn {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

img {
  max-width: 100%;
  height: auto;
}

/* 03. Buttons and Forms */
.btn,
button.btn,
input[type="submit"].btn {
  min-height: 44px;
  border-radius: 4px;
  border-color: var(--hz-hairline);
  box-shadow: none;
  font-family: var(--hz-font-sans);
  font-weight: 500;
  letter-spacing: 0;
  transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.btn,
.btn:hover,
.btn:focus,
a.btn,
a.btn:hover,
a.btn:focus {
  text-decoration: none;
}

.btn-primary,
.btn.button_in_cart,
.btn.button_login,
.btn.button_create_account,
.btn.button_checkout,
.btn.button_submit,
.btn.button_confirm_order,
.btn.button_continue_checkout,
.btn.button_add_selected,
.btn.button_buy_now {
  color: #fff;
  background: var(--hz-green);
  border-color: var(--hz-green);
}

.btn-primary:hover,
.btn-primary:focus,
.btn.button_in_cart:hover,
.btn.button_in_cart:focus,
.btn.button_login:hover,
.btn.button_login:focus,
.btn.button_create_account:hover,
.btn.button_create_account:focus,
.btn.button_checkout:hover,
.btn.button_checkout:focus,
.btn.button_submit:hover,
.btn.button_submit:focus,
.btn.button_confirm_order:hover,
.btn.button_confirm_order:focus,
.btn.button_continue_checkout:hover,
.btn.button_continue_checkout:focus,
.btn.button_add_selected:hover,
.btn.button_add_selected:focus,
.btn.button_buy_now:hover,
.btn.button_buy_now:focus {
  color: #fff;
  background: var(--hz-green-deep);
  border-color: var(--hz-green-deep);
}

.btn-secondary,
.btn.button_prev,
.btn.button_next,
.btn.button_return_to_product_list,
.btn.button_write_review,
.btn.button_ask_a_question,
.btn.button_sold_out_sm {
  color: var(--hz-ink);
  background: var(--hz-surface);
  border-color: var(--hz-hairline);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn.button_prev:hover,
.btn.button_prev:focus,
.btn.button_next:hover,
.btn.button_next:focus,
.btn.button_return_to_product_list:hover,
.btn.button_return_to_product_list:focus,
.btn.button_write_review:hover,
.btn.button_write_review:focus,
.btn.button_ask_a_question:hover,
.btn.button_ask_a_question:focus {
  color: var(--hz-green);
  background: var(--hz-surface);
  border-color: var(--hz-green);
  box-shadow: var(--hz-shadow-hover);
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
  color: var(--hz-ink);
  background: var(--hz-surface);
  border: 1px solid var(--hz-hairline);
  border-radius: 4px;
  box-shadow: none;
}

.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: var(--hz-green);
  box-shadow: 0 0 0 .12rem rgba(115, 82, 56, .14);
  outline: 0;
}

label,
.opc-label {
  color: var(--hz-ink-soft);
  font-size: 14px;
  font-weight: 500;
}

/* 04. Breadcrumbs and Meta UI */
#navBreadCrumb {
  margin-bottom: 24px;
}

#navBreadCrumb ol.breadcrumb,
.breadcrumb {
  gap: 4px;
  margin: 0;
  padding: 0;
  color: var(--hz-ink-soft);
  background: transparent;
  border-radius: 0;
  font-size: 13px;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

#navBreadCrumb li,
#navBreadCrumb li a,
.breadcrumb a {
  color: var(--hz-ink-soft);
}

#navBreadCrumb li a,
.breadcrumb a {
  text-decoration: none;
}

#navBreadCrumb li a:hover,
#navBreadCrumb li a:focus {
  color: var(--hz-green);
}

.breadcrumb-separator {
  color: var(--hz-ink-soft);
}

#listingDisplayOrderSorter {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 18px;
  color: var(--hz-ink-soft);
  font-size: 13px;
}

#listingDisplayOrderSorter .form-group {
  margin-bottom: 0;
}

#disp-order-sorter {
  min-height: 34px;
  padding: 4px 28px 4px 10px;
  border: 1px solid var(--hz-hairline);
  border-radius: 4px;
  background-color: var(--hz-surface);
  color: var(--hz-ink);
}

.topNumber,
.topLinks,
.bottomNumber,
.bottomLinks {
  color: var(--hz-ink-soft);
  font-size: 13px;
}

.pagination {
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.page-link,
a.page-link,
.page-item.active .page-link,
.page-item.active span.page-link,
.page-item.disabled .page-link {
  min-width: 0;
  padding: 0;
  color: var(--hz-ink-soft);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.5;
  text-decoration: none;
}

.page-link:hover,
.page-link:focus,
a.page-link:hover,
a.page-link:focus {
  color: var(--hz-green);
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

.page-item.active .page-link,
.page-item.active span.page-link {
  color: var(--hz-green);
  background: transparent;
  border-color: transparent;
  font-weight: 600;
}

/* 05. Header */
#header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--hz-surface);
  border-bottom: 1px solid var(--hz-hairline);
}

#header-wrapper > .row,
#footer-wrapper > .row {
  margin-right: 0;
  margin-left: 0;
}

#header-wrapper > .row > .col,
#footer-wrapper > .row > .col {
  padding-right: 0;
  padding-left: 0;
}

#headerWrapper {
  margin: 0;
}

.hz-header {
  max-width: var(--hz-maxw);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hz-brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 150px;
  color: var(--hz-ink);
}

.hz-brand:hover,
.hz-brand:focus {
  color: var(--hz-ink);
}

.hz-brand__name {
  font-family: var(--hz-font-serif);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: .04em;
}

.hz-brand__sub {
  margin-top: 4px;
  color: var(--hz-ink-soft);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
}

/* 画像ロゴ（狭山茶 お茶の平岡園） */
.hz-brand__logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: 100%;
}
@media (max-width: 575.98px) {
  .hz-brand__logo { height: 40px; }
}

.hz-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 18px;
}

.hz-nav__links,
.hz-nav__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hz-nav__links a,
.hz-icon-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--hz-ink);
  font-size: 14px;
  text-decoration: none;
}

.hz-nav__links a:hover,
.hz-nav__links a:focus,
.hz-icon-link:hover,
.hz-icon-link:focus {
  color: var(--hz-green);
}

.hz-category-more {
  position: relative;
}

.hz-category-more summary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--hz-ink);
  font-size: 14px;
  cursor: pointer;
  list-style: none;
}

.hz-category-more summary::-webkit-details-marker {
  display: none;
}

.hz-category-more summary::after {
  margin-left: 6px;
  color: var(--hz-ink-soft);
  content: "▼";
  font-size: 9px;
  line-height: 1;
}

.hz-category-more details[open] summary,
.hz-category-more summary:hover,
.hz-category-more summary:focus {
  color: var(--hz-green);
}

.hz-category-more__panel {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hz-nav__links .hz-category-more__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  min-width: 180px;
  padding: 10px 0;
  background: var(--hz-surface);
  border: 1px solid var(--hz-hairline);
  border-radius: var(--hz-radius);
  box-shadow: var(--hz-shadow-hover);
}

.hz-nav__links .hz-category-more__panel a {
  display: block;
  min-height: 0;
  padding: 8px 16px;
  white-space: nowrap;
}

.hz-search form {
  margin: 0;
}

.hz-search .input-group {
  width: 220px;
}

.hz-search input {
  min-height: 40px;
  border-right: 0;
  font-size: 14px;
}

.hz-search input::placeholder {
  color: var(--hz-ink-soft);
  opacity: .7;
}

.hz-search .btn {
  min-height: 40px;
  border-color: var(--hz-hairline);
  background: var(--hz-surface);
  color: var(--hz-green);
}

.hz-icon-link {
  position: relative;
  justify-content: center;
  min-width: 40px;
  padding-right: 8px;
  padding-left: 8px;
}

.hz-cart-count {
  position: absolute;
  top: 4px;
  right: 1px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  color: #fff;
  background: var(--hz-green);
  border-radius: 999px;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

.hz-menu-button {
  display: none;
  min-width: 44px;
  margin-left: auto;
  color: var(--hz-ink);
  background: var(--hz-surface);
  border: 1px solid var(--hz-hairline);
}

.hz-mobile-menu {
  max-width: var(--hz-maxw);
  margin: 0 auto;
  padding: 0 24px 18px;
  background: var(--hz-surface);
}

.hz-mobile-menu .hz-nav__links,
.hz-mobile-menu .hz-nav__actions {
  display: block;
}

.hz-mobile-menu .hz-nav__links a,
.hz-mobile-menu .hz-icon-link {
  justify-content: flex-start;
  width: 100%;
  border-top: 1px solid var(--hz-hairline);
}

.hz-mobile-menu .hz-category-more summary {
  width: 100%;
  border-top: 1px solid var(--hz-hairline);
}

.hz-mobile-menu .hz-category-more__panel {
  position: static;
  min-width: 0;
  padding: 0 0 8px 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hz-mobile-menu .hz-category-more__panel a {
  padding-left: 0;
}

.hz-mobile-menu .hz-search {
  padding: 12px 0;
  border-top: 1px solid var(--hz-hairline);
}

.hz-mobile-menu .hz-search .input-group {
  width: 100%;
}

#categoriesTabs,
#navbar-spacer,
#logoWrapper,
#navMainWrapper {
  display: none;
}

/* 06. Footer */
#footer-wrapper {
  color: var(--hz-footer-ink);
  background: var(--hz-footer-bg);
}

#footerWrapper {
  margin: 0;
  color: var(--hz-footer-ink);
  background: var(--hz-footer-bg);
}

.hz-footer {
  max-width: var(--hz-maxw);
  margin: 0 auto;
  padding: 48px 24px 0;
  color: var(--hz-footer-ink);
  background: var(--hz-footer-bg);
}

.hz-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.hz-footer h2,
.hz-footer h3 {
  color: var(--hz-footer-ink);
  font-size: 18px;
}

.hz-footer__sns {
  display: flex;
  gap: 16px;
  margin: 4px 0 12px;
}
.hz-footer__sns a {
  font-size: 22px;
  line-height: 1;
}
.hz-footer__address {
  font-style: normal;
  line-height: 1.9;
  margin: 0;
}

.hz-footer p,
.hz-footer li,
.hz-footer a {
  color: rgba(242, 239, 232, .78);
  background: transparent;
  font-size: 14px;
}

.hz-footer a:hover,
.hz-footer a:focus {
  color: #fff;
}

.hz-footer ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.hz-footer li + li {
  margin-top: 8px;
}

.hz-footer .hz-category-more {
  margin-top: 12px;
}

.hz-footer .hz-category-more summary {
  min-height: 0;
  padding: 0;
  color: rgba(242, 239, 232, .68);
  font-size: 13px;
}

.hz-footer .hz-category-more summary::after {
  color: rgba(242, 239, 232, .5);
}

.hz-footer .hz-category-more details[open] summary,
.hz-footer .hz-category-more summary:hover,
.hz-footer .hz-category-more summary:focus {
  color: #fff;
}

.hz-footer .hz-category-more__panel {
  margin-top: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(242, 239, 232, .16);
}

.hz-footer__bottom {
  margin-top: 40px;
  padding: 16px 0;
  border-top: 1px solid rgba(242, 239, 232, .18);
  color: rgba(242, 239, 232, .66);
  background: transparent;
  font-size: 13px;
}

#footerWrapper .hz-footer a,
#footerWrapper .legalCopyright,
#footerWrapper .legalCopyright a {
  color: rgba(242, 239, 232, .78);
  background: transparent;
  text-decoration: none;
}

#footerWrapper .legalCopyright a:hover,
#footerWrapper .legalCopyright a:focus {
  color: #fff;
}

/* 07. Cards and Sideboxes */
.card {
  background: var(--hz-surface);
  border: 1px solid var(--hz-hairline);
  border-radius: var(--hz-radius);
  box-shadow: none;
}

.card-header {
  background: transparent;
  border-bottom: 1px solid var(--hz-hairline);
}

.leftBoxCard,
.rightBoxCard {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.leftBoxHeading,
.rightBoxHeading {
  padding: 0 0 10px;
  background: transparent;
  border-bottom: 1px solid var(--hz-hairline);
  font-size: 18px;
}

.sideBoxContent {
  padding: 10px 0 0;
}

.sideBoxContent .list-group-item,
.sideBoxContentItem {
  padding: 8px 0;
  color: var(--hz-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(230, 226, 218, .65);
  font-size: 14px;
  text-decoration: none;
}

.sideBoxContent a {
  color: var(--hz-ink);
  text-decoration: none;
}

.sideBoxContent .form-control::placeholder,
#searchContent input::placeholder {
  color: var(--hz-ink-soft);
  opacity: .7;
}

.sideBoxContent .list-group-item:hover,
.sideBoxContent .list-group-item:focus,
.sideBoxContent a:hover,
.sideBoxContent a:focus,
.sideBoxContentItem:hover,
.sideBoxContentItem:focus {
  color: var(--hz-green);
  background: transparent;
}

.sideBoxContent .list-group-item.active,
.sideBoxContent .list-group-item.active:hover,
.sideBoxContent .list-group-item.active:focus {
  color: var(--hz-green);
  background: transparent;
  border-color: rgba(230, 226, 218, .65);
}

.sideBoxContent .btn,
.sideBoxContent button.btn,
.sideBoxContent input[type="submit"].btn {
  color: #fff;
  background: var(--hz-green);
  border-color: var(--hz-green);
}

.sideBoxContent .btn:hover,
.sideBoxContent .btn:focus,
.sideBoxContent button.btn:hover,
.sideBoxContent button.btn:focus,
.sideBoxContent input[type="submit"].btn:hover,
.sideBoxContent input[type="submit"].btn:focus {
  color: #fff;
  background: var(--hz-green-deep);
  border-color: var(--hz-green-deep);
}

.sideBoxContent .badge {
  color: var(--hz-green);
  background: var(--hz-green-tint);
  font-weight: 500;
}

/* 08. Home */
.hz-home-hero {
  margin: 8px 0 48px;
  padding: 56px 0;
  border-top: 1px solid var(--hz-hairline);
  border-bottom: 1px solid var(--hz-hairline);
}

.hz-home-hero__inner {
  max-width: 760px;
}

.hz-home-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.hz-home-hero p {
  margin-bottom: 28px;
  color: var(--hz-ink-soft);
  font-size: 17px;
}

#home-slider {
  display: none;
}

.centerBoxWrapper {
  margin-top: 40px;
  background: transparent;
  border: 0;
}

.centerBoxWrapper > .card-header,
.centerBoxHeading.card-header {
  padding-right: 0;
  padding-left: 0;
  background: transparent;
  border-bottom: 1px solid var(--hz-hairline);
}

.centerBoxWrapper > .card-body {
  padding-right: 0;
  padding-left: 0;
}

.centerBoxContents.card,
.centerBoxContentsListing.card,
.categoryListBoxContents.card {
  overflow: hidden;
  padding: 0;
  border-color: var(--hz-hairline);
  border-radius: var(--hz-radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.centerBoxContents.card:hover,
.centerBoxContentsListing.card:hover,
.categoryListBoxContents.card:hover {
  border-color: var(--hz-green);
  box-shadow: var(--hz-shadow-hover);
}

.centerBoxContents.card img,
.centerBoxContentsListing.card img,
.categoryListBoxContents.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  background: var(--hz-surface);
}

.centerBoxContents.card a,
.centerBoxContentsListing.card a {
  display: inline-block;
  color: var(--hz-ink);
  font-weight: 500;
  text-decoration: none;
}

.centerBoxContents.card a:hover,
.centerBoxContents.card a:focus,
.centerBoxContentsListing.card a:hover,
.centerBoxContentsListing.card a:focus {
  color: var(--hz-green);
  text-decoration: none;
}

.centerBoxContents.card .productBasePrice,
.centerBoxContentsListing.card .productBasePrice,
.productBasePrice {
  color: var(--hz-green);
  font-weight: 600;
}

body#indexHomeBody .centerBoxWrapper,
body#indexBody .centerBoxWrapper,
#shoppingCartDefault .centerBoxWrapper {
  margin-top: 64px;
  margin-bottom: 0;
}

body#indexHomeBody .centerBoxWrapper > .card-body,
body#indexBody .centerBoxWrapper > .card-body,
#shoppingCartDefault .centerBoxWrapper > .card-body {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 24px;
  padding-top: 24px;
  text-align: left;
}

body#indexHomeBody .centerBoxWrapper .card-deck,
body#indexBody .centerBoxWrapper .card-deck,
#shoppingCartDefault .centerBoxWrapper .card-deck {
  display: contents;
}

body#indexHomeBody .centerBoxWrapper .centerBoxContents.card,
body#indexBody .centerBoxWrapper .centerBoxContents.card,
#shoppingCartDefault .centerBoxWrapper .centerBoxContents.card {
  min-width: 0;
  margin: 0;
  text-align: left;
}

body#indexHomeBody .centerBoxWrapper .centerBoxContents.card a,
body#indexBody .centerBoxWrapper .centerBoxContents.card a,
#shoppingCartDefault .centerBoxWrapper .centerBoxContents.card a {
  line-height: 1.55;
}

/* 09. Product Listing */
.hz-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 24px;
  margin: 24px 0;
}

.hz-product-card {
  position: relative;
  min-width: 0;
  background: var(--hz-surface);
  border: 1px solid var(--hz-hairline);
  border-radius: var(--hz-radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.hz-product-card:hover,
.hz-product-card:focus-within {
  border-color: var(--hz-green);
  box-shadow: var(--hz-shadow-hover);
}

.hz-product-card__link {
  display: block;
  height: 100%;
  color: var(--hz-ink);
  text-decoration: none;
}

.hz-product-card__link:hover,
.hz-product-card__link:focus,
.hz-product-card__link:hover .hz-product-card__name,
.hz-product-card__link:focus .hz-product-card__name,
.hz-product-card__link:hover .hz-product-card__price,
.hz-product-card__link:focus .hz-product-card__price,
.hz-product-card__link:hover .productBasePrice,
.hz-product-card__link:focus .productBasePrice {
  text-decoration: none;
}

.hz-product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--hz-hairline);
  background: var(--hz-surface);
}

.hz-product-card__soldout {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 4px 10px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: #a80000;
  border-radius: 2px;
  pointer-events: none;
}

.hz-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hz-product-card__no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--hz-ink-soft);
  background: var(--hz-green-tint);
  font-family: var(--hz-font-serif);
  font-size: 13px;
  letter-spacing: .08em;
}

.hz-product-card__body {
  padding: 14px 14px 16px;
}

.hz-product-card__name {
  display: -webkit-box;
  min-height: 3.1em;
  margin-bottom: 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--hz-ink);
  font-weight: 500;
  line-height: 1.55;
}

.hz-product-card__price {
  color: var(--hz-green);
  font-weight: 600;
}

#productsListing-topRow,
#productsListing-bottomRow {
  gap: 12px;
  margin-bottom: 16px;
}

/* 10. Product Detail */
#productInfo-displayRow {
  align-items: flex-start;
  margin-top: 16px;
}

#productInfo-displayColLeft {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

#productInfo-displayColRight {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

#productInfo-productName {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.productMainImage {
  padding: 24px;
  background: var(--hz-surface);
  border: 1px solid var(--hz-hairline);
  border-radius: var(--hz-radius);
}

.productMainImage img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

#productsPriceTop-card,
#productsPriceBottom-card,
#addToCart-card,
#attributes-card,
.wrapperAttribsOptions {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

#productsPriceTop-card .card-body,
#productsPriceBottom-card .card-body {
  padding: 0 0 18px;
}

#productsPriceTop-card,
#productsPriceBottom-card {
  margin-bottom: 0;
}

#productsPriceBottom-card {
  padding-top: 20px;
  border-top: 1px solid var(--hz-hairline);
}

#productAttributes {
  margin-top: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--hz-hairline);
}

#attributes-card {
  margin-bottom: 0;
}

#attributes-card .card-body,
.wrapperAttribsOptions .card-body,
#cartAdd {
  padding: 0;
}

.productPriceTopPrice,
.productPriceBottomPrice {
  margin: 0;
  color: var(--hz-green);
  font-family: var(--hz-font-sans);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
}

#addToCart-card-header,
#attributes-card-header,
.optionName {
  font-family: var(--hz-font-sans);
  font-size: 14px;
  letter-spacing: 0;
}

#addToCart-card {
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid var(--hz-hairline);
}

#addToCart-card-header {
  display: none;
}

#attributes-card-header {
  margin: 0 0 14px;
  padding: 0;
  color: var(--hz-ink-soft);
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 500;
}

.wrapperAttribsOptions {
  margin-bottom: 0;
}

.wrapperAttribsOptions .card-header.optionName {
  margin: 0 0 8px;
  padding: 0;
  color: var(--hz-ink);
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 500;
}

#attributeOptionsdrp-attrib-14-card-body,
[id^="attributeOptions"][id$="-card-body"] {
  padding: 0;
}

#cartAdd {
  text-align: left;
}

#cartAdd .input-group {
  align-items: stretch;
  gap: 12px;
  margin-bottom: 0;
}

#cartAdd .input-group.mb-3 {
  margin-bottom: 0;
}

#cartAdd .input-group-append {
  flex: 1 1 auto;
  margin-left: 0;
}

#cartAdd .form-control {
  flex: 0 0 84px;
  width: 84px;
  max-width: 84px;
  min-height: 48px;
  text-align: center;
}

#cartAdd .btn.button_in_cart,
#cartAdd .btn.button_sold_out {
  width: 100%;
  min-width: 0;
  min-height: 52px;
}

#productInfo-productDescription {
  max-width: 72ch;
  margin: 48px auto 24px;
  color: var(--hz-ink);
  font-size: 16px;
  line-height: 1.9;
}

#productInfo-productDescription blockquote.twitter-tweet,
.hz-social-quote {
  margin: 0;
  color: var(--hz-ink);
  font-family: var(--hz-font-serif);
  font-size: 16px;
  line-height: 1.85;
}

#productInfo-productDescription blockquote.twitter-tweet {
  margin: 24px 0;
  padding: 20px;
  background: var(--hz-surface);
  border: 1px solid var(--hz-hairline);
  border-radius: var(--hz-radius);
}

.hz-customer-voices {
  margin: 56px 0 48px;
  padding-top: 32px;
  border-top: 1px solid var(--hz-hairline);
}

.hz-customer-voices__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.hz-section-kicker {
  margin: 0 0 4px;
  color: var(--hz-ink-soft);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hz-customer-voices h2 {
  margin: 0;
  font-size: 24px;
}

.hz-customer-voices__write,
.hz-voice-card__more {
  color: var(--hz-ink-soft);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.hz-customer-voices__write:hover,
.hz-customer-voices__write:focus,
.hz-voice-card__more:hover,
.hz-voice-card__more:focus {
  color: var(--hz-green);
}

.hz-customer-voices__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hz-voice-card {
  min-width: 0;
  padding: 22px;
  background: var(--hz-surface);
  border: 1px solid var(--hz-hairline);
  border-radius: var(--hz-radius);
}

.hz-voice-card__source {
  margin-bottom: 12px;
  color: var(--hz-ink-soft);
  font-size: 12px;
  font-weight: 500;
}

.hz-voice-card__stars {
  margin-bottom: 12px;
  color: var(--hz-green);
  font-size: 15px;
  letter-spacing: .08em;
}

.hz-voice-card blockquote {
  margin: 0 0 18px;
  color: var(--hz-ink);
  font-family: var(--hz-font-serif);
  font-size: 16px;
  line-height: 1.85;
}

.hz-voice-card blockquote a {
  color: var(--hz-ink);
  text-decoration-color: rgba(32, 32, 29, .24);
}

.hz-voice-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 16px;
  color: var(--hz-ink-soft);
  font-size: 13px;
}

.hz-voice-card__more {
  display: inline-block;
  margin-top: 14px;
}

.hz-voice-card--empty p {
  margin: 0;
  color: var(--hz-ink-soft);
}

.productReviewLink,
#productQuestions,
.productPrevNextTop,
.productPrevNextBottom {
  color: var(--hz-ink-soft);
}

.productPrevNextTop,
.productPrevNextBottom {
  margin-bottom: 18px;
  font-size: 13px;
}

.productPrevNextTop .btn,
.productPrevNextBottom .btn,
.productReviewLink .btn,
#productQuestions .btn {
  min-height: 0;
  padding: 0;
  color: var(--hz-ink-soft);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
}

.productPrevNextTop .btn:hover,
.productPrevNextTop .btn:focus,
.productPrevNextBottom .btn:hover,
.productPrevNextBottom .btn:focus,
.productReviewLink .btn:hover,
.productReviewLink .btn:focus,
#productQuestions .btn:hover,
#productQuestions .btn:focus {
  color: var(--hz-green);
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* 11. Checkout and Account Surfaces */
.opc-block,
#checkoutOne .card,
#loginDefault .card,
#createAcctDefault .card,
#accountDefault .card,
.primary-address {
  border-color: var(--hz-hairline);
  box-shadow: none;
}

.alert {
  border-radius: var(--hz-radius);
  border-width: 1px;
}

#back-to-top {
  right: 24px;
  bottom: 24px;
  color: var(--hz-green);
  background: var(--hz-surface);
  border-color: var(--hz-hairline);
}

/* 12. Responsive */
@media (max-width: 1199.98px) {
  .hz-product-grid,
  body#indexHomeBody .centerBoxWrapper > .card-body,
  body#indexBody .centerBoxWrapper > .card-body,
  #shoppingCartDefault .centerBoxWrapper > .card-body {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  #mainWrapper {
    padding-top: 24px;
  }

  .hz-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .hz-brand__name {
    font-size: 21px;
  }

  .hz-nav {
    display: none;
  }

  .hz-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hz-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #productInfo-displayColLeft,
  #productInfo-displayColRight {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #productInfo-displayColRight {
    margin-top: 24px;
  }

  .hz-customer-voices__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767.98px) {
  .hz-product-grid,
  body#indexHomeBody .centerBoxWrapper > .card-body,
  body#indexBody .centerBoxWrapper > .card-body,
  #shoppingCartDefault .centerBoxWrapper > .card-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .hz-home-hero {
    margin-bottom: 32px;
    padding: 40px 0;
  }

  .hz-customer-voices__header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  #mainWrapper {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hz-mobile-menu {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hz-product-grid,
  body#indexHomeBody .centerBoxWrapper > .card-body,
  body#indexBody .centerBoxWrapper > .card-body,
  #shoppingCartDefault .centerBoxWrapper > .card-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .hz-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hz-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #cartAdd .input-group {
    display: block;
  }

  #cartAdd .form-control,
  #cartAdd .btn.button_in_cart {
    width: 100%;
    max-width: none;
  }
}

/* ==========================================================================
   Home content sections (define_main_page) — 2026-07-07
   コンテンツ管理側（html_includes/define_main_page.php）のホーム構成要素。
   ========================================================================== */

.defineContent section { margin: 0 0 64px; }
.defineContent .content-header h2 {
  font-family: var(--hz-font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hz-hairline);
}

/* --- hero --- */
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 8px 40px;
  align-items: center;
  padding: 24px 0 8px;
}
.home-hero__heading {
  grid-column: 1 / -1;
}
.home-hero__eyebrow {
  font-size: .8125rem;
  letter-spacing: .12em;
  color: var(--hz-green);
  margin: 0 0 8px;
}
.home-hero h1 {
  font-family: var(--hz-font-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .03em;
  margin: 0 0 16px;
}
.home-hero__lead { color: var(--hz-ink); margin: 0 0 16px; }
.home-hero__points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  color: var(--hz-ink-soft);
  font-size: .9375rem;
}
.home-hero__points li { padding: 6px 0 6px 1.2em; position: relative; }
.home-hero__points li::before {
  content: "";
  position: absolute;
  left: 0; top: .95em;
  width: .5em; height: 1px;
  background: var(--hz-green);
}
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 16px; }
.home-hero__note { font-size: .8125rem; color: var(--hz-ink-soft); margin: 0; }
.home-hero__image img {
  width: 100%; height: auto;
  border-radius: var(--hz-radius);
  display: block;
}

/* --- PayPal(paypalr): 支払方法で PayPal を選んだときだけ
       ウォレット/クレジットカードの選択肢（.ccinfo）を表示 --- */
.custom-control:has(input[type="radio"]#pmt-paypalr:not(:checked)) + .ccinfo {
  display: none;
}

/* --- ボタン（コンテンツ内リンクボタン） --- */
.home-button {
  display: inline-block;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: .9375rem;
  line-height: 1.6;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.home-button--primary { background: var(--hz-green); color: #fff; border: 1px solid var(--hz-green); }
.home-button--primary:hover { background: var(--hz-green-deep); border-color: var(--hz-green-deep); color: #fff; text-decoration: none; }
.home-button--secondary { background: var(--hz-surface); color: var(--hz-ink); border: 1px solid var(--hz-hairline); }
.home-button--secondary:hover { border-color: var(--hz-green); color: var(--hz-green); text-decoration: none; }
.home-button--ghost { background: transparent; color: var(--hz-green); border: 1px solid transparent; }
.home-button--ghost:hover { color: var(--hz-green-deep); text-decoration: underline; }

/* --- ショートカットタイル --- */
.home-shortcuts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.home-shortcuts__card {
  display: block;
  background: var(--hz-surface);
  border: 1px solid var(--hz-hairline);
  border-radius: var(--hz-radius);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--hz-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.home-shortcuts__card:hover {
  border-color: var(--hz-green);
  box-shadow: var(--hz-shadow-hover);
  text-decoration: none;
  color: var(--hz-ink);
}
.home-shortcuts__card--accent { background: var(--hz-green-tint); }
.home-shortcuts__title { display: block; font-weight: 600; margin-bottom: 4px; }
.home-shortcuts__text { display: block; font-size: .8125rem; color: var(--hz-ink-soft); }

/* --- お知らせ --- */
.home-news__list { list-style: none; margin: 0; padding: 0; }
.home-news__list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--hz-hairline);
  font-size: .9375rem;
}
.home-news__date {
  display: inline-block;
  min-width: 7em;
  color: var(--hz-ink-soft);
  font-variant-numeric: tabular-nums;
}

/* --- ギフト特集 --- */
.home-feature {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  background: var(--hz-green-tint);
  border-radius: var(--hz-radius);
  padding: 32px;
}
.home-feature__image img { border-radius: var(--hz-radius); display: block; }
.home-feature__eyebrow { font-size: .8125rem; letter-spacing: .12em; color: var(--hz-green); margin: 0 0 4px; }
.home-feature h2 {
  font-family: var(--hz-font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0 0 12px;
}
.home-feature__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }

/* --- 産地の強み / 平岡園について --- */
.home-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.home-about__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.home-trust__card, .home-about__card {
  border-top: 2px solid var(--hz-green);
  padding: 16px 4px 0;
}
.home-trust__card h2, .home-about__card h3 {
  font-family: var(--hz-font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.home-trust__card p, .home-about__card p { font-size: .9375rem; color: var(--hz-ink-soft); margin: 0; }

/* --- セクション末尾の「詳しく見る」導線（こだわり/について/掲載実績→EZページ） --- */
.home-trust__more, .home-about__more {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--hz-hairline);
  font-size: .9375rem;
}
.home-trust__more a, .home-about__more a {
  color: var(--hz-green);
  font-weight: 600;
}
.home-trust__more a:hover, .home-about__more a:hover { color: var(--hz-green-deep); }
.home-media__note {
  margin: 16px 0 0;
  font-size: .8125rem;
  color: var(--hz-ink-soft);
}
.home-media__note a { color: var(--hz-green); }

.home-about__intro {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.home-about__intro img { border-radius: var(--hz-radius); width: 100%; height: auto; }
.home-about__footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hz-hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.home-about__signature {
  display: flex;
  align-items: center;
  gap: 16px;
}
.home-about__kao {
  width: auto;
  height: 80px;
  opacity: .9;
}
.contact-list { list-style: none; margin: 0; padding: 0; font-size: .9375rem; }
.contact-list li { display: inline-block; margin-right: 20px; }

/* --- 掲載実績 --- */
.home-media__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.home-media__logos img {
  background: var(--hz-surface);
  border: 1px solid var(--hz-hairline);
  border-radius: 4px;
  padding: 4px;
}

/* --- 静的ページ（特商法・規約・プライバシー・配送） --- */
.defineContent table, #conditionsDefault table, #privacyDefault table, #shippinginfoDefault table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 32px;
  font-size: .9375rem;
}
.defineContent table td, .defineContent table th,
#conditionsDefault table td, #privacyDefault table td,
#shippinginfoDefault table td, #shippinginfoDefault table th {
  border: 1px solid var(--hz-hairline);
  padding: 10px 14px;
  vertical-align: top;
  background: var(--hz-surface);
}
.defineContent table td[bgcolor], #conditionsDefault table td[bgcolor],
#privacyDefault table td[bgcolor], #shippinginfoDefault table td[bgcolor] {
  background: var(--hz-green-tint);
  font-weight: 600;
  white-space: nowrap;
}

/* --- EZページ本文（画像回り込み等） --- */
.hz-ezpage__figure {
  float: left;
  margin: 0 20px 12px 0;
  border-radius: var(--hz-radius);
  max-width: 240px;
}
.hz-ezpage__with-figure::after { content: ""; display: table; clear: both; }
.defineContent.hz-ezpage h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 24px 0 8px;
}
.defineContent.hz-ezpage ol li,
.defineContent.hz-ezpage ul li {
  margin-bottom: 6px;
}
.defineContent.hz-ezpage blockquote {
  margin: 0 0 24px;
  padding: 4px 0 4px 20px;
  border-left: 2px solid var(--hz-green);
  color: var(--hz-ink-soft);
}

/* --- 静的3ページ共通ラッパー（特商法・お支払い/配送・プライバシー） --- */
.static-page { font-size: .9375rem; }
.static-page section { margin: 0 0 48px; }
.static-page section:last-child { margin-bottom: 0; }

/* 特商法: 定義リスト型（TH固定列をやめSPで縦積み） */
.static-page__deflist {
  margin: 0;
  border-top: 1px solid var(--hz-hairline);
}
.static-page__row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 8px 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hz-hairline);
}
.static-page__row dt {
  margin: 0;
  color: var(--hz-ink);
  font-weight: 600;
}
.static-page__row dd {
  margin: 0;
  color: var(--hz-ink);
}
.static-page__row dd p:first-child { margin-top: 0; }
.static-page__row dd p:last-child { margin-bottom: 0; }

/* お支払い/配送: 方法ごとのカード */
.static-page__methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 0 0 8px;
}
.static-page__method-card {
  background: var(--hz-surface);
  border: 1px solid var(--hz-hairline);
  border-radius: var(--hz-radius);
  padding: 20px 24px;
}
.static-page__method-card h3 {
  margin: 0 0 10px;
  font-size: 1.0625rem;
}
.static-page__method-card p {
  margin: 0 0 10px;
  font-size: .9375rem;
  color: var(--hz-ink-soft);
}
.static-page__method-card p:last-child { margin-bottom: 0; }
.static-page__method-card img { display: block; margin: 0 0 10px; }
.static-page__note {
  font-size: .8125rem;
  color: var(--hz-ink-soft);
  margin: 12px 0 0;
}
.static-page__rates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 20px 0 0;
}
.static-page__rates table { margin: 0; }

/* --- レスポンシブ --- */
@media (max-width: 991.98px) {
  .defineContent section { margin-bottom: 40px; }
  .home-hero { grid-template-columns: 1fr; gap: 24px; }
  .home-hero__image { order: -1; }
  .home-shortcuts__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-about__grid { grid-template-columns: 1fr; }
  .home-feature { grid-template-columns: 1fr; padding: 24px; }
  .home-about__intro { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .home-trust__grid { grid-template-columns: 1fr; }
  .static-page__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .static-page__row dt { color: var(--hz-ink-soft); font-size: .8125rem; }
  .hz-ezpage__figure { float: none; max-width: 100%; margin: 0 0 16px; }
  .static-page__methods { grid-template-columns: 1fr; }
}
