@charset "utf-8";
/*------------------------------------------------
* Version       : 1.2
* Date          : 2026.3.15
* サイト名      : 原付バイクセンター (bike50cc.com)
-------------------------------------------------*/

/* ===== 全体設定 ===== */
body {
    background-color: #f5f5f5;
}


/* ===== トップページ：キャッチコピーエリア ===== */
.top-catch-area {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    padding: 32px 0 24px;
    color: #fff;
}

.top-catch-sub {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    opacity: 0.9;
    margin-bottom: 4px;
}

.top-catch-main {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.top-catch-desc {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .top-catch-area {
        padding: 40px 0 30px;
    }
    .top-catch-main {
        font-size: 2.2rem;
    }
    .top-catch-desc {
        font-size: 0.95rem;
    }
}


/* ===== トップページ：メインサービスボタン ===== */
.top-service-catch {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B00;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}

/* マスコット走行アニメーション（スピードは --mascot-speed で調整） */
.top-mascot-track {
    --mascot-speed: 10s;
    overflow: hidden;
    margin-top: 32px;
    height: 120px;
    position: relative;
}

.top-mascot-img {
    position: absolute;
    height: 120px;
    width: auto;
    right: 0;
    opacity: 0;
    will-change: transform, opacity;
    animation: mascot-run var(--mascot-speed) linear infinite;
}

@keyframes mascot-run {
    0%   { opacity: 1; transform: translateX(100%); }
    100% { opacity: 1; transform: translateX(-100vw); }
}

@media (min-width: 768px) {
    .top-mascot-track {
        height: 150px;
        margin-top: 40px;
    }
    .top-mascot-img {
        height: 150px;
    }
}

.top-service-area {
    padding: 56px 0 1px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ボタン共通 */
.top-service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 8px 22px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
    .top-service-btn {
        aspect-ratio: auto;
    }
}

.top-service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* アイコン */
.top-service-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 8px;
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.2s ease;
}

.top-service-btn:hover .top-service-icon {
    transform: scale(1.1);
}

/* ラベル */
.top-service-label {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}

/* 説明テキスト */
.top-service-desc {
    font-size: 0.75rem;
    margin-bottom: 0;
    opacity: 0.65;
    line-height: 130%;
}

/* --- 各サービスの個別カラー --- */
/* 買う：ブルー */
.service-buy { border-color: #e8f0fe; }
.service-buy .top-service-icon { background: linear-gradient(135deg, #4285F4, #1967D2); }
.service-buy .top-service-label { color: #1967D2; }
.service-buy:hover { background-color: #e8f0fe; border-color: #4285F4; }

/* 売る：グリーン */
.service-sell { border-color: #e6f4ea; }
.service-sell .top-service-icon { background: linear-gradient(135deg, #34A853, #1E8E3E); }
.service-sell .top-service-label { color: #1E8E3E; }
.service-sell:hover { background-color: #e6f4ea; border-color: #34A853; }

/* 修理：マゼンタ */
.service-repair { border-color: #fce4ec; }
.service-repair .top-service-icon { background: linear-gradient(135deg, #E91E90, #C2185B); }
.service-repair .top-service-label { color: #C2185B; }
.service-repair:hover { background-color: #fce4ec; border-color: #E91E90; }

/* レンタル：パープル */
.service-rental { border-color: #f3e8fd; }
.service-rental .top-service-icon { background: linear-gradient(135deg, #9C27B0, #7B1FA2); }
.service-rental .top-service-label { color: #7B1FA2; }
.service-rental:hover { background-color: #f3e8fd; border-color: #9C27B0; }

/* カスタム：レッド／コーラル */
.service-custom { border-color: #fce8e6; }
.service-custom .top-service-icon { background: linear-gradient(135deg, #EA4335, #C5221F); }
.service-custom .top-service-label { color: #C5221F; }
.service-custom:hover { background-color: #fce8e6; border-color: #EA4335; }

/* 保険：ティール */
.service-insurance { border-color: #e0f7fa; }
.service-insurance .top-service-icon { background: linear-gradient(135deg, #00ACC1, #00838F); }
.service-insurance .top-service-label { color: #00838F; }
.service-insurance:hover { background-color: #e0f7fa; border-color: #00ACC1; }

/* PC表示時：グリッドは横幅いっぱい、ボタン枠だけコンパクトに */
@media (min-width: 768px) {
    .top-service-btn {
        padding: 14px 8px 10px;
    }
    .top-service-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    .top-service-label {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .top-service-area {
        padding: 50px 0 1px;
    }
    .top-service-btn {
        padding: 16px 10px 12px;
    }
    .top-service-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }
    .top-service-label {
        font-size: 1.05rem;
    }
}


/* ===== トップページ：お知らせバー ===== */
.top-news-bar {
    padding: 14px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.top-news-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-news-badge {
    display: inline-block;
    background-color: #EA4335;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.top-news-text {
    font-size: 0.9rem;
    margin-bottom: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.top-news-text a {
    color: #333;
}

.top-news-text a:hover {
    color: #FF6B00;
}


/* ===== トップページ：セクションタイトル ===== */
.top-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    padding-left: 14px;
    border-left: 4px solid #FF6B00;
}

/* トップ：営業エリア（マップ） */
.top-sales-area {
    background-color: #f8f9fa;
}

.top-sales-area .lead {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .top-sales-area .lead {
        font-size: 1.15rem;
    }
}

.top-sales-area-map {
    max-width: 720px;
    height: auto;
}


/* ===== トップページ：サービス詳細カード ===== */
.top-detail-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: box-shadow 0.2s ease;
}

.top-detail-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.top-detail-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
}

.top-detail-header i {
    font-size: 1.5rem;
}

.top-detail-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* 各カードのヘッダー色 */
.card-buy .top-detail-header { border-bottom-color: #4285F4; }
.card-buy .top-detail-header i { color: #4285F4; }
.card-sell .top-detail-header { border-bottom-color: #34A853; }
.card-sell .top-detail-header i { color: #34A853; }
.card-repair .top-detail-header { border-bottom-color: #FF8C00; }
.card-repair .top-detail-header i { color: #FF8C00; }
.card-rental .top-detail-header { border-bottom-color: #9C27B0; }
.card-rental .top-detail-header i { color: #9C27B0; }
.card-custom .top-detail-header { border-bottom-color: #EA4335; }
.card-custom .top-detail-header i { color: #EA4335; }
.card-insurance .top-detail-header { border-bottom-color: #00ACC1; }
.card-insurance .top-detail-header i { color: #00ACC1; }

/* リスト */
.top-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.top-detail-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f2f2f2;
}

.top-detail-list li:last-child {
    border-bottom: none;
}

.top-detail-list li a {
    color: #333;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.top-detail-list li a::before {
    content: "\f285";
    font-family: 'bootstrap-icons';
    font-size: 0.7rem;
    margin-right: 8px;
    color: #aaa;
}

.top-detail-list li a:hover {
    color: #FF6B00;
}

.top-detail-list li a:hover::before {
    color: #FF6B00;
}

/* もっと見るリンク */
.top-detail-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: #FF6B00;
    font-weight: 600;
}

.top-detail-more:hover {
    color: #E65100;
}


/* ===== トップページ：特集・トピックス ===== */
.top-topic-card {
    display: block;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    text-decoration: none;
    transition: all 0.2s ease;
    height: 100%;
}

.top-topic-card:hover {
    border: 2px solid #b3c0cc;
}

.top-topic-img {
    height: 180px;
    overflow: hidden;
    background-color: #e9ecef;
}

.top-topic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.top-topic-card:hover .top-topic-img img {
    transform: scale(1.05);
}

/* 画像がない場合のプレースホルダー */
.top-topic-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.top-topic-img-placeholder::after {
    content: "\F45E";
    font-family: 'bootstrap-icons';
    font-size: 3rem;
    color: #bbb;
}

.top-topic-body {
    padding-top: 16px;
	padding-bottom: 2px;
	padding-left: 16px;
	padding-right: 16px;
}

.top-topic-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    line-height: 150%;
}

/* タグ */
.top-topic-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0px 6px;
    border-radius: 3px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.tag-top {
    background-color: #E3F2FD;
    color: #1565C0;
}


/* ===== トップページ：店舗情報 ===== */
.top-shop-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #e9ecef;
}

.top-shop-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.top-shop-card .table th {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 0;
    vertical-align: top;
}

.top-shop-card .table td {
    font-size: 0.95rem;
    padding: 6px 0;
}


/* ===== 下層ページ共通：ページヘッダー ===== */
.page-header-area {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    padding: 32px 0 28px;
    color: #fff;
}

.page-header-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.page-header-title i {
    margin-right: 6px;
    font-size: 1.4rem;
}

.page-header-desc {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .page-header-area {
        padding: 40px 0 34px;
    }
    .page-header-title {
        font-size: 1.8rem;
    }
}


/* ===== 下層ページ共通パーツ ===== */
/* セクションタイトル */
.sub-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    padding-left: 14px;
    border-left: 4px solid #FF6B00;
}

.sub-section-title i {
    margin-right: 4px;
}

/* 特徴ボックス */
.sub-feature-box {
    background-color: #fff7ed;
    border-left: 4px solid #FF6B00;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
}

.sub-feature-box h6 {
    font-weight: 700;
    margin-bottom: 12px;
}

.sub-feature-box ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.sub-feature-box ul li {
    padding: 4px 0;
    font-size: 0.95rem;
}

/* ポイントカード */
.sub-point-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 24px;
    height: 100%;
    transition: box-shadow 0.2s ease;
}

.sub-point-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.sub-point-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.sub-point-card h5 i {
    margin-right: 6px;
}

.sub-point-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ご購入の流れ */
.sub-flow {
    position: relative;
}

.sub-flow-step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
}

.sub-flow-step:last-child {
    margin-bottom: 0;
}

.sub-flow-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-flow-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    padding-top: 8px;
}

.sub-flow-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #555;
}

/* 補足ボックス */
.sub-notice-box {
    background-color: #fff7ed;
    border-radius: 8px;
    padding: 20px 24px;
}

.sub-notice-box p {
    font-size: 0.95rem;
}

/* 誘導バナー（目立つCTA） */
.sub-banner {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    border-radius: 12px;
    padding: 36px 32px;
    text-align: center;
    color: #fff;
}

.sub-banner h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sub-banner p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.sub-banner .sub-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    color: #FF6B00;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sub-banner .sub-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.sub-banner .sub-banner-phone {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* 料金テーブル */
.sub-price-table th {
    background-color: #fff7ed;
    font-weight: 700;
    white-space: nowrap;
}

/* お問い合わせページ */
.contact-block {
    padding: 32px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.contact-phone {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-phone a {
    color: #FF6B00;
    text-decoration: none;
}

.contact-phone a:hover {
    color: #E65100;
}

.contact-email {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-email a {
    color: #FF6B00;
    text-decoration: none;
}

.contact-email a:hover {
    color: #E65100;
}

/* CTAエリア */
.sub-cta-area {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
}

/* ===== 店舗案内ページ ===== */
.shop-info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.shop-info-card .table th {
    padding: 6px 0;
    white-space: nowrap;
    vertical-align: top;
}

.shop-info-card .table td {
    padding: 6px 0;
}
