      .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* 共通のセクションタイトル */
        .section-title {
            font-size: 32px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #ff9800;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 16px;
            margin-bottom: 50px;
        }

        /* ========== 事業紹介セクション ========== */
#business-section {
    margin-bottom: 80px;
    margin-top: 0px;
}

        #business-section .business-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        #business-section .business-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            display: block;
        }

        #business-section .business-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        #business-section .business-image {
            width: 100%;
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        #business-section .business-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        #business-section .business-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
            pointer-events: none;
        }

        #business-section .business-content {
            padding: 25px;
        }

        #business-section .business-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
        }

        #business-section .business-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        #business-section .business-link {
            color: #ff9800;
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        #business-section .business-link::after {
            content: '→';
            margin-left: 5px;
        }

        /* ========== 物件カードセクション ========== */
        #property-section {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 80px;
        }

        #property-section .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
        }

        #property-section .property-card {
            background-color: white;
        }

        #property-section .property-image {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
            border-radius: 4px;
            margin-bottom: 30px;
        }

        #property-section .property-image.townhouse {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="300"><rect fill="%23e8e8e8" width="600" height="300"/><text x="50%" y="50%" font-family="Arial" font-size="20" fill="%23999" text-anchor="middle" dy=".3em">長屋・連棟戸建て画像</text></svg>');
        }

        #property-section .property-image.farmland {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="300"><rect fill="%2390ee90" width="600" height="300"/><text x="50%" y="50%" font-family="Arial" font-size="20" fill="%23fff" text-anchor="middle" dy=".3em">農地画像</text></svg>');
        }

        #property-section .property-title {
            font-size: 24px;
            font-weight: 500;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }

        #property-section .property-description {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: center;
        }

        #property-section .btn-container {
            text-align: center;
        }

        #property-section .btn-detail {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 40px;
            font-size: 16px;
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 200px;
        }

        #property-section .btn-detail.navy {
            background-color: #1e3a5f;
        }

        #property-section .btn-detail.navy:hover {
            background-color: #2c4a75;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
        }

        #property-section .btn-detail.green {
            background-color: #2d5016;
        }

        #property-section .btn-detail.green:hover {
            background-color: #3a6b1c;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
        }

        #property-section .btn-arrow {
            margin-left: 12px;
            font-size: 18px;
        }

        /* ========== 当社の強みセクション ========== */
        #strengths-section {
            margin-bottom: 80px;
        }

        #strengths-section .strengths-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        #strengths-section .strength-card {
            background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
            border-radius: 20px;
            padding: 40px;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        #strengths-section .strength-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 152, 0, 0.3);
        }

        #strengths-section .strength-card:nth-child(even) {
            background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
        }

        #strengths-section .strength-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        #strengths-section .strength-card:nth-child(even) .strength-content {
            flex-direction: row-reverse;
        }

        #strengths-section .strength-text {
            flex: 1;
            min-width: 300px;
        }

        #strengths-section .strength-label {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        #strengths-section .strength-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        #strengths-section .strength-lead {
            font-size: 16px;
            margin-bottom: 20px;
            opacity: 0.95;
            font-weight: 500;
            line-height: 1.6;
        }

        #strengths-section .strength-description {
            font-size: 14px;
            line-height: 1.8;
            opacity: 0.9;
            text-align: justify;
        }

        #strengths-section .strength-image {
            flex: 0 0 400px;
            height: 280px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        #strengths-section .strength-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        #strengths-section .strength-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, transparent 100%);
            pointer-events: none;
        }
        
   /* ========== スタッフ紹介セクション ========== */
        #staff-section {
            margin-bottom: 80px;
        }

        #staff-section .staff-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        #staff-section .staff-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        #staff-section .staff-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        #staff-section .staff-image {
            width: 100%;
            height: 240px;
            background-color: #f0f8ff;
            position: relative;
            overflow: hidden;
        }

        #staff-section .staff-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        #staff-section .staff-info {
            padding: 25px;
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        #staff-section .staff-header {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        #staff-section .staff-name {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        #staff-section .staff-title {
            font-size: 13px;
            color: #ff9800;
            font-weight: 500;
        }

        #staff-section .staff-description {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
            flex: 1;
        }

        #staff-section .staff-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
        }

        /* スタッフバッジの色分け（オプション） */
        #staff-section .staff-badge.blue {
            background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
            box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
        }

        #staff-section .staff-badge.green {
            background: linear-gradient(135deg, #4caf50 0%, #43a047 100%);
            box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
        }

        /* ========== FAQセクション ========== */
        #faq-section {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        #faq-section .faq-list {
            list-style: none;
        }

        #faq-section .faq-item {
            border-bottom: 1px solid #e0e0e0;
        }

        #faq-section .faq-item:last-child {
            border-bottom: none;
        }

        #faq-section .faq-question {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            padding: 20px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        

        /* ========== FAQセクション ========== */
        #faq-section {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 0px;
        }

        #faq-section .faq-list {
            list-style: none;
        }

        #faq-section .faq-item {
            border-bottom: 1px solid #e0e0e0;
        }

        #faq-section .faq-item:last-child {
            border-bottom: none;
        }

        #faq-section .faq-question {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            padding: 20px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        #faq-section .faq-question:hover {
            opacity: 0.7;
        }

        #faq-section .faq-q-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background-color: #fff3e0;
            color: #ff9800;
            font-size: 14px;
            font-weight: 600;
            border-radius: 50%;
            margin-right: 12px;
            flex-shrink: 0;
        }

        #faq-section .faq-q-text {
            flex: 1;
            font-size: 16px;
            color: #333;
            font-weight: 500;
            padding-right: 30px;
        }

        #faq-section .faq-toggle {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }

        #faq-section .faq-toggle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 10px;
            height: 10px;
            border-right: 2px solid #666;
            border-bottom: 2px solid #666;
            transform: translate(-50%, -65%) rotate(45deg);
        }

        #faq-section .faq-item.active .faq-toggle {
            transform: translateY(-50%) rotate(180deg);
        }

        #faq-section .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        #faq-section .faq-item.active .faq-answer {
            max-height: 500px;
            padding-bottom: 20px;
        }

        #faq-section .faq-answer-content {
            padding: 0 0 0 36px;
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        #faq-section .faq-answer-content a {
            color: #ff9800;
            text-decoration: none;
        }

        #faq-section .faq-answer-content a:hover {
            text-decoration: underline;
        }

        #faq-section .faq-note {
            background-color: #fff9e6;
            padding: 12px 16px;
            border-radius: 4px;
            margin-top: 12px;
            font-size: 13px;
            color: #666;
            line-height: 1.6;
        }

        /* ========== レスポンシブ対応 ========== */
        /* タブレット（1024px以下） */
        @media (max-width: 1024px) {
            .container {
                padding: 40px 20px;
            }

            .section-title {
                font-size: 28px;
            }

            #business-section .business-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            #property-section .property-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
             #staff-section .staff-grid {
                grid-template-columns: repeat(2, 1fr);
            }


            #strengths-section .strength-content {
                flex-direction: column !important;
                gap: 30px;
            }

            #strengths-section .strength-image {
                flex: 1;
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }

            #strengths-section .strength-card {
                padding: 30px;
            }

            #strengths-section .strength-title {
                font-size: 24px;
            }

            #faq-section {
                padding: 30px;
            }
        }

        /* スマートフォン（599px以下） */
        @media (max-width: 599px) {
            .container {
                padding: 30px 15px;
            }

            .section-title {
                font-size: 24px;
            }

            .section-subtitle {
                font-size: 14px;
            }

            #business-section .business-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            #business-section .business-image {
                height: 150px;
            }

            #business-section .business-content {
                padding: 20px;
            }

            #business-section .business-title {
                font-size: 18px;
            }

            #business-section .business-description {
                font-size: 13px;
            }
           #staff-section .staff-grid {
                grid-template-columns: repeat(1, 1fr);
            }

            #property-section {
                padding: 20px;
            }

            #property-section .property-grid {
                gap: 40px;
            }

            #property-section .property-image {
                height: 200px;
            }

            #property-section .property-title {
                font-size: 20px;
            }

            #property-section .property-description {
                font-size: 14px;
            }

            #property-section .btn-detail {
                padding: 12px 30px;
                font-size: 14px;
                min-width: 160px;
            }

            #strengths-section .strength-card {
                padding: 25px 20px;
                border-radius: 15px;
            }

            #strengths-section .strength-label {
                font-size: 12px;
                padding: 6px 15px;
            }

            #strengths-section .strength-title {
                font-size: 20px;
            }

            #strengths-section .strength-lead {
                font-size: 14px;
            }

            #strengths-section .strength-description {
                font-size: 13px;
            }

            #strengths-section .strength-image {
                height: 200px;
            }

            #strengths-section .strengths-container {
                gap: 30px;
            }
            
            

            #faq-section {
                padding: 20px;
            }

            #faq-section .faq-q-text {
                font-size: 14px;
            }

            #faq-section .faq-answer-content {
                font-size: 13px;
                padding: 0 0 0 30px;
            }

            #faq-section .faq-question {
                padding: 16px 0;
            }
        }
        
        
.first-view.ta-c{
  text-align: center;
}

.first-view.mb-20{
  margin-bottom: 20px;
}
