/* ========================================
   PowerPoint完全再現版
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background: #fff;
}

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

/* ========================================
   ヒーローセクション
======================================== */
.hero-ppt {
    background: linear-gradient(135deg, #a8d5ba 0%, #7cb89d 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

/* ストライプ型警告デザイン - 横長バナー版 */
.urgency-stripe {
    background: repeating-linear-gradient(
        45deg,
        #ffeb3b,
        #ffeb3b 15px,
        #1a1a1a 15px,
        #1a1a1a 30px
    );
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 25px;
    background-size: 200% 200%;
    animation: stripeMove 3s linear infinite;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@keyframes stripeMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.urgency-stripe-inner {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.urgency-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.urgency-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffeb3b;
    font-size: 1.2rem;
    font-weight: 900;
    white-space: nowrap;
}

.urgency-alert i {
    font-size: 1.5rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.urgency-items {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.urgency-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.urgency-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.urgency-badge {
    position: absolute;
    top: -10px;
    left: 8px;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.urgency-badge-danger {
    background: #ff5252;
}

.urgency-badge-warning {
    background: #ff9800;
}

.urgency-badge-success {
    background: #4a7c59;
}

.urgency-icon {
    font-size: 1.8rem;
}

.urgency-text {
    font-size: 0.95rem;
    color: white;
    font-weight: 700;
    line-height: 1.3;
}

.urgency-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.urgency-cta-text {
    display: none;
}

.urgency-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #e53935;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.urgency-cta-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.urgency-cta-btn i {
    font-size: 1.2rem;
}

.hero-title-ppt {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 30px;
}

.hero-subtitle-ppt {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
}

.hero-banner-image {
    max-width: 100%;
    text-align: center;
}

.hero-banner-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Page 2: こんな被害ありませんか？
======================================== */
.cta-banner-top {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
}

.cta-banner-top img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-banner-bottom {
    padding: 40px 20px;
    background: #f5f5f5;
    text-align: center;
}

.cta-banner-bottom a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-banner-bottom a:hover {
    transform: scale(1.02);
}

.cta-banner-bottom img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.section-damage {
    padding: 80px 20px;
    background: #f5f5f5;
}

.disaster-news-image {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.disaster-news-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.section-title-ppt {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.section-subtitle-ppt {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 60px;
    line-height: 1.9;
}

.section-description-center {
    text-align: center;
    font-size: 1.4rem;
    color: #333;
    margin: 50px auto 0;
    line-height: 2;
    max-width: 900px;
    font-weight: 500;
}

.damage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.damage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.damage-icon {
    font-size: 4rem;
    color: #4a7c59;
    text-align: center;
    margin-bottom: 20px;
}

.damage-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 20px;
    text-align: center;
}

.damage-card ul {
    list-style: none;
    padding: 0;
}

.damage-card li {
    font-size: 1.1rem;
    color: #555;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.damage-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: 700;
    font-size: 1.3rem;
}

.warning-box {
    background: #fff3cd;
    border: 3px solid #ffc107;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.warning-box p {
    font-size: 1.2rem;
    color: #856404;
    font-weight: 600;
    line-height: 1.8;
}

.warning-box i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* ========================================
   Page 3: 長野県の自然災害リスク
======================================== */
.section-risk {
    background: linear-gradient(135deg, #3a7a3a 0%, #2a6a2a 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.section-title-white {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
}

.risk-content {
    max-width: 900px;
    margin: 0 auto;
}

.risk-text {
    font-size: 1.5rem;
    line-height: 2;
    font-weight: 500;
}

.risk-text strong {
    color: #ffeb3b;
    font-weight: 700;
    font-size: 1.7rem;
}

/* ========================================
   Page 4: 雪や地震がもたらす住宅ダメージ
======================================== */
.section-detail-damage {
    padding: 80px 20px;
    background: white;
}

.detail-damage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.detail-damage-card {
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
}

.detail-damage-card:hover {
    border-color: #4a7c59;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.detail-damage-header {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5f3f 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.detail-damage-header i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
}

.detail-damage-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

.detail-damage-body {
    padding: 30px 25px;
}

.detail-damage-body p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
}

.detail-damage-image {
    width: 100%;
    overflow: hidden;
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.detail-damage-image img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    display: block;
}

.concern-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 3px solid #ffc107;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.concern-text {
    font-size: 1.4rem;
    color: #856404;
    line-height: 2;
}

.concern-text strong {
    font-size: 1.6rem;
    color: #e53935;
}

/* ========================================
   Page 5: 火災保険＝火事だけじゃない！
======================================== */
.section-insurance {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.section-title-emphasis {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    color: #e53935;
    margin-bottom: 20px;
}

.insurance-subtitle {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #2d5f3f;
    margin-bottom: 50px;
}

.character-suggest-image {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.character-suggest-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.insurance-chart-image {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.insurance-chart-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ========================================
   実績事例
======================================== */
.section-cases {
    padding: 80px 20px;
    background: #f9f9f9;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.case-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.case-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   サービスの流れ
======================================== */
.section-flow {
    padding: 80px 20px;
    background: white;
}

.flow-steps-ppt {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step-ppt {
    background: #f5f5f5;
    padding: 30px 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
}

.flow-step-ppt:hover {
    border-color: #4a7c59;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(74, 124, 89, 0.2);
}

.flow-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a7c59, #2d5f3f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.flow-step-content {
    flex: 1;
    text-align: left;
}

.flow-step-ppt h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 10px;
}

.flow-step-ppt p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.flow-detail {
    font-size: 1rem !important;
    color: #4a7c59 !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.flow-note {
    font-size: 0.95rem !important;
    color: #e53935 !important;
    font-weight: 700 !important;
    background: #fff3cd;
    padding: 6px 12px !important;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 0 !important;
}

.flow-arrow-ppt {
    display: none;
}

/* ========================================
   よくある質問
======================================== */
.section-faq {
    padding: 80px 20px;
    background: #f9f9f9;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4a7c59;
    box-shadow: 0 5px 20px rgba(74, 124, 89, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    cursor: pointer;
}

.faq-question i {
    font-size: 1.8rem;
    color: #4a7c59;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5f3f;
    margin: 0;
}

.faq-answer {
    padding: 25px 30px;
    background: white;
}

.faq-answer p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin: 0;
}

/* ========================================
   簡易診断チェックリスト
======================================== */
.section-checklist {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.checklist-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #f57c00;
    font-weight: 700;
    margin-bottom: 40px;
}

.checklist-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid #ff9800;
}

.checklist-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 3px dashed #ff9800;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.checklist-item i {
    font-size: 1.8rem;
    color: #4a7c59;
    flex-shrink: 0;
}

.checklist-result {
    text-align: center;
}

.checklist-result-text {
    font-size: 1.5rem;
    color: #e53935;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.checklist-result-text i {
    font-size: 2rem;
}

.checklist-warning {
    font-size: 1.2rem;
    color: #f57c00;
    font-weight: 700;
    margin-bottom: 30px;
}

.checklist-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
    transition: all 0.3s ease;
}

.checklist-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229, 57, 53, 0.6);
}

.checklist-cta-btn i {
    margin-right: 10px;
}

/* ========================================
   チャット機能
======================================== */
.chat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1001;
}

.chat-button {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #4a7c59 0%, #2d5f3f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(74, 124, 89, 0.5);
    transition: all 0.3s ease;
    position: relative;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(74, 124, 89, 0.7);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e53935;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    border: 3px solid white;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    max-height: 600px;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

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

.chat-header {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5f3f 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-info i {
    font-size: 2rem;
}

.chat-header-info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.chat-header-info small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.chat-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s ease;
}

.chat-close:hover {
    transform: scale(1.2);
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f5f5f5;
}

.chat-message {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.bot-message {
    align-items: flex-start;
}

.user-message {
    flex-direction: row-reverse;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a7c59 0%, #2d5f3f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.user-message .chat-avatar {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.chat-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 80%;
}

.user-message .chat-bubble {
    background: #e8f5e9;
}

.chat-bubble p {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.chat-bubble p:last-child {
    margin-bottom: 0;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.chat-option {
    background: white;
    border: 2px solid #4a7c59;
    color: #2d5f3f;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.chat-option:hover {
    background: #4a7c59;
    color: white;
    transform: translateX(5px);
}

.chat-footer {
    background: white;
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.chat-footer p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

/* ========================================
   固定CTAボタン
======================================== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.fixed-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.fixed-cta-btn:hover {
    opacity: 0.9;
}

.fixed-cta-btn i {
    font-size: 1.5rem;
}

.fixed-cta-phone {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
}

.fixed-cta-line {
    background: linear-gradient(135deg, #06c755 0%, #05a845 100%);
}

/* ========================================
   会社概要
======================================== */
.section-company {
    padding: 80px 20px;
    background: #fff;
}

.company-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 60px;
    line-height: 1.8;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.company-card {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
}

.company-card:hover {
    border-color: #4a7c59;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.15);
}

.company-header {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5f3f 100%);
    color: white;
    padding: 25px 30px;
}

.company-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.company-body {
    padding: 30px;
}

.company-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    margin-bottom: 25px;
    align-items: start;
}

.company-item:last-child {
    margin-bottom: 0;
}

.company-label {
    font-weight: 700;
    color: #2d5f3f;
    font-size: 1.1rem;
}

.company-value {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

.company-value a {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
}

.company-value a:hover {
    text-decoration: underline;
}

.company-message {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid #4a7c59;
}

.company-message p {
    font-size: 1.3rem;
    color: #2d5f3f;
    line-height: 2;
    font-weight: 500;
    margin: 0;
}

/* ========================================
   お問い合わせ
======================================== */
.section-contact-ppt {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5f3f 100%);
    color: white;
    padding: 80px 20px 100px;
    text-align: center;
}

.contact-description {
    font-size: 1.4rem;
    margin-bottom: 50px;
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 40px 30px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-btn i {
    font-size: 3.5rem;
}

.contact-btn div {
    text-align: left;
}

.contact-btn strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-btn span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-btn small {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-btn-phone {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
}

.contact-btn-line {
    background: linear-gradient(135deg, #06c755 0%, #05a845 100%);
}

/* お問い合わせフォーム */
.contact-form-section {
    max-width: 800px;
    margin: 60px auto 0;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5f3f;
    text-align: center;
    margin-bottom: 15px;
}

.form-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 8px;
}

.required {
    background: #e53935;
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

.optional {
    background: #999;
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.privacy-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.privacy-checkbox span {
    color: #333;
    font-size: 0.95rem;
}

.privacy-checkbox a {
    color: #4a7c59;
    text-decoration: underline;
}

.form-submit-btn {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(229, 57, 53, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px auto 0;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.6);
}

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

/* サンキューページ */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 80px 20px;
}

.thank-you-content {
    background: white;
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 800px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.thank-you-icon {
    font-size: 6rem;
    color: #4a7c59;
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2d5f3f;
    margin-bottom: 25px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #555;
    line-height: 2;
    margin-bottom: 50px;
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.info-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: left;
}

.info-item i {
    font-size: 3rem;
    color: #4a7c59;
}

.info-item strong {
    display: block;
    font-size: 1.1rem;
    color: #2d5f3f;
    margin-bottom: 8px;
}

.info-item p {
    margin: 5px 0;
    font-size: 1.1rem;
}

.info-item a {
    color: #4a7c59;
    font-weight: 700;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.info-item small {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-top: 5px;
}

.thank-you-next {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.thank-you-next h3 {
    font-size: 1.8rem;
    color: #2d5f3f;
    margin-bottom: 30px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a7c59, #2d5f3f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #2d5f3f;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.thank-you-buttons {
    margin-bottom: 30px;
}

.thank-you-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-home {
    background: linear-gradient(135deg, #4a7c59, #2d5f3f);
    color: white;
    box-shadow: 0 5px 20px rgba(74, 124, 89, 0.4);
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 124, 89, 0.6);
}

.thank-you-note {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ffc107;
}

.thank-you-note p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.8;
}

.thank-you-note i {
    margin-right: 8px;
}

.company-info-ppt {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 60px;
}

.office-info-ppt {
    background: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.office-info-ppt h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);
}

.office-info-ppt p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.8;
}

.office-info-ppt a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: 600;
}

.office-info-ppt a:hover {
    text-decoration: underline;
}

/* ========================================
   プライバシーポリシー
======================================== */
.privacy-section {
    min-height: 100vh;
    background: #f9f9f9;
    padding: 60px 20px 80px;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2d5f3f;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 20px;
    border-bottom: 4px solid #4a7c59;
}

.privacy-updated {
    text-align: center;
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.privacy-intro {
    background: #e8f5e9;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 5px solid #4a7c59;
}

.privacy-intro p {
    color: #2d5f3f;
    font-size: 1rem;
    line-height: 1.9;
    margin: 0;
}

.privacy-section-item {
    margin-bottom: 40px;
}

.privacy-section-item h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-section-item .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a7c59, #2d5f3f);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.privacy-section-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.privacy-section-item ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.privacy-section-item li {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    padding: 8px 0 8px 30px;
    position: relative;
}

.privacy-section-item li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-size: 0.8rem;
}

.contact-info-box {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid #4a7c59;
}

.contact-info-box h3 {
    font-size: 1.4rem;
    color: #2d5f3f;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info-box p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-info-box a {
    color: #4a7c59;
    font-weight: 700;
    text-decoration: none;
}

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

.privacy-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.privacy-footer p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d5f3f;
}

.back-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.back-to-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #4a7c59, #2d5f3f);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(74, 124, 89, 0.4);
}

.back-to-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 124, 89, 0.6);
}

/* ========================================
   フッター
======================================== */
.footer-ppt {
    background: #1a3a1a;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a7c59;
    text-decoration: underline;
}

.footer-links .separator {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-ppt p {
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 1024px) {
    .damage-grid,
    .insurance-benefits,
    .contact-buttons,
    .cases-grid,
    .company-details {
        grid-template-columns: 1fr;
    }
    
    .detail-damage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-ppt {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-ppt {
        font-size: 1.3rem;
    }
    
    .section-title-ppt,
    .section-title-white,
    .section-title-emphasis {
        font-size: 2rem;
    }
    
    .insurance-subtitle {
        font-size: 1.5rem;
    }
    
    .company-info-ppt {
        grid-template-columns: 1fr;
    }
    
    .contact-btn {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-btn div {
        text-align: center;
    }
    
    .flow-step-ppt {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .flow-step-content {
        text-align: center;
    }
    
    .flow-step-ppt h3 {
        font-size: 1.3rem;
    }
    
    .company-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .company-label {
        font-size: 1rem;
    }
    
    .company-value {
        font-size: 1rem;
    }
    
    .urgency-stripe-inner {
        padding: 30px 20px;
    }
    
    .urgency-alert {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
    
    .urgency-items {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .urgency-text {
        font-size: 1.1rem;
    }
    
    .urgency-cta {
        padding: 25px 20px;
    }
    
    .urgency-cta-text {
        font-size: 1.2rem;
    }
    
    .urgency-cta-btn {
        font-size: 1.4rem;
        padding: 15px 30px;
    }
    
    .checklist-items {
        grid-template-columns: 1fr;
    }
    
    .checklist-box {
        padding: 25px 20px;
    }
    
    .checklist-cta-btn {
        font-size: 1.2rem;
        padding: 18px 35px;
    }
    
    .fixed-cta-btn {
        font-size: 1rem;
        padding: 15px 10px;
    }
    
    .fixed-cta-btn span {
        font-size: 1rem;
    }
    
    .chat-widget {
        bottom: 70px;
        right: 10px;
    }
    
    .chat-button {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
    }
    
    .chat-window {
        width: calc(100vw - 20px);
        bottom: 70px;
        right: -10px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .thank-you-content {
        padding: 40px 25px;
    }
    
    .thank-you-icon {
        font-size: 4rem;
    }
    
    .thank-you-title {
        font-size: 1.8rem;
    }
    
    .thank-you-info {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-next {
        padding: 25px 20px;
    }
    
    .privacy-content {
        padding: 30px 20px;
    }
    
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .privacy-section-item h2 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-info-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title-ppt {
        font-size: 2rem;
    }
    
    .section-title-ppt,
    .section-title-white {
        font-size: 1.8rem;
    }
    
    .section-title-emphasis {
        font-size: 1.8rem;
    }
    
    .damage-icon {
        font-size: 3rem;
    }
    
    .contact-btn span {
        font-size: 1.5rem;
    }
}