@media(min-width:769px) {
.product-explain{
max-width:780px;
  margin-left:auto;
  margin-right:auto;
}
  .bx-wrapper img{margin:auto;}
  
}

.product-explain h2{
display: block;
    font-size: 1.5em;
    margin: 0.83em 0;
    font-weight: bold;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}


.tab-container {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
}

.tabs {
display: flex;
justify-content: center;
gap: 5px;
}

.tab-label {
cursor: pointer;
padding: 15px 25px; /* 少し大きめのボタン */
background: #e0e0e0;
border-radius: 5px;
transition: all 0.3s ease;
font-size: 20px; /* 大きめの文字サイズ */
font-weight: bold; /* 太字で視認性向上 */
text-align: center;
box-sizing: border-box;
}

.tab-label:hover {
background: #d0d0d0;
}

input[type="radio"] {
display: none;
}

input[type="radio"]:checked + .tab-label {
background: #007acc;
color: white;
border: 2px solid #007acc;
}

.tab-content {
margin-top: 10px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
background: #fff;
font-size: 18px; /* コンテンツも大きめの文字 */
color: #333;
}

/* レスポンシブ対応（スマホ表示） */
@media (max-width: 600px) {
.tab-label {
font-size: 18px; /* スマホでは文字サイズを調整 */
padding: 12px 20px;
}

.tab-content {
font-size: 16px; /* コンテンツも小さめに */
padding: 15px;
}
}
