/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 31 2025 | 08:41:40 */
/* タブ全体 */
.tab-container {
  margin: 2em auto;
}

/* タブメニュー（横スクロール対応） */
.tab-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid #e75480; /* ピンクライン */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tab-menu::-webkit-scrollbar {
  display: none;
}

.tab-menu li {
  flex: 0 0 150px;       /* 一律幅（例: 150px） */
  text-align: center;    /* 中央寄せ */
  padding: 12px 0;       /* 横paddingを0に調整 */
  cursor: pointer;
  background: #ffe6ef;    /* 淡いピンク */
  border: 1px solid #e7b4c2;
  border-bottom: none;
  margin-right: 5px;
  border-radius: 8px 8px 0 0;
  color: #a33a5c;         /* ピンク系文字色 */
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.tab-menu li:hover {
  background: #ffd1e0;    /* 少し濃いピンク */
}

.tab-menu li.active {
  background: #e75480;    /* 濃いめピンク */
  color: #fff;
  font-weight: 600;
  border-color: #e75480;
}

/* コンテンツ部分 */
.tab-content {
  display: none;
  padding: 20px;
  border: 1px solid #e7b4c2;
  border-radius: 0 8px 8px 8px;
  background: #fff;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

/* フェードイン効果 */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to   {opacity: 1; transform: translateY(0);}
}
