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

/* ベース設定 */
body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.9;
    color: #222;
    background-color: #f8f9fa;
    font-size: 16px;
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd700;
}

.nav-cta {
    background: #ffd700 !important;
    color: #333 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: #ffed4e !important;
    color: #333 !important;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #ffd700;
    color: #1a1a1a;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
    background: #fff;
    color: #667eea;
}

.cta-button.secondary:hover {
    background: #f8f9fa;
}

/* プロセス概要 */
.process-overview {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.process-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.process-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ステップセクション */
.step-section {
    padding: 5rem 0;
}

.step-section:nth-child(odd) {
    background: #f8f9fa;
}

.step-section:nth-child(even) {
    background: white;
}

.step-header {
    text-align: center;
    margin-bottom: 4rem;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

.step-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* コンテンツボックス */
.content-box {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.content-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 1.4;
}

.content-box h3 i {
    color: #667eea;
}

.content-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 1.4;
}

.content-box h4 i {
    color: #667eea;
}

.content-box h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 1.4;
}

.content-box h5 i {
    color: #667eea;
}

.content-box p {
    margin-bottom: 1.8rem;
    line-height: 2;
    font-size: 1.1rem;
    color: #2a2a2a;
}

.content-box ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-box li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #2a2a2a;
}

/* メソッドグリッド */
.method-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.method-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.method-card h4 {
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
}

/* アラート */
.alert {
    background: #fff8e1;
    border: 2px solid #ffcc02;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1a1a1a;
}

.alert i {
    color: #f39c12;
    margin-top: 0.2rem;
}

.highlight {
    background: #f0f8f0;
    border: 2px solid #4caf50;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #1b5e20;
    font-size: 1.1rem;
    line-height: 1.8;
}

.advice {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.advice i {
    color: #2196f3;
    margin-top: 0.2rem;
}

.tip {
    background: #fff8e1;
    border: 1px solid #ffecb3;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.tip i {
    color: #ff9800;
    margin-top: 0.2rem;
}

.recommendation {
    background: #e8f5e8;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.recommendation i {
    color: #28a745;
    margin-top: 0.2rem;
}

/* 費用計算機 */
.cost-calculator {
    background: #f8f9fa;
    border: 2px solid #667eea;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.calculator-form {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.input-group {
    flex: 1;
    min-width: 200px;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #667eea;
}

.calculate-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.calculation-result {
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

/* 費用内訳 */
.cost-breakdown {
    margin-top: 2rem;
}

.cost-items {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cost-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.cost-item.important {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.cost-item h5 {
    margin-bottom: 0.5rem;
}

.formula {
    background: #e9ecef;
    padding: 0.8rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
}

.special-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

/* 比較グリッド */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 5px solid #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-card h4 {
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
}

.comparison-card ul {
    padding-left: 1rem;
}

.comparison-card li {
    margin-bottom: 0.8rem;
    position: relative;
}

.comparison-card li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* 質問カード */
.question-cards {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.question-card {
    display: flex;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.question-icon {
    flex-shrink: 0;
}

.question-icon i {
    color: #667eea;
    font-size: 1.5rem;
}

.question-content h4 {
    color: #667eea;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.question-content p {
    margin: 0;
    font-weight: 500;
}

/* 契約比較テーブル */
.contract-comparison {
    margin-top: 2rem;
}

.contract-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contract-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.contract-table th,
.contract-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
}

.contract-table th {
    background: #667eea;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
}

.contract-table td {
    vertical-align: top;
    color: #2a2a2a;
    line-height: 1.7;
}

.contract-table tr:hover {
    background: #f0f4ff;
}

/* 準備グリッド */
.preparation-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.preparation-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #667eea;
}

.preparation-card.full-width {
    grid-column: 1 / -1;
}

.prep-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.prep-icon i {
    color: #667eea;
    font-size: 2rem;
}

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

.sense-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.sense-item h5 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.sense-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* 交渉ポイント */
.negotiation-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.point-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.point-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.point-card p {
    margin: 0;
}

/* チェックリスト */
.contract-checklist {
    margin-top: 2rem;
}

.checklist-item {
    display: flex;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #667eea;
}

.checklist-item.important {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.checklist-item i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checklist-item.important i {
    color: #dc3545;
}

.checklist-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.checklist-item p {
    margin: 0;
}

/* 決済フロー */
.settlement-flow {
    margin-top: 2rem;
}

.flow-steps {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.flow-step {
    display: flex;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.flow-step .step-number {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h5 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    color: #666;
}

/* 売却相談セクション */
.consultation-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.consultation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.consultation-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consultation-text h2 i {
    color: #667eea;
}

.consultation-lead {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 3rem;
    color: #2a2a2a;
    font-weight: 500;
}

.renove-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.renove-intro h3 {
    color: #667eea;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.staff-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #28a745;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.staff-intro h3 {
    color: #28a745;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.staff-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.staff-info h4 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.staff-position {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.staff-description {
    line-height: 2;
    color: #2a2a2a;
    font-size: 1.05rem;
}

.consultation-benefits {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ff9800;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.consultation-benefits h3 {
    color: #ff9800;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consultation-benefits ul {
    list-style: none;
    padding: 0;
}

.consultation-benefits li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.consultation-benefits li:last-child {
    border-bottom: none;
}

.consultation-benefits li i {
    color: #ff9800;
    width: 20px;
}

.consultation-cta {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: sticky;
    top: 6rem;
    border: 2px solid #e9ecef;
}

.cta-card h3 {
    color: #222;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #333;
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 1rem;
}

.consultation-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.consultation-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    color: white;
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.consultation-button i {
    margin-right: 0.5rem;
}

.cta-note {
    font-size: 0.95rem;
    color: #222;
    line-height: 1.8;
    font-weight: 600;
}

.cta-note i {
    color: #667eea;
    margin-right: 0.3rem;
    font-weight: bold;
}

/* おわりに */
.conclusion {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.conclusion h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.conclusion p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.final-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* フッター */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #ffd700;
}

.footer-cta {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
    opacity: 1;
}

.footer-cta i {
    margin-right: 0.5rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.6;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.8rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .negotiation-points {
        grid-template-columns: 1fr;
    }
    
    .senses-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-form {
        flex-direction: column;
    }
    
    .content-box {
        padding: 2rem 1.5rem;
    }
    
    .contract-table {
        font-size: 0.8rem;
    }
    
    .contract-table th,
    .contract-table td {
        padding: 0.5rem;
    }
    
    /* 売却相談セクションのレスポンシブ */
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .consultation-cta {
        position: static;
        margin-top: 2rem;
    }
    
    .final-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .step-section {
        padding: 3rem 0;
    }
    
    .process-overview {
        padding: 3rem 0;
    }
    
    .content-box {
        padding: 1.8rem 1.2rem;
    }
    
    .content-box h3 {
        font-size: 1.6rem;
    }
    
    .content-box h4 {
        font-size: 1.3rem;
    }
    
    .content-box p {
        font-size: 1rem;
        line-height: 1.9;
    }
    
    .consultation-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .flow-step .step-number {
        align-self: center;
    }
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* フォーカス状態のアクセシビリティ */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* 計算結果のスタイル */
.result-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.result-item {
    background: #e8f5e8;
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.result-item h5 {
    color: #155724;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #155724;
    margin: 0;
}

.net-amount {
    color: #28a745;
    font-size: 2rem;
}

.cost-details {
    margin-top: 2rem;
}

.cost-breakdown-result {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

.cost-row:last-child {
    border-bottom: none;
}

.cost-row.total {
    font-weight: 600;
    font-size: 1.1rem;
    border-top: 2px solid #667eea;
    margin-top: 0.5rem;
    padding-top: 1rem;
    color: #667eea;
}

.cost-name {
    color: #333;
}

.cost-amount {
    color: #dc3545;
    font-weight: 600;
}

.cost-row.total .cost-amount {
    color: #667eea;
}

.calculation-notes {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.calculation-notes h5 {
    color: #1565c0;
    margin-bottom: 1rem;
}

.calculation-notes ul {
    margin: 0;
    padding-left: 1.5rem;
}

.calculation-notes li {
    color: #1565c0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 1rem;
    color: #721c24;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message i {
    color: #dc3545;
}

/* アニメーション */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ホバーエフェクトの強化 */
.process-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-card:hover,
.comparison-card:hover,
.preparation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

/* ナビゲーションCTA */
.nav-cta {
    background: #ffd700 !important;
    color: #333 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: #ffed4e !important;
    transform: translateY(-1px) !important;
}

/* 売却相談セクション */
.consultation-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.consultation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.consultation-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consultation-text h2 i {
    color: #667eea;
}

.consultation-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.renove-intro,
.staff-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.renove-intro h3,
.staff-intro h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.renove-intro h3 i,
.staff-intro h3 i {
    color: #667eea;
}

.staff-card {
    margin-top: 1rem;
}

.staff-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.staff-position {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.staff-description {
    line-height: 2;
    color: #2a2a2a;
    font-size: 1.05rem;
}

.consultation-benefits {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #28a745;
}

.consultation-benefits h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #155724;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consultation-benefits ul {
    list-style: none;
    padding: 0;
}

.consultation-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #155724;
    font-weight: 500;
}

.consultation-benefits li i {
    color: #28a745;
    width: 20px;
}

/* CTA カード */
.consultation-cta {
    position: sticky;
    top: 100px;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-card > p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.consultation-button {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    margin-bottom: 1.5rem;
}

.consultation-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.consultation-button i {
    margin-right: 0.5rem;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.cta-note i {
    margin-right: 0.3rem;
    color: #ffd700;
}

/* おわりにセクションのCTA更新 */
.final-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* フッターの追加スタイル */
.footer-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.footer-cta {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: #ffed4e;
    transform: translateY(-1px);
}

.footer-cta i {
    margin-right: 0.5rem;
}

/* レスポンシブデザインの更新 */
@media (max-width: 1024px) {
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .consultation-cta {
        position: static;
    }
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 3rem 0;
    }
    
    .renove-intro,
    .staff-intro,
    .consultation-benefits {
        padding: 1.5rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .consultation-text h2 {
        font-size: 1.6rem;
    }
    
    .final-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-cta {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .consultation-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-card h3 {
        font-size: 1.3rem;
    }
}

/* プリント用スタイル */
@media print {
    .header,
    .nav,
    .footer,
    .cta-button,
    .nav-toggle,
    .consultation-section {
        display: none;
    }
    
    .step-section {
        page-break-inside: avoid;
    }
    
    .calculation-result {
        page-break-inside: avoid;
    }
}