.tetoe-container {
    max-width: 1200px;
}

.tetoe-hero-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 70vh;
}

.tetoe-image-wrapper {
    flex: 1;
    max-width: 500px;
}

.tetoe-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tetoe-main-image:hover {
    transform: translateY(-5px);
}

.tetoe-content-wrapper {
    flex: 1;
    max-width: 600px;
    padding-left: 2rem;
}

.tetoe-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

.tetoe-content-text {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

.tetoe-content-text:last-child {
    margin-bottom: 0;
}

.tetoe-highlight-text {
    font-weight: 600;
    color: #2d3748;
}

.tetoe-brand-name {
    font-weight: 700;
    color: #2b6cb0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .tetoe-hero-section {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    
    .tetoe-content-wrapper {
        padding-left: 0;
    }
    
    .tetoe-main-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }
    
    .tetoe-content-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .tetoe-main-title {
        font-size: 1.75rem;
    }
    
    .tetoe-content-text {
        font-size: 0.9rem;
    }
}

/* アニメーション効果 */
.tetoe-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.tetoe-fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.tetoe-fade-in:nth-child(3) {
    animation-delay: 0.4s;
}

.tetoe-fade-in:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}