/* だいりーちゃん機能紹介ページ専用スタイル */
/* 既存のヘッダー・フッターとの統合のため、bodyスタイルは継承 */

/* メインコンテンツ専用スタイル */
main {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    min-height: calc(100vh - 200px); /* ヘッダー・フッターの高さを考慮 */
    padding-top: 120px; /* ヘッダーの高さ分のパディングを追加（固定ヘッダー対応） */
    margin-top: 0;
}

.container_It {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ヘッダー関連（既存のヘッダーを使用するため削除） */

/* ヘッダーとの統合改善 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* メインビジュアル */
.hero_section_It {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #faf5ff 100%);
}

.hero_content_It {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero_title_It {
    font-size: 2.5rem;
    font-weight: 700;
    color: #be185d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero_description_It {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

/* 画像プレースホルダー */
.image_placeholder_It {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec4899;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
}

.image_placeholder_It:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.25);
}

/* CTAボタン */
.cta_button_It {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta_button_It:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.35);
}

.cta_button_It.large_It {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* セクション共通 */
.section_header_It {
    text-align: center;
    margin-bottom: 4rem;
}

.section_title_It {
    font-size: 2.5rem;
    font-weight: 700;
    color: #be185d;
    margin-bottom: 1rem;
}

.section_description_It {
    font-size: 1.2rem;
    color: #666;
}

/* 機能紹介セクション */
.features_section_It {
    padding: 4rem 0;
    background: white;
}

.feature_card_It {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.08);
    transition: all 0.3s ease;
}

.feature_card_It:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.15);
}

.feature_card_It.reverse_It {
    direction: rtl;
}

.feature_card_It.reverse_It .feature_content_It {
    direction: ltr;
}

.feature_title_It {
    font-size: 1.8rem;
    font-weight: 700;
    color: #be185d;
    margin-bottom: 1rem;
}

.feature_description_It {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature_list_It {
    list-style: none;
}

.feature_list_It li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #666;
}

/* 作成方法 */
.creation_methods_It {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method_item_It {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #ec4899;
}

.method_item_It h4 {
    color: #be185d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.method_item_It p {
    color: #666;
    font-size: 0.9rem;
}

/* メリット */
.benefits_It {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.benefit_item_It {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #666;
}

.benefit_icon_It {
    font-size: 1.2rem;
}

/* 使用例セクション */
.usage_section_It {
    padding: 4rem 0;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

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

.usage_card_It {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.08);
    transition: all 0.3s ease;
}

.usage_card_It:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.15);
}

.usage_card_It h3,
.usage_title_It {
    color: #be185d;
    font-size: 1.3rem;
    margin: 1rem 0;
    font-weight: 600;
}

.usage_card_It p,
.usage_description_It {
    color: #666;
    line-height: 1.6;
}

.usage_image_It {
    margin-bottom: 1rem;
}

.usage_image_It .image_placeholder_It {
    height: 200px;
}

/* CTAセクション */
.cta_section_It {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
    text-align: center;
}

.cta_title_It {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta_description_It {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta_section_It .cta_button_It {
    background: white;
    color: #ec4899;
}

.cta_section_It .cta_button_It:hover {
    background: #fdf2f8;
    transform: translateY(-2px);
}

/* フッター関連（既存のフッターを使用するため削除） */

/* フッターとの統合改善 */
.footer {
    position: relative;
    z-index: 1;
}

/* 画像モーダル */
.modal_It {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content_It {
    position: relative;
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-image_It {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
}

.close-modal_It {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal_It:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* 画像プレースホルダーにカーソルポインターを追加 */
.image_placeholder_It {
    cursor: pointer;
}

/* アニメーション */
@keyframes fadeInDown_It {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* レスポンシブデザイン */
@media (max-width: 768px) {
    main {
        padding-top: 100px; /* モバイルではヘッダーが小さい */
    }
    
    .hero_content_It {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature_card_It {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature_card_It.reverse_It {
        direction: ltr;
    }
    
    /* メインタイトル関連（既存のヘッダーを使用するため削除） */
    
    .hero_title_It {
        font-size: 2rem;
    }
    
    .section_title_It {
        font-size: 2rem;
    }
    
    .usage_cards_It {
        grid-template-columns: 1fr;
    }
    
    .container_It {
        padding: 0 15px;
    }
    
    /* モーダルのモバイル対応 */
    .modal-content_It {
        width: 95%;
        max-width: none;
    }
    
    .close-modal_It {
        top: -50px;
        right: 10px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    /* メインタイトル関連（既存のヘッダーを使用するため削除） */
    
    .hero_title_It {
        font-size: 1.8rem;
    }
    
    .section_title_It {
        font-size: 1.8rem;
    }
    
    .cta_title_It {
        font-size: 2rem;
    }
    
    .feature_card_It {
        padding: 1.5rem;
    }
    
    .usage_card_It {
        padding: 1.5rem;
    }
}