@charset "utf-8";

/* ==========================================================================
   Service Page Styles
   ========================================================================== */

/* 背景画像付きのラインナップセクション */
.service-lineup {
    background: url(../img/bg.jpg) no-repeat center top / cover;
    padding: 80px 0;
    color: #fff;
    position: relative;
}

/* 共通の見出し調整 (背景が暗い場合用) */
.service-lineup .heading__jp.fw {
    color: #fff;
}

/* サマリーナビゲーション (TOPページ踏襲) */
.top-service-coating__body {
    margin-bottom: 100px;
}

.top-service-coating__group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-service-coating__item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    width: calc(20% - 16px);
    min-width: 150px;
    transition: transform 0.3s ease;
}

.top-service-coating__item:hover {
    transform: translateY(-5px);
}

.top-service-coating__link {
    display: block;
    text-decoration: none;
}

.top-service-coating__title img,
.top-service-coating__image img {
    width: 100%;
    height: auto;
    display: block;
}

.top-service-coating__title {
    margin-bottom: 10px;
}

/* 詳細アイテムブロック */
.lineup-item {
    margin-bottom: 120px;
    margin-left: auto;
    margin-right: auto;
}

.lineup-item__visual {
    display: flex;
    align-items: stretch;
    margin-bottom: 40px;
    border-radius: 4px;
    overflow: hidden;
}

.lineup-item__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-item__logo img {
    max-width: 100%;
    height: auto;
}

.lineup-item__main-img {
    flex: 1;
    position: relative;
}

.lineup-item__main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lineup-item__desc {
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
}

.lineup-item__action {
    text-align: center;
}

/* ボタン共通 */
.link-button--white {
    background: #fff;
    color: #000;
    padding: 12px 60px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s ease;
}

.link-button--white:hover {
    background: #f0f0f0;
}

.link-button--white::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url(../../assets/img/base/icon-arrow-right_blk.svg) no-repeat center / contain;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #000;
    padding: 3px;
}

/* 赤ボタン (既存定義があれば調整) */
.page-action {
    text-align: center;
    margin-top: 60px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 991px) {
    .top-service-coating__item {
        width: calc(33.33% - 14px);
    }
}

@media screen and (max-width: 767px) {
    .lineup-item__visual {
        flex-direction: column;
    }
    .lineup-item__logo {
        padding: 30px;
    }
    .top-service-coating__item {
        width: calc(50% - 10px);
    }
    .lineup-item__desc {
        font-size: 1rem;
    }
}

.bgn{
    background: none !important;
}
.fw{
    color: #fff;
}

/* その他カーサービス 矢印アイコン */
.top-service-other__item {
    position: relative;
}

.top-service-other__arrow {
    position: absolute;
    bottom: 40px;
    right: 20px;
    width: 32px;
    height: 32px;
}