.tetoe-container {
    max-width: 1200px; /* 読みやすい横幅 */
    margin: 0 auto;
}

.tetoe-hero-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 70vh;
    margin-bottom: 5rem; /* セクション間に余裕 */
}

.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-content-wrapper {
    flex: 1;
    max-width: 600px;
    padding-left: 2rem;
}

.tetoe-under-content-wrapper,
.message-section {
    margin: 4rem 0; /* 上下の余白 */
    padding-left: 2rem;
}

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

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

/* スマホ対応 */
@media (max-width: 768px) {
    .tetoe-hero-section {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .tetoe-content-wrapper,
    .tetoe-under-content-wrapper {
        padding: 0 1rem; /* 左右に余白を追加 */
    }

    .tetoe-main-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .tetoe-content-text {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
        line-height: 1.9;
    }
}
