/* カテゴリタイトル装飾プリセット
   ecport-core/config/category_title_designs.php の css_class と対応。 */

/* default: 既定 (.tf-page-title のテーマ既定スタイルそのまま) */
.tf-page-title--default {
    background-image: none;
    background-color: #f8f7f4;
}

/* gradient: 柔らかいグラデーション背景 */
.tf-page-title--gradient {
    background-image: linear-gradient(135deg, #f3eee6 0%, #e8dccf 50%, #d8c4ad 100%);
    background-color: transparent;
    padding-top: 80px;
    padding-bottom: 76px;
}
.tf-page-title--gradient .heading {
    color: #2b2118;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* image_banner: カテゴリ画像を背景に使う */
.tf-page-title--image-banner {
    background-color: #222;
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 96px;
    position: relative;
}
.tf-page-title--image-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.tf-page-title--image-banner > .container-full {
    position: relative;
    z-index: 1;
}
.tf-page-title--image-banner .heading,
.tf-page-title--image-banner .heading a,
.tf-page-title--image-banner nav a {
    color: #fff;
}
.tf-page-title--image-banner nav .text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* accent_bar: タイトル左にアクセントバー */
.tf-page-title--accent-bar {
    background-image: none;
    background-color: #fafaf7;
    padding-top: 56px;
    padding-bottom: 52px;
}
.tf-page-title--accent-bar .heading {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding-left: 16px;
    position: relative;
}
.tf-page-title--accent-bar .heading::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 38px;
    background-color: #c9a86b;
    border-radius: 3px;
}

/* underline: タイトル下にライン */
.tf-page-title--underline {
    background-image: none;
    background-color: #fff;
    padding-top: 64px;
    padding-bottom: 60px;
}
.tf-page-title--underline .heading {
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}
.tf-page-title--underline .heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2b2118;
    border-radius: 2px;
}

/* card: タイトルを白カードで浮かせて表示 */
.tf-page-title--card {
    background-image: none;
    background-color: #efe9df;
    padding-top: 72px;
    padding-bottom: 68px;
}
.tf-page-title--card .container-full {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tf-page-title--card .heading {
    background: #fff;
    padding: 22px 40px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(43, 33, 24, 0.08);
    display: inline-block;
}
