/* タイトルロゴ */
.stars-container {
    display: inline-flex;
    gap: 2px;
}

.star {
    font-size: 18px;
    color: #ccc; /* デフォルトはグレー */
}

.star.filled {
    color: #f5a623; /* 黄色 */
}

.star.half {
    color: #f5a623; /* 黄色（ハーフスター対応が必要ならカスタムする） */
}

.star.empty {
    color: #ccc; /* グレー */
}

.review-count {
    font-size: 14px;
    color: #555;
    margin-left: 5px;
}


.p-top-logo {
	font-size: 20px;
	line-height: 1.4;
	max-width: 80%;
	margin: 20px auto 20px;
	text-align: center;
}
.p-top-logo a {
	display: block;
	transition: opacity .2s;
	text-decoration: none;
	color: #333;
}
.p-top-logo a:hover {
	opacity: .66;
}
.p-top-logo a:active {
	opacity: 1;
}

.logo-pc {
  display: block;
}

.logo-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .logo-pc {
    display: none;
  }

  .logo-mobile {
    display: block;
  }
}

/* カスタムバナー */
.p-custom-banner {
	margin-top: 50px;
	text-align: center;
}
.p-custom-banner__unit {
	background: < {
		$setting-custom-textColor
	}
	>;
}
.p-custom-banner__unit--text {
	font-family: 'Montserrat', sans-serif;
	padding: 30px 10px;
	color: < {
		$setting-custom-textColor
	}
	>;
	background: < {
		$setting-custom-bgColor
	}
	>;
}
.p-custom-banner__unit--text a {
	color: < {
		$setting-custom-textColor
	}
	>;
}
.p-custom-banner__image {
	width: 100%;
}
.p-custom-banner__heading {
	font-size: 24px;
	padding: 10px 0;
}
.p-custom-banner__body {
	line-height: 1.5;
	padding: 10px 0;
}
/* レスポンシブ対応 */
@media screen and (min-width: 600px) {
	.p-top-logo {
		display: none;
	}
	#p-slider .bx-pager {
		bottom: 30px;
	}
	.p-contents__list li::before {
		top: 0;
	}
	.p-contents__list li {
		float: left;
		width: 50%;
		margin-bottom: 20px;
	}
	.p-contents__list li:nth-child(2n + 1) {
		clear: left;
	}
	.p-contents__list a {
		display: inline-block;
		padding: 0;
	}
	.p-custom-banner {
		display: table;
		width: 100%;
		margin-top: 100px;
		table-layout: fixed;
	}
	.p-custom-banner__unit {
		display: table-cell;
		box-sizing: border-box;
		width: 50%;
		max-width: 50%;
		vertical-align: middle;
		word-break: break-all;
	}
	.p-custom-banner__unit--text {
		padding: 10px 20px;
	}
}
/* 共通のスタイル */
.gallery {
  background: #EEE;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.gallery.is-visible {
  opacity: 1;
  visibility: visible;
}

.gallery-cell:before {
  display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 0;
  font-size: 0;
  color: white;
}

/* パソコン向けスタイル */
@media (min-width: 768px) {
  .gallery-cell {
    width: 700px;
    margin-right: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
  }
}

/* タブレット向けスタイル */
@media (min-width: 768px) and (max-width: 1024px) {
  .gallery-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 70vh;
    margin: 0 auto;
  }

  .gallery img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }
}

/* スマートフォン向けスタイル */
@media (max-width: 767px) {
  .gallery-cell {
    width: 80%;
    margin-right: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gallery-cell img {
    display: block;
    margin: 0 auto;
    width: 90%;
    height: auto;
    object-fit: contain;
  }
}

/* 画像がロードされるまで非表示にするスタイル */
.gallery img {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gallery.is-visible img {
  opacity: 1;
}


/* レビューユニット全体のスタイル */
.p-review__unit_flex {
	margin: 50px 50px;
	/* 中央寄せ */
	margin-bottom: 50px;
	/* ボタンの高さに応じて調整 */
	padding: 10px 0;
	/* 上下のみパディングを追加 */
	max-width: 100%;
	/* コンテナの最大幅を100%に設定 */
	box-sizing: border-box;
	/* パディングを幅に含める */
}
/* '詳細を見る'リンクのスタイル */
.p-review__unit>span {
	align-self: flex-end;
	/* Flexboxコンテナ内で自動的に下に配置 */
	margin-top: auto;
	/* 上のマージンを自動的に調整して、下に配置 */
}
/* PC（デスクトップ）用のスタイル */
.p-review__unit {
	padding: 10px;
	border-right: 1px solid #eaeaea;
	box-sizing: border-box;
	width: 60%;
	/* またはPC用の適切な横幅 */
	flex: 0 0 auto;
}
/* レビューボタンのスタイル */
.p-review__button {
	padding: 10px 15px;
}
/* レビュー画像のスタイル */
.p-posted-review__image {
	float: left;
	height: auto;
	margin: 0 0 15px 0;
}
/* タイトルのスタイル */
.p-posted-review__title {
	display: block;
	margin: 15px 0 0 0;
	clear: both;
	text-decoration: underline;
	text-underline-offset: -0.2em;
	text-decoration-thickness: 0.5em;
	text-decoration-color: rgba(255, 228, 0, 0.4);
	text-decoration-skip-ink: none;
	font-size: 1.3em;
	font-weight: bold;
}
/* レビュー全体のスタイル */
.p-posted-review {
	padding-left: 40px;
	padding-right: 40px;
}
.review-link {
	font-weight: bold;
	/* テキストを太字にする */
	color: black;
	/* テキストの色を黒に */
	text-decoration: underline;
	/* 下線を追加 */
	display: block;
	/* ブロック要素として表示 */
	text-align: center;
	/* テキストを中央揃えに */
	padding: 15px;
	/* 内側に10pxの余白を追加 */
	margin-bottom: 15px;
	/* 下に15pxの余白を追加 */
	background-color: #f2f2f2;
	/* 薄いグレーの背景色 */
	border-radius: 5px;
	/* ボーダーの角を丸める */
	line-height: 1.5;
	font-size: 1.3em;
}
.p-posted-review__heading {
	text-align: center;
	/* テキスト（ここではSVG要素）を中央揃えに */
}
/* レビュー画像のスタイル */
.p-posted-review__image {
	display: block;
	max-width: 100%;
	margin: 0 0 15px 0;
	clear: both;
}
.p-posted-review__info {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: flex-end;
	/* すべての要素を右に寄せる */
	align-items: flex-end;
	/* 要素を下に揃える */
}
.p-posted-review__info>li {
	background-color: #f2f2f2;
	/* 薄いグレーの背景色 */
	color: #000;
	/* 黒色のテキストカラー */
	display: flex;
	/* flexコンテナにする */
	justify-content: flex-end;
	/* 右寄せにする */
	align-items: flex-end;
	/* 下揃えにする */
	padding: 5px 10px;
	/* パディングを調整 */
	margin-left: 10px;
	/* 左に10pxのマージンを追加 */
	margin-top: 10px;
	/* 上に10pxのマージンを追加 */
	border-radius: 5px;
	/* ボーダーの角を丸める */
	font-weight: bold;
	/* テキストを太字にする */
	text-align: right;
	/* テキストを右寄せにする */
	white-space: normal;
	/* テキストが折り返されるようにする */
	overflow: hidden;
	/* 内容がオーバーフローしたら隠す */
	text-overflow: ellipsis;
	/* オーバーフローしたテキストを省略記号で表示 */
	/* 必要に応じて他のスタイルプロパティを追加 */
}
.p-posted-review__info li a {
	color: #000;
	/* 黒色のテキストカラー */
	text-decoration: none;
	/* リンクの下線を非表示にする */
}
.p-posted-review__info li:last-child {
	border-right: none;
	/* 最後の要素に右側のラインを付けない */
}
/* レビュー本文のスタイル */
.p-posted-review__body {
	margin: 15px 0;
	line-height: 1.5;
	overflow: hidden;
	clear: both;
}
/* レスポンシブ対応 */
@media (max-width: 600px) {
	.p-posted-review__body {
		margin: 15px 0;
		line-height: 1.5;
		overflow: hidden;
		clear: both;
	}
}
/* 星アイコンのスタイル */
.p-posted-review__star {
	width: 35px;
	height: 35px;
	vertical-align: -.2em;
	fill: currentColor;
	fill: #ddd;
}
/* 星アイコンのカラー指定 */
.p-posted-review__star.is-color {
	fill: #ffdc00;
}
.p-posted-review__star:after {
	content: "";
	display: block;
	clear: both;
}
/* 星評価のスタイル調整 */
#cart-average-rating svg {
	width: 24px !important;
	height: 24px !important;
	fill: #ffdc00 !important;
}
/* 画面幅が600px以上の場合のスタイル */
@media screen and (min-width: 600px) {
	.p-product-heading__unit {
		margin: 120 0 20px;
		border: 1px solid #eaeaea;
	}
}
/* スマートフォンの幅に対するスタイル */
@media screen and (max-width: 600px) {
	.p-review__unit_flex {
		padding: 10px 0;
		/* スマートフォンの場合のパディング */
	}
	.p-review__unit {
		padding: 10px;
		border-right: none;
		/* スマートフォンでは右ボーダーを削除 */
		width: 100%;
		/* スマートフォンでは画面の100%の幅 */
	}
}
/* スマートフォン用のナビゲーションスタイル */
@media screen and (max-width: 767px) {
	/* ナビゲーションを下に移動 */
	.c-pager {
		display: block;
		text-align: center;
		margin-top: 20px;
	}
	.c-pager__list {
		display: inline-block;
		margin: 0;
		padding: 0;
	}
	.c-pager__list-item {
		display: inline;
		margin: 0;
		padding: 0;
	}
	.c-pager__link {
		display: inline-block;
		margin: 0;
		padding: 5px 10px;
	}
}
.carousel-cell {
	width: 50%;
	/* 画面の50%の幅を持つ各セル */
	box-sizing: border-box;
	border: 1px solid lightgrey;
	/* セルの境界線を薄いグレーに設定 */
	padding: 20px;
	/* 内部のスペースを追加 */
	text-align: center;
	/* テキストをセンタリング */
}
/* テキストスライダーのスタイル */
/* カルーセル全体のスタイル */
.carousel {
	background: #FFF;
	margin-top: 40px;
	overflow: hidden;
	position: relative;
}
/* 各セル（テキスト）のスタイル */
.carousel-cell {
	width: auto;
	white-space: nowrap;
	box-sizing: border-box;
	padding: 20px;
	border: 1px solid #EEE;
	text-align: center;
	font-size: 12px;
	/* テキストサイズを小さく */
}
/* リンクのスタイル */
.carousel-cell a {
	color: inherit;
	/* リンク色を継承 */
	text-decoration: none;
	/* リンクの下線を削除 */
	display: block;
	/* リンクをブロック要素として扱い、セル全体をクリカブルに */
	height: 100%;
	width: 100%;
}
.tweet-slider .tweet {
	height: 250px;
	/* 高さを固定 */
	overflow: hidden;
	/* はみ出した内容を非表示にする */
}
.fc-day.sat {
	background-color: rgba(172, 224, 249, 0.5);
	/* 土曜日の背景色、透明度を追加 */
}
.fc-day.sun {
	background-color: rgba(249, 194, 163, 0.5);
	/* 日曜日の背景色、透明度を追加 */
}
.shopsection {
	position: relative;
	margin: 0px 10px;
	border-bottom: 1px solid #cccccc;
	margin-bottom: 20px;
}
.layout-text {
	font-size: 16px;
	color: #555;
}
.address {
	font-size: 16px;
	font-weight: bold;
	color: #333;
}
.address-icon {
	font-size: 24px;
	color: #007BFF;
	margin-right: 10px;
}
.map-container {
	width: 100%;
	height: 500px;
}
.contact-info-s {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	margin: 0;
	width: 100%;
}
.contact-item-s {
	flex: 1;
	text-align: center;
	padding: 10px;
	margin: 0 10px;
	box-sizing: border-box;
}
.contact-label-s {
	font-weight: bold;
}
.contact-item-s:first-child {
	margin-left: 0;
}
.contact-item-s:last-child {
	margin-right: 0;
}
.contact-value-s a {
	font-weight: bold;
	text-decoration: none;
	color: #333;
}
.contact-item-s i {
	font-size: 24px;
	margin-top: 30px;
}
.status-icon {
	position: absolute;
	top: 5px;
	right: 5px;
	color: #fff;
	background: green;
	padding: 5px;
	margin: 10px;
	border-radius: 5px;
	z-index: 10;
	text-align: left;
	font-size: 24px;
}
.flickity-prev-next-button {
	background: #fff !important;
	border-radius: 0 !important;
	color: black !important;
	border: 2px solid #fff !important;
	width: 40px !important;
	height: 40px !important;
}
.flickity-prev-next-button:hover {
	background: #f0f0f0 !important;
}
.flickity-prev-next-button:disabled {
	background: #fff !important;
	opacity: 0.3;
}
.flickity-prev-next-button .flickity-button-icon {
	fill: black !important;
}
.c-product-list {
    background-color: #f0f0f0;
    padding-bottom: 10px;
    border-radius: 5px;
}

.c-product-list__button {
    display: block;
    clear: both;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: center;
    padding: 0 0 15px 0;
}

.c-product-list__button .c-button {
    margin: 0 auto;
    display: inline-block;
    font-weight: bold;
    min-width: 300px;
    padding: 15px;
    text-indent: 15px;
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.c-product-list__button .c-button:hover {
    background-color: #ddd;
    color: #000;
}


/* プロモーションアイコンセクション */
.p-promo-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  margin-top: 40px;
}

.p-promo-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 20px;
}

.p-promo-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.p-promo-icon-image {
  font-size: 32px;
  color: #ff9900;
  margin-bottom: 10px;
}

.p-promo-icon-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.p-promo-icon-text .highlight {
  color: #333;
  font-weight: bold;
}

.p-promo-icon-text .highlight-large {
  font-size: 20px;
  color: #ff4500;
  font-weight: bold;
}

.p-promo-detail-link {
  text-align: center;
  margin: 20px 0 30px 0;
}

.p-promo-detail-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #333;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.p-promo-detail-button:hover {
  background-color: #333;
  color: #fff;
}

@media (max-width: 768px) {
  .p-promo-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .p-promo-icon-item {
    padding: 10px;
  }
  .p-promo-icon-image {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .p-promo-icon-text {
    font-size: 12px;
    line-height: 1.4;
  }
  .p-promo-icon-text .highlight-large {
    font-size: 16px;
  }
}

.news-container {
  width: 100%;
  overflow: hidden;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  margin-bottom: 50px;
  box-sizing: border-box;
}

.news-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.5s ease-in-out;
}

.news-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 15px;
  text-align: left;
  font-family: Arial, sans-serif;
}

.news-date {
  font-size: 14px;
  color: #888;
  display: block;
  margin-bottom: 5px;
}

.news-message {
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.news-message:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .news-container {
    overflow-x: hidden;
  }

  .news-item {
    line-height: 1.8;
    font-size: 12px;
    padding: 8px 15px;
  }

  .news-date {
    font-size: 10px;
  }

  .news-message {
    font-size: 13px;
  }
}

.image-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.image-container img {
  filter: brightness(1);
  transition: filter 0.3s ease;
}

.image-container img:hover {
  filter: brightness(0.66);
}

@media (min-width: 768px) {
  .image-container img {
    max-width: 615px;
  }
}

@media (max-width: 767px) {
  .image-container img {
    max-width: 175px;
  }
}
.buy-together-title {
  font-size: 0.95rem;
  font-weight: bold;
  margin: 1em 0 0.5em;
  padding-left: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.4em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.buy-together-list {
	  list-style: none;
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 8px;
}
.buy-together-item {
  flex: 0 0 120px;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 0.6em;
  text-align: left;
  background: #fafafa;
  position: relative;
  transition: box-shadow 0.2s ease;
}
.buy-together-item:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.buy-together-item img {
  width: 100%;
  height: 110px;
  object-fit: contain;
}
.buy-together-item .name {
  font-size: 0.8em;
  margin-top: 0.5em;
  line-height: 1.2;
  height: 2.4em;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.buy-together-item .price {
  margin-top: 0.4em;
  font-weight: bold;
  font-size: 0.85em;
}
.buy-together-item .sale-price {
  color: #d9534f;
}
.buy-together-item .original-price {
  font-size: 0.7em;
  color: #999;
  text-decoration: line-through;
  margin-left: 0.4em;
}
.buy-together-item .soldout-text {
  color: #999;
  font-weight: bold;
  font-size: 0.85em;
}
.buy-together-item .sale-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #d9534f;
  color: #fff;
  font-size: 0.7em;
  padding: 4px 6px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
}
	.buy-together-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
  height: 2.8em;
}
 