/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-primary {
    background-color: #2563eb; /* 初期は青 */
    color: white;              /* 初期は白文字 */
    border: 2px solid #2563eb; /* 枠線を青に */
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #fff;    /* ホバー時は白背景 */
    color: #2563eb;            /* ホバー時は青文字 */
    border: 2px solid #2563eb; /* 枠線は青のまま */
    transform: translateY(-2px); /* 動きは残す */
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: bold;
}

.logo i {
    font-size: 32px;
    color: #2563eb;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.header .phone-number {
    background-color: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 6px;

    /* ボタンと同じサイズ感に合わせる */
    font-size: 1rem;          /* お問い合わせボタンと同じ文字サイズ */
    font-weight: 600;
    line-height: 1.5;
    padding: 10px 20px;       /* 上下左右の余白をbtnと同じくらいに */
    
    display: inline-flex;
    align-items: center;
    gap: 8px;                 /* アイコンと文字の間 */
    text-decoration: none;
    cursor: pointer;
}

.header .phone-number i {
    font-size: 1rem;          /* アイコンの大きさも揃える */
    color: #2563eb;
}

/* ホバー時は反転 */
.header .phone-number:hover {
    background-color: #2563eb;
    color: #fff;
}
.header .phone-number:hover i {
    color: #fff;
}

/* LINEで相談ボタンにふわっと浮くアニメーションを追加 */
.header .phone-number {
    transition: all 0.3s ease;   /* アニメーション効果を効かせる */
}

.header .phone-number:hover {
    background-color: #2563eb;
    color: #fff;
    transform: translateY(-2px); /* 少し上に動く */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* 影も付けると一体感UP */
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 1) 50%, rgba(168, 85, 247, 0.1) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr; /* 左テキスト:右画像 */
    gap: 8px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background-color: #f3f4f6;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-primary {
    color: #2563eb;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Hero内 LINEで相談ボタンの動きを追加 */
.hero .btn-outline,
.hero .btn-secondary {
    transition: all 0.3s ease;  /* 動きをつける */
}

.hero .btn-outline:hover,
.hero .btn-secondary:hover {
    transform: translateY(-2px); /* ちょっと浮く */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* 影 */
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-top-image {
    max-width: 100%;      /* 枠からはみ出さない */
    max-height: 700px;    /* 高さを制限（お好みで調整） */
    height: auto;         /* 縦横比を維持 */
    object-fit: contain;  /* 全体を縮小して収める */
    display: block;
    margin: 0 auto;       /* 中央寄せ */
    /* border-radius: 12px;  角丸にしたい場合 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* ほんのり影 */
}

.hero-truck {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-truck i {
    font-size: 128px;
    color: rgba(37, 99, 235, 0.6);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.slideshow-dots {
  text-align: center;
  margin-top: 12px;
}

.slideshow-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slideshow-dots span.active {
  background-color: #2563eb; /* 青でアクティブを強調 */
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: rgba(249, 250, 251, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 32px;
    color: #2563eb;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.feature-card p {
    color: #6b7280;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.service-card li i {
    color: #2563eb;
    font-size: 16px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: rgba(249, 250, 251, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.price-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
}

.price-card.popular {
    border-color: #2563eb;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.price-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 8px;
}

.price-description {
    color: #6b7280;
    margin-bottom: 24px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.price-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.price-card li i {
    color: #2563eb;
    font-size: 16px;
}

.price-note {
    font-size: 12px;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.area-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.area-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-card h3 i {
    color: #2563eb;
}

.cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.cities span {
    font-size: 14px;
    color: #6b7280;
}

.area-note {
    font-size: 12px;
    color: #6b7280;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: rgba(249, 250, 251, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    position: relative;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
}

.customer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.customer-photo img {
    width: 80px;  /* 顔写真のサイズ */
    height: 80px;
    border-radius: 50%; /* 丸くする */
    object-fit: cover; /* はみ出さないように */
    border: 2px solid #ddd; /* 枠線（任意） */
}

.stars {
    margin-bottom: 16px;
}

.stars i {
    color: #fbbf24;
    margin-right: 4px;
}

.testimonial-card p {
    color: #6b7280;
    margin-bottom: 24px;
    font-style: italic;
}

.customer-name {
    font-weight: 600;
}

.customer-location {
    color: #6b7280;
    font-size: 14px;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 24px 0;
    color: #6b7280;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact */
.contact {
    padding: 80px 0;
    background-color: #2563eb;
    color: white;
}

.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact .section-header p {
    opacity: 0.9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-method i {
    font-size: 24px;
    margin-top: 4px;
}

.method-title {
    font-weight: 600;
    margin-bottom: 8px;
}

/* メールを太字・大きく、電話の受付時間は通常 */
.email,
.email + .method-note {
    font-size: 32px;       /* 大きめ */
    font-weight: bold;     /* 太字 */
    margin-bottom: 4px;
}

/* 電話番号と受付時間を通常に戻す */
.phone-large,
.contact-method .method-note {
    font-size: 1rem;       /* 通常サイズ */
    font-weight: normal;   /* 通常の太さ */
}

.email a {
    color: #fff;          /* 白に変更（見やすい色に） */
    font-weight: bold;    /* 太字 */
    text-decoration: none; /* 下線なし */
}

.email a:hover {
    color: #000;          /* ホバー時だけ黒にする */
    text-decoration: underline;
}

.form-card {
    background: white;
    color: #333;
    padding: 32px;
    border-radius: 12px;
}

.form-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

/* Footer */
.footer {
    padding: 48px 0;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 24px;
    color: #2563eb;
}

.footer-section p {
    color: #6b7280;
    font-size: 14px;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
    color: #6b7280;
    font-size: 14px;
}

.footer-contact div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-contact i {
    color: #2563eb;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 14px;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #2563eb;
    cursor: pointer;
    padding: 8px;
    margin-right: 16px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #1d4ed8;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .header-actions .phone-number {
        display: none;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-content {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        background-color: white;
        z-index: 1000;
        transition: right 0.3s ease;
        padding: 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-overlay.active .mobile-menu-content {
        right: 0;
    }
    
    .mobile-menu-content .phone-number {
        display: block;
        margin-bottom: 20px;
        padding: 15px;
        background-color: #f3f4f6;
        border-radius: 8px;
        text-align: center;
    }
    
    .mobile-menu-content .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .services-grid,
    .pricing-grid,
    .areas-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .features,
    .services,
    .pricing,
    .service-areas,
    .testimonials,
    .faq,
    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .phone-large {
        font-size: 24px;
    }
}

/* ========== Hero(トップの文字と画像)をフルブリード（左右の余白ゼロ）にする ========== */
.hero .container{
    /* max-width: none;   1200pxの制限を外す */
    width: 100%;
    /* padding-left: 0;   両サイドの20pxパディングを消す */
    /* padding-right: 0; */
}

/* 画像を右端まで、テキストを左端まで寄せる */
.hero-content{
    gap: 8px;                 /* お好みで間隔 */
}
.hero-image{
    justify-content: flex-end; /* 画像をカラムの右端へ */
}
.hero-top-image{
    width: 100%;               /* カラム幅いっぱい */
    height: auto;
    margin: 0;                 /* 中央寄せを解除 */
    /* object-fit: contain のままでOK（全体を見せたい場合）
       欲しければ cover にすると“端までピタッと”感が強まります */
    /* object-fit: cover; */
}

/* スマホでは端ギリを避ける（見やすさ用） */
@media (max-width: 768px){
    .hero .container{
        padding-left: 16px;
        padding-right: 16px;
    }
}