@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/* ==================================================
   酒相場ナビ
   共通・商品詳細ページ
================================================== */


/* ==================================================
   商品詳細 全体
================================================== */

.sake-single {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 22px 70px;
  box-sizing: border-box;
}


/* ==================================================
   商品タイトル
================================================== */

.sake-heading {
  margin-bottom: 24px;
}

.sake-heading h1 {
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  color: #142d4c;
}

.sake-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
}


/* ==================================================
   商品上部
================================================== */

.sake-product-top {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.sake-product-image-area {
  min-width: 0;
}

.sake-product-info-area {
  min-width: 0;
}


/* ==================================================
   商品画像
================================================== */

.sake-main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  padding: 8px;
  box-sizing: border-box;
}

.sake-main-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 350px;
  margin: 0 auto;
  object-fit: contain;
}

.sake-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  border: 1px solid #e1e5e9;
  background: #f7f8fa;
  color: #999;
}

.sake-image-note {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.6;
  color: #777;
}


/* ==================================================
   現在の買取相場
================================================== */

.sake-price-box {
  position: relative;
  margin: 0;
  padding: 25px 30px 20px;
  border: 1px solid #e0e2e5;
  border-top: 3px solid #b58a32;
  border-radius: 3px;
  background:
    linear-gradient(
      135deg,
      #fff 0%,
      #fbfbfb 55%,
      #f5f5f5 100%
    );
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  text-align: left;
}

.sake-price-label {
  margin: 0 0 7px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #173454;
}


/* 現在相場
   円・～：24px
   数字：28px
*/

.sake-price-range {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #bd151b;
  white-space: nowrap;
  text-align: center;
}

.sake-price-range .sake-price-number {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -1px;
}

.sake-price-range .sake-price-separator {
  padding: 0 5px;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.sake-price-checking {
  font-size: 24px;
}


/* ==================================================
   相場注意書き
================================================== */

.sake-price-notes {
  margin-top: 12px;
  text-align: left;
}

.sake-price-notes p {
  margin: 2px 0;
  font-size: 12px;
  line-height: 1.5;
  color: #777;
  text-align: left;
}


/* ==================================================
   相場ボックス内 3項目
================================================== */

.sake-price-features {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e7dfcf;
}

.sake-price-feature {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.sake-price-feature-icon {
  display: flex;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #c79a40;
}

.sake-price-feature-icon span {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.sake-price-feature-text {
  min-width: 0;
}

.sake-price-feature-text strong {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  color: #374151;
}


/* ==================================================
   買取価格比較ボタン
================================================== */

.sake-assessment-button {
  display: flex;
  flex-direction: column;
  width: calc(100% - 12px);
  min-height: 80px;
  margin: 16px auto 0;
  padding: 12px 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border: 1px solid #ad7a20;
  border-radius: 4px;
  background:
    linear-gradient(
      180deg,
      #c99b40 0%,
      #b17c24 100%
    );
  box-shadow: 0 2px 5px rgba(80, 55, 10, .18);
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  transition: opacity .2s ease;
}

.sake-assessment-button:hover {
  opacity: .88;
  color: #fff;
}

.sake-assessment-main {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.sake-assessment-main::after {
  content: "›";
  margin-left: 14px;
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  vertical-align: -2px;
}

.sake-assessment-sub {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}


/* ==================================================
   主要買取業者比較
================================================== */

.sake-buy-comparison {
  margin-top: 42px;
}

.sake-buy-comparison h2 {
  margin: 0 0 14px;
  padding: 0 0 10px;
  border-bottom: 2px solid #b58a32;
  font-size: 24px;
  line-height: 1.4;
  color: #173454;
}

.sake-buy-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.sake-buy-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  border: 1px solid #d8dde3;
  background: #fff;
}

.sake-buy-table thead th {
  padding: 12px 10px;
  border: 1px solid #d8dde3;
  background: #edf1f5;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #1e3552;
  text-align: center;
  vertical-align: middle;
}

.sake-buy-table tbody td {
  padding: 12px 10px;
  border: 1px solid #d8dde3;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  vertical-align: middle;
}

.sake-buy-table tbody tr:nth-child(even) td {
  background: #fcfcfc;
}


/* 買取業者 */

.sake-shop-name {
  white-space: nowrap;
}

.sake-shop-name strong {
  color: #1e3552;
  font-size: 14px;
  font-weight: 700;
}

.sake-shop-rank-number {
  display: inline-block;
  min-width: 18px;
  margin-right: 5px;
  font-size: 12px;
  color: #777;
}


/* 買取価格 */

.sake-shop-price {
  white-space: nowrap;
  text-align: center;
  font-size: 16px !important;
  line-height: 1.5;
  font-weight: 700;
  color: #c51f1f !important;
}


/* 査定方法 */

.sake-shop-method {
  white-space: nowrap;
  text-align: center;
  color: #444;
}


/* 特徴 */

.sake-shop-feature-cell {
  max-width: 220px;
  font-size: 13px !important;
  line-height: 1.6;
  color: #555 !important;
}

.sake-shop-condition-empty {
  color: #aaa;
}


/* 詳細 */

.sake-shop-detail {
  white-space: nowrap;
  text-align: center;
}

.sake-shop-button {
  display: inline-flex;
  min-width: 110px;
  min-height: 38px;
  padding: 8px 14px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border: 1px solid #b7862c;
  border-radius: 4px;
  background:
    linear-gradient(
      180deg,
      #c99a3d 0%,
      #ad7821 100%
    );
  color: #fff !important;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  text-decoration: none !important;
}

.sake-shop-button:hover {
  opacity: .9;
}

.sake-shop-no-link {
  display: inline-block;
  font-size: 13px;
  color: #999;
}


/* 比較表下注意書き */

.sake-buy-table-note {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: #777;
}


/* データなし */

.sake-no-buy-price {
  margin: 0;
  padding: 18px;
  border: 1px solid #e1e4e8;
  background: #f7f8f9;
  color: #666;
}


/* ==================================================
   商品基本情報
================================================== */

.sake-basic-info {
  margin-top: 42px;
}

.sake-basic-info h2 {
  margin: 0 0 18px;
  padding: 0 0 10px;
  border-bottom: 2px solid #b58a32;
  font-size: 24px;
  line-height: 1.4;
  color: #173454;
}

.sake-basic-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e0e3e6;
  background: #fff;
}

.sake-basic-table th,
.sake-basic-table td {
  padding: 13px 16px;
  border: 1px solid #e0e3e6;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.6;
}

.sake-basic-table th {
  width: 30%;
  background: #f2f4f6;
  font-weight: 700;
  color: #334155;
}

.sake-basic-table td {
  color: #333;
}


/* ==================================================
   商品説明
================================================== */

.sake-description {
  margin-top: 42px;
}

.sake-description h2 {
  margin: 0 0 18px;
  padding: 0 0 10px;
  border-bottom: 2px solid #b58a32;
  font-size: 24px;
  line-height: 1.4;
  color: #173454;
}

.sake-description-text {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

.sake-description-text p {
  margin: 0 0 1.4em;
}


/* ==================================================
   買取相場推移
================================================== */

.sake-price-history {
  margin-top: 42px;
}

.sake-price-history h2 {
  margin: 0 0 18px;
  padding: 0 0 10px;
  border-bottom: 2px solid #b58a32;
  font-size: 24px;
  line-height: 1.4;
  color: #173454;
}


/* グラフ */

.sake-history-chart-box {
  padding: 22px 20px 16px;
  border: 1px solid #e1e4e8;
  border-radius: 5px;
  background: #fff;
}

.sake-history-chart-legend {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #555;
}

.sake-history-legend-max::before,
.sake-history-legend-min::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 3px;
  margin-right: 7px;
  vertical-align: middle;
}

.sake-history-legend-max::before {
  background: #b5191f;
}

.sake-history-legend-min::before {
  background: #173454;
}

.sake-history-svg-wrap {
  width: 100%;
  overflow-x: auto;
}

.sake-history-svg {
  display: block;
  width: 100%;
  min-width: 600px;
  height: auto;
}

.sake-chart-grid {
  stroke: #e6e8eb;
  stroke-width: 1;
}

.sake-chart-line-max {
  fill: none;
  stroke: #b5191f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sake-chart-dot-max {
  fill: #fff;
  stroke: #b5191f;
  stroke-width: 3;
}

.sake-chart-line-min {
  fill: none;
  stroke: #173454;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sake-chart-dot-min {
  fill: #fff;
  stroke: #173454;
  stroke-width: 3;
}

.sake-chart-x-label {
  font-size: 11px;
  fill: #555;
}

.sake-chart-y-label {
  font-size: 11px;
  fill: #777;
}


/* 履歴表 */

.sake-history-table-wrap {
  width: 100%;
  margin-top: 18px;
  overflow-x: auto;
}

.sake-history-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e1e4e8;
  background: #fff;
}

.sake-history-table th,
.sake-history-table td {
  padding: 13px 15px;
  border-bottom: 1px solid #e6e6e6;
  text-align: left;
}

.sake-history-table th {
  background: #f5f6f7;
  font-size: 13px;
  color: #334155;
}

.sake-history-table td {
  font-size: 14px;
  color: #333;
}

.sake-history-price {
  font-weight: 700;
  color: #b5191f !important;
}

.sake-no-history {
  padding: 18px;
  border: 1px solid #e5e5e5;
  background: #f7f7f7;
  color: #666;
}


/* ==================================================
   高く売るためのポイント
================================================== */

.sake-selling-tips {
  margin-top: 42px;
}

.sake-selling-tips h2 {
  margin: 0 0 18px;
  padding: 0 0 10px;
  border-bottom: 2px solid #b58a32;
  font-size: 24px;
  line-height: 1.4;
  color: #173454;
}

.sake-selling-tips-intro {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

.sake-selling-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sake-selling-tip {
  position: relative;
  padding: 24px 20px 22px;
  border: 1px solid #e0e2e5;
  border-top: 3px solid #b58a32;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .04);
}

.sake-selling-tip-number {
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
  color: #b58a32;
}

.sake-selling-tip-content h3 {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
  color: #173454;
}

.sake-selling-tip-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}


/* ==================================================
   FAQ
================================================== */

.sake-faq {
  margin-top: 42px;
  margin-bottom: 40px;
}

.sake-faq h2 {
  margin: 0 0 18px;
  padding: 0 0 10px;
  border-bottom: 2px solid #b58a32;
  font-size: 24px;
  line-height: 1.4;
  color: #173454;
}

.sake-faq-list {
  border-top: 1px solid #e2e5e8;
}

.sake-faq-item {
  padding: 22px 0;
  border-bottom: 1px solid #e2e5e8;
}

.sake-faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 13px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
  color: #173454;
}

.sake-faq-q,
.sake-faq-a {
  display: flex;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.sake-faq-q {
  background: #173454;
  color: #fff;
}

.sake-faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sake-faq-a {
  background: #b58a32;
  color: #fff;
}

.sake-faq-answer p {
  flex: 1;
  margin: 3px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #444;
}


/* ==================================================
   関連商品
================================================== */

.sake-related {
  margin-top: 42px;
  margin-bottom: 50px;
}

.sake-related h2 {
  margin: 0 0 20px;
  padding: 0 0 10px;
  border-bottom: 2px solid #b58a32;
  font-size: 24px;
  line-height: 1.4;
  color: #173454;
}

.sake-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sake-related-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e4e8;
  border-radius: 5px;
  background: #fff;
  transition:
    box-shadow .2s ease,
    transform .2s ease;
}

.sake-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .08);
}

.sake-related-image-link {
  display: block;
  text-decoration: none;
}

.sake-related-image {
  display: flex;
  height: 210px;
  padding: 12px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.sake-related-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 185px;
  margin: 0 auto;
  object-fit: contain;
}

.sake-related-no-image {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: #f5f6f7;
  color: #999;
  font-size: 13px;
}

.sake-related-content {
  padding: 15px;
}

.sake-related-content h3 {
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.sake-related-content h3 a {
  color: #173454;
  text-decoration: none;
}

.sake-related-content h3 a:hover {
  text-decoration: underline;
}

.sake-related-price {
  margin-bottom: 14px;
}

.sake-related-price-label {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  color: #777;
}

.sake-related-price strong {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: #b5191f;
}

.sake-related-checking {
  font-size: 13px;
  color: #777;
}

.sake-related-link {
  display: flex;
  min-height: 40px;
  padding: 7px 10px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border: 1px solid #b58a32;
  border-radius: 3px;
  color: #8c671f !important;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  transition:
    background .2s ease,
    color .2s ease;
}

.sake-related-link:hover {
  background: #b58a32;
  color: #fff !important;
}


/* ==================================================
   トップページ
================================================== */

.sake-home {
  width: 100%;
  margin: 0;
  padding: 0 0 70px;
  box-sizing: border-box;
}


/* HERO */

.sake-home-hero {
  position: relative;
  margin-bottom: 60px;
  padding: 78px 24px 82px;
  background:
    linear-gradient(
      135deg,
      #102944 0%,
      #173454 55%,
      #213f60 100%
    );
}

.sake-home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 320px;
  height: 100%;
  opacity: .08;
  background:
    radial-gradient(
      circle at center,
      #fff 0,
      transparent 65%
    );
}

.sake-home-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sake-home-kicker {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #d4b36b;
}

.sake-home-hero h1 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 42px;
  line-height: 1.35;
  letter-spacing: .03em;
  font-weight: 700;
  color: #fff;
}

.sake-home-hero-text {
  max-width: 650px;
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .86);
}


/* トップ検索 */

.sake-home-search {
  width: 100%;
  max-width: 720px;
  margin: 32px auto 0;
}

.sake-home-search-box {
  display: flex;
  width: 100%;
  min-height: 62px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
}

.sake-home-search-box input {
  flex: 1;
  min-width: 0;
  height: 62px;
  margin: 0;
  padding: 0 22px;
  border: 0 !important;
  outline: 0;
  background: #fff;
  box-shadow: none !important;
  font-size: 16px;
  color: #333;
}

.sake-home-search-box input::placeholder {
  color: #999;
}

.sake-home-search-box button {
  flex: 0 0 120px;
  width: 120px;
  min-height: 62px;
  margin: 0;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(
      180deg,
      #c49a43 0%,
      #a97825 100%
    );
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.sake-home-search-box button:hover {
  opacity: .9;
}

.sake-home-product-count {
  margin: 17px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
}

.sake-home-product-count strong {
  margin: 0 3px;
  font-size: 16px;
  color: #fff;
}


/* トップ共通セクション */

.sake-home-section {
  width: calc(100% - 44px);
  max-width: 1120px;
  margin: 0 auto 66px;
}

.sake-home-section-heading {
  margin-bottom: 27px;
  text-align: center;
}

.sake-home-section-en {
  margin: 0 0 5px !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .18em;
  color: #b58a32 !important;
}

.sake-home-section-heading h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 27px;
  line-height: 1.5;
  color: #173454;
}

.sake-home-section-heading > p:last-child {
  margin: 8px 0 0;
  font-size: 14px;
  color: #666;
}


/* トップ カテゴリー */

.sake-home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.sake-home-category-card {
  position: relative;
  display: block;
  min-height: 105px;
  padding: 22px 45px 20px 20px;
  box-sizing: border-box;
  border: 1px solid #dde1e5;
  border-top: 3px solid #b58a32;
  border-radius: 4px;
  background: #fff;
  color: #333 !important;
  text-decoration: none !important;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.sake-home-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .07);
}

.sake-home-category-name {
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 700;
  color: #173454;
}

.sake-home-category-count {
  font-size: 12px;
  color: #888;
}

.sake-home-category-arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
  color: #b58a32;
}


/* トップ ブランド */

.sake-home-brand-section {
  padding: 40px 34px;
  box-sizing: border-box;
  background: #f6f7f8;
}

.sake-home-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.sake-home-brand-card {
  display: flex;
  min-height: 64px;
  padding: 13px 16px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #e1e3e5;
  border-radius: 3px;
  background: #fff;
  color: #173454 !important;
  text-decoration: none !important;
}

.sake-home-brand-card:hover {
  border-color: #b58a32;
}

.sake-home-brand-name {
  font-size: 14px;
  font-weight: 700;
}

.sake-home-brand-count {
  white-space: nowrap;
  font-size: 11px;
  color: #888;
}


/* トップ 商品 */

.sake-home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.sake-home-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e0e3e6;
  border-radius: 5px;
  background: #fff;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.sake-home-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, .08);
}

.sake-home-product-image-link {
  display: block;
  text-decoration: none;
}

.sake-home-product-image {
  display: flex;
  height: 235px;
  padding: 15px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.sake-home-product-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 205px;
  margin: 0 auto;
  object-fit: contain;
}

.sake-home-product-no-image {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: #f5f6f7;
  color: #aaa;
  font-size: 13px;
}

.sake-home-product-body {
  padding: 16px;
}

.sake-home-product-brand {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #b58a32;
}

.sake-home-product-body h3 {
  min-height: 50px;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 16px;
  line-height: 1.55;
}

.sake-home-product-body h3 a {
  color: #173454;
  text-decoration: none;
}

.sake-home-product-body h3 a:hover {
  text-decoration: underline;
}

.sake-home-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  min-height: 21px;
  margin-bottom: 12px;
  font-size: 11px;
  color: #777;
}

.sake-home-product-price {
  min-height: 65px;
  padding-top: 11px;
  border-top: 1px solid #eee;
}

.sake-home-product-price-label {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  color: #777;
}

.sake-home-product-price strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  color: #b5191f;
}

.sake-home-product-price strong span {
  padding: 0 2px;
  font-size: 13px;
}

.sake-home-price-checking {
  font-size: 14px;
  font-weight: 700;
  color: #777;
}

.sake-home-product-button {
  display: flex;
  min-height: 42px;
  margin-top: 12px;
  padding: 7px 10px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border: 1px solid #b58a32;
  border-radius: 3px;
  color: #956d22 !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
}

.sake-home-product-button:hover {
  background: #b58a32;
  color: #fff !important;
}

.sake-home-empty {
  padding: 25px;
  background: #f7f7f7;
  text-align: center;
  color: #777;
}


/* 酒相場ナビとは */

.sake-home-about {
  width: calc(100% - 44px);
  max-width: 1120px;
  margin: 10px auto 0;
  padding: 44px;
  box-sizing: border-box;
  background: #173454;
}

.sake-home-about-inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 45px;
}

.sake-home-about-title p {
  margin: 0 0 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #d1ad61;
}

.sake-home-about-title h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 28px;
  color: #fff;
}

.sake-home-about-text p {
  margin: 0 0 13px;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, .86);
}

.sake-home-about-text p:last-child {
  margin-bottom: 0;
}

.sake-home-sp-br {
  display: none;
}


/* ==================================================
   検索結果ページ
================================================== */

.sake-search-page {
  width: 100%;
  padding-bottom: 70px;
}

.sake-search-header {
  padding: 48px 22px 44px;
  background: #173454;
}

.sake-search-header-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sake-search-header-en {
  margin: 0 0 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #d2ad60;
}

.sake-search-header h1 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 28px;
  line-height: 1.5;
  color: #fff;
}

.sake-search-result-count {
  margin: 9px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
}

.sake-search-form {
  width: 100%;
  max-width: 650px;
  margin: 24px auto 0;
}

.sake-search-form-box {
  display: flex;
  min-height: 54px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

.sake-search-form-box input {
  flex: 1;
  min-width: 0;
  height: 54px;
  margin: 0;
  padding: 0 18px;
  border: 0 !important;
  outline: none;
  background: #fff;
  box-shadow: none !important;
  font-size: 14px;
}

.sake-search-form-box button {
  flex: 0 0 100px;
  width: 100px;
  margin: 0;
  padding: 0 14px;
  border: 0;
  border-radius: 0;
  background: #b58a32;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.sake-search-form-box button:hover {
  opacity: .9;
}

.sake-search-results {
  width: calc(100% - 44px);
  max-width: 1120px;
  margin: 45px auto 0;
}

.sake-search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.sake-search-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e0e3e6;
  border-radius: 5px;
  background: #fff;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.sake-search-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, .08);
}

.sake-search-image-link {
  display: block;
  text-decoration: none;
}

.sake-search-image {
  display: flex;
  height: 235px;
  padding: 15px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
}

.sake-search-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 205px;
  margin: 0 auto;
  object-fit: contain;
}

.sake-search-no-image {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: #f5f6f7;
  color: #999;
  font-size: 13px;
}

.sake-search-card-body {
  padding: 16px;
}

.sake-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 24px;
  margin-bottom: 6px;
}

.sake-search-brand,
.sake-search-category {
  display: inline-flex;
  min-height: 22px;
  padding: 2px 7px;
  align-items: center;
  border-radius: 2px;
  font-size: 10px;
  line-height: 1.3;
}

.sake-search-brand {
  background: #f5efe1;
  color: #8c681f;
}

.sake-search-category {
  background: #eef2f6;
  color: #40546b;
}

.sake-search-card h2 {
  min-height: 50px;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 16px;
  line-height: 1.55;
}

.sake-search-card h2 a {
  color: #173454;
  text-decoration: none;
}

.sake-search-card h2 a:hover {
  text-decoration: underline;
}

.sake-search-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  min-height: 20px;
  margin-bottom: 12px;
  font-size: 11px;
  color: #777;
}

.sake-search-price {
  min-height: 67px;
  padding-top: 11px;
  border-top: 1px solid #eee;
}

.sake-search-price-label {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  color: #777;
}

.sake-search-price strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  color: #b5191f;
}

.sake-search-price strong span {
  padding: 0 2px;
  font-size: 13px;
}

.sake-search-price-checking {
  font-size: 14px;
  font-weight: 700;
  color: #777;
}

.sake-search-detail-button {
  display: flex;
  min-height: 42px;
  margin-top: 11px;
  padding: 7px 10px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border: 1px solid #b58a32;
  border-radius: 3px;
  color: #946c21 !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
}

.sake-search-detail-button:hover {
  background: #b58a32;
  color: #fff !important;
}

.sake-search-pagination {
  margin-top: 38px;
  text-align: center;
}

.sake-search-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.sake-search-pagination .page-numbers {
  display: flex;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe2e5;
  background: #fff;
  color: #173454;
  text-decoration: none;
}

.sake-search-pagination .page-numbers.current {
  border-color: #173454;
  background: #173454;
  color: #fff;
}

.sake-search-empty {
  padding: 55px 25px;
  border: 1px solid #e2e4e6;
  background: #f7f8f9;
  text-align: center;
}

.sake-search-empty h2 {
  margin: 0 0 13px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 22px;
  color: #173454;
}

.sake-search-empty p {
  margin: 6px 0;
  font-size: 14px;
  color: #555;
}

.sake-search-example {
  color: #888 !important;
}


/* ==================================================
   商品一覧・絞り込み
================================================== */

.sake-archive {
  width: calc(100% - 44px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 0 70px;
  box-sizing: border-box;
}

.sake-archive-header {
  margin-bottom: 30px;
  text-align: center;
}

.sake-archive-en {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #b58a32;
}

.sake-archive-header h1 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 30px;
  line-height: 1.45;
  color: #173454;
}

.sake-archive-lead {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}


/* 絞り込み */

.sake-filter {
  margin-bottom: 38px;
  padding: 26px;
  border: 1px solid #dfe3e7;
  border-top: 3px solid #b58a32;
  border-radius: 5px;
  background: #f7f8f9;
}

.sake-filter-form {
  display: grid;
  grid-template-columns:
    minmax(220px, 1.5fr)
    repeat(3, minmax(150px, 1fr));
  gap: 15px;
  align-items: end;
}

.sake-filter-item {
  min-width: 0;
}

.sake-filter-item label {
  display: block;
  margin: 0 0 7px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  color: #173454;
}

.sake-filter-item input,
.sake-filter-item select {
  display: block;
  width: 100%;
  height: 46px;
  margin: 0;
  padding: 0 12px;
  box-sizing: border-box;
  border: 1px solid #cfd5da;
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
  font-size: 14px;
  color: #333;
}

.sake-filter-item input:focus,
.sake-filter-item select:focus {
  border-color: #b58a32;
  outline: none;
}

.sake-filter-buttons {
  grid-column: 1 / -1;
  display: flex;
  margin-top: 5px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sake-filter-submit {
  display: inline-flex;
  min-width: 220px;
  min-height: 48px;
  margin: 0;
  padding: 10px 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ad7a20;
  border-radius: 4px;
  background:
    linear-gradient(
      180deg,
      #c79a40 0%,
      #ae7923 100%
    );
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.sake-filter-submit:hover {
  opacity: .9;
}

.sake-filter-reset {
  display: inline-flex;
  min-height: 48px;
  padding: 10px 18px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  color: #666 !important;
  font-size: 13px;
  text-decoration: none !important;
}

.sake-filter-reset:hover {
  color: #173454 !important;
  text-decoration: underline !important;
}


/* 商品一覧見出し */

.sake-archive-result-heading {
  display: flex;
  margin-bottom: 18px;
  padding-bottom: 10px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid #b58a32;
}

.sake-archive-result-heading h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 23px;
  line-height: 1.4;
  color: #173454;
}

.sake-archive-result-heading p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.sake-archive-result-heading strong {
  margin-right: 2px;
  font-size: 18px;
  color: #173454;
}


/* 商品カード */

.sake-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.sake-archive-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e0e3e6;
  border-radius: 5px;
  background: #fff;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.sake-archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, .08);
}

.sake-archive-image-link {
  display: block;
  text-decoration: none;
}

.sake-archive-image {
  display: flex;
  height: 235px;
  padding: 15px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.sake-archive-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 205px;
  margin: 0 auto;
  object-fit: contain;
}

.sake-archive-no-image {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: #f5f6f7;
  color: #aaa;
  font-size: 13px;
}

.sake-archive-card-body {
  padding: 16px;
}

.sake-archive-brand {
  min-height: 18px;
  margin-bottom: 5px;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  color: #b58a32;
}

.sake-archive-card h3 {
  min-height: 50px;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 16px;
  line-height: 1.55;
}

.sake-archive-card h3 a {
  color: #173454;
  text-decoration: none;
}

.sake-archive-card h3 a:hover {
  text-decoration: underline;
}

.sake-archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  min-height: 20px;
  margin-bottom: 12px;
  font-size: 11px;
  color: #777;
}

.sake-archive-price {
  min-height: 66px;
  padding-top: 11px;
  border-top: 1px solid #eee;
}

.sake-archive-price-label {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  color: #777;
}

.sake-archive-price strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  color: #b5191f;
}

.sake-archive-price strong span {
  padding: 0 2px;
  font-size: 13px;
}

.sake-archive-price-checking {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #777;
}

.sake-archive-button {
  display: flex;
  min-height: 42px;
  margin-top: 11px;
  padding: 7px 10px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border: 1px solid #b58a32;
  border-radius: 3px;
  color: #946c21 !important;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
}

.sake-archive-button:hover {
  background: #b58a32;
  color: #fff !important;
}


/* ページ送り */

.sake-archive-pagination {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
  gap: 6px;
}

.sake-archive-pagination .page-numbers {
  display: flex;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe2e5;
  background: #fff;
  color: #173454;
  text-decoration: none;
}

.sake-archive-pagination .page-numbers.current {
  border-color: #173454;
  background: #173454;
  color: #fff;
}

.sake-archive-pagination a.page-numbers:hover {
  border-color: #b58a32;
}

.sake-archive-empty {
  padding: 50px 25px;
  border: 1px solid #e2e4e6;
  background: #f7f8f9;
  text-align: center;
}

.sake-archive-empty h2 {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 21px;
  color: #173454;
}

.sake-archive-empty p {
  margin: 0;
  font-size: 14px;
  color: #666;
}


/* ==================================================
   タブレット
================================================== */

@media screen and (max-width: 950px) {

  .sake-filter-form {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media screen and (max-width: 900px) {

  .sake-related-grid,
  .sake-home-category-grid,
  .sake-home-brand-grid,
  .sake-home-product-grid,
  .sake-search-grid,
  .sake-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sake-home-about-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

}


/* ==================================================
   スマホ
================================================== */

@media screen and (max-width: 768px) {

  /* 商品詳細 */

  .sake-single {
    padding: 20px 14px 45px;
  }

  .sake-heading {
    margin-bottom: 20px;
  }

  .sake-heading h1 {
    font-size: 23px;
  }

  .sake-lead {
    font-size: 14px;
  }

  .sake-product-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sake-main-image,
  .sake-no-image {
    min-height: 280px;
  }

  .sake-main-image img {
    max-height: 280px;
  }

  .sake-price-box {
    padding: 20px 18px 18px;
  }

  .sake-price-label {
    font-size: 18px;
  }


  /* 相場サイズ */

  .sake-price-range {
    font-size: 21px;
  }

  .sake-price-range .sake-price-number {
    font-size: 25px;
  }

  .sake-price-range .sake-price-separator {
    padding: 0 3px;
    font-size: 21px;
  }

  .sake-price-checking {
    font-size: 21px;
  }


  /* 特徴 */

  .sake-price-features {
    flex-direction: column;
    gap: 12px;
  }

  .sake-price-feature {
    width: 100%;
  }

  .sake-price-feature-icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .sake-price-feature-text strong {
    font-size: 13px;
  }


  /* CTA */

  .sake-assessment-button {
    width: 100%;
    min-height: 70px;
  }

  .sake-assessment-main {
    font-size: 17px;
  }


  /* 見出し */

  .sake-buy-comparison,
  .sake-basic-info,
  .sake-description,
  .sake-price-history,
  .sake-selling-tips,
  .sake-faq,
  .sake-related {
    margin-top: 32px;
  }

  .sake-buy-comparison h2,
  .sake-basic-info h2,
  .sake-description h2,
  .sake-price-history h2,
  .sake-selling-tips h2,
  .sake-faq h2,
  .sake-related h2 {
    font-size: 20px;
  }


  /* 比較表 */

  .sake-buy-table {
    min-width: 780px;
  }

  .sake-buy-table thead th,
  .sake-buy-table tbody td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .sake-shop-price {
    font-size: 15px !important;
  }

  .sake-shop-feature-cell {
    font-size: 12px !important;
  }


  /* 基本情報 */

  .sake-basic-table th,
  .sake-basic-table td {
    padding: 11px 12px;
    font-size: 13px;
  }

  .sake-basic-table th {
    width: 34%;
  }


  /* 商品説明 */

  .sake-description-text {
    font-size: 14px;
  }


  /* グラフ */

  .sake-history-chart-box {
    padding: 16px 10px 12px;
  }

  .sake-history-chart-legend {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .sake-history-table {
    min-width: 520px;
  }


  /* 高く売る */

  .sake-selling-tips-intro {
    font-size: 14px;
  }

  .sake-selling-tips-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sake-selling-tip {
    padding: 20px 18px;
  }

  .sake-selling-tip-content h3 {
    font-size: 16px;
  }


  /* FAQ */

  .sake-faq-item {
    padding: 18px 0;
  }

  .sake-faq-question {
    font-size: 15px;
  }

  .sake-faq-answer p {
    font-size: 14px;
  }

  .sake-faq-q,
  .sake-faq-a {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }


  /* 関連商品 */

  .sake-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sake-related-image {
    height: 170px;
    padding: 8px;
  }

  .sake-related-image img {
    max-height: 150px;
  }

  .sake-related-content {
    padding: 12px;
  }

  .sake-related-content h3 {
    font-size: 14px;
  }

  .sake-related-price strong {
    font-size: 13px;
  }


  /* トップ */

  .sake-home {
    padding-bottom: 40px;
  }

  .sake-home-hero {
    margin-bottom: 42px;
    padding: 55px 18px 58px;
  }

  .sake-home-sp-br {
    display: block;
  }

  .sake-home-kicker {
    font-size: 11px;
  }

  .sake-home-hero h1 {
    font-size: 31px;
  }

  .sake-home-hero-text {
    font-size: 14px;
  }

  .sake-home-search {
    margin-top: 25px;
  }

  .sake-home-search-box {
    min-height: 55px;
  }

  .sake-home-search-box input {
    height: 55px;
    padding: 0 14px;
    font-size: 14px;
  }

  .sake-home-search-box button {
    flex-basis: 82px;
    width: 82px;
    min-height: 55px;
    padding: 0 10px;
    font-size: 14px;
  }

  .sake-home-section {
    width: calc(100% - 28px);
    margin-bottom: 48px;
  }

  .sake-home-section-heading {
    margin-bottom: 20px;
  }

  .sake-home-section-heading h2 {
    font-size: 22px;
  }

  .sake-home-category-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .sake-home-category-card {
    min-height: 82px;
    padding: 16px 42px 15px 17px;
  }

  .sake-home-brand-section {
    padding: 30px 15px;
  }

  .sake-home-brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .sake-home-brand-card {
    min-height: 57px;
    padding: 10px 11px;
  }

  .sake-home-brand-name {
    font-size: 13px;
  }

  .sake-home-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sake-home-product-image {
    height: 180px;
    padding: 9px;
  }

  .sake-home-product-image img {
    max-height: 160px;
  }

  .sake-home-product-body {
    padding: 11px;
  }

  .sake-home-product-body h3 {
    min-height: 45px;
    font-size: 14px;
  }

  .sake-home-product-price strong {
    font-size: 14px;
  }

  .sake-home-about {
    width: calc(100% - 28px);
    padding: 30px 22px;
  }

  .sake-home-about-title h2 {
    font-size: 23px;
  }


  /* 検索結果 */

  .sake-search-page {
    padding-bottom: 40px;
  }

  .sake-search-header {
    padding: 36px 16px 38px;
  }

  .sake-search-header h1 {
    font-size: 22px;
  }

  .sake-search-form-box {
    min-height: 52px;
  }

  .sake-search-form-box input {
    height: 52px;
    padding: 0 12px;
    font-size: 13px;
  }

  .sake-search-form-box button {
    flex-basis: 75px;
    width: 75px;
    font-size: 13px;
  }

  .sake-search-results {
    width: calc(100% - 28px);
    margin-top: 30px;
  }

  .sake-search-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sake-search-image {
    height: 180px;
    padding: 9px;
  }

  .sake-search-image img {
    max-height: 160px;
  }

  .sake-search-card-body {
    padding: 11px;
  }

  .sake-search-card h2 {
    min-height: 45px;
    font-size: 14px;
  }

  .sake-search-price strong {
    font-size: 14px;
  }

  .sake-search-brand,
  .sake-search-category {
    font-size: 9px;
  }


  /* 商品一覧 */

  .sake-archive {
    width: calc(100% - 28px);
    padding: 28px 0 45px;
  }

  .sake-archive-header {
    margin-bottom: 23px;
  }

  .sake-archive-header h1 {
    font-size: 23px;
  }

  .sake-archive-lead {
    font-size: 13px;
  }

  .sake-filter {
    margin-bottom: 30px;
    padding: 18px 14px;
  }

  .sake-filter-form {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .sake-filter-item input,
  .sake-filter-item select {
    height: 45px;
    font-size: 14px;
  }

  .sake-filter-buttons {
    flex-direction: column;
    gap: 2px;
  }

  .sake-filter-submit {
    width: 100%;
    min-width: 0;
  }

  .sake-filter-reset {
    min-height: 38px;
  }

  .sake-archive-result-heading h2 {
    font-size: 20px;
  }

  .sake-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sake-archive-image {
    height: 180px;
    padding: 9px;
  }

  .sake-archive-image img {
    max-height: 160px;
  }

  .sake-archive-card-body {
    padding: 11px;
  }

  .sake-archive-card h3 {
    min-height: 44px;
    font-size: 14px;
  }

  .sake-archive-meta {
    font-size: 10px;
  }

  .sake-archive-price strong {
    font-size: 14px;
  }

}


/* ==================================================
   小さいスマホ
================================================== */

@media screen and (max-width: 420px) {

  .sake-archive-grid {
    gap: 8px;
  }

  .sake-archive-image {
    height: 155px;
  }

  .sake-archive-image img {
    max-height: 135px;
  }

  .sake-archive-card-body {
    padding: 9px;
  }

}