/*
Theme Name: HAKU Child
Theme URI: https://tcd-theme.com/tcd080
Template: haku_tcd080
Author: TCD
Author URI: https://tcd-theme.com/
Description: "HAKU" is the 80th theme from TCD. It is a WordPress theme for sake brand, and it is ideal for any sites with Japanese feel. You can use it as a user flows from the product page to the online store.
Version: 2.7.1750318486
Updated: 2025-06-19 16:34:46

*/
/* 基本フォントとカラーをHAKUに合わせる */
.woocommerce,
.woocommerce-page {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

/* 商品一覧グリッド調整 */
.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.woocommerce ul.products li.product {
  width: calc(33.333% - 20px);
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.woocommerce ul.products li.product:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 商品タイトル */
.woocommerce ul.products li.product h2,
.woocommerce-loop-product__title {
  font-size: 18px;
  margin: 15px 0 10px;
}

/* 価格表示 */
.woocommerce ul.products li.product .price {
  color: #d10000;
  font-weight: bold;
  font-size: 16px;
}

/* カートボタン調整 */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  border: none;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: #d10000;
}

/* 商品詳細ページのレイアウト調整 */
.woocommerce div.product {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.woocommerce div.product div.images {
  width: 48%;
}

.woocommerce div.product div.summary {
  width: 48%;
}

/* 商品説明タブ調整 */
.woocommerce div.product .woocommerce-tabs {
  margin-top: 50px;
}

.woocommerce div.product .woocommerce-tabs .panel {
  background: #fafafa;
  padding: 20px;
  border: 1px solid #eee;
}

/* カートページ調整 */
.woocommerce-cart table.cart {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.woocommerce-cart .cart_totals {
  margin-top: 40px;
  text-align: right;
}

/* チェックアウトページ調整 */
.woocommerce-checkout form.checkout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_review {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* メッセージ通知の見た目 */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border: none;
  background-color: #f5f5f5;
  color: #333;
  padding: 15px 20px;
  border-left: 4px solid #000;
  margin-bottom: 30px;
}

