h6{
  	font-size:12px;
	padding:5px 10px;
	background:#EEEEEE;
	color:#2E2E2E;
	margin:20px 10px 10px;
}
.attention{
	width: 99%;
	border:1px solid #a40000;
        margin-right: 20px;

}

p{
	font-size:10px;
	text-align:center;
}


.attention h4{
	font-size:12px;
	font-size:0.8rem;
	text-align:center;
	margin-bottom:5px;
}  


.slick-initialized .slick-slide{padding: 0.5em;}
.slick-next, .slick-prev {top: 10px !important; }
.slick-center {	transform: scale(106%);}



/*アコーディオン */
.accordion-003 {
    max-width: 600px;
    margin-bottom: 7px;
    border-bottom: 2px solid #a40000;
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #a40000;
    font-weight: 600;
    cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #a40000;
    border-right: 3px solid #a40000;
    content: '';
    transition: transform .3s;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}
.slider.slick_center_top {	overflow: hidden;}
.slider.slick_center_top div a {	padding: 5px;	display: block;}
ul.scene {	list-style: none;	display: flex;	flex-wrap: wrap;	margin: 0;}
ul.scene li {	width: 50%;	box-sizing: border-box;}
ul.scene li a {	text-align: center;	display: block;}
ul.scene li:nth-child(2n+1) {padding-top: 20px;	padding-right: 10px;}
ul.scene li:nth-child(2n+2) {padding-top: 20px; padding-left: 10px;}
ul.scene li:nth-child(1), ul.scene li:nth-child(2) {padding-top: 0;}
ul.circle_list {list-style: none;	margin: 0;	display: flex;	flex-wrap: wrap;}
.circle_list li > a span {border-radius: 100%;	display: block;	overflow: hidden;max-width: 100%;}
ul.circle_list li {	width: 25%;	box-sizing: border-box; padding: 10px;}
.circle_list li > a {display: flex;	flex-wrap: wrap;	justify-content: center;}
.seller ul .item_name {	line-height: 1.5;	max-height: 3em;	overflow: hidden;}
.recommend ul .item_name {	line-height: 1.5;	max-height: 3em;	overflow: hidden;}



.custom-tabs {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
}

/* タブヘッダー */
.tab-header {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 2px solid #cde0dc;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tab-btn {
  background: none;
  border: none;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 20px;
  cursor: pointer;
  color: #5a4c35;
  white-space: nowrap;
}
.tab-btn.active {
  background: #cde0dc;
}

/* コンテンツエリア */
.tab-body {
  background: #edf4f3;
  padding: 30px 20px;
}
.tab-panel {
  display: none;
  grid-template-columns: repeat(3, 1fr); /* PCは3列固定 */
  gap: 20px;
}
.tab-panel.active {
  display: grid;
}

/* リンクカード */
.tab-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 20px;
  border-radius: 2px;
  font-size: 15px;
  color: #3a2e1e;
  text-decoration: none;
  transition: background 0.2s;
}
.tab-item::after {
  content: "\203A";
  font-weight: bold;
  color: #7a6950;
}
.tab-item:hover {
  background: #cde0dc;
}

/* ▼スマホ対応（2列表示） */
@media screen and (max-width: 767px) {
  .tab-header {
    gap: 10px;
  }
  .tab-btn {
    font-size: 14px;
    padding: 8px 10px;
  }
  .tab-body {
    padding: 20px 10px;
  }
  .tab-panel {
    grid-template-columns: repeat(2, 1fr); /* スマホは2列表示 */
    gap: 10px;
  }
  .tab-item {
    font-size: 13px;
    padding: 10px;
  }
}


