@charset "UTF-8";

/* =========================================
   Reset & Base
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, ...
...以下、元のCSSをそのまま貼り付け...
   /* =========================================
           Reset & Base (システムフォントで最適化)
        ========================================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #fff;
            -webkit-font-smoothing: antialiased;
        }
        
        /* 画像がローカルになくても固まらず、枠を維持するスタイル */
        img {
            max-width: 100%;
            height: auto;
            vertical-align: bottom;
            background-color: #e0e0e0; /* 画像がないときはグレーの箱にする */
            color: #666;
            font-size: 10px;
            display: inline-block;
        }
        
        ul { list-style: none; }
        a { text-decoration: none; color: inherit; }
        
        /* Variables */
        :root {
            --primary-green: #2e7d32;
            --light-green: #e8f5e9;
            --cta-orange: #ff6a00;
            --cta-orange-grad: linear-gradient(135deg, #ff8c00, #ff5722);
            --bg-gray: #f8f9fa;
        }

        /* Utility */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .flex {
            display: flex;
            align-items: center;
        }
        .text-red { color: #e60012; }
        .text-green { color: var(--primary-green); }
        .relative { position: relative; }

        /* =========================================
           Header
        ========================================= */
        .header-top {
            background-color: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .site-desc {
            font-size: 12px;
            color: #666;
            margin-bottom: 5px;
        }
        .logo-img {
            width: 200px;
            height: 60px;
        }
        .header-contact {
            text-align: center;
        }
        .header-contact span { font-size: 12px; display: block; color: #444; }
        .header-tel {
            font-size: 28px;
            font-weight: 900;
            color: var(--primary-green);
            line-height: 1.2;
        }
        .header-cta-btn {
            background: var(--cta-orange-grad);
            color: #fff;
            padding: 10px 30px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            box-shadow: 0 4px 6px rgba(255, 87, 34, 0.3);
            transition: transform 0.2s;
        }
        .header-cta-btn:hover { transform: translateY(-2px); }
        .header-cta-btn .small { font-size: 13px; display: block; letter-spacing: 1px; }
        .header-cta-btn .large { font-size: 24px; display: block; line-height: 1.2; font-weight: 900; }

        /* Navigation */
        .main-nav {
            border-bottom: 2px solid #f0f0f0;
            background: #fff;
        }
        .main-nav ul {
            display: flex;
            justify-content: space-between;
        }
        .main-nav li {
            flex: 1;
            text-align: center;
            border-right: 1px solid #eee;
        }
        .main-nav li:last-child { border-right: none; }
        .main-nav a {
            display: block;
            padding: 15px 5px;
            font-size: 14px;
            font-weight: bold;
            transition: background 0.2s;
        }
        .main-nav a:hover {
            background-color: var(--light-green);
            color: var(--primary-green);
        }

        /* =========================================
           Hero Section
        ========================================= */
        .hero {
            background-color: #f0ede6; /* 画像がない場合のベース背景色 */
            background-image: url('img/hero-bg.jpg'); /* ★ローカルパス */
            background-size: cover;
            background-position: center;
            padding: 50px 0 120px;
        }
        .hero-inner {
            display: flex;
            justify-content: space-between;
        }
        .hero-left {
            max-width: 550px;
        }
        .hero-badge-green {
            background: var(--primary-green);
            color: #fff;
            display: inline-block;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 12px;
        }
        .hero-title-main {
            font-size: 56px;
            font-weight: 900;
            color: #1a4a28;
            line-height: 1.15;
            margin-bottom: 15px;
        }
        .hero-subtitle {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }
        
        .hero-right {
            text-align: right;
            max-width: 450px;
        }
        .hero-right-toptext {
            font-size: 32px;
            font-weight: 900;
            line-height: 1.2;
            color: #333;
        }
        .hero-right-maintext {
            font-size: 72px;
            font-weight: 900;
            color: #e60012;
            transform: rotate(-3deg);
            margin: 5px 0 15px;
            text-shadow: 3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff;
        }
        .hero-right-box {
            background: var(--primary-green);
            color: #fff;
            padding: 8px 20px;
            font-size: 22px;
            font-weight: bold;
            border-radius: 5px;
            display: inline-block;
            margin-bottom: 15px;
        }
        .hero-right-desc {
            font-size: 18px;
            font-weight: bold;
            background: rgba(255,255,255,0.85);
            padding: 12px;
            border-radius: 8px;
            line-height: 1.4;
            display: inline-block;
            text-align: left;
        }

        /* 特徴4点ボックス */
        .hero-features {
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            padding: 0 15px;
        }
        .hero-features .feature-flex {
            display: flex;
            justify-content: flex-start;
            gap: 15px;
        }
        .feature-box {
            background: #fff;
            border-radius: 10px;
            padding: 20px 15px;
            text-align: center;
            flex: 1;
            max-width: 220px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            font-weight: bold;
            font-size: 14px;
            border: 1px solid #eee;
        }
        .feature-box img {
            width: 50px;
            height: 50px;
            margin-bottom: 12px;
        }

        /* =========================================
           回収できるもの Section
        ========================================= */
        .collection {
            padding: 100px 0 50px;
            background: #fff;
        }
        .collection-wrapper {
            display: flex;
            align-items: stretch;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }
        .collection-title {
            background: var(--primary-green);
            color: #fff;
            width: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
            padding: 20px;
            flex-shrink: 0;
        }
        .collection-items {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 20px;
            gap: 15px;
            justify-content: space-between;
        }
        .c-item {
            text-align: center;
            font-size: 13px;
            font-weight: bold;
            width: 90px;
        }
        .c-item img {
            width: 70px;
            height: 50px;
            object-fit: contain;
            margin-bottom: 8px;
        }
        .c-item-ok {
            font-size: 18px;
            font-weight: 900;
            color: var(--primary-green);
            line-height: 1.3;
            text-align: center;
            width: 100px;
        }

        /* =========================================
           ご利用の流れ Section
        ========================================= */
        .flow {
            padding: 50px 0;
            background: var(--bg-gray);
        }
        .flow-heading {
            text-align: center;
            color: #1a4a28;
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 35px;
        }
        .flow-container {
            display: flex;
            gap: 20px;
        }
        .flow-steps {
            flex: 2;
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            padding: 25px 20px;
            border-radius: 8px;
            border: 1px solid #ddd;
        }
        .step-box {
            flex: 1;
            text-align: center;
            position: relative;
            padding-top: 25px;
        }
        .step-num {
            background: var(--primary-green);
            color: #fff;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .step-title {
            font-weight: bold;
            font-size: 15px;
            margin-bottom: 10px;
        }
        .step-box img {
            width: 60px;
            height: 60px;
            margin-bottom: 10px;
        }
        .step-desc {
            font-size: 12px;
            color: #555;
            text-align: left;
            line-height: 1.4;
        }
        .step-arrow {
            color: var(--primary-green);
            font-size: 28px;
            font-weight: bold;
            user-select: none;
        }
        
        .flow-security {
            flex: 1;
            background: #f0f7f0;
            border: 2px solid var(--primary-green);
            border-radius: 8px;
            padding: 25px;
            position: relative;
        }
        .flow-security h4 {
            color: var(--primary-green);
            font-size: 16px;
            margin-bottom: 12px;
            font-weight: bold;
        }
        .flow-security p {
            font-size: 13px;
            line-height: 1.5;
            color: #333;
        }
        .security-icon {
            position: absolute;
            right: 15px;
            bottom: 15px;
            width: 60px;
            height: 60px;
        }

        /* =========================================
           Bottom CTA Section
        ========================================= */
        .bottom-cta-section {
            padding: 40px 0;
            background: #fff;
        }
        .bottom-cta-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 25px;
            background: var(--bg-gray);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
        }
        .b-contact {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }
        .b-contact-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }
        .b-contact-info p { font-size: 14px; font-weight: bold; color: #444; }
        .b-contact-info .tel {
            font-size: 28px;
            font-weight: 900;
            color: var(--primary-green);
            line-height: 1.2;
            margin: 2px 0;
        }
        
        .b-btn {
            flex: 1;
            background: var(--cta-orange-grad);
            color: #fff;
            text-align: center;
            padding: 18px 20px;
            border-radius: 8px;
            display: block;
            box-shadow: 0 5px 12px rgba(255, 87, 34, 0.35);
            transition: opacity 0.2s;
            position: relative;
        }
        .b-btn:hover { opacity: 0.9; }
        .b-btn::after {
            content: '>';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            font-weight: bold;
        }
        .b-btn .small { font-size: 13px; display: block; letter-spacing: 0.5px; }
        .b-btn .large { font-size: 26px; font-weight: 900; display: block; line-height: 1.3; margin: 2px 0; }
        .b-btn .bottom { font-size: 12px; display: block; opacity: 0.9; }

        .b-trust {
            text-align: center;
            width: 320px;
            flex-shrink: 0;
        }
        .b-trust h5 {
            color: #2e7d32;
            font-size: 12px;
            margin-bottom: 12px;
            font-weight: bold;
        }
        .trust-icons {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            font-weight: bold;
        }
        .trust-icons div {
            flex: 1;
            text-align: center;
        }
        .trust-icons img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            display: block;
            margin: 0 auto 6px;
        }

        /* =========================================
           Responsive (Mobile Optimization)
        ========================================= */
        @media (max-width: 991px) {
            .header-top .container { flex-direction: column; text-align: center; gap: 15px; }
            .logo-area { text-align: center; }
            .header-cta-btn { width: 100%; max-width: 400px; }
            
            .main-nav ul { flex-wrap: wrap; }
            .main-nav li { width: 25%; border-bottom: 1px solid #eee; }
            
            .hero { padding: 40px 0 40px; }
            .hero-inner { flex-direction: column; align-items: center; text-align: center; }
            .hero-right { text-align: center; margin-top: 30px; }
            .hero-features { position: relative; bottom: 0; margin-top: 40px; }
            .hero-features .feature-flex { flex-wrap: wrap; justify-content: center; }
            .feature-box { width: 46%; max-width: none; }
            
            .collection-wrapper { flex-direction: column; }
            .collection-title { width: 100%; padding: 12px; font-size: 18px; }
            .collection-items { justify-content: center; gap: 20px; }
            
            .flow-container { flex-direction: column; }
            .flow-steps { flex-wrap: wrap; justify-content: center; gap: 20px 10px; }
            .step-box { width: 45%; flex: none; }
            .step-arrow { display: none; } /* スマホ時は矢印を隠すか調整 */
            
            .bottom-cta-inner { flex-direction: column; text-align: center; }
            .b-contact { flex-direction: column; }
            .b-btn { width: 100%; max-width: 500px; }
            .b-trust { width: 100%; margin-top: 10px; }
        }
        
        @media (max-width: 480px) {
            .main-nav li { width: 50%; }
            .hero-title-main { font-size: 38px; }
            .hero-right-maintext { font-size: 52px; }
            .feature-box { width: 100%; }
            .step-box { width: 100%; border-bottom: 1px dashed #eee; padding-bottom: 15px; }
            .step-box:last-child { border-bottom: none; }
            .b-btn .large { font-size: 22px; }
        }