/**
 * ランキングタブスタイル
 *
 * @package lee
 * @since   2024.01.01
 */

/* 見出し + タブナビ ヘッダー */
.ranking-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
  max-width:1120px;
}

.ranking-header .hdg1-pt1 {
	margin-bottom: 0;
	padding-bottom: 12px;
}

/* タブナビゲーション - ラッパー */
.ranking-tabs-wrap {
	display: flex;
	align-items: flex-end;
	gap: 16px;
  border-bottom:1px solid #fff;
  padding:0 20px;
}

/* 人気記事ラベル */
.ranking-tabs-label {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin: 0;
	padding-bottom: 12px;
}

/* タブコンテナ */
.ranking-tabs {
	display: flex;
	gap: 4px;
}

/* タブボタン */
.ranking-tab {
	padding: 10px 24px;
	border: none;
	border-radius: 8px 8px 0 0;
	background-color: transparent;
  border-top:1px solid #fff;
  border-right:1px solid #fff;
  border-left:1px solid #fff;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.ranking-tab:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.ranking-tab.is-active {
	background-color: #fff;
	color: #333;
}

/* タブコンテンツ - 初期状態では「今日」タブを表示 */
.wrap-ranking .ranking-tab-content[data-tab-content="recipe"] {
	display: none;
}

.wrap-ranking .ranking-tab-content[data-tab-content="recipe"].is-active {
	display: block;
}

.wrap-ranking .ranking-tab-content[data-tab-content="today"]:not(.is-active) {
	display: none;
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
	.ranking-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.ranking-header .hdg1-pt1 {
		padding-bottom: 0;
	}

	.ranking-tabs-wrap {
		width: 100%;
    display:block;
		justify-content: space-between;
    border-bottom:none;
    padding:0 30px 0 0;
	}

	.ranking-tabs-label {
		font-size: 14px;
	}

	.ranking-tabs {
    border-bottom:1px solid #fff;
	}

	.ranking-tab {
		padding: 8px 16px;
		font-size: 13px;
	}
}
