/* カーセンサー風デザイン - 清潔でプロフェッショナル */

/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* カラーパレット - 赤/白/黒 */
:root {
    --primary-red: #dc0000;
    --primary-red-dark: #b30000;
    --secondary-red: #ff0000;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-gray: #f5f5f5;
    --bg-light: #fafafa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.18);
}

body {
    font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* ヘッダー */
.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1 i {
    font-size: 1.8rem;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-info i {
    color: var(--primary-red);
    font-size: 0.9rem;
}

.nav {
    background-color: var(--primary-red);
    border-top: 1px solid var(--border-color);
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    display: block;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.nav-menu li:first-child a {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu li a:hover {
    background-color: var(--primary-red-dark);
    color: white;
}

/* コンテナ */
.container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* スクロール時のオフセット - ヘッダー分 */
section {
    scroll-margin-top: 150px;
}

/* ヒーローセクション */
.hero {
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-gray);
}

.hero img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* 料金検索セクション */
.rate-search {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-top: 3px solid var(--primary-red);
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    width: 100%;
}

.rate-search h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.rate-search h2 i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    background-color: var(--bg-white);
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.1);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    grid-column: 1 / -1;
    justify-self: center;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-red-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary i {
    font-size: 1rem;
}

/* ローディング */
.loading {
    text-align: center;
    padding: 2rem;
    display: none;
}

.loading.show {
    display: block;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--bg-gray);
    border-top: 4px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 検索結果 */
.search-result {
    margin-top: 2rem;
    display: none;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.search-result.show {
    display: block;
}

.result-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: 4px;
    border-left: 4px solid var(--primary-red);
}

.result-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.result-header p {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 600;
}

.rate-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.rate-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.2s ease;
}

.rate-item:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.rate-type {
    color: var(--primary-red);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.rate-type i {
    font-size: 1.2rem;
}

.rate-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.rate-note {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* サービス特徴 */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 3rem 2rem;
    width: 100%;
    background: var(--bg-gray);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-red);
}

.feature-icon i {
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Q&Aセクション */
.qa-section {
    background: var(--bg-white);
    padding: 3rem 2rem;
    margin: 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

.qa-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-red);
}

.qa-item {
    background: var(--bg-light);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.qa-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.question {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.question::before {
    content: "Q";
    background: var(--primary-red);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.answer {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    padding-left: 2rem;
}

.answer::before {
    content: "A";
    background: var(--secondary-blue);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 0.5rem;
    margin-left: -2rem;
}

/* お問い合わせセクション */
.contact-section {
    background: var(--bg-gray);
    padding: 3rem 2rem;
    text-align: center;
    margin: 0;
    width: 100%;
    border-top: 1px solid var(--border-color);
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.phone-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.phone-number i {
    font-size: 2rem;
}

.contact-section p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.contact-section a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* フッター */
.footer {
    background-color: var(--text-dark);
    color: #cccccc;
    padding: 2.5rem 0 1.5rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem 2rem;
    border-bottom: 1px solid #444444;
}

.footer-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.footer-content p {
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    padding: 0.4rem 0;
    color: #aaaaaa;
    font-size: 0.9rem;
}

.footer-links li:hover {
    color: var(--primary-red);
}

.copyright {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    color: #999999;
    font-size: 0.85rem;
}

/* エラーメッセージ */
#errorMessage {
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem auto;
    text-align: center;
    font-weight: 600;
    border: 1px solid #ffeaa7;
    max-width: 1200px;
}

#errorMessage i {
    margin-right: 0.5rem;
}

/* モバイルメニュートグルボタン */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-red);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--primary-red);
    color: white;
}

.mobile-menu-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-contact {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.mobile-contact-item i {
    font-size: 1.2rem;
    color: var(--primary-red);
    width: 24px;
    text-align: center;
}

.mobile-contact-item div {
    flex: 1;
}

.mobile-contact-item strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 0.2rem;
}

.mobile-contact-item a,
.mobile-contact-item span {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.mobile-contact-item a:hover {
    color: var(--primary-red);
}

.mobile-nav {
    padding: 1rem 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.mobile-nav a:hover {
    background-color: var(--bg-gray);
    color: var(--primary-red);
}

.mobile-nav i {
    font-size: 1.1rem;
    color: var(--primary-red);
    width: 20px;
}

/* ポップアップスタイル - モダンなデザイン */
.popup {
    position: fixed;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

/* モーダルポップアップ */
.popup-modal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup-modal .popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.popup-modal .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup.show .popup-modal .popup-content {
    transform: translate(-50%, -50%) scale(1);
}

.popup-modal .popup-header {
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
    position: relative;
}

.popup-modal .popup-header::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20c997, #17a2b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-modal .popup-header::after {
    content: '✓';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.popup-modal .popup-header h3 {
    margin: 0;
    margin-top: 3rem;
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.popup-modal .popup-body {
    padding: 0 2rem 1rem 2rem;
}

.popup-modal .popup-body .info-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.popup-modal .popup-body .info-box .subtitle {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.popup-modal .popup-body .info-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.popup-modal .popup-body .info-box li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #495057;
    line-height: 1.5;
}

.popup-modal .popup-body .info-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: #20c997;
    border-radius: 50%;
}

.popup-modal .popup-body .info-box .highlight {
    color: #20c997;
    font-weight: 600;
}

.popup-modal .popup-footer {
    padding: 0 2rem 2rem 2rem;
    display: flex;
    gap: 0.75rem;
}

.popup-modal .popup-footer .btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-modal .popup-footer .btn-outline {
    background: white;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.popup-modal .popup-footer .btn-outline:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
}

.popup-modal .popup-footer .btn-primary {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    color: white;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.popup-modal .popup-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 201, 151, 0.4);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #495057;
    transform: scale(1.1);
}

/* トーストポップアップ */
.popup-toast {
    top: 20px;
    right: 20px;
    max-width: 400px;
}

.popup-toast .popup-content {
    background: #333;
    color: white;
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.popup-toast .popup-body {
    flex: 1;
    padding: 0;
}

.popup-toast .popup-body strong {
    display: block;
    margin-bottom: 0.5rem;
}

.popup-toast .popup-close {
    color: white;
    flex-shrink: 0;
}

/* バナーポップアップ */
.popup-banner {
    top: 0;
    left: 0;
    width: 100%;
    background: #007bff;
    color: white;
}

.popup-banner .popup-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.popup-banner .popup-body {
    flex: 1;
    padding: 0;
}

.popup-banner .popup-body strong {
    display: block;
    margin-bottom: 0.5rem;
}

.popup-banner .popup-close {
    color: white;
    margin-left: 1rem;
}

/* 自転車輸送サービスセクション */
.bike-service-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-intro {
    margin: 0 auto 3rem auto;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-feature-item h3 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-feature-item h3 i {
    font-size: 1.1rem;
}

.service-feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.service-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* バイク輸送サービス詳細セクション */
.bike-detail-section {
    padding: 4rem 2rem;
    background: white;
}

.bike-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.bike-highlight {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-red);
    margin-top: 2rem;
}

.bike-highlight h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bike-highlight h3 i {
    font-size: 1.2rem;
}

.bike-highlight p {
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* フッター会社情報 */
.footer-links li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-links strong {
    color: var(--primary-red);
    font-weight: 600;
}

/* 会社案内ページ */
.company-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.company-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.company-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.company-intro h2 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.company-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.company-info-card,
.bank-info-card,
.terms-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.company-info-card h3,
.bank-info-card h3,
.terms-card h3 {
    background: var(--primary-red);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-grid {
    padding: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    min-width: 180px;
    font-weight: 600;
    color: #5f6368;
    font-size: 0.95rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-value {
    color: #202124;
    font-size: 0.95rem;
    flex: 1;
    line-height: 1.5;
}

.terms-content {
    padding: 2rem;
    line-height: 1.7;
    color: #333;
}

.terms-content > p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.terms-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.terms-section h4 {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.terms-section p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.service-summary {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-red);
    margin-top: 2rem;
}

.service-summary h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-summary p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.service-summary p:last-child {
    margin-bottom: 0;
}

/* ご利用方法ページ */
.usage-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.usage-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.usage-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.usage-card.warning-card {
    border-left: 5px solid #ffc107;
}

.usage-card h2 {
    background: var(--primary-red);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.usage-card.warning-card h2 {
    background: #ffc107;
    color: #333;
}

.usage-content {
    padding: 2rem;
}

.usage-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333;
}

.notice-box {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.notice-box p {
    margin: 0;
    color: #1976d2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.warning-box p {
    margin: 0;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ステップリスト */
.step-list {
    margin: 1rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.step-number {
    background: var(--primary-red);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content p {
    margin-bottom: 0.5rem;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.payment-option {
    background: white;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #495057;
}

.insurance-notice {
    margin-top: 1rem;
}

.insurance-notice p {
    font-size: 0.9rem;
    color: #666;
}

/* フローリスト */
.flow-list {
    margin: 1rem 0;
}

.flow-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #17a2b8;
}

.flow-number {
    background: #17a2b8;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.flow-content {
    flex: 1;
}

.flow-content h4 {
    color: #17a2b8;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.flow-content ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.flow-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* 注意事項セクション */
.notice-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.notice-section h3 {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.notice-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.example-box {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
}

.example-box p {
    margin: 0;
    font-family: monospace;
    color: #495057;
}

/* 支払い方法 */
.payment-methods {
    margin: 1rem 0;
}

.payment-method {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.payment-method h4 {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.payment-method p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* 車両リスト */
.vehicle-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.vehicle-category {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
}

.vehicle-category h4 {
    color: var(--primary-red);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.vehicle-category p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* サービス紹介 */
.service-intro {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.service-intro h2 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.service-intro p:last-child {
    margin-bottom: 0;
}

/* 料金検索ページ */
.search-page-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.search-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.search-page-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.search-page-content {
    max-width: 1000px;
    margin: 0 auto;
}

.search-form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.search-form-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
}

.search-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.search-section.full-width {
    grid-column: 1 / -1;
}

.section-title {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    font-size: 2rem;
    color: var(--primary-red);
}

.search-button-wrapper {
    text-align: center;
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    grid-column: 1 / -1;
}

.btn-search {
    background: linear-gradient(135deg, var(--primary-red), #c41e3a);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    width: auto;
    min-width: 200px;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* 車両追加情報カード */
.additional-info-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.extended-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    font-weight: 600;
    font-size: 0.95rem;
}

.extended-message i {
    margin-right: 0.5rem;
}

.info-note {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.additional-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item:hover {
    border-color: var(--primary-red);
    background: #fff;
}

.option-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    cursor: pointer;
}

.option-label {
    flex: 1;
    font-size: 0.95rem;
    color: #333;
}

.option-price {
    font-weight: 600;
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* 検索結果カード */
.search-result-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
    display: none;
}

.search-result-card.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.result-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
}

.result-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.additional-cost-note {
    color: var(--primary-red);
    font-weight: 600;
    margin-top: 0.5rem;
}

.rate-table-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.rate-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rate-type {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.rate-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.rate-breakdown {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.rate-note {
    font-size: 0.85rem;
    color: #666;
}

/* 車両タイプセクション */
.vehicle-types-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
}

.vehicle-types-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.vehicle-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.vehicle-type-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.vehicle-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.type-badge {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.type-desc {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.type-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

/* 特殊車両の注意事項 */
.special-vehicles-notice {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.special-vehicles-notice h3 {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.special-vehicles-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.special-vehicles-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
    color: #333;
}

.special-vehicles-list li:last-child {
    border-bottom: none;
}

.special-vehicles-list strong {
    color: var(--primary-red);
}

.error-message {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    color: #856404;
    text-align: center;
    display: none;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .search-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-top {
        padding: 1rem;
    }
    
    .contact-info {
        display: none;
    }
    
    .nav {
        display: none;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .rate-table {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .qa-section {
        padding: 2rem 1rem;
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .popup-modal .popup-content {
        max-width: 350px;
        margin: 1rem;
    }
    
    .popup-modal .popup-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .popup-modal .popup-body {
        padding: 0 1.5rem 1rem 1.5rem;
    }
    
    .popup-modal .popup-footer {
        padding: 0 1.5rem 1.5rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .popup-modal .popup-footer .btn {
        width: 100%;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-feature-item {
        padding: 1.5rem;
    }
    
    .bike-service-section,
    .bike-detail-section {
        padding: 2rem 1rem;
    }
    
    .service-intro {
        margin-bottom: 2rem;
    }
    
    .bike-highlight {
        padding: 1.5rem;
    }
    
    .company-section {
        padding: 2rem 1rem;
    }
    
    .company-section h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .company-intro {
        padding: 2rem 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-label {
        min-width: auto;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .info-grid {
        padding: 1.5rem;
    }
    
    .terms-content {
        padding: 1.5rem;
    }
    
    .terms-section {
        padding: 1rem;
    }
    
    .service-summary {
        padding: 2rem 1.5rem;
    }
    
    .usage-section {
        padding: 2rem 1rem;
    }
    
    .usage-section h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .usage-content {
        padding: 1.5rem;
    }
    
    .step-item,
    .flow-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number,
    .flow-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .payment-options {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .payment-option {
        text-align: center;
    }
    
    .vehicle-list {
        grid-template-columns: 1fr;
    }
    
    .notice-section {
        padding: 1rem;
    }
    
    .service-intro {
        padding: 2rem 1.5rem;
    }
    
    .search-page-section {
        padding: 2rem 0.5rem;
    }
    
    .search-page-content {
        padding: 0 0.5rem;
    }
    
    .search-page-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-form-card {
        padding: 1rem;
    }
    
    .search-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-arrow {
        padding-top: 0;
        transform: rotate(90deg);
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .search-section {
        padding: 0.75rem;
        margin: 0;
    }
    
    .section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group select {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .search-form-card {
        margin: 0 0.5rem 2rem 0.5rem;
        overflow: hidden;
    }
    
    .btn-search {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .search-button-wrapper {
        padding-top: 0.5rem;
    }
    
    .additional-info-card {
        padding: 1.5rem;
    }
    
    .option-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .option-item input[type="checkbox"] {
        margin-right: 0;
    }
    
    .option-price {
        align-self: flex-end;
    }
    
    .rate-table-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-types-grid {
        grid-template-columns: 1fr;
    }
    
    .special-vehicles-notice {
        padding: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .phone-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav-menu li a {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .rate-search h2 {
        font-size: 1.5rem;
    }
    
    .qa-section h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   ORDER PAGE STYLES
   ======================================== */

.order-main {
    background-color: var(--bg-light);
    padding: 4rem 0;
    min-height: 100vh;
}

.order-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.order-header {
    text-align: center;
    margin-bottom: 3rem;
}

.order-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.order-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.required-note {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1rem;
}

.required-mark {
    color: var(--primary-red);
    font-weight: 700;
}

/* Form Sections */
.order-form {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-section {
    padding: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-red);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    font-size: 1.3rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group label.required::after {
    content: " ※";
    color: var(--primary-red);
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Input with Unit */
.input-with-unit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-with-unit input {
    flex: 1;
}

.input-with-unit .unit {
    font-weight: 600;
    color: var(--text-gray);
}

/* Checkbox and Radio Styles */
.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.checkbox-label:hover,
.radio-label:hover {
    background-color: #f8f9fa;
    border-color: var(--primary-red);
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span,
.radio-label span {
    flex: 1;
}

.option-price {
    font-weight: 700;
    color: var(--primary-red);
    margin-left: auto;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.checkbox-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.agreement-checkbox {
    background-color: #fff3cd;
    border-color: #ffc107;
    font-weight: 600;
}

/* Date Options */
.date-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.date-options .checkbox-label {
    margin-bottom: 0;
}

/* Bank Info */
.bank-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.info-box {
    margin-bottom: 1.5rem;
}

.info-box:last-child {
    margin-bottom: 0;
}

.info-box h4 {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.bank-table {
    width: 100%;
    border-collapse: collapse;
}

.bank-table th,
.bank-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.bank-table th {
    font-weight: 600;
    color: var(--text-gray);
    width: 30%;
}

.bank-table td {
    color: var(--text-dark);
    font-weight: 500;
}

/* Terms Container */
.terms-container {
    margin-bottom: 1.5rem;
}

.terms-scroll {
    max-height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.terms-scroll h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.terms-scroll h4 {
    font-size: 1.05rem;
    color: var(--primary-red);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-scroll p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.terms-scroll ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.terms-scroll li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #856404;
}

/* Form Actions */
.form-actions {
    padding: 2.5rem;
    background-color: #f8f9fa;
    text-align: center;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-red), #c41e3a);
    color: white;
    padding: 1.25rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i {
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .order-main {
        padding: 2rem 0;
    }
    
    .order-container {
        padding: 0 1rem;
    }
    
    .order-header h1 {
        font-size: 1.8rem;
    }
    
    .order-header p {
        font-size: 1rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-row {
        grid-template-columns: 1fr;
    }
    
    .btn-submit {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .terms-scroll {
        max-height: 300px;
        padding: 1rem;
    }
    
    .bank-table th,
    .bank-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .form-actions {
        padding: 1.5rem;
    }
}

/* ========================================
   SEARCH PAGE ADDITIONAL STYLES
   ======================================== */

/* 車両タイプ分類情報 */
.vehicle-classification-info {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-top: 2rem;
}

.vehicle-classification-info h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vehicle-classification-info h3 i {
    font-size: 1.3rem;
}

.classification-section {
    margin-bottom: 2rem;
}

.classification-section h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.classification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.classification-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.classification-list strong {
    color: var(--text-dark);
    font-weight: 600;
    flex: 1;
}

.type-badge {
    background: linear-gradient(135deg, var(--primary-red), #c41e3a);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.classification-notes {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.classification-notes p {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.classification-notes p:last-child {
    margin-bottom: 0;
}

.classification-notes i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

/* 検索結果アクション */
.result-actions {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.btn-apply {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-apply:active {
    transform: translateY(0);
}

.btn-apply i {
    font-size: 1rem;
}

/* 検索データ通知 */
.search-data-notice {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: 1px solid #2196f3;
    border-left: 4px solid #2196f3;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #0d47a1;
}

.search-data-notice i {
    color: #2196f3;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.search-data-notice strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.search-data-notice p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Mobile Responsive for Search Page */
@media (max-width: 768px) {
    .vehicle-classification-info {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .vehicle-classification-info h3 {
        font-size: 1.3rem;
    }
    
    .classification-section h4 {
        font-size: 1.1rem;
    }
    
    .classification-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .type-badge {
        align-self: flex-start;
    }
    
    .classification-notes {
        padding: 1rem;
    }
    
    .btn-apply {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .search-data-notice {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   ADMIN ORDERS TABLE STYLES
   ======================================== */

/* Location info in vehicle info */
.location-info {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.location-info i {
    margin-right: 0.25rem;
    color: #007bff;
}

/* ========================================
   ADMIN ORDERS TABLE STYLES
   ======================================== */

.customer-info strong {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.customer-info small {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.route-info small {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.3;
}

.vehicle-info {
    text-align: center;
}

.vehicle-info .badge {
    margin-bottom: 0.25rem;
}

.vehicle-info small {
    color: var(--text-gray);
    font-size: 0.75rem;
    line-height: 1.2;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .customer-info,
    .route-info,
    .vehicle-info {
        text-align: left;
    }
    
    .customer-info small,
    .route-info small,
    .vehicle-info small {
        font-size: 0.7rem;
    }
}