/* ------------------------------ Hero（オートバイ用） ------------------------------ */
.hero {
    width: 100%;
    aspect-ratio: 5 / 2;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-wrapper {
    width:100%;
    margin:0 auto;
    overflow:hidden;
}

.hero-logo {
    position: static;   /* ← これが最重要 */
    display: block;
    margin: 20px 0 20px 20px;  /* 中央寄せしたい場合 */
    height: 55px;
}

/* ヒーロー内テキスト */
.hero-text {
    position: absolute;
    bottom: 12%;
    left: 5%;
    z-index: 2;
    color: #FFFFFF; /* 白 */
}

/* タイトル（黄色） */
.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #FFD400; /* バイクの黄色 */
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* サブタイトル */
.hero-text p {
    font-size: 20px;
    color: #f0f0f0; /* 白系 */
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

/* ------------------------------ Standard Section（オートバイ用） ------------------------------ */
.standard-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: #111111; /* 黒背景 */
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    color: #f0f0f0; /* 白 */
}

.std-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 8px;
    border: 4px solid #FFD400; /* 黄色 */
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    transition: 0.25s;
}

.std-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.7);
}

.std-title {
    font-size: 30px;
    font-weight: bold;
    margin-top: 0;
    color: #FFD400; /* 黄色 */
    position: relative;
    padding-left: 16px;
}

/* 左の黄色ライン */
.std-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 26px;
    background: #FFD400;
    border-radius: 3px;
}

.std-content {
    margin-top: 15px;
    line-height: 1.8;
    color: #f0f0f0;
    font-size: 17px;
}

.std-text-block {
    flex: 1;
    min-width: 280px;
}

/* ------------------------------ Gallery Section（オートバイ用） ------------------------------ */
.gallery-section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
    background: #111111;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.gallery-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    color: #f0f0f0;
}
.gallery-caption {
    flex: 1;
    line-height: 1.7;
}

.gallery-img {
    width: 100%;
    max-width: 380px;
    border-radius: 8px;
    border: 4px solid #FFD400;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    transition: 0.25s;
}

.gallery-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.7);
}

.gallery-text {
    flex: 1;
    min-width: 260px;
}

.gallery-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFD400;
    position: relative;
    padding-left: 14px;
}

.gallery-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 22px;
    background: #FFD400;
    border-radius: 3px;
}

.gallery-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #f0f0f0;
}

/* ------------------------------ Table（オートバイ用） ------------------------------ */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px auto;
    background: #111111;
    color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

table th {
    background: #FFD400; /* 黄色 */
    color: #000;
    padding: 14px;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 3px solid #333333;
}

table td {
    padding: 14px;
    border-bottom: 1px solid #333333;
    font-size: 16px;
    color: #f0f0f0;
}

table tr:nth-child(even) {
    background: #1a1a1a;
}

table tr:hover {
    background: #222222;
    transition: 0.2s;
}

/* ------------------------------ CTA（オートバイ用） ------------------------------ */
.section.cta {
    text-align: center;
    padding: 60px 20px;
    background: #111111;
    color: #f0f0f0;
}

.section.cta h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD400;
}

.section.cta p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #f0f0f0;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #FFD400;
    color: #000;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.25s;
    box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}

.cta-button:hover {
    background: #e5c000;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.7);
}

/* ------------------------------ Section Title（H2） ------------------------------ */
.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #FFD400;
    margin: 40px auto 20px;
    position: relative;
    padding-left: 18px;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 28px;
    background: #FFD400;
    border-radius: 3px;
}

/* ------------------------------ Sub Title（H3） ------------------------------ */
.sub-title {
    font-size: 24px;
    font-weight: bold;
    color: #FFD400;
    margin: 25px 0 10px;
    border-left: 4px solid #FFD400;
    padding-left: 12px;
}

/* ------------------------------ Product Buy Button（オートバイ用） ------------------------------ */
.product-buy-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #FFD400;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    margin: 20px auto;
    cursor: pointer;
    transition: 0.25s;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.product-buy-btn:hover {
    background: #e5c000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.7);
}

/* ------------------------------ Product Layout ------------------------------ */
.product-section .product-image-wrapper,
.product-section .product-description,
.product-section .product-price,
.product-section .qty-wrapper,
.product-section .product-buy-btn {
    margin-bottom: 10px;
}

.product-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.product-left {
    flex: 0 0 40%;
}

.product-right {
    flex: 1;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ------------------------------ PCタブ（オートバイ用） ------------------------------ */
.re-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 20px auto;
    padding: 10px 0;
    border-bottom: 2px solid #333333;
}

.re-tab-btn {
    background: #1a1a1a;
    border: 1px solid #333333;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: all .2s ease;
    color: #f0f0f0;
}

.re-tab-btn:hover {
    background: #222222;
    border-color: #FFD400;
}

.re-tab-btn.active {
    background: #FFD400;
    color: #000;
    border-color: #FFD400;
    box-shadow: 0 2px 6px rgba(255, 212, 0, 0.4);
}

.re-tab-content {
    padding: 20px 0;
}

/* ------------------------------ スマホ対応（横スライドタブ） ------------------------------ */
@media (max-width: 768px) {
    .hero {
        height:220px;
    }
    .hero-logo {
        height: 45px;
        width: auto;
    }
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .re-tabs {
        overflow-x: auto;
        white-space: nowrap;
        display: block;
        padding: 0;
        margin: 0;
        -webkit-overflow-scrolling: touch;
    }

    .re-tab-btn {
        display: inline-block;
        margin-right: 8px;
        padding: 14px 22px;
        font-size: 17px;
        background: #1a1a1a;
        border: 1px solid #333333;
        border-radius: 8px;
        color: #f0f0f0;
    }

    .re-tab-btn:active {
        background: #222222;
        border-color: #FFD400;
    }

    .re-tab-btn.active {
        background: #FFD400;
        color: #000;
        border-color: #FFD400;
        box-shadow: 0 2px 6px rgba(255, 212, 0, 0.4);
    }
}

/* ------------------------------ FAQ Section ------------------------------ */

.faq-item {
    margin-bottom: 24px;        /* FAQ項目同士の余白 */
    padding-bottom: 16px;       /* 下に余白 */
    border-bottom: 1px solid #e5e5e5; /* 薄い区切り線で視線誘導 */
}

.faq-question {
    font-weight: bold;
    margin-bottom: 8px;         /* Q と A の間に余白 */
    font-size: 1.05rem;
}

.faq-answer {
    margin-left: 12px;          /* A を少し右にずらすと読みやすい */
    line-height: 1.7;           /* 行間を広げて読みやすく */
    font-size: 1rem;
}

body.rtl {
    direction: rtl;
    text-align: right;
}
