@charset "UTF-8";

/* --- uniページ全体囲み --- */
.brand-uni-wrap {
    color: #333;
    line-height: 1.8;
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

.brand-uni-wrap .lead {
    margin-bottom: 32px;
    color: #444;
}

/* h1: 左側にエンジ色の縦線 */
.brand-uni-wrap h1.main-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    border-left: 6px solid #d75a68;
    padding-left: 14px;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* h2: グレー背景の帯状見出し */
.brand-uni-wrap h2.sp-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    background-color: #f5f0ee;
    padding: 12px 18px;
    border-radius: 4px;
    margin: 40px 0 20px;
    border: none;
}

.brand-uni-wrap .ranking-list_inr {
    margin-bottom: 20px;
}

/* おすすめピックアップ */
.brand-uni-wrap .pickup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
    margin: 20px 0 8px;
}

.brand-uni-wrap .pk {
    border: 1px solid #e3d9d5;
    border-radius: 8px;
    padding: 16px;
    background-color: #fff;
}

.brand-uni-wrap .pk .badge {
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    background: #d75a68;
    border-radius: 4px;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.brand-uni-wrap .pk .badge.tanki {
    background: #1a5fa8;
}

.brand-uni-wrap .pk h4 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 8px;
}

.brand-uni-wrap .pk h4 a {
    color: #1a5fa8;
    text-decoration: none;
}

.brand-uni-wrap .pk h4 a:hover {
    text-decoration: underline;
}

.brand-uni-wrap .pk .price {
    color: #d75a68;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 8px;
}

.brand-uni-wrap .pk .price small {
    color: #777;
    font-weight: normal;
    font-size: 11px;
    margin-left: 4px;
}

.brand-uni-wrap .pk p {
    font-size: 12.5px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.brand-uni-wrap .note {
    font-size: 12px;
    color: #777;
    margin-top: 8px;
}

/* シリーズ切り替えタブ */
.brand-uni-wrap .series-tabs {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}

.brand-uni-wrap .series-tabs .stab,
.brand-uni-wrap .cat-tabs .stab {
    border: 1px solid #d75a68;
    background: #fff;
    color: #d75a68;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
    width: 100%; 
}

/* active（選択中）の時 */
.brand-uni-wrap .series-tabs .stab.active,
.brand-uni-wrap .cat-tabs .stab.active {
    background: #d75a68;
    color: #fff;
    font-weight: bold;
}

.brand-uni-wrap .series-panel {
    display: none;
}

.brand-uni-wrap .series-panel.active {
    display: block;
}

.brand-uni-wrap .series-card {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #e3d9d5;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0;
    max-width: 560px;
    background: #fff;
}

.brand-uni-wrap .series-card .thumb {
    flex: 0 0 90px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.brand-uni-wrap .series-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-uni-wrap .series-card .info h4 {
    font-size: 14px;
    margin: 0 0 4px;
}

.brand-uni-wrap .series-card .info h4 a {
    color: #1a5fa8;
    text-decoration: none;
}

.brand-uni-wrap .series-card .info .price {
    color: #d75a68;
    font-weight: bold;
    font-size: 14px;
}

/* ガイド・FAQ */
.brand-uni-wrap .guide-item {
    padding: 2px 0 2px 14px;
    margin-bottom: 20px;
}

.brand-uni-wrap .guide-item h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 6px;
}

.brand-uni-wrap .guide-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.brand-uni-wrap dl.faq dt {
    font-size: 15px;
    font-weight: bold;
    margin-top: 20px;
    padding-left: 28px;
    position: relative;
}

.brand-uni-wrap dl.faq dt::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 2px;
    color: #fff;
    background: #d75a68;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
}

.brand-uni-wrap dl.faq dd {
    padding-left: 28px;
    color: #555;
    font-size: 14px;
    margin-top: 6px;
}

/* 他ブランドリンク */
.brand-uni-wrap .related {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.brand-uni-wrap .related a {
    display: block;
    border: 1px solid #d75a68;
    color: #d75a68;
    text-decoration: none;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    transition: 0.2s;
}

.brand-uni-wrap .related a:hover {
    background: #d75a68;
    color: #fff;
}

/* ボタン配置エリアの余白調整 */
.guide-item .btn-area {
    margin-top: 15px;
    text-align: center;
}

/* ボタン本体のスタイル */
.guide-item .btn {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    background-color: #d75a68;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    box-sizing: border-box;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

/* ホバー時の効果（PC） */
.guide-item .btn:hover {
    background-color: #c04956; /* 少し濃い赤 */
    color: #ffffff;
    opacity: 0.9;
}

/* 右端に矢印をつける場合（オプション） */
.guide-item .btn {
    position: relative;
    padding-right: 30px; /* 矢印分のスペース確保 */
}
.guide-item .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.block-product__list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 16px;
    padding: 8px 0 40px;
}

.block-product__list li {
    width: calc((100% - 16px) / 2);
    position: relative;
}

@media (min-width: 768px) {
    .block-product__list li {
        width: calc((100% - 48px) / 4);
    }
}

.brand-sub-name {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #d75a68; /* 赤/エンジ色の下線 */
    display: inline-block;
    padding-bottom: 2px;
    margin: 28px 0 12px;
    line-height: 1.5;
}

.title--subtext {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #d75a68; /* 赤/エンジ色の下線 */
    padding-bottom: 2px;
    margin: 28px 0 12px;
    line-height: 1.5;
}

.cat-tabs {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}

@media (max-width: 768px) {
    .cat-tabs,
    .brand-pilot-wrap .series-tabs {
        flex-direction: column;
    }
}

.brand-uni-wrap .related-brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    padding: 0;
    list-style: none;
}

.brand-uni-wrap .related-brand-item {
    width: calc((100% - 10px * 2) / 3);
    box-sizing: border-box;
}

.brand-uni-wrap .related-brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px 8px;
    border: 1px solid #d75a68;
    color: #d75a68;
    background-color: #fff;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.2s;
    box-sizing: border-box;
}

.brand-uni-wrap .related-brand-link:hover {
    background-color: #d75a68;
}

.brand-uni-wrap .related-brand-link:hover .related-brand-text {
    color: #fff;
}

.brand-uni-wrap .related-brand-link img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 6px;
    padding: 4px;
    background-color: #fff;
    border-radius: 4px;
}

.brand-uni-wrap .related-brand-text {
    font-size: 13px;
    color: #d75a68;
    text-align: center;
    line-height: 1.3;
    transition: 0.2s;
    font-weight: bold;
}

@media screen and (max-width: 576px) {
    .brand-uni-wrap .related-brand-item {
        width: calc((100% - 10px * 1) / 2);
    }
}